/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #0a2e21; /* Deeper, more premium green */
    --secondary-green: #144f38;
    --accent-green: #23855f;
    --gold: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dark: #aa8c2c;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #f1f5f9;
    --dark-gray: #0f172a;
    --text-gray: #475569;
    --text-light: #94a3b8;
    --border-gray: #e2e8f0;
    
    /* Modern Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(10, 46, 33, 0.08);
    --shadow-lg: 0 20px 40px rgba(10, 46, 33, 0.12);
    --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.3);
    
    --gradient-primary: linear-gradient(135deg, #0a2e21 0%, #144f38 100%);
    --gradient-gold: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa8c2c 100%);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-gray);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--off-white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

html { scroll-behavior: smooth; }

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.fade-up { transform: translateY(40px); }

/* --- Navigation Bar --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-md);
    padding: 15px 0;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}
.navbar.scrolled .logo {
    background: rgba(10, 46, 33, 0.05);
}
.logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}
.navbar.scrolled .logo:hover {
    background: rgba(10, 46, 33, 0.1);
}
.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    /* Remove white background */
    background: white;
    padding: 4px;
    border-radius: 8px;
}
.logo i { color: var(--gold); }
.logo span { 
    font-weight: 300; 
    opacity: 0.8;
    font-size: 1.2rem;
    letter-spacing: 2px;
}
.navbar.scrolled .logo { color: var(--primary-green); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.navbar.scrolled .nav-links a { color: var(--primary-green); }
.nav-links a:hover { color: var(--gold); }
.nav-links .btn { color: var(--primary-green); } /* Button text always correct */

.mobile-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.navbar.scrolled .mobile-menu-toggle {
    border-color: rgba(10, 46, 33, 0.15);
    background: rgba(10, 46, 33, 0.06);
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar.scrolled .mobile-menu-toggle span {
    background: var(--primary-green);
}

.mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 46, 33, 0.5);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1100;
}

.mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 360px);
    height: 100vh;
    background: linear-gradient(180deg, rgba(10, 46, 33, 0.98) 0%, rgba(20, 79, 56, 0.98) 100%);
    color: var(--white);
    z-index: 1200;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    padding: 28px 24px 32px;
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.18);
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
}

.mobile-menu-logo {
    width: 68px;
    background: var(--white);
    border-radius: 12px;
    padding: 6px;
}

.mobile-menu-close {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    cursor: pointer;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.mobile-menu-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--gold-light);
    transform: translateX(4px);
}

.mobile-menu-cta {
    background: var(--gradient-gold);
    color: var(--primary-green);
    font-weight: 700;
}

.mobile-menu-cta:hover {
    color: var(--primary-green);
    background: var(--gradient-gold);
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.82);
}

.mobile-menu-social {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.mobile-menu-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    text-decoration: none;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-family: 'Inter', sans-serif;
}
.btn-sm { padding: 10px 24px; font-size: 0.9rem; }
.btn-large { padding: 18px 40px; font-size: 1.1rem; }

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-green) !important;
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}
.btn-outline:hover {
    background: var(--primary-green);
    color: var(--white);
}
.glow-effect {
    position: relative;
    overflow: hidden;
}
.glow-effect::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 3s infinite;
}
@keyframes shine { 100% { left: 200%; } }

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 60px;
}
.hero-bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* High quality subtle architectural/business background */
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80') center/cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10, 46, 33, 0.95) 0%, rgba(20, 79, 56, 0.85) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}
.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}
.hero-title-highlight {
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto 40px;
}
.glass-panel {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
}
.date-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 500;
}
.date-item i { color: var(--gold); font-size: 1.2rem; }
.date-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.2); }
.hero-cta { display: flex; gap: 20px; justify-content: center; }
.scroll-indicator {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    z-index: 2; animation: bounce 2s infinite;
}
.scroll-indicator a { color: var(--gold); font-size: 2rem; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-15px); } }

/* --- Sections Setup --- */
section { padding: 120px 0; }
section:nth-child(even) { background: var(--off-white); }
section:nth-child(odd) { background: var(--white); }

.section-header { text-align: center; margin-bottom: 70px; }
.section-label {
    display: inline-block;
    color: var(--gold-dark);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.section-header h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); color: var(--primary-green); }
.divider {
    width: 60px; height: 3px; background: var(--gradient-gold);
    margin: 20px auto; border-radius: 3px;
}
.section-header p {
    font-size: 1.15rem; max-width: 600px; margin: 0 auto; color: var(--text-gray);
}

/* --- About Section (Bento Grid) --- */
.about {
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Stats Counter */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
    padding: 50px 0;
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold-dark);
    transition: all 0.4s ease;
}

