/* My Health Consulting - Premium Healthcare Website */
:root {
    --primary-black: #000000;
    --primary-yellow: #FFD500;
    --primary-red: #FF4D4D;
    --primary-white: #FFFFFF;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --gradient-mixed: linear-gradient(135deg, #FFD500 0%, #FF4D4D 100%);
    --gradient-soft: linear-gradient(135deg, rgba(255, 213, 0, 0.1) 0%, rgba(255, 77, 77, 0.1) 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-glow-yellow: 0 10px 40px rgba(255, 213, 0, 0.3);
    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 30px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'IBM Plex Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--primary-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.2s ease; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); outline: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
p { color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 70px; }

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-soft);
    color: var(--primary-red);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 77, 77, 0.2);
}

.section-title { margin-bottom: 20px; }
.section-title .highlight {
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle { font-size: 1.125rem; color: var(--text-light); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-mixed);
    color: var(--primary-white);
    box-shadow: var(--shadow-glow-yellow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 50px rgba(255, 213, 0, 0.5); }

.btn-secondary {
    background: var(--primary-white);
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
}
.btn-secondary:hover { background: var(--primary-black); color: var(--primary-white); transform: translateY(-3px); }

.btn-outline {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}
.btn-outline:hover { background: var(--primary-white); color: var(--primary-black); border-color: var(--primary-white); }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.navbar.scrolled { padding: 12px 0; background: rgba(255, 255, 255, 0.95); box-shadow: var(--shadow-sm); }

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--primary-black);
}

.nav-logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-mixed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.25rem;
    box-shadow: var(--shadow-glow-yellow);
}

.nav-menu { display: flex; align-items: center; gap: 40px; }
.nav-link { font-weight: 500; color: var(--text-dark); position: relative; font-size: 0.95rem; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-mixed);
    transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta { padding: 12px 28px; font-size: 0.9rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; padding: 8px; }
.nav-toggle span { width: 25px; height: 2px; background: var(--primary-black); transition: var(--transition); border-radius: 2px; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
    min-height: 100vh;
    background: var(--primary-black);
    color: var(--primary-white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: 1; }
.hero-gradient-1 {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 213, 0, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: float 8s ease-in-out infinite;
}
.hero-gradient-2 {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 77, 77, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: float 10s ease-in-out infinite reverse;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-floating {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}
.hero-floating:nth-child(1) { top: 20%; left: 10%; width: 80px; height: 80px; }
.hero-floating:nth-child(2) { top: 60%; right: 15%; width: 120px; height: 120px; animation-delay: 2s; }
.hero-floating:nth-child(3) { bottom: 20%; left: 20%; width: 60px; height: 60px; animation-delay: 4s; }

.hero-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; text-align: center; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary-yellow);
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    color: var(--primary-white);
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-title .gradient-text {
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.6s both; }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 80px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease 0.8s both;
}
.hero-stat { text-align: center; }
.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}
.hero-stat-label { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { position: relative; border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 500px; object-fit: cover; transition: var(--transition); }
.about-image:hover img { transform: scale(1.05); }

.about-image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 28px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 16px;
}
.about-image-badge-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-mixed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.5rem;
}
.about-image-badge-text h4 { font-size: 1.5rem; margin: 0; }
.about-image-badge-text p { margin: 0; font-size: 0.85rem; }

.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.about-value {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--light-gray);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}
.about-value:hover { background: var(--gradient-soft); transform: translateY(-3px); }
.about-value-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-mixed);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    flex-shrink: 0;
}
.about-value h5 { margin-bottom: 4px; font-size: 1rem; }
.about-value p { font-size: 0.85rem; margin: 0; }

/* Milestones */
.milestones { background: var(--light-gray); position: relative; overflow: hidden; }
.milestones::before { content: ''; position: absolute; inset: 0; background: var(--gradient-soft); opacity: 0.5; }
.milestones-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; position: relative; z-index: 2; }

