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

:root {
    /* Brand Colors */
    --primary-color: #1B2E4F;      /* Navy Blue */
    --primary-dark: #121C33;       /* Darker Navy */
    --primary-light: #2A3A5C;      /* Lighter Navy */

    /* Secondary Colors */
    --secondary-color: #E63946;    /* Red */
    --secondary-dark: #C62F3A;     /* Dark Red */
    --secondary-light: #FF6B6B;    /* Light Red */

    /* Sky Blue */
    --sky-blue: #5BB8E8;
    --field-green: #3A8C3F;

    /* Neutral Colors */
    --dark: #1f2937;
    --gray: #6b7280;
    --light-gray: #f3f4f6;
    --white: #ffffff;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-base: 16px;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* 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 ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ===========================
   Navigation
   =========================== */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-image {
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

.logo-text {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    display: block;
    color: var(--primary-color);
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    background-color: var(--light-gray);
    color: var(--secondary-color);
}

.nav-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
}
.nav-link:hover {
    background-color: var(--light-gray);
    color: var(--secondary-color);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}
.dropdown-arrow {
    font-size: 0.65rem;
    margin-left: 4px;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    list-style: none;
    min-width: 200px;
    padding: 6px 0;
    margin: 0;
    z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.92rem;
    white-space: nowrap;
    border-radius: 0;
}
.dropdown-menu li a:hover {
    background: var(--light-gray);
    color: var(--secondary-dark);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    background-image: url('https://d2vm0l3c6tu9qp.cloudfront.net/soccer_camp_main.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: var(--spacing-xxl) 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 39, 68, 0.85) 0%, rgba(26, 39, 68, 0.7) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-contact-link {
    display: inline-block;
    margin-top: var(--spacing-sm);
    color: #DC373E;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-contact-link:hover {
    text-decoration: underline;
}

.hero-tagline {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    color: var(--white);
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-xl);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: var(--spacing-xs);
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ===========================
   Features Section
   =========================== */
.features {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.feature-card p {
    color: var(--gray);
}

/* ===========================
   Section Titles
   =========================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: var(--spacing-xl);
    font-size: 1.125rem;
}

/* ===========================
   Camps Section
   =========================== */
/* ===========================
   Camps Section - Table Layout
   =========================== */
.camps {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-gray);
}

/* Camp Info Card */
.info-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    overflow: hidden;
    display: flex;
    margin: var(--spacing-xl) 0;
}

.uniform-panel {
    width: 280px;
    flex-shrink: 0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    border-right: 3px solid var(--secondary-color);
}

.uniform-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1B2E4F;
    margin-bottom: 12px;
    z-index: 1;
}

.uniform-img {
    width: 100%;
    max-width: 200px;
    border-radius: 10px;
    object-fit: contain;
    padding: 4px;
    z-index: 1;
}

.kit-tags {
    display: flex;
    gap: 6px;
    margin-top: 14px;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 1;
}

