/* =========================================
   DAPPER LAUNDRY - DESIGN SYSTEM
   ========================================= */

:root {
    /* Color Palette */
    --clr-white: #ffffff;
    --clr-black: #050505;
    
    --clr-dark: #121212;
    --clr-dark-charcoal: #1c1c1e;
    --clr-dark-border: rgba(255, 255, 255, 0.1);
    
    --clr-gray-light: #f5f5f7;
    --clr-gray: #8e8e93;
    
    --clr-blue: #2f80ed;
    --clr-blue-light: #4c9aff;
    --clr-blue-dark: #1e5ab8;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Shadows & Effects */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.12);
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-blur: blur(12px);

    --glass-bg-dark: rgba(28, 28, 30, 0.7);
    --glass-border-dark: rgba(255, 255, 255, 0.1);
    --glass-blur-dark: blur(20px);
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--clr-black);
}

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

ul {
    list-style: none;
}

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

/* =========================================
   UTILITIES
   ========================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--clr-gray);
    margin-bottom: var(--spacing-md);
    max-width: 600px;
}

.text-center { text-align: center; }
.text-gradient {
    background: linear-gradient(135deg, var(--clr-blue), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-white { color: var(--clr-white); }
.text-gray { color: var(--clr-gray); }
.text-gray-light { color: rgba(255, 255, 255, 0.7); }
.text-blue { color: var(--clr-blue); }

.bg-light { background-color: var(--clr-gray-light); }
.bg-dark { background-color: var(--clr-dark-charcoal); }
.bg-gradient-blue { background: linear-gradient(135deg, var(--clr-blue-dark), var(--clr-blue)); }

.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }
.mb-3 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 3rem; }
.w-100 { width: 100%; }
.max-w-700 { max-width: 700px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-fast);
}

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

.btn-primary {
    background-color: var(--clr-blue);
    color: var(--clr-white);
    box-shadow: 0 8px 24px rgba(47, 128, 237, 0.3);
}

.btn-primary:hover {
    background-color: var(--clr-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(47, 128, 237, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--clr-white);
}

.btn-white {
    background-color: var(--clr-white);
    color: var(--clr-blue-dark);
}

.btn-white:hover {
    background-color: var(--clr-gray-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--clr-dark-charcoal);
    color: var(--clr-white);
}

/* Glassmorphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.glass-card-dark {
    background: var(--glass-bg-dark);
    backdrop-filter: var(--glass-blur-dark);
    -webkit-backdrop-filter: var(--glass-blur-dark);
    border: 1px solid var(--glass-border-dark);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    color: var(--clr-white);
}

.hover-lift {
    transition: var(--transition-smooth);
}
.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* =========================================
   NAVIGATION
   ========================================= */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Specific styling for scrolled nav text */
#navbar.scrolled .nav-links a { color: var(--clr-dark); }
#navbar.scrolled .logo { color: var(--clr-black); }

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-white); /* Initial state is over dark hero */
}

.logo-icon {
    color: var(--clr-blue);
    font-size: 1.2rem;
}

.logo-accent {
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--clr-blue);
}

.mobile-menu-toggle {
    display: none;
    color: var(--clr-white);
    font-size: 1.5rem;
    cursor: pointer;
}

#navbar.scrolled .mobile-menu-toggle {
    color: var(--clr-dark);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--clr-white);
    z-index: 2000;
    padding: 2rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-close {
    align-self: flex-end;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--clr-dark);
    margin-bottom: 2rem;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mobile-nav-links a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--clr-dark);
}

/* =========================================
   HERO SECTION
   ========================================= */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.05); /* Slight zoom for animation */
    animation: zoomOut 20s ease-out infinite alternate;
}

@keyframes zoomOut {
    from { transform: scale(1.05); }
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 12, 0.9) 0%, rgba(10, 10, 12, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 5rem; /* Account for navbar */
}

.hero-text {
    max-width: 650px;
}

.tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--clr-white);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.tagline i { color: #f59e0b; }

#hero h1 {
    font-size: 4rem;
    color: var(--clr-white);
    margin-bottom: 1.5rem;
}

#hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--clr-white);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--clr-blue);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--clr-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image-wrapper {
    position: relative;
    padding: 2rem;
}

.about-card {
    background: var(--clr-white);
    border: 1px solid rgba(0,0,0,0.05);
}

.about-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(47, 128, 237, 0.1);
    color: var(--clr-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.check-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.check-list li i {
    color: #10b981;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--clr-white);
    border: none;
    text-align: left;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--clr-blue-light), var(--clr-blue));
    color: var(--clr-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--clr-gray);
    font-size: 0.95rem;
}

/* =========================================
   HOW IT WORKS (TIMELINE)
   ========================================= */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    height: 100%;
    width: 2px;
    background: rgba(47, 128, 237, 0.2);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--clr-blue);
    color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    z-index: 2;
    box-shadow: 0 0 0 8px rgba(47, 128, 237, 0.1);
}