.milestone-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.milestone-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.milestone-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-mixed);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.75rem;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-glow-yellow);
}
.milestone-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.milestone-label { color: var(--text-light); font-size: 0.95rem; font-weight: 500; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-card {
    background: var(--primary-white);
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-mixed);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-soft);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.75rem;
    margin-bottom: 24px;
    transition: var(--transition);
}
.feature-card:hover .feature-icon { background: var(--gradient-mixed); color: var(--primary-white); transform: rotate(-5deg) scale(1.05); }
.feature-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.feature-card p { font-size: 0.95rem; margin: 0; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
.process-card {
    background: var(--primary-white);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.process-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-mixed);
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: var(--shadow-glow-yellow);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 2rem;
    margin: 20px auto 24px;
    transition: var(--transition);
}
.process-card:hover .process-icon { background: var(--gradient-mixed); color: var(--primary-white); transform: scale(1.1); }
.process-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.process-card p { font-size: 0.9rem; margin: 0; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.service-card {
    background: var(--primary-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }

.service-image { height: 220px; overflow: hidden; position: relative; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-card:hover .service-image img { transform: scale(1.1); }
.service-content { padding: 30px; }
.service-content h3 { font-size: 1.35rem; margin-bottom: 12px; }
.service-content p { font-size: 0.95rem; margin-bottom: 20px; }
.service-link { display: inline-flex; align-items: center; gap: 8px; color: var(--primary-red); font-weight: 600; font-size: 0.95rem; }
.service-link:hover { gap: 14px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1100px; margin: 0 auto; }
.pricing-card {
    background: var(--primary-white);
    border-radius: var(--border-radius-md);
    padding: 50px 40px;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
}
.pricing-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { background: var(--primary-black); color: var(--primary-white); border: none; transform: scale(1.05); box-shadow: var(--shadow-lg); }
.pricing-card.featured:hover { transform: scale(1.05) translateY(-10px); }

.pricing-badge { position: absolute; top: 20px; right: 20px; background: var(--gradient-mixed); color: var(--primary-white); padding: 6px 16px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; }
.pricing-name { font-size: 1rem; font-weight: 600; color: var(--primary-red); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.pricing-card.featured .pricing-name { color: var(--primary-yellow); }
.pricing-price { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 800; margin-bottom: 8px; line-height: 1; }
.pricing-price span { font-size: 1rem; font-weight: 400; opacity: 0.6; }
.pricing-desc { font-size: 0.95rem; margin-bottom: 30px; opacity: 0.7; }
.pricing-features { margin-bottom: 30px; }
.pricing-feature { display: flex; align-items: center; gap: 12px; padding: 10px 0; font-size: 0.95rem; }
.pricing-feature i { color: var(--primary-yellow); }
.pricing-card .btn { width: 100%; }

/* CTA */
.cta-section { background: var(--primary-black); color: var(--primary-white); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255, 213, 0, 0.2) 0%, transparent 70%); border-radius: 50%; filter: blur(60px); }
.cta-section::after { content: ''; position: absolute; bottom: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255, 77, 77, 0.15) 0%, transparent 70%); border-radius: 50%; filter: blur(60px); }
.cta-content { position: relative; z-index: 2; text-align: center; max-width: 800px; margin: 0 auto; }
.cta-content h2 { color: var(--primary-white); margin-bottom: 20px; }
.cta-content p { color: rgba(255, 255, 255, 0.7); font-size: 1.15rem; margin-bottom: 40px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Insurance */
.insurance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.insurance-image { border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.insurance-image img { width: 100%; height: 500px; object-fit: cover; }
.insurance-content h2 { margin-bottom: 20px; }
.insurance-features { margin-bottom: 30px; }
.insurance-feature { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--medium-gray); }
.insurance-feature:last-child { border-bottom: none; }
.insurance-feature-icon { width: 44px; height: 44px; background: var(--gradient-soft); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary-red); flex-shrink: 0; }
.insurance-feature h5 { margin-bottom: 4px; }
.insurance-feature p { margin: 0; font-size: 0.9rem; }

