/* ==========================================
   Global Styles & Variables
   ========================================== */

:root {
    /* Colors */
    --primary-color: #1a2332;
    --secondary-color: #d4af37;
    --accent-color: #2c5f8d;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #6b7280;
    --bg-light: #f9fafb;
    --bg-dark: #0f172a;
    --success: #10b981;
    --border-color: #e5e7eb;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-padding: 20px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ==========================================
   Typography
   ========================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* ==========================================
   Buttons
   ========================================== */

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--secondary-color), #b8941f);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #b8941f, var(--secondary-color));
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button.large {
    padding: 22px 48px;
    font-size: 1.2rem;
}

.btn-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* ==========================================
   Section Headers
   ========================================== */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary-color);
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   Hero Section
   ========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
    color: var(--text-light);
    padding: 100px 20px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../images/bgc.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.hero-overlay { 
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-badge i {
    color: var(--secondary-color);
    animation: float 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-title .highlight {
    color: var(--secondary-color);
    position: relative;
    background: linear-gradient(90deg, var(--secondary-color), #fff, var(--secondary-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 50px;
    opacity: 0.95;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 50px 0;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--secondary-color);
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 1.1s both, pulse 2s ease-in-out 2s infinite;
}

.hero-trust {
    font-size: 0.95rem;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--secondary-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ==========================================
   About Section
   ========================================== */

.about {
    padding: var(--section-padding) 0;
    background-color: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.image-placeholder:hover img {
    transform: scale(1.05);
}

.image-placeholder i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.3);
}

.about-badge-float {
    position: absolute;
    bottom: -20px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
}

.about-badge-float i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.about-badge-float strong {
    display: block;
    font-size: 0.95rem;
    color: var(--primary-color);
}

.about-badge-float span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.about-content h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.about-role {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.about-focus,
.about-education {
    margin-bottom: 30px;
}

.about-focus h4,
.about-education h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-focus h4 i,
.about-education h4 i {
    color: var(--secondary-color);
}

.focus-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.about-education ul {
    list-style: none;
}

.about-education li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-gray);
}

.about-education li:last-child {
    border-bottom: none;
}

.about-education strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 4px;
}

.philosophy {
    margin-top: 40px;
    padding: 30px;
    background: white;
    border-left: 4px solid var(--secondary-color);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    position: relative;
}

.philosophy i {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.3;
}

.philosophy cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

/* ==========================================
   Journey/Timeline Section
   ========================================== */

.journey {
    padding: var(--section-padding) 0;
    background: white;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--secondary-color), var(--accent-color));
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 60px;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), #b8941f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.1);
    z-index: 1;
}

.timeline-icon i {
    font-size: 1.5rem;
    color: white;
}

.timeline-content {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.timeline-year {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.timeline-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-gray);
}

.timeline-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* ==========================================
   Benefits Section
   ========================================== */

.benefits {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, white 0%, var(--bg-light) 100%);
}

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

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--secondary-color);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), #b8941f);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

.cta-center {
    text-align: center;
}

/* ==========================================
   Testimonials Section
   ========================================== */

.testimonials {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    object-fit: cover;
}

.testimonial-header h5 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-date {
    font-size: 0.85rem;
    color: var(--text-gray);
    opacity: 0.7;
}

/* ==========================================
   Final CTA Section
   ========================================== */

.final-cta {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-content > p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-feature i {
    color: var(--success);
    font-size: 1.5rem;
}

.cta-note {
    margin-top: 20px;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ==========================================
   Footer
   ========================================== */

.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-bottom .disclaimer {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ==========================================
   Fixed CTA Button
   ========================================== */

.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
   
    padding: 12px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fixed-button {
    padding: 14px 28px;
    font-size: 0.95rem;
    white-space: nowrap;
    max-width: 90vw;
}

/* ==========================================
   Responsive Design
   ========================================== */

@media (max-width: 968px) {
    :root {
        --section-padding: 60px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-icon {
        width: 45px;
        height: 45px;
        left: -7.5px;
    }
    
    .timeline-icon i {
        font-size: 1.2rem;
    }
    
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        gap: 20px;
    }
}

@media (max-width: 640px) {
    :root {
        --section-padding: 50px;
        --container-padding: 15px;
    }
    
    .hero {
        padding: 50px 15px;
        min-height: 90vh;
        text-align: center;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
        gap: 6px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        gap: 15px;
        margin: 30px 0;
    }
    
    .stat-item {
        flex: 1 1 auto;
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .section-header {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .cta-button {
        padding: 14px 20px;
        font-size: 0.95rem;
        width: max-content;
    }
    
    .cta-button.large {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    .btn-icon {
        width: 20px;
        height: 20px;
    }
    
    .hero-trust {
        font-size: 0.85rem;
    }
    
    /* Fixed button optimization */
    .fixed-cta {
        padding: 10px 10px;
        padding-bottom: max(10px, env(safe-area-inset-bottom));
    }
    
    .fixed-button {
        padding: 12px 16px;
        font-size: 0.85rem;
        width: calc(100vw - 20px);
        max-width: calc(100vw - 20px);
    }
    
    .fixed-button .btn-icon {
        width: 18px;
        height: 18px;
    }
    
    .fixed-button .btn-text {
        font-size: 0.85rem;
    }
    
    /* About section mobile */
    .about-badge-float {
        position: static;
        margin-top: 20px;
        justify-content: center;
        text-align: center;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-content h3 {
        font-size: 2rem;
    }
    
    .about-role {
        font-size: 1rem;
    }
    
    .focus-tags {
        justify-content: center;
    }
    
    .philosophy {
        padding: 20px;
        font-size: 0.95rem;
    }
    
    /* Timeline mobile */
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-content h4 {
        font-size: 1.2rem;
    }
    
    /* Benefits mobile */
    .benefit-card {
        padding: 30px 20px;
        text-align: center;
    }
    
    .benefit-icon {
        margin: 0 auto 20px;
    }
    
    .benefit-card h4 {
        font-size: 1.1rem;
    }
    
    .benefit-card p {
        font-size: 0.95rem;
    }
    
    /* Testimonials mobile */
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-avatar {
        width: 70px;
        height: 70px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .rating {
        justify-content: center;
    }
    
    /* Final CTA mobile */
    .final-cta {
        padding: 60px 0 80px;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        padding: 0 10px;
    }
    
    .cta-content > p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .cta-feature {
        font-size: 0.95rem;
    }
    
    /* Footer mobile */
    .footer {
        padding: 40px 0 100px;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col ul {
        padding: 0;
    }
}

/* ==========================================
   Modal Styles
   ========================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-in-out;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    margin: 20px;
    padding: 0;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 30px;
    position: relative;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.8rem;
    font-family: var(--font-display);
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) rotate(90deg);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(90vh - 120px);
}

.modal-body h4 {
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.modal-body p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.modal-body ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.modal-body ul li {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 8px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ==========================================
   Animations
   ========================================== */

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    }
}

/* Scroll animations can be added with JavaScript */
.fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-in-out;
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* Hover effects */
.benefit-card,
.testimonial-card,
.timeline-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button {
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover::before {
    left: 100%;
}

