/* ============================================
   SUKHAKARTA ENTERPRISE — Design System
   Modern, Professional, Premium
   ============================================ */

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Primary Palette */
    --color-primary: #1A3A52;
    --color-primary-light: #2C5573;
    --color-accent: #D4A62B;
    --color-accent-dark: #B8891F;
    --color-cta: #E8B734;
    --color-cta-hover: #D4961E;
    --color-secondary: #6c7a8d;

    /* Neutral Palette */
    --color-bg: #f8f6f0;
    --color-surface: #ffffff;
    --color-surface-glass: rgba(255, 255, 255, 0.08);
    --color-text: #1a1a2e;
    --color-text-muted: #6b7280;
    --color-border: rgba(255, 255, 255, 0.12);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1A3A52 0%, #2C5573 50%, #0F2537 100%);
    --gradient-accent: linear-gradient(135deg, #D4A62B 0%, #E8B734 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26, 58, 82, 0.93) 0%, rgba(212, 166, 43, 0.12) 100%);
    --gradient-cta: linear-gradient(135deg, #E8B734, #D4A62B);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(248,246,240,0.9) 100%);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 58, 82, 0.06);
    --shadow-md: 0 4px 20px rgba(26, 58, 82, 0.08);
    --shadow-lg: 0 8px 40px rgba(26, 58, 82, 0.12);
    --shadow-glow: 0 0 30px rgba(212, 166, 43, 0.15);
    --shadow-card-hover: 0 12px 48px rgba(26, 58, 82, 0.16);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Base Reset & Typography ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-primary);
}

p {
    color: var(--color-text-muted);
    line-height: 1.8;
}

a {
    text-decoration: none;
    transition: color var(--transition-fast);
}

/* ---------- Navbar — Frosted Glass ---------- */
.navbar-glass {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 1rem 0;
    background: transparent;
    transition: all var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.navbar-glass.scrolled {
    background: rgba(26, 58, 82, 0.93);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(212, 166, 43, 0.25);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar-glass .navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all var(--transition-fast);
}

.navbar-glass .nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75) !important;
    padding: 0.5rem 1.1rem !important;
    position: relative;
    letter-spacing: 0.3px;
    transition: color var(--transition-fast);
}

.navbar-glass .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
    transition: transform var(--transition-smooth);
}

.navbar-glass .nav-link:hover,
.navbar-glass .nav-link.active {
    color: #ffffff !important;
}

.navbar-glass .nav-link:hover::after,
.navbar-glass .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* ---------- Page Hero Banners ---------- */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--gradient-primary);
    overflow: hidden;
    margin-top: -76px;
    padding-top: 120px;
    padding-bottom: 60px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 166, 43, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 6s ease-in-out infinite;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 8s ease-in-out infinite reverse;
}

.page-hero h1 {
    color: #ffffff;
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-hero .breadcrumb-accent {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(0, 201, 167, 0.12);
    border: 1px solid rgba(0, 201, 167, 0.25);
    border-radius: 50px;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

/* ---------- Landing Hero ---------- */
.hero-landing {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: -76px;
}

.hero-landing .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-landing .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
}

.hero-landing .hero-content {
    position: relative;
    z-index: 3;
    padding: 2rem;
}

.hero-landing .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 201, 167, 0.1);
    border: 1px solid rgba(0, 201, 167, 0.3);
    border-radius: 50px;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out;
}

.hero-landing h1 {
    color: #ffffff;
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -2.5px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero-landing h1 .text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-landing .hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-landing .hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.45s both;
}

/* Floating decorative elements on hero */
.hero-float-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: float 8s ease-in-out infinite;
}

