/* ---------- Variables & Base Setup ---------- */
:root {
    --bg-color: #0b0c10;
    --bg-darker: #060709;
    --text-primary: #f8f9fa;
    --text-secondary: #adb5bd;
    
    --accent-primary: #4361ee;
    --accent-secondary: #4cc9f0;
    --gradient-primary: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* ---------- Typography & Utility ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

a {
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.dot {
    color: var(--accent-secondary);
}

.text-center {
    text-align: center;
}

.w-100 {
    width: 100%;
}

/* ---------- Ambient Background ---------- */
.ambient-bg {
    position: fixed;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

.ambient-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-primary);
    top: -10%;
    left: -10%;
}

.ambient-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-secondary);
    bottom: 20%;
    right: -5%;
}

/* ---------- Glassmorphism Component ---------- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: var(--glass-bg);
    border-color: var(--accent-secondary);
}

.btn-glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    color: var(--text-primary);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ---------- Navigation ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(11, 12, 16, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-top: 0.2rem;
    text-transform: uppercase;
    display: block;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 1rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-secondary);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-primary);
}

.nav-cta {
    display: flex;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ---------- Hero Section ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(67, 97, 238, 0.1);
    border: 1px solid rgba(67, 97, 238, 0.3);
    color: var(--accent-secondary);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatars {
    display: flex;
}

.avatars img, .avatar-more {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--bg-color);
    margin-left: -15px;
}

.avatars img:first-child {
    margin-left: 0;
}

.avatar-more {
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
}

.hero-trust p {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Hero Form */
.hero-glass-card {
    padding: 2.5rem;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-header i {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.hero-form .input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.hero-form .input-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.hero-form input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.hero-form input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* ---------- Reason Section ---------- */
.reason-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    text-align: center;
}

.reason-card {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    cursor: default;
}

.reason-card:hover {
    transform: translateY(-8px);
    border-color: rgba(76, 201, 240, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.reason-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.reason-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* ---------- Why Us Section ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.feature-card {
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(67, 97, 238, 0.3);
}

.feature-card .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(67, 97, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-secondary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* ---------- Process Section ---------- */
.ht-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 2rem;
}

.ht-line {
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 1;
}

.ht-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.ht-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 5px;
}

.ht-node {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-darker);
    border: 3px solid var(--accent-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    z-index: 3;
}

.ht-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
}

.ht-dot-dark {
    background: var(--bg-darker);
}

.ht-card {
    width: 100%;
    text-align: center;
    padding: 1.5rem 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ht-card p {
    margin: 0;
    color: var(--text-primary);
    line-height: 1.4;
}

/* ---------- Documents Section ---------- */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.doc-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.doc-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.doc-item i {
    font-size: 1.6rem;
    color: var(--accent-primary);
}

.doc-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* ---------- FAQ Section ---------- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-body);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent-secondary);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.faq-answer p {
    color: var(--text-secondary);
    padding-bottom: 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Arbitrary large max height */
    opacity: 1;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-item.active {
    border-color: rgba(67, 97, 238, 0.3);
}

/* ---------- Documents Graphic ---------- */
.docs-graphic-wrapper {
    max-width: 950px;
    margin: 0 auto;
}

.docs-graphic-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    display: block;
}

/* ---------- Gazette Highlight ---------- */
.gazette-highlight {
    text-align: center;
    margin-bottom: 6rem;
}

.gazette-highlight h2 {
    margin-bottom: 1.5rem;
}

.gazette-mockup-wrapper {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    position: relative;
}

.gazette-mockup-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.gazette-mockup-wrapper:hover img {
    transform: translateY(-5px);
}

.gazette-highlight p {
    max-width: 750px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.7;
}

/* ---------- Footer ---------- */
.footer {
    border-top: 1px solid var(--glass-border);
    padding-top: 4rem;
    background-color: var(--bg-darker);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 400px;
}

.powered-by {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.powered-by img {
    height: 35px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.powered-by span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

body[data-theme="light"] .powered-by img {
    filter: none;
}

.footer-links h3, .footer-contact h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent-secondary);
    padding-left: 5px;
}

.footer-contact ul li {
    margin-bottom: 0.8rem;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
}

.footer-contact a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 2rem 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom p:first-child {
    margin-bottom: 0.5rem;
}