/* Forms */
.form-section { background: var(--light-gray); }
.form-container { max-width: 800px; margin: 0 auto; background: var(--primary-white); border-radius: var(--border-radius-lg); padding: 60px; box-shadow: var(--shadow-md); border: 1px solid var(--medium-gray); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.9rem; }
.form-control { width: 100%; padding: 14px 18px; border: 2px solid var(--medium-gray); border-radius: var(--border-radius-sm); font-size: 0.95rem; transition: var(--transition); background: var(--light-gray); }
.form-control:focus { border-color: var(--primary-red); background: var(--primary-white); box-shadow: 0 0 0 4px rgba(255, 77, 77, 0.1); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; margin-top: 10px; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.review-card { background: var(--primary-white); border: 1px solid var(--medium-gray); border-radius: var(--border-radius-md); padding: 35px; transition: var(--transition); position: relative; }
.review-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.review-quote { position: absolute; top: 20px; right: 25px; font-size: 3rem; color: var(--primary-yellow); opacity: 0.3; font-family: serif; line-height: 1; }
.review-stars { display: flex; gap: 4px; margin-bottom: 16px; color: var(--primary-yellow); }
.review-text { font-size: 0.95rem; color: var(--text-dark); margin-bottom: 24px; font-style: italic; line-height: 1.7; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--gradient-mixed); display: flex; align-items: center; justify-content: center; color: var(--primary-white); font-weight: 700; }
.review-author-info h5 { margin: 0 0 2px; font-size: 1rem; }
.review-author-info p { margin: 0; font-size: 0.85rem; color: var(--text-light); }

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--primary-white); border-radius: var(--border-radius-md); margin-bottom: 16px; overflow: hidden; border: 1px solid var(--medium-gray); transition: var(--transition); }
.faq-item.active { box-shadow: var(--shadow-md); border-color: transparent; }
.faq-question { padding: 24px 30px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; font-size: 1.05rem; }
.faq-question:hover { color: var(--primary-red); }
.faq-icon { width: 30px; height: 30px; background: var(--gradient-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-red); transition: var(--transition); flex-shrink: 0; }
.faq-item.active .faq-icon { background: var(--gradient-mixed); color: var(--primary-white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-content { padding: 0 30px 24px; color: var(--text-light); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info { background: var(--primary-black); color: var(--primary-white); border-radius: var(--border-radius-lg); padding: 50px 40px; position: relative; overflow: hidden; }
.contact-info::before { content: ''; position: absolute; top: -50%; right: -30%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(255, 213, 0, 0.2) 0%, transparent 70%); border-radius: 50%; filter: blur(40px); }
.contact-info-content { position: relative; z-index: 2; }
.contact-info h3 { color: var(--primary-white); margin-bottom: 16px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-item-icon { width: 48px; height: 48px; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary-yellow); flex-shrink: 0; }
.contact-item-text h5 { color: var(--primary-white); margin-bottom: 4px; }
.contact-item-text p, .contact-item-text a { color: rgba(255, 255, 255, 0.7); margin: 0; font-size: 0.95rem; }
.contact-item-text a:hover { color: var(--primary-yellow); }
.contact-social { display: flex; gap: 12px; margin-top: 30px; }
.contact-social a { width: 42px; height: 42px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-white); transition: var(--transition); }
.contact-social a:hover { background: var(--gradient-mixed); border-color: transparent; transform: translateY(-3px); }
.contact-form { background: var(--primary-white); border-radius: var(--border-radius-lg); padding: 50px 40px; box-shadow: var(--shadow-md); border: 1px solid var(--medium-gray); }
.contact-form h3 { margin-bottom: 30px; }

/* Footer */
.footer { background: var(--primary-black); color: var(--primary-white); padding: 80px 0 0; position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; position: relative; z-index: 2; margin-bottom: 60px; }
.footer-about .nav-logo { color: var(--primary-white); margin-bottom: 20px; }
.footer-about p { color: rgba(255, 255, 255, 0.6); margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-white); transition: var(--transition); }
.footer-social a:hover { background: var(--gradient-mixed); border-color: transparent; transform: translateY(-3px); }
.footer-column h4 { color: var(--primary-white); font-size: 1.1rem; margin-bottom: 24px; position: relative; padding-bottom: 12px; }
.footer-column h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--gradient-mixed); }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255, 255, 255, 0.6); font-size: 0.95rem; transition: var(--transition); }
.footer-links a:hover { color: var(--primary-yellow); transform: translateX(5px); }
.footer-newsletter p { color: rgba(255, 255, 255, 0.6); margin-bottom: 20px; }
.newsletter-form { display: flex; gap: 8px; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 50px; padding: 6px; }
.newsletter-form input { flex: 1; background: transparent; border: none; color: var(--primary-white); padding: 10px 18px; font-size: 0.9rem; }
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.4); }
.newsletter-form button { background: var(--gradient-mixed); color: var(--primary-white); border: none; padding: 10px 24px; border-radius: 50px; font-weight: 600; cursor: pointer; transition: var(--transition); }
.newsletter-form button:hover { transform: scale(1.05); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 24px 0; position: relative; z-index: 2; }
.footer-bottom-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { color: rgba(255, 255, 255, 0.5); font-size: 0.9rem; margin: 0; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255, 255, 255, 0.5); font-size: 0.9rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--primary-yellow); }