.hero-float-shape:nth-child(1) {
    width: 300px;
    height: 300px;
    background: var(--color-accent);
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.hero-float-shape:nth-child(2) {
    width: 200px;
    height: 200px;
    background: var(--color-cta);
    bottom: 15%;
    left: -3%;
    animation-delay: 2s;
}

.hero-float-shape:nth-child(3) {
    width: 150px;
    height: 150px;
    background: var(--color-accent);
    top: 60%;
    right: 15%;
    animation-delay: 4s;
}

/* ---------- Buttons ---------- */
.btn-accent {
    background: var(--gradient-accent);
    color: #ffffff;
    font-weight: 600;
    font-family: var(--font-body);
    padding: 0.85rem 2.2rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(212, 166, 43, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 166, 43, 0.45);
    color: #ffffff;
}

.btn-accent:hover::before {
    left: 100%;
}

.btn-outline-white {
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    font-family: var(--font-body);
    padding: 0.85rem 2.2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all var(--transition-smooth);
    backdrop-filter: blur(5px);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-cta {
    background: var(--gradient-cta);
    color: #ffffff;
    font-weight: 700;
    font-family: var(--font-body);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.45);
    color: #ffffff;
}

/* ---------- Section Styling ---------- */
.section {
    padding: 6rem 0;
}

.section-alt {
    background: var(--color-surface);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--color-primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
}

.section-title-center {
    text-align: center;
}

.section-title-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* ---------- Glass Cards ---------- */
.glass-card {
    background: var(--gradient-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.glass-card:hover::before {
    transform: scaleX(1);
}

.glass-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(0, 201, 167, 0.1) 0%, rgba(0, 180, 216, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-bottom: 1.25rem;
    transition: all var(--transition-smooth);
}

.glass-card:hover .card-icon {
    background: var(--gradient-accent);
    color: #ffffff;
    transform: scale(1.05);
}

.glass-card h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.glass-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ---------- Stats / Feature Bar ---------- */
.stats-bar {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-lg);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 201, 167, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

/* ---------- Contact Form Styling ---------- */
.form-modern .form-control,
.form-modern .form-select {
    border: 2px solid rgba(10, 22, 40, 0.08);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--color-bg);
    color: var(--color-text);
    transition: all var(--transition-fast);
}

.form-modern .form-control:focus,
.form-modern .form-select:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(0, 201, 167, 0.1);
    background: #ffffff;
}

.form-modern .form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

/* Contact Info Cards */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    transition: all var(--transition-smooth);
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-info-card .info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-card h6 {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.contact-info-card p {
    font-size: 0.88rem;
    margin: 0;
}

/* ---------- Footer Modern ---------- */
.footer-modern {
    background: var(--gradient-primary);
    padding-top: 5rem;
    padding-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-accent);
}

.footer-modern h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-modern h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
}

.footer-modern p,
.footer-modern li {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-modern a {
    color: rgba(255, 255, 255, 0.55);
    transition: all var(--transition-fast);
}

.footer-modern a:hover {
    color: var(--color-accent);
    padding-left: 4px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 166, 43, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1.1rem;
    transition: all var(--transition-smooth) !important;
}

.footer-social-link:hover {
    background: var(--color-accent) !important;
    border-color: var(--color-accent) !important;
    color: #1A3A52 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 15px rgba(212, 166, 43, 0.35) !important;
    padding-left: 0 !important;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 2.5rem 0 1.5rem;
}

.footer-bottom {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
}

/* ---------- Value / Feature Cards ---------- */
.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    transition: all var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.value-card .value-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 201, 167, 0.1) 0%, rgba(0, 180, 216, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-accent);
    margin: 0 auto 1.5rem;
    transition: all var(--transition-smooth);
}

.value-card:hover .value-icon {
    background: var(--gradient-accent);
    color: #ffffff;
    transform: scale(1.08) rotate(5deg);
}

.value-card h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) rotate(1deg);
    }
    66% {
        transform: translateY(8px) rotate(-1deg);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* ---------- Utility Classes ---------- */
.text-accent {
    color: var(--color-accent) !important;
}

.bg-primary-dark {
    background: var(--color-primary) !important;
}

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

/* ---------- Product Feature List ---------- */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0;
    font-size: 0.92rem;
    color: var(--color-text-muted);
}

.feature-list li .bi {
    color: var(--color-accent);
    font-size: 0.8rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .hero-landing h1 {
        font-size: 3rem;
    }

    .hero-landing .hero-subtitle {
        font-size: 1.05rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-bar {
        margin-top: -40px;
    }

    .cta-banner {
        padding: 3rem 2rem;
    }

    .cta-banner h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-landing h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .hero-landing .hero-subtitle {
        font-size: 0.95rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero {
        min-height: 40vh;
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .stats-bar {
        border-radius: var(--radius-lg);
        padding: 2rem 1.5rem;
        margin-top: -30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .glass-card {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-banner {
        padding: 2.5rem 1.5rem;
        border-radius: var(--radius-lg);
    }

    .cta-banner h2 {
        font-size: 1.6rem;
    }

    .navbar-glass .navbar-collapse {
        background: rgba(10, 22, 40, 0.95);
        backdrop-filter: blur(20px);
        border-radius: var(--radius-md);
        padding: 1rem;
        margin-top: 0.5rem;
    }

    .footer-modern {
        padding-top: 3rem;
    }
}