/* ---------- Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ---------- Responsive ---------- */
@media screen and (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-glass-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .ht-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .ht-line {
        top: 20px;
        left: 50%;
        width: 4px;
        height: calc(100% - 40px);
        transform: translateX(-50%);
    }

    .ht-step {
        width: 100%;
        padding: 0;
    }
    
    .section {
        padding: 4rem 0;
    }
}

/* ---------- Pricing Section ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    align-items: start;
}

.pricing-card {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    border-top: 3px solid transparent;
}

.pricing-card.popular {
    border-top: 3px solid var(--accent-primary);
    transform: scale(1.05);
    z-index: 2;
    background: rgba(255, 255, 255, 0.08); /* slightly brighter */
}

@media (max-width: 992px) {
    .pricing-card.popular {
        transform: scale(1);
    }
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.price {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 0.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.price .currency {
    font-size: 1.5rem;
    margin-right: 5px;
}

.price .period {
    font-size: 1.5rem;
}

.pricing-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    min-height: 50px;
}

.pricing-features {
    text-align: left;
    margin-top: 2.5rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li.disabled {
    color: var(--text-secondary);
    opacity: 0.6;
}

.text-green {
    color: #10b981;
    margin-top: 4px;
}

.text-red {
    color: #ef4444;
    margin-top: 4px;
}

/* ---------- CTA Strip ---------- */
.cta-strip {
    background: #000;
    padding: 1.5rem 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-image: linear-gradient(to right, transparent 80%, rgba(255, 255, 255, 0.05) 100%);
}

.cta-strip-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta-strip-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-strip-left i {
    font-size: 2.2rem;
    color: #fff;
}

.cta-strip-text {
    margin: 0;
    font-size: 1.8rem;
    font-family: var(--font-body);
    font-weight: 700;
    color: #fff;
}

.btn-outline-pill {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-outline-pill:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 768px) {
    .cta-strip-container {
        flex-direction: column;
        text-align: center;
    }
    .cta-strip-left {
        flex-direction: column;
    }
    .cta-strip-text {
        font-size: 1.5rem;
    }
    color: var(--text-primary);
}

/* ---------- Modal & Form Styles ---------- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-glass-card {
    background: var(--bg-darker);
    border: 1px solid var(--glass-border);
    border-top: 4px solid var(--accent-primary);
    border-radius: 12px;
    padding: 2.5rem;
    width: 100%;
    max-width: 700px;
    position: relative;
    margin: auto;
    animation: slideIn 0.3s ease-out;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-modal:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}

/* Form Styles */
.name-change-form .form-group {
    margin-bottom: 1.5rem;
}

.name-change-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.section-label {
    margin-top: 1.5rem !important;
    font-size: 1.05rem !important;
    font-weight: 600;
    color: var(--accent-secondary) !important;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem !important;
}

.text-label label {
    font-size: 0.85rem !important;
    color: var(--text-secondary) !important;
    margin-bottom: 0.3rem !important;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.05);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

select.form-control option {
    background-color: var(--bg-darker);
    color: var(--text-primary);
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.three-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.three-cols .form-group {
    margin-bottom: 0;
}

.radio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary) !important;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    accent-color: var(--accent-primary);
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .form-row, .three-cols {
        flex-direction: column;
        display: flex;
    }
    
    .form-glass-card {
        padding: 1.5rem;
        margin: 1rem;
        width: auto;
    }
    
    .modal.show {
        align-items: flex-start;
        padding-top: 2rem;
    }
}

/* ---------- Stats Banner ---------- */
.stats-banner {
    background: #000;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 200px;
}

.stat-item i {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #fff;
    margin: 0;
    line-height: 1.1;
}

.stat-text {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ---------- Contact Section ---------- */
.contact-grid {
    display: flex;
    gap: 1rem;
    align-items: stretch;
    flex-wrap: wrap;
}

.map-container {
    flex: 1;
    min-width: 300px;
    min-height: 280px;
    overflow: hidden;
    padding: 0;
    border-top: 4px solid var(--accent-primary);
}

.contact-form-side {
    flex: 1;
    min-width: 300px;
}

.contact-heading {
    font-size: 1.6rem;\r\n    margin-bottom: 0.8rem;
    font-family: var(--font-heading);
}

.contact-form {
    padding: 1rem;\r\n    border-top: 4px solid var(--accent-secondary);
}

.contact-form .form-group {
    margin-bottom: 0.8rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
    }
    
    .map-container {
        min-height: 350px;
    }
}

/* ---------- Map Overlay Card ---------- */
.map-container {
    position: relative;
}

.map-overlay-card {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    padding: 8px;
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
    width: 210px;
    font-family: 'Roboto', 'Inter', sans-serif;
    color: #3c4043;
    z-index: 10;
}

.map-card-content {
    display: flex;
    justify-content: space-between;
}

.map-card-text {
    flex: 1;
    padding-right: 15px;
}

.map-card-text h3 {
    margin: 0 0 6px 0;
    font-size: 10px;
    font-weight: 500;
    color: #202124;
    font-family: 'Roboto', 'Inter', sans-serif;
}

.map-card-text p {
    margin: 0 0 8px 0;
    font-size: 10px;
    line-height: 1.4;
    color: #3c4043;
}

.map-rating {
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #70757a;
}

.map-rating .fa-star {
    color: #fbbc04;
    font-size: 12px;
}

.map-rating a {
    color: #1a73e8;
    text-decoration: none;
}

.map-rating a:hover {
    text-decoration: underline;
}

.map-card-actions {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    background: #f8f9fa;
    border: 1px solid #dadce0;
    border-radius: 50%;
    color: #1a73e8;
    text-decoration: none;
    font-size: 12px;
    transition: background 0.2s;
}

.action-btn:hover {
    background: #e8eaed;
}

.info-icon {
    font-size: 12px;
    color: #70757a;
    margin-left: 2px;
}

@media (max-width: 480px) {
    .map-overlay-card {
        width: calc(100% - 20px);
    }
}



.contact-form .form-control {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .docs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .docs-grid { grid-template-columns: 1fr; }
}

/* ---------- Reviews Section ---------- */
.reviews-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding-bottom: 2rem;
    /* Hide scrollbar */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.reviews-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.review-card {
    min-width: 350px;
    max-width: 350px;
    background: #1a1b1e;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-primary);
}

.reviewer-details h4 {
    margin: 0 0 0.2rem 0;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.reviewer-details span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.google-icon {
    font-size: 1.2rem;
    /* Google colors */
    background: -webkit-linear-gradient(45deg, #4285F4, #34A853, #FBBC05, #EA4335);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 1rem;
}

.review-rating .fa-star {
    color: #fbbc04;
    font-size: 1rem;
}

.verified-badge {
    margin-left: 4px;
}

.review-content {
    color: #e5e7eb;
    font-size: 0.95rem;
    line-height: 1.5;
}

.review-content p {
    margin: 0;
}

.read-more {
    color: var(--text-secondary);
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .review-card {
        min-width: 280px;
        max-width: 280px;
    }
}

/* Carousel Wrapper and Arrows */
.carousel-wrapper {
    position: relative;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(30, 31, 34, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.nav-arrow:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: translateY(-50%) scale(1.1);
}

.left-arrow {
    left: -20px;
}

.right-arrow {
    right: -20px;
}

@media (max-width: 768px) {
    .nav-arrow {
        display: none; /* Hide arrows on mobile, swipe is natural */
    }
}

/* ---------- Mobile Menu Fix ---------- */
@media screen and (max-width: 768px) {
    .navbar.mobile-menu-active {
        background: var(--bg-color);
    }
    .navbar.mobile-menu-active .nav-content {
        flex-wrap: wrap;
    }
    .navbar.mobile-menu-active .logo { 
        order: 1; 
    }
    .navbar.mobile-menu-active .mobile-menu-btn { 
        order: 2; 
    }
    .navbar.mobile-menu-active .nav-links { 
        display: flex; 
        order: 3; 
        flex-direction: column; 
        width: 100%; 
        padding: 2rem 0 1rem 0;
        gap: 1rem;
    }
    .navbar.mobile-menu-active .nav-cta { 
        display: flex; 
        order: 4; 
        flex-direction: column; 
        width: 100%; 
        padding: 0 0 2rem 0;
        gap: 1rem;
    }
    .navbar.mobile-menu-active .nav-cta a.btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Fix map iframe scaling inside min-height container */
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

[data-theme="light"] {
    --bg-color: #ffffff;
    --bg-darker: #f3f4f6;
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    
    --accent-primary: #4361ee;
    --accent-secondary: #0ea5e9;
    --gradient-primary: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
}

body[data-theme="light"] .hero-form input {
    background: rgba(0, 0, 0, 0.03);
    color: #fff;
}

body[data-theme="light"] .ht-node {
    background: var(--bg-color);
}

body[data-theme="light"] .ht-dot {
    background: var(--text-primary);
}

/* ---------- Live Chat Widget ---------- */
.live-chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.live-chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

