/* ============================================
   Issa Window Tinting — Custom Styles
   Deep Navy + Warm Gold | Fresh & Airy
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:        #1a2f4e;
    --navy-deep:   #0f1d33;
    --navy-light:  #2a4470;
    --gold:        #c8a45a;
    --gold-light:  #dfc07a;
    --gold-pale:   #f5e6b8;
    --cream:       #faf8f4;
    --cream-warm:  #f7f3ec;
    --white:       #ffffff;
    --text:        #1a1f2e;
    --text-muted:  #5a6275;
    --text-light:  #8a90a0;
    --radius:      16px;
    --radius-sm:   10px;
    --shadow-sm:   0 2px 8px rgba(26, 47, 78, 0.06);
    --shadow-md:   0 8px 30px rgba(26, 47, 78, 0.10);
    --shadow-lg:   0 20px 60px rgba(26, 47, 78, 0.12);
    --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
address { font-style: normal; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Skip link */
.skip-link {
    position: absolute; top: -100%; left: 16px;
    background: var(--navy); color: var(--white);
    padding: 8px 16px; border-radius: var(--radius-sm);
    z-index: 9999; font-size: 0.875rem;
    transition: top var(--transition);
}
.skip-link:focus { top: 16px; }

/* ---------- Decoration Blobs ---------- */
.page-wrapper { position: relative; }
.decoration { position: fixed; border-radius: 50%; filter: blur(80px); opacity: 0.4; pointer-events: none; z-index: 0; }
.blob-1 { width: 500px; height: 500px; background: var(--gold-pale); top: -100px; right: -100px; }
.blob-2 { width: 400px; height: 400px; background: #d4e4f7; bottom: 20%; left: -100px; }
.blob-3 { width: 300px; height: 300px; background: var(--gold-pale); bottom: -50px; right: 20%; }

/* ---------- Header ---------- */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(250, 248, 244, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 47, 78, 0.06);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 76px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--gold) 100%);
    border-radius: 10px;
    position: relative;
}
.logo-icon::after {
    content: ''; position: absolute; top: 8px; left: 8px; right: 8px; bottom: 14px;
    border: 2px solid rgba(255,255,255,0.6); border-radius: 3px;
}
.logo-text {
    font-size: 1.25rem; font-weight: 700; color: var(--navy);
    letter-spacing: -0.02em;
}
.logo-text .accent { color: var(--gold); }

/* Nav */
.nav-list { display: flex; align-items: center; gap: 8px; }
.nav-link {
    padding: 8px 16px; border-radius: 8px;
    font-size: 0.9375rem; font-weight: 500; color: var(--text-muted);
    transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--navy); background: rgba(26, 47, 78, 0.05); }
.nav-cta {
    display: flex; align-items: center; gap: 6px;
    padding: 10px 20px; border-radius: 50px;
    background: var(--navy); color: var(--white);
    font-size: 0.875rem; font-weight: 600;
    transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--navy-light); transform: translateY(-1px); }

/* Mobile toggle */
.mobile-toggle {
    display: none; flex-direction: column; gap: 5px;
    padding: 8px; border-radius: 8px;
    transition: background var(--transition);
}
.mobile-toggle:hover { background: rgba(26, 47, 78, 0.05); }
.mobile-toggle[aria-expanded="true"] .bar-1 { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle[aria-expanded="true"] .bar-2 { opacity: 0; }
.mobile-toggle[aria-expanded="true"] .bar-3 { transform: rotate(-45deg) translate(5px, -5px); }
.bar { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .nav { 
        position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
        background: rgba(250, 248, 244, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 32px 24px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 99;
    }
    .nav.open { transform: translateX(0); }
    .nav-list { flex-direction: column; align-items: stretch; gap: 4px; }
    .nav-link { font-size: 1.125rem; padding: 14px 16px; }
    .nav-cta { justify-content: center; margin-top: 16px; font-size: 1rem; }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 50px;
    font-size: 0.9375rem; font-weight: 600;
    transition: all var(--transition);
}
.btn-primary {
    background: var(--navy); color: var(--white);
    box-shadow: 0 4px 16px rgba(26, 47, 78, 0.25);
}
.btn-primary:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26, 47, 78, 0.3); }
.btn-ghost {
    background: transparent; color: var(--navy);
    border: 2px solid rgba(26, 47, 78, 0.15);
}
.btn-ghost:hover { border-color: var(--navy); background: rgba(26, 47, 78, 0.04); }
.btn-full { width: 100%; justify-content: center; }

