/* Base Styles */
:root {
    /* Colors */
    --primary-red: #DC2626;
    --primary-yellow: #FDE047;
    --accent-red: #EF4444;
    --accent-yellow: #FACC15;
    --dark: #1F2937;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --white: #FFFFFF;
    --black: #000000;
    
    /* Gradient Text */
    --gradient-started: linear-gradient(135deg, #F59E0B 0%, #FCD34D 100%);
    
    /* Typography */
    --font-sans: 'Montserrat', system-ui, -apple-system, sans-serif;
    --font-heading: 'Montserrat', system-ui, -apple-system, sans-serif;
    --font-script: 'Dancing Script', cursive;
    --font-accent: 'Dancing Script', cursive;
    
    /* Layout */
    --container-width: 1280px;
    --section-padding: 4rem 1rem;
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--gray-900);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

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

ul, ol {
    list-style: none;
}

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

/* Utility Classes */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

/* Make the red CTA section more compact */
section.bg-red:has(.cta-buttons) {
    padding: 3rem 0;
}

section.bg-red:has(.cta-buttons) .section-subtitle {
    margin-bottom: 1.5rem !important;
}

section.bg-red:has(.cta-buttons) .cta-buttons {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

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

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

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

.bg-red {
    background-color: var(--primary-red);
    color: var(--white) !important;
}

.bg-yellow {
    background-color: var(--primary-yellow);
}

.bg-gray-50 {
    background-color: var(--gray-50);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-red);
    color: white;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
    background-color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-white {
    background-color: white;
    color: var(--primary-red);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn-white:hover {
    background-color: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: calc(0.75rem - 2px) calc(1.5rem - 2px);
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Navigation - DISABLED (Using hamburger-menu.css instead) */
/* .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    min-height: 5rem;
}

.logo-container {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0 0 0 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0.5rem 0;
    margin: 0;
}

.logo-img {
    height: 3rem;
    width: auto;
    transition: transform 0.2s ease;
    border-radius: 0;
}

.logo-link:hover .logo-img {
    transform: scale(1.03);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.desktop-nav {
    display: none;
    gap: 1rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-900);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link.active {
    color: var(--primary-red);
    font-weight: 600;
} */

/* Gradient Text */
.gradient-started {
    color: #F59E0B !important; /* Fallback solid color */
    background: linear-gradient(135deg, #F59E0B 0%, #FCD34D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-emphasis-color: transparent;
    display: inline-block;
    font-weight: 700;
    background-size: 100%;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFF3B0 0%, #FFB300 100%);
    padding: 8rem 0 6rem;
    text-align: center;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 2.5rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.badge {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.badge i {
    margin-right: 0.5rem;
    color: var(--primary-red);
    font-size: 1rem;
}

/* Content Blocks */
.grid {
    display: grid;
    gap: 2rem;
}

.content-block {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.content-block:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card {
    border-radius: var(--border-radius-lg);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

/* Check List */
.checklist {
    margin: 1.5rem 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.bg-red .checklist li,
.bg-red .checklist li i {
    color: white !important;
}

.checklist i {
    color: var(--primary-yellow);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

/* Eligibility Section */
.eligibility-subtitle {
    color: white !important;
    font-size: 1.1rem;
    margin-bottom: 1.25rem !important;
    opacity: 0.9;
}

.eligibility-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.eligibility-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: white;
    line-height: 1.6;
}

.eligibility-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
}

.btn-yellow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-yellow);
    color: var(--gray-900) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.btn-yellow:hover {
    background-color: #facc15;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: var(--gray-900) !important;
}

/* Key Facts Section */
.key-facts-section {
    margin: 2.5rem 0;
}

.key-facts-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--gray-800);
    text-align: center;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.fact-box {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.25rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    text-align: center;
}

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

.fact-icon {
    width: 48px;
    height: 48px;
    background: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.875rem;
    color: white;
    font-size: 1.25rem;
}

.fact-box h4 {
    font-size: 1.1rem;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.fact-box p {
    color: var(--gray-600);
    margin-bottom: 0;
    font-size: 0.875rem;
    line-height: 1.4;
    flex-shrink: 0;
}

/* Section Headings */
.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--gray-900);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--white) !important;
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    line-height: 1.7;
}

/* Update text color for better visibility in the Getting Started section */
.bg-gray-50 .section-subtitle {
    color: var(--gray-800) !important;
    font-weight: 500;
}

/* Text color for section subtitles */
.section:not(.bg-red):not(.bg-gray-50) .section-subtitle {
    color: var(--gray-900) !important;
    text-shadow: none;
}

/* Info Boxes */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.info-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.info-box h3 {
    color: var(--primary-yellow);
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.info-box h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-yellow);
    border-radius: 3px;
}

.info-content p {
    margin: 0.8rem 0;
    color: white;
    line-height: 1.6;
}

.info-content strong {
    color: var(--primary-yellow);
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .info-boxes {
        grid-template-columns: 1fr;
    }
}

/* Registration Section */
.registration-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.registration-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    color: white;
}

.registration-item h3,
.registration-item p {
    color: white !important;
}

.registration-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.registration-icon {
    width: 5rem;
    height: 5rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: white;
}

.registration-details {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    margin-top: 2rem;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.details-grid h4 {
    color: var(--primary-yellow);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.details-grid h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3rem;
    height: 2px;
    background-color: var(--primary-yellow);
}

.details-grid p, 
.details-grid ul {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.details-grid ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.details-grid ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
}

/* Steps Section */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #000000 !important;
}

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

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.step-card p {
    margin-bottom: 1.25rem;
    line-height: 1.6;
    color: #000000 !important;
}

.step-card h3,
.step-card h4,
.step-card h5,
.step-card h6 {
    color: #000000 !important;
}

.step-list,
.step-list li,
.step-list a,
.step-list span {
    color: #000000 !important;
}

.step-list {
    margin-top: auto;
    padding-left: 1.5rem;
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary-yellow);
    color: var(--gray-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-card:nth-child(odd) .step-number {
    background-color: var(--primary-red);
    color: white;
}

.step-card h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--gray-900);
}

.step-list {
    margin-top: 1.5rem;
}

.step-list li {
    margin-bottom: 0.5rem;
    color: var(--gray-700);
    position: relative;
    padding-left: 1.25rem;
}

.step-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* Categories Section */
.categories-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    margin-top: 2rem;
}

.categories-card h3 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--gray-900);
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.category-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--gray-50);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.category-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.category-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.category-item h4 {
    margin: 0 0 0.25rem;
    font-size: 1.125rem;
    color: var(--gray-900);
}

