/* ====================================================
   NEXTNATION VISA & CAREER CONSULTANCY
   Ultra-Stylish Modern Light Mode Design System
   Typography: Space Grotesk & Plus Jakarta Sans
   Palette: Electric Sapphire, Cyan, Violet Glow & Gold
==================================================== */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    /* Super Stylish Color System */
    --bg-page: #f8fafc;
    --bg-card: #ffffff;
    --bg-surface-alt: #f1f5f9;
    
    /* Vibrant Electric Gradients */
    --gradient-brand: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 40%, #06b6d4 100%);
    --gradient-violet: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --gradient-emerald: linear-gradient(135deg, #059669 0%, #10b981 100%);
    --gradient-amber: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    
    --color-primary: #2563eb;
    --color-cyan: #06b6d4;
    --color-teal: #0d9488;
    --color-gold: #f59e0b;
    --color-blue-soft: #eff6ff;
    
    --text-heading: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    
    --border-light: #e2e8f0;
    --border-brand: rgba(37, 99, 235, 0.2);
    
    --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 14px 30px -5px rgba(37, 99, 235, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.02);
    --shadow-lg: 0 25px 50px -12px rgba(30, 58, 138, 0.16);
    --shadow-glow: 0 12px 32px rgba(37, 99, 235, 0.3);
    
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-pill: 50px;
    
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-page);
    color: var(--text-body);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, .font-heading {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-heading);
    letter-spacing: -0.5px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-page);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

/* Container */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Helpers */
.text-gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-violet {
    background: var(--gradient-violet);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: #ffffff;
    border: 1px solid var(--border-brand);
    border-radius: var(--radius-pill);
    color: var(--color-primary);
    font-size: 0.86rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: var(--shadow-sm);
}

.section-header {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 55px;
}

.section-header h2 {
    font-size: clamp(2rem, 4.5vw, 2.7rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-muted);
    font-size: clamp(1rem, 2vw, 1.1rem);
}

/* Stylish Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    font-size: 0.98rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-brand);
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(37, 99, 235, 0.42);
}

.btn-outline {
    background: #ffffff;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    background: var(--color-blue-soft);
    transform: translateY(-2px);
}

.btn-white {
    background: #ffffff;
    color: var(--text-heading);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: var(--bg-surface-alt);
    transform: translateY(-2px);
}

/* Announcement Bar */
.announcement-bar {
    background: var(--gradient-dark);
    color: #ffffff;
    font-size: 0.86rem;
    padding: 10px 15px;
    text-align: center;
    font-weight: 600;
}

.announcement-bar span {
    color: var(--color-cyan);
    font-weight: 700;
}

/* Navigation Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    box-shadow: var(--shadow-sm);
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-badge {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.35rem;
    box-shadow: var(--shadow-glow);
}

.logo-text {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-heading);
    font-family: 'Space Grotesk', sans-serif;
}

.logo-text span {
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    color: var(--text-body);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-primary);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-heading);
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding: 70px 0 95px;
    background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 40%);
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 45px;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.6rem, 5.2vw, 3.7rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 22px;
}

.hero-content p {
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

/* Hero Visual Banner Frame with Image */
.hero-banner-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid #ffffff;
    height: 390px;
}

.hero-banner-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-overlay-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
}

.overlay-info h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-heading);
}

.overlay-info span {
    font-size: 0.82rem;
    color: var(--color-primary);
    font-weight: 700;
}

.hero-trust-badges {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-top: 25px;
    border-top: 1px solid var(--border-light);
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-body);
}

.trust-badge-item i {
    color: #10b981;
    font-size: 1.15rem;
}

/* Form Card on Right */
.lead-form-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 34px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.lead-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-brand);
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
}

.form-title {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-body);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg-surface-alt);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 0.94rem;
    color: var(--text-heading);
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    background: #ffffff;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

/* Quick Info Summary Grid */
.quick-info-section {
    padding: 50px 0 90px;
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
    gap: 18px;
}