.timeline-content {
    background: var(--clr-white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    flex: 1;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

/* =========================================
   APP SECTION
   ========================================= */
.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.floating-img {
    max-height: 600px;
    animation: float 6s ease-in-out infinite;
}

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

.floating-badge {
    position: absolute;
    bottom: 10%;
    right: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    animation: float 6s ease-in-out infinite;
    animation-delay: 1s;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.floating-badge i {
    font-size: 1.5rem;
}

.badge-text strong {
    display: block;
    font-size: 0.9rem;
}

.badge-text span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.app-buttons {
    display: flex;
    gap: 1rem;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #000;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}

.store-btn:hover {
    background: #222;
}

.store-btn i {
    font-size: 2rem;
}

.store-text {
    display: flex;
    flex-direction: column;
}

.store-text span {
    font-size: 0.65rem;
    text-transform: uppercase;
}

.store-text strong {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1;
}

/* =========================================
   FOOTER
   ========================================= */
#footer {
    background: var(--clr-dark);
    color: var(--clr-white);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    color: var(--clr-white);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--clr-gray);
}

.footer-links a:hover {
    color: var(--clr-blue);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--clr-gray);
}

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

.contact-info i {
    color: var(--clr-blue);
    margin-top: 0.25rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-links a:hover {
    background: var(--clr-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--clr-gray);
    font-size: 0.875rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a:hover {
    color: var(--clr-white);
}

/* Footer Accordion Base */
.accordion-icon {
    display: none;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* =========================================
   BOOKING MODAL (GLASSMORPHISM)
   ========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.booking-modal {
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .booking-modal {
    transform: translateY(0);
}

/* Hide scrollbar for modal */
.booking-modal::-webkit-scrollbar {
    width: 0;
}

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

.modal-close:hover {
    background: rgba(255,255,255,0.2);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    color: var(--clr-white);
    margin-bottom: 1.5rem;
}

/* Progress Bar */
.progress-bar-container {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    margin-bottom: 1rem;
    position: relative;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--clr-blue);
    border-radius: 4px;
    width: 25%;
    transition: width 0.3s ease;
}

.step-indicators {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.step-indicator {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-indicator.active {
    background: var(--clr-blue);
    color: var(--clr-white);
    box-shadow: 0 0 10px rgba(47, 128, 237, 0.5);
}

.step-indicator.completed {
    background: var(--clr-blue-dark);
    color: var(--clr-white);
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    color: var(--clr-white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.form-section h3 {
    color: var(--clr-white);
    font-size: 1.1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

/* Inputs */
.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 1rem;
    color: rgba(255,255,255,0.5);
}

.input-with-icon.align-top i {
    top: 1rem;
}

.input-with-icon input, 
.input-with-icon textarea,
.modern-input {
    width: 100%;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--clr-white);
    border-radius: 12px;
    padding: 1rem 1rem 1rem 3rem; /* Left padding for icon */
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.2s;
}

.modern-input {
    padding: 1rem;
}

.input-with-icon textarea {
    resize: vertical;
}

.input-with-icon input:focus, 
.input-with-icon textarea:focus,
.modern-input:focus {
    outline: none;
    border-color: var(--clr-blue);
    background: rgba(0,0,0,0.3);
}

.input-with-icon input::placeholder, 
.input-with-icon textarea::placeholder,
.modern-input::placeholder {
    color: rgba(255,255,255,0.3);
}

/* Dark mode inputs override */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

select option {
    background: var(--clr-dark-charcoal);
    color: var(--clr-white);
}

.datetime-selectors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.input-with-button {
    display: flex;
    gap: 0.5rem;
}

.input-with-button input {
    flex: 1;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--clr-white);
    border-radius: 12px;
    padding: 1rem;
}

/* Radio Cards */
.radio-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.radio-card {
    cursor: pointer;
    position: relative;
}

.radio-card input {
    position: absolute;
    opacity: 0;
}

.radio-card .card-content {
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.2s;
}

.radio-card input:checked + .card-content {
    border-color: var(--clr-blue);
    background: rgba(47, 128, 237, 0.1);
}

.radio-card .card-content h4 {
    color: var(--clr-white);
    margin-bottom: 0.25rem;
}

.radio-card .card-content p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

/* Order Summary box */
.order-summary {
    background: rgba(47, 128, 237, 0.1);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(47, 128, 237, 0.2);
    font-size: 0.9rem;
}

/* Form Actions */
.form-actions {
    display: flex;
    margin-top: 2rem;
}

.form-actions.right {
    justify-content: flex-end;
}

.form-actions.space-between {
    justify-content: space-between;
}

/* =========================================
   ANIMATIONS & MOBILE STYLES
   ========================================= */

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

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}



/* Responsive Media Queries */
@media (max-width: 992px) {
    #hero h1 { font-size: 3rem; }
    
    .about-grid, .app-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image-wrapper { order: -1; }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-toggle { display: block; }
    
    #hero h1 { font-size: 2.25rem; }
    .hero-buttons { flex-direction: column; }
    
    .timeline::before { left: 25px; }
    .timeline-item { gap: 1rem; }
    .timeline-icon { width: 40px; height: 40px; min-width: 40px; font-size: 1rem; margin-left: 5px;}
    
    .datetime-selectors { grid-template-columns: 1fr; }
    
    .section { padding: 4rem 0; }
    .modal-body { padding: 0.5rem; }
    .modal-header h2 { font-size: 1.25rem; }
    #footer { padding-bottom: 2rem; }
}

@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; gap: 1rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    
    .stats-grid { grid-template-columns: 1fr; gap: 1rem; text-align: center;}

    /* Mobile Accordion Styles */
    .accordion-icon {
        display: block;
    }
    .accordion-header {
        cursor: pointer;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 0 !important;
    }
    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        opacity: 0;
    }
    .accordion-content.open {
        max-height: 400px;
        opacity: 1;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .accordion-item.active .accordion-icon {
        transform: rotate(180deg);
    }
    
    #franchise .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .about-image-wrapper {
        padding: 0;
    }
    
    .about-card {
        padding: 1.5rem;
    }
    
    .check-list li {
        font-size: 0.95rem;
    }
}