/* Page Header */
.page-header { background: var(--primary-black); color: var(--primary-white); padding: 180px 0 80px; position: relative; overflow: hidden; text-align: center; }
.page-header::before { content: ''; position: absolute; top: -30%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255, 213, 0, 0.2) 0%, transparent 70%); border-radius: 50%; filter: blur(60px); }
.page-header::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255, 77, 77, 0.15) 0%, transparent 70%); border-radius: 50%; filter: blur(60px); }
.page-header-content { position: relative; z-index: 2; }
.page-header h1 { color: var(--primary-white); margin-bottom: 16px; }
.page-header p { color: rgba(255, 255, 255, 0.7); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 12px; margin-top: 24px; font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); }
.breadcrumb a { color: var(--primary-yellow); }
.breadcrumb span { color: rgba(255, 255, 255, 0.4); }

/* Legal */
.legal-content { max-width: 900px; margin: 0 auto; }
.legal-content h2 { margin-top: 40px; margin-bottom: 16px; font-size: 1.75rem; }
.legal-content h3 { margin-top: 30px; margin-bottom: 12px; font-size: 1.35rem; }
.legal-content p { margin-bottom: 16px; font-size: 1rem; }
.legal-content ul { margin: 16px 0 16px 24px; list-style: disc; }
.legal-content ul li { margin-bottom: 8px; color: var(--text-light); }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-right.active { opacity: 1; transform: translateX(0); }

.scroll-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--gradient-mixed); color: var(--primary-white); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 999; box-shadow: var(--shadow-glow-yellow); }
.scroll-top.active { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-5px); }

.toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--primary-black); color: var(--primary-white); padding: 16px 30px; border-radius: 50px; box-shadow: var(--shadow-lg); z-index: 9999; opacity: 0; transition: var(--transition); display: flex; align-items: center; gap: 12px; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { background: linear-gradient(135deg, #10b981, #059669); }
.toast.error { background: linear-gradient(135deg, #ef4444, #dc2626); }

/* Responsive */
@media (max-width: 1024px) {
    .about-grid, .insurance-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-10px); }
}
@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .nav-menu { position: fixed; top: 70px; left: 0; right: 0; background: var(--primary-white); flex-direction: column; padding: 30px; gap: 20px; box-shadow: var(--shadow-md); transform: translateY(-150%); transition: var(--transition); border-top: 1px solid var(--medium-gray); }
    .nav-menu.active { transform: translateY(0); }
    .nav-toggle { display: flex; }
    .nav-cta { width: 100%; justify-content: center; }
    .hero { padding: 120px 0 60px; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
    .about-values { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-container { padding: 40px 24px; }
    .contact-form, .contact-info { padding: 35px 25px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    .cta-buttons { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
    .cta-buttons .btn { width: 100%; }
}
@media (max-width: 480px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.35rem; }
    .section-header { margin-bottom: 50px; }
    .hero-stat-number { font-size: 2rem; }
    .milestone-number { font-size: 2.5rem; }
    .pricing-price { font-size: 2.75rem; }
}