.kit-tag {
    font-size: 0.7rem;
    font-weight: 700;
    background: #1B2E4F;
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.nike-badge {
    margin-top: 14px;
    background: var(--secondary-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 1.5px;
    z-index: 1;
}

.included-note {
    margin-top: 10px;
    font-size: 0.72rem;
    color: #8a91a8;
    text-align: center;
    z-index: 1;
    font-style: italic;
}

.grid-panel {
    flex: 1;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 100%;
}

.grid-info-item {
    padding: 22px 18px;
    border-right: 1px solid #eef0f4;
    border-bottom: 1px solid #eef0f4;
    transition: background 0.2s ease;
}

.grid-info-item:hover {
    background: #fafbff;
}

.grid-info-item:nth-child(3n) {
    border-right: none;
}

.grid-info-item:nth-child(4),
.grid-info-item:nth-child(5),
.grid-info-item:nth-child(6) {
    border-bottom: none;
}

.grid-info-icon {
    font-size: 1.3rem;
    margin-bottom: 7px;
    display: block;
}

.grid-info-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #8a91a8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.grid-info-value {
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1f2e;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .info-card {
        flex-direction: column;
    }
    .uniform-panel {
        width: 100%;
        padding: 24px 20px;
    }
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-info-item:nth-child(3n) {
        border-right: 1px solid #eef0f4;
    }
    .grid-info-item:nth-child(2n) {
        border-right: none;
    }
    .grid-info-item:nth-child(4),
    .grid-info-item:nth-child(5) {
        border-bottom: 1px solid #eef0f4;
    }
    .grid-info-item:nth-child(5),
    .grid-info-item:nth-child(6) {
        border-bottom: none;
    }
}

/* Kit Image Popup */
.kit-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 10000; align-items: center; justify-content: center; }
.kit-overlay.active { display: flex; }
.kit-modal { position: relative; max-width: 500px; max-height: 90vh; background: white; border-radius: 8px; padding: 1rem; }
.kit-modal img { width: 100%; height: auto; border-radius: 4px; display: block; }
.kit-close { position: absolute; top: -12px; right: -12px; width: 32px; height: 32px; background: var(--secondary-color); color: white; border: none; border-radius: 50%; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; line-height: 1; }
.kit-close:hover { background: var(--secondary-dark); }
@media (max-width: 768px) {
    .kit-modal { max-width: 90vw; margin: 1rem; }
}

.camps-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

/* Left Side - Weeks Table */
.weeks-table {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.week-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.week-row:last-child {
    border-bottom: none;
}

.week-row:hover {
    background-color: var(--light-gray);
}

.week-row.active {
    background-color: var(--secondary-color);
    color: var(--white);
}

.week-row.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
}

.week-row.coming-soon:hover {
    background-color: var(--white);
}

.week-name {
    font-weight: 700;
    font-size: 1rem;
}

.week-date {
    font-size: 0.9rem;
    text-align: right;
}

/* Right Side - Details Panel */
.camp-details-panel {
    position: relative;
    min-height: 600px;
}

.detail-panel {
    display: none;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
}

.detail-panel.active {
    display: block;
}

.reg-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.25rem;
}
.reg-option {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.reg-option h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.reg-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}
.reg-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray);
}
.reg-savings {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}
.reg-option-best {
    border-color: var(--secondary-color);
    background: #fef7f7;
}
.best-value-badge {
    position: absolute;
    top: -12px;
    right: 16px;
    background: var(--secondary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.reg-option .btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    margin-top: auto;
}
.reg-option .btn:hover {
    background: var(--secondary-dark);
    transform: none;
    box-shadow: none;
}
@media (max-width: 600px) {
    .reg-options {
        grid-template-columns: 1fr;
    }
}

.multi-week-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 0.75rem;
    font-style: italic;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 3px solid var(--secondary-color);
}

.detail-header h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin: 0;
}

.popular-badge {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
}

.coming-soon-badge {
    background-color: var(--gray);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
}

.detail-info {
    margin-bottom: var(--spacing-lg);
}

.info-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 1.05rem;
    color: var(--dark);
}

.info-icon {
    font-size: 1.25rem;
}

.detail-contact-link {
    display: inline-block;
    margin-top: var(--spacing-xs);
    color: #DC373E;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
}

.detail-contact-link:hover {
    text-decoration: underline;
}

.age-groups-section {
    margin-bottom: var(--spacing-lg);
}

.age-groups-section h4 {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: var(--spacing-sm);
}

.age-badges {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
}

.age-badge {
    background-color: var(--light-gray);
    color: var(--primary-color);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
}

.price-section {
    text-align: center;
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md);
    background-color: var(--light-gray);
    border-radius: var(--radius-md);
}

