/* ============================================================
   Mind Power University — MPU FEST 2026
   assets/css/style.css  |  Complete Latest Version
   Colors: Dark Blue, Royal Blue, White, Gold, Dark Red
   ============================================================ */

:root {
    --primary:        #0a1628;
    --primary-mid:    #0d2144;
    --royal:          #1a3a6b;
    --royal-light:    #2563eb;
    --accent:         #f59e0b;
    --accent-light:   #fbbf24;
    --gold:           #d4af37;
    --gold-light:     #f0d060;
    --dark-red:       #8b1a1a;
    --crimson:        #c0392b;
    --crimson-light:  #e74c3c;
    --white:          #ffffff;
    --off-white:      #f8fafc;
    --gray-50:        #f9fafb;
    --gray-100:       #f3f4f6;
    --gray-200:       #e5e7eb;
    --gray-400:       #9ca3af;
    --gray-600:       #4b5563;
    --gray-800:       #1f2937;
    --success:        #10b981;
    --danger:         #ef4444;
    --glass-bg:       rgba(255,255,255,0.07);
    --glass-border:   rgba(255,255,255,0.15);
    --shadow-sm:      0 1px 3px rgba(0,0,0,0.1);
    --shadow-md:      0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg:      0 10px 40px rgba(0,0,0,0.18);
    --shadow-xl:      0 20px 60px rgba(0,0,0,0.25);
    --radius-sm:      8px;
    --radius-md:      14px;
    --radius-lg:      20px;
    --radius-xl:      28px;
    --transition:     all 0.3s cubic-bezier(0.4,0,0.2,1);
    --font-main:      'Inter', sans-serif;
    --font-display:   'Playfair Display', serif;
}

/* ══════════════════════════════════════════════════════════
   RESET
══════════════════════════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    background: #f0f4f8;
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ══════════════════════════════════════════════════════════
   CONTAINER
══════════════════════════════════════════════════════════ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}


/* ══════════════════════════════════════════════════════════
   NAVBAR — White background
══════════════════════════════════════════════════════════ */
.navbar {
    background: #ffffff;
    border-bottom: 3px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    min-height: 74px;
    gap: 16px;
    position: relative;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
}
.logo-text-fallback {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.logo-mpu {
    font-size: 24px;
    font-weight: 900;
    color: var(--royal);
    letter-spacing: 3px;
    line-height: 1;
}
.logo-sub {
    font-size: 9px;
    color: var(--gray-600);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Phone numbers — center */
.nav-phones {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.nav-phone-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    background: linear-gradient(135deg, var(--royal), var(--royal-light));
    color: #ffffff;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.3px;
}
.nav-phone-item i {
    font-size: 11px;
    color: var(--gold);
}
.nav-phone-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26,58,107,0.35);
}
.nav-phone-divider {
    width: 1px;
    height: 24px;
    background: var(--gray-200);
    margin: 0 2px;
}

/* Right side */
.nav-right {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.nav-links {
    display: flex;
    gap: 2px;
    align-items: center;
}
.nav-links a {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    color: var(--gray-800);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.nav-links a:hover {
    background: var(--royal);
    color: #ffffff;
}
.nav-links a i { font-size: 12px; }

/* Hamburger — hidden desktop */
.nav-toggle {
    display: none;
    background: var(--royal);
    border: none;
    color: #ffffff;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
    align-items: center;
    justify-content: center;
}
.nav-toggle:hover { background: var(--royal-light); }

/* ── Mobile ── */
@media (max-width: 900px) {
    .nav-phones { display: none; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-phones { display: none; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--primary);
        border-top: 2px solid var(--gold);
        padding: 12px;
        flex-direction: column;
        gap: 4px;
        z-index: 999;
        box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }
    .nav-links.open { display: flex; }
    .nav-links a {
        width: 100%;
        padding: 12px 16px;
        border-radius: 8px;
        color: rgba(255,255,255,0.85);
    }
    .nav-links a:hover { background: rgba(255,255,255,0.1); color: #fff; }

    /* Mobile phone numbers — show in menu */
    .nav-links.open::before {
        content: '';
        display: block;
        height: 1px;
        background: rgba(255,255,255,0.1);
        margin: 4px 0 8px;
    }
}

@media (max-width: 480px) {
    .nav-container { padding: 10px 16px; min-height: 64px; }
    .nav-logo img  { height: 46px; }
}



/* ══════════════════════════════════════════════════════════
   HERO BANNER
   — Pure image, no overlay, no text
   — JS sets desktop / mobile image dynamically
   Desktop image : 1920 × 600 px  → fest-banner-desktop.jpg
   Mobile  image :  768 × 480 px  → fest-banner-mobile.jpg
   Place both in: assets/images/
══════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════
   HERO BANNER — Responsive fix
══════════════════════════════════════════════════════════ */
.hero-banner {
    background-color: #0a1628;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    /* 
       Desktop: 1920x600 → aspect ratio 3.2:1
       Hum aspect-ratio use karenge taaki image kabhi crop na ho
    */
    aspect-ratio: 1920 / 600;
    min-height: 400px;
    max-height: 700px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    position: relative;
    overflow: hidden;
}

/* Gold top accent line */
.hero-banner::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dark-red), var(--gold), var(--dark-red));
    z-index: 3;
}

