* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #001B48;
    --secondary-dark: #02457A;
    --accent-blue: #018ABE;
    --soft-blue: #97CADB;
    --light-bg: #D6EBEE;
    --white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);
}

body {
    font-family: 'Tajawal', sans-serif;
    background: var(--primary-dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, var(--primary-dark) 100%);
    overflow: hidden;
}

.bg-animation::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at 20% 80%, rgba(1, 138, 190, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(151, 202, 219, 0.1) 0%, transparent 50%);
    animation: bgFloat 20s ease-in-out infinite;
}

@keyframes bgFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-blue);
    border-radius: 50%;
    opacity: 0.4;
    animation: particleFloat 15s infinite ease-in-out;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.2; }
    50% { transform: translateY(-100px) translateX(50px); opacity: 0.6; }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 5%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    background: rgba(0, 27, 72, 0.8);
    border-bottom: 1px solid rgba(151, 202, 219, 0.1);
}

nav.scrolled {
    padding: 0.8rem 5%;
    background: rgba(0, 27, 72, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-blue), var(--soft-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.3rem;
    box-shadow: 0 4px 20px rgba(1, 138, 190, 0.4);
}

/* .logo-icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent-blue), #02a5d9);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(1, 138, 190, 0.4);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(1, 138, 190, 0.6);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(1, 138, 190, 0.15);
    border: 1px solid rgba(1, 138, 190, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(1, 138, 190, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(1, 138, 190, 0); }
}

.hero-badge::before {
    content: '✦';
    font-size: 0.8rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--soft-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), #02a5d9);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(1, 138, 190, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary::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 ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(1, 138, 190, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(151, 202, 219, 0.3);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-blue);
    transform: translateY(-4px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(151, 202, 219, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent-blue);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(151, 202, 219, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent-blue), var(--soft-blue), var(--accent-blue));
    border-radius: 26px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(15px);
}

.search-simulation {
    background: rgba(0, 27, 72, 0.6);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(151, 202, 219, 0.15);
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 1rem 1.2rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.search-icon {
    color: var(--accent-blue);
    font-size: 1.3rem;
}

.search-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem 1rem;
    background: rgba(1, 138, 190, 0.1);
    border-radius: 10px;
    border-right: 3px solid var(--accent-blue);
    animation: slideIn 0.5s ease-out backwards;
}

.result-item:nth-child(1) { animation-delay: 0.5s; }
.result-item:nth-child(2) { animation-delay: 0.7s; }
.result-item:nth-child(3) { animation-delay: 0.9s; }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.result-rank {
    background: var(--accent-blue);
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.result-title {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.growth-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(1, 138, 190, 0.2), rgba(151, 202, 219, 0.1));
    border-radius: 14px;
    padding: 1.3rem 1.5rem;
    border: 1px solid rgba(1, 138, 190, 0.3);
}

.growth-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.growth-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: #4ade80;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Section Styles */
section {
    padding: 100px 5%;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(1, 138, 190, 0.15);
    color: var(--accent-blue);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(180deg, transparent 0%, rgba(2, 69, 122, 0.2) 50%, transparent 100%);
}

.pricing-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(151, 202, 219, 0.15);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-dark), var(--accent-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(1, 138, 190, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(1, 138, 190, 0.15) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: var(--accent-blue);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.featured:hover {
    transform: scale(1.07) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 5px;
    left: 10px;
    background: linear-gradient(135deg, var(--accent-blue), #02a5d9);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(1, 138, 190, 0.5);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(151, 202, 219, 0.15);
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 0.5rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.price-value {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--white), var(--soft-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
}

.plan-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0.8rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(151, 202, 219, 0.08);
}

.plan-features li:last-child {
    border-bottom: none;
}

.feature-check {
    color: #4ade80;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-button {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-align: center;
    text-decoration: none;
    display: block;
}

.plan-button.primary {
    background: linear-gradient(135deg, var(--accent-blue), #02a5d9);
    color: var(--white);
    border: none;
    box-shadow: 0 8px 25px rgba(1, 138, 190, 0.4);
}

.plan-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(1, 138, 190, 0.6);
}

.plan-button.secondary {
    background: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
}

.plan-button.secondary:hover {
    background: rgba(1, 138, 190, 0.1);
    transform: translateY(-3px);
}

/* Golden Offer Section */
.golden-offer {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(1, 138, 190, 0.1) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.golden-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    animation: goldenGlow 10s ease-in-out infinite;
}

@keyframes goldenGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5%, 5%); }
}

.golden-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.golden-card {
    background: rgba(0, 27, 72, 0.6);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 28px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}

.golden-card::before {
    content: '✦';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.3);
    animation: starSpin 10s linear infinite;
}

@keyframes starSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.golden-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #d4af37, #f4e4a6, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.golden-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.golden-feature {
    display: flex;
    gap: 1.2rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.golden-feature:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateX(-5px);
}

.golden-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.golden-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.golden-feature p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.guarantee-box {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(74, 222, 128, 0.05));
    border: 2px solid rgba(74, 222, 128, 0.3);
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
}

.guarantee-box h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #4ade80;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.guarantee-box p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.note-box {
    background: linear-gradient(135deg, rgba(222, 74, 74, 0.15), rgba(74, 222, 128, 0.05));
    border: 2px solid rgba(222, 74, 74, 0.3);
    border-radius: 18px;
    padding: 2rem;
    text-align: right;
}

.note-box h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #de4a4a;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.note-box p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* Why Us Section */
.why-us {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 27, 72, 0.5) 50%, transparent 100%);
}

.why-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(151, 202, 219, 0.12);
    border-radius: 20px;
    padding: 2.2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-blue), var(--soft-blue));
    transition: height 0.4s ease;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(1, 138, 190, 0.3);
    transform: translateY(-5px);
}

.why-card:hover::before {
    height: 100%;
}

.why-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(1, 138, 190, 0.2), rgba(1, 138, 190, 0.05));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.3rem;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--accent-blue), #02a5d9);
    transform: scale(1.1);
}

.why-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

/* FAQ Section */
.faq {
    background: linear-gradient(180deg, transparent 0%, rgba(2, 69, 122, 0.15) 50%, transparent 100%);
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(151, 202, 219, 0.12);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(1, 138, 190, 0.3);
}

.faq-item.active {
    border-color: var(--accent-blue);
    background: rgba(1, 138, 190, 0.08);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: right;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Tajawal', sans-serif;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-blue);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: rgba(1, 138, 190, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--accent-blue);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background: rgba(0, 17, 35, 0.8);
    border-top: 1px solid rgba(151, 202, 219, 0.15);
    padding: 60px 5% 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(151, 202, 219, 0.12);
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
    display: inline-flex;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(151, 202, 219, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 900;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.98rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent-blue);
    transform: translateX(-5px);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.98rem;
    margin-bottom: 1rem;
}

.contact-icon {
    color: #ffffff ;
    font-size: 1.1rem;
    font-weight: 900;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.footer-bottom strong {
    color: var(--accent-blue);
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 27, 72, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 100px 10% 40px;
    flex-direction: column;
    gap: 2rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(151, 202, 219, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
        max-width: 550px;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 5% 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .price-value {
        font-size: 2.8rem;
    }

    .golden-card {
        padding: 2rem;
    }

    .golden-title {
        font-size: 1.8rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .golden-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.85rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

/* Chrome + Edge + Safari */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #001B48;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        #018ABE,
        #02457A
    );
    border-radius: 999px;
    border: 2px solid #001B48;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        180deg,
        #97CADB,
        #018ABE
    );
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #018ABE #001B48;
}