.price-large {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.price-label {
    font-size: 1.125rem;
    color: var(--gray);
    margin-left: 0.5rem;
}

.features-list {
    list-style: none;
    margin: var(--spacing-lg) 0;
    padding: 0;
}

.features-list li {
    padding: var(--spacing-xs) 0;
    color: var(--primary-color);
    font-size: 1rem;
}

.welcome-message {
    background-color: #F5F5F5;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin: var(--spacing-md) 0;
}

.welcome-message p {
    margin: 0.5rem 0;
    color: var(--dark);
}

.welcome-message strong {
    color: var(--primary-color);
}

.welcome-message {
    background-color: #E3F2FD;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
    border-left: 4px solid var(--secondary-color);
}

.welcome-message p {
    margin: 0;
    color: var(--primary-color);
    line-height: 1.6;
}

.welcome-message p:first-child {
    margin-bottom: var(--spacing-xs);
}

.welcome-message strong {
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 968px) {
    .camps-layout {
        grid-template-columns: 1fr;
    }
    
    .weeks-table {
        margin-bottom: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .week-row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
    
    .week-status {
        margin-top: 0.5rem;
    }
}
   Blog Section
   =========================== */
.blog {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.blog-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid var(--light-gray);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.blog-image {
    position: relative;
    height: 200px;
    background-color: var(--light-gray);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
}

.blog-category-tag {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.blog-content {
    padding: var(--spacing-lg);
}

.blog-meta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--gray);
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.blog-content h3 a {
    color: var(--primary-color);
}

.blog-content h3 a:hover {
    color: var(--secondary-color);
}

.blog-content p {
    color: var(--gray);
    margin-bottom: var(--spacing-md);
}

.blog-link {
    color: var(--secondary-color);
    font-weight: 600;
}

.blog-link:hover {
    text-decoration: underline;
}

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

/* ===========================
   Registration Section - Responsive Layout
   =========================== */
.registration {
    padding: 4rem 0;
    background-color: var(--white);
}

/* Mobile First: Stack vertically */
.registration-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.registration-form-container {
    background-color: var(--white);
    order: 1;
}

.registration-sidebar {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
}

.included-card,
.bring-card {
    background-color: #E3F2FD;
}

.sidebar-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Desktop: Side by side */
@media (min-width: 969px) {
    .registration-wrapper {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
        align-items: start;
    }
    
    .registration-sidebar {
        position: sticky;
        top: 100px;
    }
}

/* ===========================
   Registration Form Styling
   =========================== */
.registration-form h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 2rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.registration-form h3:first-of-type {
    margin-top: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-size: 1rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    margin: 2rem 0;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.form-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 8px;
    margin: 2rem 0;
}

.total-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
}

.total-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   Mobile Navigation
   =========================== */
@media (max-width: 768px) {
    .nav-wrapper {
        flex-wrap: wrap;
    }

    .logo-text {
        font-size: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none !important;
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding-top: var(--spacing-sm);
        background: var(--white);
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-menu a,
    .nav-menu .nav-link {
        padding: 0.75rem var(--spacing-sm);
        border-radius: 0;
        border-top: 1px solid var(--light-gray);
        color: var(--primary-color);
        background: var(--white);
    }

    .dropdown-arrow { display: none; }
    .dropdown-menu {
        display: block;
        position: static;
        box-shadow: none;
        background: var(--white);
        padding: 0;
        min-width: 0;
    }
    .dropdown-menu li a {
        padding-left: 2rem;
        font-size: 0.88rem;
        color: var(--primary-color);
        border-top: 1px solid var(--light-gray);
        background: var(--white);
    }
}

/* ===========================
   FAQ Section Styling
   =========================== */
.faq {
    padding: 4rem 0;
    background-color: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #d1d5db;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #374151;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
        padding: 1.25rem;
    }
    
    .faq-answer p {
        padding: 0 1.25rem 1.25rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* ===========================
   Contact Section Styling
   =========================== */
.contact {
    padding: 4rem 0;
    background: #f9fafb;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #6b7280;
    margin: 0;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: var(--secondary-dark);
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===========================
   Footer
   =========================== */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-xxl) 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.social-links a svg {
    width: 20px;
    height: 20px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: var(--spacing-md) 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}