/* No grid, no overlay */
.hero-banner::before { display: none; }

/* Hide all inner text content */
.hero-inner         { display: none; }
.hero-badge         { display: none; }
.hero-title         { display: none; }
.hero-subtitle      { display: none; }
.hero-meta          { display: none; }
.hero-divider       { display: none; }
.hero-cta           { display: none; }
.hero-cta-secondary { display: none; }
.hero-particles     { display: none; }

/* Scroll arrow */
.hero-scroll {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    animation: bounce-down 2s infinite;
    cursor: pointer;
    background: rgba(0,0,0,0.4);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(6px);
    transition: var(--transition);
    flex-shrink: 0;
}
.hero-scroll:hover {
    background: rgba(212,175,55,0.4);
    border-color: rgba(212,175,55,0.7);
    color: var(--gold);
}
@keyframes bounce-down {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(8px); }
}

/* ── Tablet ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-banner {
        aspect-ratio: 1920 / 600;
        min-height: 300px;
    }
}

/* ── Mobile — JS switches to 768x480 image ──────────── */
@media (max-width: 768px) {
    .hero-banner {
        /* Mobile image: 768x480 → aspect ratio 16:10 */
        aspect-ratio: 768 / 480;
        min-height: 240px;
        max-height: 520px;
        background-position: center center;
        padding-bottom: 14px;
    }
}

/* ── Small mobile ────────────────────────────────────── */
@media (max-width: 480px) {
    .hero-banner {
        aspect-ratio: 768 / 480;
        min-height: 200px;
    }
}

/* ══════════════════════════════════════════════════════════
   REGISTRATION SECTION
══════════════════════════════════════════════════════════ */
.registration-section {
    padding: 64px 0 90px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(139,26,26,0.08);
    color: var(--dark-red);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    border: 1px solid rgba(139,26,26,0.15);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.section-desc {
    color: var(--gray-600);
    max-width: 540px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   STEPS BAR
══════════════════════════════════════════════════════════ */
.steps-bar {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 44px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.step-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-400);
    transition: var(--transition);
    flex: 1;
    justify-content: center;
    white-space: nowrap;
}
.step-item:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.step-item:last-child  { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.step-item.active {
    background: linear-gradient(135deg, var(--royal), var(--royal-light));
    color: var(--white);
    border-color: var(--royal);
    box-shadow: 0 4px 16px rgba(26,58,107,0.3);
}
.step-item.done {
    background: linear-gradient(135deg, #059669, #10b981);
    color: var(--white);
    border-color: #059669;
}
.step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   FORM CARD
══════════════════════════════════════════════════════════ */
.form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow:
        0 8px 48px rgba(10,22,40,0.12),
        0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid var(--gray-100);
}

/* Form Card Header */
.form-card-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--royal) 60%, var(--dark-red) 100%);
    padding: 32px 48px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}
.form-card-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--accent-light), var(--gold));
}
.form-card-header .header-icon {
    width: 58px;
    height: 58px;
    background: rgba(255,255,255,0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 26px;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.15);
}
.form-card-header h2 {
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: -0.3px;
}
.form-card-header p { color: rgba(255,255,255,0.65); font-size: 13px; }
.form-card-header p span { color: var(--gold-light); }

/* Form Body */
.form-body { padding: 44px 48px; }

/* ══════════════════════════════════════════════════════════
   FORM FIELDS
══════════════════════════════════════════════════════════ */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.form-grid .full-width { grid-column: 1 / -1; }

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: 7px;
    letter-spacing: 0.2px;
}
.form-label i {
    color: var(--royal);
    font-size: 12px;
    width: 14px;
    text-align: center;
}
.form-label .required {
    color: var(--crimson);
    font-size: 14px;
    margin-left: 1px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8ecf0;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 14.5px;
    color: var(--gray-800);
    background: #fafbfc;
    transition: var(--transition);
    outline: none;
    letter-spacing: 0.1px;
}
.form-control:hover {
    border-color: #c5d0e0;
    background: var(--white);
}
.form-control:focus {
    border-color: var(--royal);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(26,58,107,0.08);
}
.form-control.error {
    border-color: var(--crimson);
    background: #fff8f8;
    box-shadow: 0 0 0 4px rgba(192,57,43,0.08);
}
select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a3a6b' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 44px;
}

.form-hint {
    font-size: 11.5px;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 4px;
}
.error-msg {
    font-size: 12px;
    color: var(--crimson);
    display: none;
    align-items: center;
    gap: 5px;
}
.error-msg.show { display: flex; }

/* Same as mobile row */
.same-mobile-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}
.same-mobile-row input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: var(--royal);
    cursor: pointer;
}
.same-mobile-row label {
    font-size: 12px;
    color: var(--gray-600);
    cursor: pointer;
}