.category-item p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--gray-600);
}

/* Process Section */
.process-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .process-container {
        grid-template-columns: 1fr 1fr;
        align-items: flex-start;
    }
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.process-step .step-number {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    margin: 0;
}

.process-step:nth-child(even) .step-number {
    background-color: var(--primary-yellow);
    color: var(--gray-900);
}

.step-content h4 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    color: var(--gray-900);
}

.step-content p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.process-benefits {
    margin: 0;
    text-align: left;
    width: 100%;
    padding: 0;
    border: none;
}

.benefits-card {
    margin: 0;
    max-width: 100%;
    background: linear-gradient(135deg, #FFF3B0 0%, #FFB300 50%, #FFA500 100%);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.benefits-card .btn-primary {
    margin: 1.5rem auto 0;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    align-self: center;
    width: auto;
}

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

.benefits-card h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--gray-900);
    text-align: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.benefit-item i {
    font-size: 1.75rem;
    color: var(--primary-red);
    margin-top: 0.25rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.15);
}

.benefit-item:hover i {
    transform: scale(1.1);
}

.benefit-item h4 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    color: var(--gray-900);
    font-weight: 600;
}

.benefit-item p {
    margin: 0;
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.5;
}

/* CTA Section */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
    justify-content: center;
    align-items: center;
}

.quick-contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-contact-item {
    text-align: center;
}

.quick-contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    color: white;
}

.quick-contact-item h3 {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
    color: white;
}

.quick-contact-item a {
    color: var(--primary-yellow);
    font-weight: 500;
    transition: var(--transition);
}

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

/* Footer - DISABLED (Using global.css footer styles instead) */
/* All footer styles moved to global.css for consistency across all pages */

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--primary-red);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--accent-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Scroll Animations */
.section-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure smooth scrolling for the whole page */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Base Mobile Styles (applies to all screen sizes) */
.container {
    width: 100%;
    padding: 0 1.25rem;
    margin: 0 auto;
}

/* Responsive Typography */
h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }

/* Mobile Navigation */
.nav-container {
    padding: 0.5rem 1rem;
    position: relative;
}

/* Mobile Menu - DISABLED (Using hamburger-menu.css instead) */
/* .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 1002;
}

.hamburger {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--gray-900);
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--gray-900);
    left: 0;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 90%;
    padding: 2rem;
}

.mobile-nav-link {
    color: white;
    font-size: 1.25rem;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background-color: var(--primary-red);
    color: white;
}

@media (max-width: 1023px) {
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
    }
    
    .desktop-nav {
        display: none;
    }
} */

.logo-img {
    height: 2.5rem; /* Slightly smaller on mobile */
}

/* Mobile Layout Adjustments */
.section {
    padding: 3rem 0;
}

/* Responsive Styles */
@media (min-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 640px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.375rem;
    }
    
    .badges {
        flex-direction: row;
    }
    
    .registration-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: row;
    }
    
    .quick-contact {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    /* Mobile-specific styles */
    .desktop-nav {
        display: none;
    }
    
    .hero {
        padding: 6rem 0 4rem;
        margin-top: 4rem;
    }
    
    .hero h1 {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .content-block, .info-box, .card {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    
    .hamburger {
        display: none;
    }
    
    .section {
        padding: 6rem 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.375rem;
    }
    
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .process-steps {
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2.5rem;
    }
    
    .hero {
        padding: 10rem 0 8rem;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .registration-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .container {
        padding: 0;
    }
}