.stat-item:hover .stat-icon {
    background: var(--gradient-gold);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Enhanced Feature Cards */
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-bottom: 80px;
}

.feature-enhanced {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-gray);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.feature-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-enhanced:hover::before {
    transform: scaleX(1);
}

.feature-enhanced:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.08);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    transition: all 0.4s ease;
}

.feature-enhanced:hover .feature-number {
    color: rgba(212, 175, 55, 0.15);
    transform: scale(1.1);
}

.feature-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 28px;
}

.feature-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 20px;
    opacity: 0.1;
    transform: rotate(0deg);
    transition: all 0.5s ease;
}

.feature-enhanced:hover .feature-icon-bg {
    transform: rotate(45deg) scale(1.1);
    opacity: 0.2;
}

.feature-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-dark);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.5s ease;
    z-index: 1;
}

.feature-enhanced:hover .feature-icon {
    background: var(--gradient-gold);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.feature-enhanced h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.feature-enhanced:hover h3 {
    color: var(--primary-green);
}

.feature-enhanced p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--light-gray);
    color: var(--text-gray);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-enhanced:hover .tag {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-dark);
}

/* Expectations Section */
.expectations-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    padding: 70px 50px;
    border-radius: 30px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.expectations-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.expectations-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 50px;
    position: relative;
}

.expectations-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 20px auto 0;
    border-radius: 2px;
}

.expectations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.expectation-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s ease;
}

.expectation-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
}

.expectation-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold-light);
    transition: all 0.4s ease;
}

.expectation-item:hover .expectation-icon {
    background: var(--gradient-gold);
    color: var(--primary-green);
    transform: scale(1.1) rotate(10deg);
}

.expectation-item h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.expectation-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-number {
        font-size: 3rem;
        top: 15px;
        right: 20px;
    }
    
    .expectations-section {
        padding: 50px 30px;
        border-radius: 20px;
    }
    
    .expectations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* --- Contact Section --- */
.contact-info { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.contact-item {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-gray);
}
.contact-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.icon-wrapper {
    width: 70px; height: 70px; margin: 0 auto 20px;
    background: var(--light-gray); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--primary-green);
    transition: all 0.3s ease;
}
.contact-item:hover .icon-wrapper { background: var(--primary-green); color: var(--gold); }
.contact-item h3 { margin-bottom: 10px; font-size: 1.3rem; }
.contact-item a { color: var(--text-gray); text-decoration: none; font-weight: 500; }
.contact-item a:hover { color: var(--primary-green); }

/* --- Footer --- */
.footer {
    background: var(--primary-green);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
    text-align: center;
}
.footer-logo {
    font-family: 'Playfair Display', serif; 
    font-size: 1.8rem; 
    color: var(--white); 
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.footer-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    /* Add white background for visibility */
    background: white;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.footer-logo span {
    font-weight: 600;
    letter-spacing: 3px;
}
.footer-logo i { color: var(--gold); }
.footer-powered { margin-top: 15px; font-size: 0.85rem; color: rgba(255,255,255,0.4); }

/* Mobile Adaptations */
@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .mobile-menu-toggle { display: inline-flex; }
    .hero-cta { flex-direction: column; }
    .glass-panel { flex-direction: column; gap: 10px; padding: 20px; border-radius: 20px; }
    .date-divider { display: none; }
}

/* --- Registration Modal --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(10, 46, 33, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--white);
    margin: 3% auto;
    padding: 0;
    border-radius: 24px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    overflow: hidden;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 30px;
    position: relative;
}

.modal-header h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.modal-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--white);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group.field-error-state input,
.form-group.field-error-state select,
.form-group.field-error-state textarea {
    border-color: #dc2626;
    background: #fef2f2;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.field-error-message {
    display: block;
    margin-top: 8px;
    color: #dc2626;
    font-size: 0.88rem;
    font-weight: 600;
}

.payment-info {
    background: var(--light-gray);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 24px;
    border-left: 4px solid var(--gold);
}

.payment-info h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.payment-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-gray);
}

.payment-detail:last-child {
    border-bottom: none;
}

.payment-detail strong {
    color: var(--dark-gray);
    font-weight: 600;
}

.payment-detail span {
    color: var(--text-gray);
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

.form-navigation {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.form-navigation button {
    flex: 1;
}

.success-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
    color: var(--white);
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-message h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.success-message p {
    color: var(--text-gray);
    margin-bottom: 12px;
}

.reference-number {
    background: var(--light-gray);
    padding: 16px;
    border-radius: 12px;
    margin: 24px 0;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
}

/* Mobile Modal Adjustments */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-body {
        padding: 24px;
    }
    
    .modal-header {
        padding: 24px;
    }
    
    .form-navigation {
        flex-direction: column;
    }
}