/* ══════════════════════════════════════════════════════════
   PHOTO UPLOAD
══════════════════════════════════════════════════════════ */
.photo-upload-area {
    border: 2px dashed #d0d8e4;
    border-radius: var(--radius-md);
    padding: 36px 32px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}
.photo-upload-area:hover,
.photo-upload-area.dragover {
    border-color: var(--royal);
    background: #f0f4ff;
}
.photo-upload-area input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.photo-upload-icon {
    font-size: 44px;
    color: var(--royal);
    margin-bottom: 12px;
    display: block;
}
.photo-upload-area .upload-text {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 5px;
}
.photo-upload-area .upload-text strong { color: var(--royal-light); }
.photo-upload-area .upload-hint {
    font-size: 12px;
    color: var(--gray-400);
}
.photo-preview { display: none; }
.photo-preview img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--gold);
    margin: 0 auto 12px;
    box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}

/* ══════════════════════════════════════════════════════════
   PRIVACY NOTE
══════════════════════════════════════════════════════════ */
.privacy-note {
    background: linear-gradient(135deg, #f0f7ff, #e8f4ff);
    border: 1px solid #b8d8f8;
    border-left: 4px solid var(--royal-light);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    margin: 24px 0;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.privacy-note i {
    color: var(--royal-light);
    margin-top: 2px;
    font-size: 15px;
    flex-shrink: 0;
}
.privacy-note p {
    font-size: 13px;
    color: #1e5a9c;
    margin: 0;
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   SUBMIT BUTTON
══════════════════════════════════════════════════════════ */
.btn-submit {
    width: 100%;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--royal) 0%, var(--royal-light) 50%, var(--dark-red) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
    letter-spacing: 0.8px;
    box-shadow: 0 6px 28px rgba(26,58,107,0.35);
    text-transform: uppercase;
}
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(26,58,107,0.45);
}
.btn-submit:active { transform: translateY(0); }
.btn-submit .btn-icon {
    font-size: 18px;
    transition: transform 0.3s;
}
.btn-submit:hover .btn-icon { transform: translateX(5px); }

/* ══════════════════════════════════════════════════════════
   ALERT MESSAGES
══════════════════════════════════════════════════════════ */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}
.alert-success {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 1px solid #a7f3d0;
    color: #065f46;
    border-left: 4px solid #10b981;
}
.alert-danger {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 1px solid #fecaca;
    color: #7f1d1d;
    border-left: 4px solid var(--crimson);
}
.alert i {
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   GENERAL BUTTONS
══════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.3px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--royal), var(--royal-light));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(37,99,235,0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,99,235,0.4);
}
.btn-success {
    background: linear-gradient(135deg, #059669, #10b981);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(16,185,129,0.3);
}
.btn-success:hover { transform: translateY(-2px); }
.btn-gold {
    background: linear-gradient(135deg, #b8860b, var(--gold));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(212,175,55,0.4);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,175,55,0.5);
}
.btn-red {
    background: linear-gradient(135deg, var(--dark-red), var(--crimson));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(139,26,26,0.35);
}
.btn-red:hover { transform: translateY(-2px); }
.btn-whatsapp {
    background: linear-gradient(135deg, #075e54, #25d366);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .form-card    { max-width: 96%; }
    .form-body    { padding: 36px 36px; }
    .form-card-header { padding: 28px 36px; }
    .hero-banner  { min-height: 500px; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Navbar mobile */
    .nav-toggle { display: flex; align-items: center; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--primary);
        border-top: 1px solid rgba(255,255,255,0.1);
        padding: 12px;
        flex-direction: column;
        gap: 4px;
        z-index: 999;
        box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    }
    .nav-links.open { display: flex; }
    .nav-links a {
        width: 100%;
        padding: 12px 16px;
        border-radius: 8px;
    }

    /* Banner */
    .hero-banner  { min-height: 380px; padding-bottom: 16px; }

    /* Form */
    .form-grid            { grid-template-columns: 1fr; gap: 20px; }
    .form-grid .full-width{ grid-column: 1; }
    .form-body            { padding: 28px 24px; }
    .form-card-header     { padding: 22px 24px; flex-direction: column; text-align: center; }
    .form-card-header .header-icon { margin: 0 auto; }

    /* Steps */
    .steps-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        max-width: 340px;
    }
    .step-item { border-radius: var(--radius-sm) !important; justify-content: flex-start; }

    .registration-section { padding: 44px 0 60px; }
    .section-header       { margin-bottom: 32px; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 480px)
══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .container      { padding: 0 16px; }
    .hero-banner    { min-height: 260px; }
    .form-body      { padding: 20px 16px; }
    .form-card-header { padding: 20px 16px; }
    .form-control   { font-size: 14px; padding: 12px 14px; }
    .photo-upload-area { padding: 24px 16px; }
    .photo-upload-icon { font-size: 34px; }
    .btn-submit     { font-size: 14px; padding: 15px; }
    .steps-bar      { max-width: 100%; }
    .section-title  { font-size: 24px; }
    .form-card-header h2 { font-size: 18px; }
    .nav-container  { padding: 10px 16px; min-height: 60px; }
    .nav-logo img   { height: 40px; }
}