/* ---------- Section Shared ---------- */
.section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.8125rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--gold); margin-bottom: 12px;
}
.section-tag::before {
    content: ''; width: 24px; height: 2px;
    background: var(--gold); border-radius: 2px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600; color: var(--navy);
    line-height: 1.2; margin-bottom: 16px;
}
.section-desc {
    font-size: 1.0625rem; color: var(--text-muted);
    max-width: 560px; line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-desc { margin: 0 auto; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: 140px 0 0;
    overflow: hidden;
    background: linear-gradient(160deg, var(--cream) 0%, #f0ebe0 50%, var(--cream-warm) 100%);
}
.hero-wave {
    position: absolute; bottom: 0; left: 0; right: 0;
    color: var(--cream);
}
.hero-wave svg { width: 100%; height: 80px; display: block; }

.hero-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
    padding-bottom: 100px;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 50px;
    background: rgba(200, 164, 90, 0.12);
    color: var(--gold); font-size: 0.8125rem; font-weight: 600;
    margin-bottom: 24px;
}
.badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gold);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 600; line-height: 1.15;
    color: var(--navy); margin-bottom: 24px;
}
.text-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 1.125rem; color: var(--text-muted);
    line-height: 1.8; margin-bottom: 36px;
    max-width: 480px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }

.hero-stats {
    display: flex; align-items: center; gap: 0;
    padding: 24px 0;
    border-top: 1px solid rgba(26, 47, 78, 0.08);
}
.stat { display: flex; flex-direction: column; gap: 4px; min-width: 80px; }
.stat-number { font-size: 1.75rem; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-label { font-size: 0.8125rem; color: var(--text-light); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: rgba(26, 47, 78, 0.1); margin: 0 24px; }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-image-wrapper { position: relative; }
.hero-image-glow {
    position: absolute; inset: -20px;
    background: radial-gradient(ellipse at center, rgba(200, 164, 90, 0.2) 0%, transparent 70%);
    border-radius: 32px; z-index: 0;
    animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.03); }
}
.hero-image {
    position: relative; z-index: 1;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    width: 100%; height: auto;
    aspect-ratio: 6/7;
    object-fit: cover;
}
.hero-float-card {
    position: absolute; z-index: 2;
    display: flex; align-items: center; gap: 10px;
    padding: 14px 20px; border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: var(--shadow-md);
    font-size: 0.875rem; font-weight: 600; color: var(--navy);
    animation: float 4s ease-in-out infinite;
}
.hero-float-card svg { color: var(--gold); flex-shrink: 0; }
.hero-float-card.card-1 { top: 15%; left: -30px; animation-delay: 0s; }
.hero-float-card.card-2 { bottom: 20%; right: -20px; animation-delay: 2s; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { max-width: 480px; margin: 0 auto; }
    .hero-float-card.card-1 { left: 0; }
    .hero-float-card.card-2 { right: 0; }
}

/* ---------- Services ---------- */
.services {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    position: relative;
    padding: 36px 28px;
    border-radius: var(--radius);
    background: var(--cream);
    border: 1px solid transparent;
    transition: all var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 164, 90, 0.2);
    background: var(--white);
}
.service-card.featured {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
    border-color: transparent;
    color: var(--white);
}
.service-card.featured .service-title { color: var(--white); }
.service-card.featured .service-desc { color: rgba(255,255,255,0.75); }
.service-card.featured .service-features li { color: rgba(255,255,255,0.8); }
.service-card.featured .service-features li::before { color: var(--gold); }
.service-card.featured .service-icon-wrap { background: rgba(200, 164, 90, 0.15); color: var(--gold); }

.service-badge {
    position: absolute; top: -12px; left: 28px;
    padding: 4px 14px; border-radius: 50px;
    background: var(--gold); color: var(--navy-deep);
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.05em;
}
.service-icon-wrap {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(200, 164, 90, 0.1); color: var(--gold);
    margin-bottom: 20px;
    transition: background var(--transition);
}
.service-card:hover .service-icon-wrap { background: rgba(200, 164, 90, 0.2); }
.service-title {
    font-size: 1.1875rem; font-weight: 700; color: var(--navy);
    margin-bottom: 10px; line-height: 1.3;
}
.service-desc { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.service-features { display: flex; flex-direction: column; gap: 8px; }
.service-features li {
    font-size: 0.875rem; color: var(--text-muted);
    padding-left: 18px; position: relative;
}
.service-features li::before {
    content: '✓'; position: absolute; left: 0;
    color: var(--gold); font-weight: 700;
}

@media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
    .services { padding: 70px 0; }
}

/* ---------- Why Us ---------- */
.why-us {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream) 0%, #f0ebe0 100%);
}
.why-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.why-content .section-tag { text-align: left; }
.why-content .section-title { text-align: left; }
.why-content .section-desc { margin-bottom: 40px; }

.why-features { display: flex; flex-direction: column; gap: 28px; }
.why-feature { display: flex; gap: 20px; }
.why-feature-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid rgba(200, 164, 90, 0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    box-shadow: var(--shadow-sm);
}
.why-feature h4 { font-size: 1.0625rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.why-feature p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; }