.info-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.info-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--color-blue-soft);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.info-card-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.info-card-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Overview Section */
.overview-section {
    padding: 90px 0;
    background: var(--bg-surface-alt);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.overview-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
    margin-bottom: 55px;
}

.overview-image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 350px;
    border: 4px solid #ffffff;
}

.overview-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overview-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.overview-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.overview-icon {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.overview-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.overview-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
}

/* Navy Banner */
.navy-banner {
    background: var(--gradient-brand);
    color: #ffffff;
    padding: 60px 35px;
    margin: 45px 0 0;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-glow);
}

.navy-banner h2 {
    color: #ffffff;
    font-size: clamp(1.7rem, 3.8vw, 2.3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.navy-banner p {
    color: #bfdbfe;
    font-size: 1.08rem;
    max-width: 720px;
    margin: 0 auto 28px;
}

/* Country Destinations Section */
.destinations-section {
    padding: 90px 0;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.dest-card-rich {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.dest-card-rich:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.dest-card-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.dest-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dest-card-rich:hover .dest-card-img img {
    transform: scale(1.08);
}

.dest-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffffff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.dest-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dest-card-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.dest-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Who Can Apply Grid */
.eligibility-section {
    padding: 90px 0;
    background: var(--bg-surface-alt);
}

.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
}

.eligibility-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 30px 22px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.eligibility-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.eligibility-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-blue-soft);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 18px;
}

.eligibility-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.eligibility-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Benefits Section */
.benefits-section {
    padding: 90px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--color-blue-soft);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.benefit-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Timeline Process Section */
.process-section {
    padding: 90px 0;
    background: var(--bg-surface-alt);
}

.timeline {
    max-width: 820px;
    margin: 0 auto;
}

.timeline-item {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 22px;
    transition: var(--transition);
}

.timeline-item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.timeline-step-badge {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.timeline-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.timeline-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Why Choose Us Section */
.why-us-section {
    padding: 90px 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
}

.why-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.why-icon {
    font-size: 2.2rem;
    color: var(--color-gold);
    margin-bottom: 14px;
}

.why-card h3 {
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Testimonials */
.testimonials-section {
    padding: 90px 0;
    background: var(--bg-surface-alt);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 26px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.stars {
    color: #f59e0b;
    margin-bottom: 14px;
}

.testimonial-card p {
    font-size: 0.92rem;
    color: var(--text-body);
    margin-bottom: 20px;
    font-style: italic;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.user-avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-primary);
}

.user-details h4 {
    font-size: 0.98rem;
    font-weight: 700;
}

.user-details span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* FAQ Accordion Section */
.faq-section {
    padding: 90px 0;
}

.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 20px 24px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--text-muted);
    display: none;
    line-height: 1.65;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Bottom Assessment Banner */
.cta-assessment-banner {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid var(--border-brand);
    border-radius: var(--radius-lg);
    padding: 50px 35px;
    text-align: center;
    margin: 40px 0 90px;
    box-shadow: var(--shadow-sm);
}

.cta-assessment-banner h2 {
    font-size: clamp(1.7rem, 3.8vw, 2.3rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-assessment-banner p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 25px;
}

/* Footer */
footer {
    background: #0f172a;
    color: #ffffff;
    padding: 70px 0 35px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 45px;
}

.footer-brand p {
    color: #94a3b8;
    margin-top: 15px;
    font-size: 0.9rem;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.08rem;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #334155;
    color: #64748b;
    font-size: 0.85rem;
}

/* Modal Popup */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: #ffffff;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 520px;
    padding: 35px;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--text-muted);
    cursor: pointer;
}

/* Floating WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Responsive Queries */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; }
    .overview-split { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 25px;
        box-shadow: var(--shadow-lg);
        border-bottom: 1px solid var(--border-light);
        display: none;
    }
    
    .nav-links.active { display: flex; }
    .mobile-toggle { display: block; }
}

@media (max-width: 600px) {
    .container { padding: 0 18px; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; }
}