.why-visual { position: relative; }
.why-image-stack { position: relative; }
.why-img-main {
    border-radius: 24px; overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.why-img-main img { width: 100%; aspect-ratio: 5/6; object-fit: cover; }
.why-img-secondary {
    position: absolute; bottom: -30px; right: -30px;
    border-radius: 16px; overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}
.why-img-secondary img { width: 100%; aspect-ratio: 7/5; object-fit: cover; }

.why-experience-badge {
    position: absolute; top: -20px; left: -20px;
    background: var(--navy); color: var(--white);
    padding: 20px 24px; border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex; flex-direction: column; align-items: center;
    animation: float 5s ease-in-out infinite;
}
.why-experience-badge .exp-number {
    font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.why-experience-badge .exp-label { font-size: 0.75rem; font-weight: 500; opacity: 0.8; text-align: center; margin-top: 4px; }

@media (max-width: 900px) {
    .why-inner { grid-template-columns: 1fr; gap: 60px; }
    .why-content .section-tag, .why-content .section-title { text-align: center; }
    .why-content .section-desc { margin-left: auto; margin-right: auto; }
    .why-img-secondary { right: -10px; bottom: -20px; }
    .why-experience-badge { left: -10px; top: -10px; }
}

/* ---------- Gallery ---------- */
.gallery {
    padding: 100px 0;
    background: var(--white);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.gallery-item {
    position: relative; border-radius: var(--radius);
    overflow: hidden; cursor: pointer;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15, 29, 51, 0.8) 0%, transparent 60%);
    display: flex; align-items: flex-end; padding: 20px;
    opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    color: var(--white); font-size: 0.9375rem; font-weight: 600;
}

@media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

/* ---------- Process ---------- */
.process {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
    position: relative; overflow: hidden;
}
.process::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(200, 164, 90, 0.08) 0%, transparent 60%);
}
.process .section-tag { color: var(--gold-light); }
.process .section-title { color: var(--white); }
.process .section-desc { color: rgba(255,255,255,0.6); }

.process-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; position: relative; z-index: 1;
}
.process-step {
    text-align: center; padding: 32px 20px;
    position: relative;
}
.step-number {
    font-size: 3rem; font-weight: 700;
    color: rgba(200, 164, 90, 0.15);
    line-height: 1; margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}
.step-icon {
    width: 64px; height: 64px; margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
}
.process-step h3 {
    font-size: 1.0625rem; font-weight: 700; color: var(--white);
    margin-bottom: 8px;
}
.process-step p {
    font-size: 0.875rem; color: rgba(255,255,255,0.55);
    line-height: 1.7;
}
.step-connector {
    display: none;
}

@media (max-width: 900px) {
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
}
@media (max-width: 480px) {
    .process-steps { grid-template-columns: 1fr; }
}

/* ---------- Contact ---------- */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
}
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: start;
}
.contact-info .section-tag { text-align: left; }
.contact-info .section-title { text-align: left; }
.contact-info .section-desc { margin-bottom: 36px; }

.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid rgba(200, 164, 90, 0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    box-shadow: var(--shadow-sm);
}
.contact-label {
    display: block; font-size: 0.8125rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.05em;
    color: var(--text-light); margin-bottom: 2px;
}
.contact-value {
    display: block; font-size: 1rem; font-weight: 500;
    color: var(--navy); line-height: 1.6;
}
.contact-value a { color: var(--navy); transition: color var(--transition); }
.contact-value a:hover { color: var(--gold); }

.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }

/* Form */
.form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(26, 47, 78, 0.05);
}
.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 600; color: var(--navy);
    margin-bottom: 6px;
}
.form-subtitle { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
    font-size: 0.875rem; font-weight: 600; color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid rgba(26, 47, 78, 0.12);
    border-radius: var(--radius-sm);
    font-family: inherit; font-size: 0.9375rem;
    color: var(--text); background: var(--cream);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 164, 90, 0.15);
    background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
    text-align: center; padding: 40px 20px;
}
.success-icon { color: #34c77a; margin-bottom: 16px; }
.form-success h4 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.form-success p { font-size: 0.9375rem; color: var(--text-muted); }

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-info .section-tag, .contact-info .section-title { text-align: center; }
    .contact-info .section-desc { margin-left: auto; margin-right: auto; }
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 28px; }
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.6);
    padding: 60px 0 0;
}
.footer-inner {
    display: grid; grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px; padding-bottom: 48px;
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { margin-top: 16px; font-size: 0.9375rem; line-height: 1.7; max-width: 300px; }
.footer-links h4, .footer-contact h4 {
    font-size: 0.875rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--gold); margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 0.9375rem; color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact address { display: flex; flex-direction: column; gap: 8px; font-size: 0.9375rem; }
.footer-contact a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
    font-size: 0.8125rem;
}

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

/* ---------- Scroll Animations ---------- */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
