/* ========================================
   Mike Coating & Maintenance - Stylesheet
   ======================================== */

/* CSS Variables */
:root {
    --brand-blue: #1B4F72;
    --brand-blue-dark: #154360;
    --brand-orange: #E67E22;
    --brand-orange-light: #F39C12;
    --brand-orange-hover: #D35400;
    --navy: #1A1D2B;
    --white: #ffffff;
    --off-white: #F8F9FA;
    --light-gray: #F5F6F7;
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --text-tertiary: #94A3B8;
    --border-light: #E2E8F0;
    --success: #10B981;
    --font: 'Inter', system-ui, sans-serif;
    --radius: 0.625rem;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --nav-height: 72px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text-primary); line-height: 1.6; background: var(--white); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* Container */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 3rem; } }

/* ========================================
   NAVIGATION
   ======================================== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; height: var(--nav-height); background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-light); transition: box-shadow 0.3s; }
.navbar.scrolled { box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-icon { width: 2.5rem; height: 2.5rem; background: var(--brand-blue); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1.125rem; }
.logo-img { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; object-fit: cover; }
.logo-name { display: block; font-weight: 700; font-size: 1.125rem; color: var(--brand-blue); line-height: 1.2; }
.logo-tagline { display: block; font-size: 0.625rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.2; }

.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-link { font-size: 0.875rem; font-weight: 500; color: var(--text-primary); transition: color 0.15s; padding-bottom: 2px; }
.nav-link:hover { color: var(--brand-orange); }
.nav-link.active { color: var(--brand-blue); border-bottom: 2px solid var(--brand-orange); }

.mobile-toggle { display: none; flex-direction: column; gap: 4px; padding: 8px; z-index: 60; }
.hamburger { display: block; width: 24px; height: 2px; background: var(--text-primary); transition: all 0.3s; border-radius: 1px; }
.mobile-toggle.active .hamburger:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.mobile-toggle.active .hamburger:nth-child(2) { opacity: 0; }
.mobile-toggle.active .hamburger:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 45; }
.mobile-overlay.active { display: block; }

@media (max-width: 767px) {
    .mobile-toggle { display: flex; }
    .nav-menu { position: fixed; top: 0; right: 0; width: 280px; height: 100vh; background: white; flex-direction: column; align-items: flex-start; padding: 6rem 1.5rem 2rem; gap: 0; transform: translateX(100%); transition: transform 0.3s ease; z-index: 50; box-shadow: -4px 0 20px rgba(0,0,0,0.1); }
    .nav-menu.active { transform: translateX(0); }
    .nav-menu .nav-link { display: block; padding: 0.75rem 0; font-size: 1rem; border-bottom: 1px solid var(--border-light); width: 100%; }
    .nav-menu .btn-primary { margin-top: 1rem; width: 100%; text-align: center; }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: var(--radius); font-size: 0.875rem; font-weight: 600; transition: all 0.2s; border: 2px solid transparent; white-space: nowrap; }
.btn-primary { background: var(--brand-orange); color: white; border-color: var(--brand-orange); }
.btn-primary:hover { background: var(--brand-orange-hover); border-color: var(--brand-orange-hover); transform: scale(1.02); }
.btn-outline { background: transparent; color: white; border-color: white; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-outline-dark { background: transparent; color: var(--brand-blue); border-color: var(--brand-blue); }
.btn-outline-dark:hover { background: var(--brand-blue); color: white; }
.btn-blue { background: var(--brand-blue); color: white; border-color: var(--brand-blue); }
.btn-blue:hover { background: var(--brand-blue-dark); border-color: var(--brand-blue-dark); transform: scale(1.02); }
.btn-full { width: 100%; }

/* ========================================
   FORMS
   ======================================== */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--text-primary); margin-bottom: 0.375rem; }
.form-label .required { color: #EF4444; }
.form-input, .form-textarea, .form-select { width: 100%; padding: 0.625rem 0.875rem; border: 1px solid var(--border-light); border-radius: var(--radius); background: white; color: var(--text-primary); font-size: 0.875rem; transition: border-color 0.2s, box-shadow 0.2s; }
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--brand-blue); box-shadow: 0 0 0 3px rgba(27, 79, 114, 0.1); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; height: 2.75rem; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }

/* ========================================
   PAGE HEADER (inner pages)
   ======================================== */
.page-header { background: var(--brand-blue); padding-top: calc(var(--nav-height) + 4rem); padding-bottom: 5rem; text-align: center; }
.page-label { font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brand-orange-light); margin-bottom: 0.75rem; display: block; }
.page-title { font-size: 2.25rem; font-weight: 700; color: white; line-height: 1.15; margin-bottom: 1rem; }
@media (min-width: 768px) { .page-title { font-size: 3rem; } }
.page-desc { color: rgba(255,255,255,0.8); max-width: 640px; margin: 0 auto; font-size: 1rem; }

/* ========================================
   HERO SECTION
   ======================================== */
.hero { position: relative; min-height: 100dvh; display: flex; align-items: center; justify-content: center; padding-top: var(--nav-height); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(27,79,114,0.85), rgba(27,79,114,0.7)); }
.hero-content { position: relative; z-index: 10; max-width: 800px; margin: 0 auto; text-align: center; padding: 0 1rem; }

.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.15); backdrop-filter: blur(4px); color: white; font-size: 0.875rem; font-weight: 500; padding: 0.5rem 1rem; border-radius: 9999px; border: 1px solid rgba(255,255,255,0.2); margin-bottom: 1.5rem; }
.hero-badge svg { width: 1rem; height: 1rem; color: var(--success); }

.hero-title { font-size: 2.25rem; font-weight: 700; color: white; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 768px) { .hero-title { font-size: 3.5rem; } }

.hero-subtitle { font-size: 1rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; }
@media (min-width: 640px) { .hero-subtitle { font-size: 1.125rem; } }

.hero-buttons { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .hero-buttons { flex-direction: row; justify-content: center; } }

.hero-contact { display: flex; flex-direction: column; align-items: center; gap: 1rem; color: rgba(255,255,255,0.8); font-size: 0.875rem; }
@media (min-width: 640px) { .hero-contact { flex-direction: row; justify-content: center; gap: 2rem; } }
.hero-contact a { display: flex; align-items: center; gap: 0.375rem; transition: color 0.15s; }
.hero-contact a:hover { color: white; }
.hero-contact svg { width: 1rem; height: 1rem; }

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar { background: var(--brand-blue); padding: 1.25rem 0; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: center; justify-content: center; gap: 0.5rem; color: white; font-size: 0.875rem; font-weight: 500; }
.trust-item svg { width: 1.25rem; height: 1.25rem; color: var(--brand-orange-light); flex-shrink: 0; }

/* ========================================
   SECTIONS
   ======================================== */
.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }
.section-gray { background: var(--light-gray); }
.section-white { background: var(--white); }
.section-offwhite { background: var(--off-white); }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-label { font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brand-orange); margin-bottom: 0.75rem; display: block; }
.section-title { font-size: 1.75rem; font-weight: 700; color: var(--text-primary); line-height: 1.25; margin-bottom: 1rem; }
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
.section-desc { color: var(--text-secondary); }

/* ========================================
   GRID LAYOUTS
   ======================================== */
.grid-2 { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.grid-3 { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.grid-4 { display: grid; gap: 1rem; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ========================================
   CARDS
   ======================================== */
.service-card { background: white; border-radius: 0.75rem; padding: 2rem; border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); transition: all 0.3s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(230,126,34,0.3); }
.service-icon { width: 3.5rem; height: 3.5rem; border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; transition: transform 0.3s; }
.service-card:hover .service-icon { transform: scale(1.05); }
.service-card-title { font-size: 1.125rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.75rem; }
.service-card-text { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

.portfolio-card { background: white; border-radius: 0.75rem; overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.4s; }
.portfolio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.portfolio-img-wrap { aspect-ratio: 16/10; overflow: hidden; }
.portfolio-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.portfolio-card:hover .portfolio-img-wrap img { transform: scale(1.05); }
.portfolio-body { padding: 1.5rem; }
.portfolio-title { font-size: 1.125rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.5rem; }
.portfolio-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.tag { display: inline-block; background: #F1F5F9; color: var(--brand-blue); font-size: 0.75rem; font-weight: 500; padding: 0.25rem 0.75rem; border-radius: 9999px; transition: all 0.2s; }
.tag:hover { background: var(--brand-blue); color: white; }

.value-card { background: var(--off-white); border-radius: 0.75rem; padding: 1.5rem; text-align: center; }
.value-icon { width: 3.5rem; height: 3.5rem; background: rgba(27,79,114,0.1); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: var(--brand-blue); }
.value-title { font-size: 1.125rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.5rem; }
.value-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

.stat-card { background: white; border-radius: 0.75rem; padding: 1.5rem; text-align: center; box-shadow: var(--shadow-sm); }
.stat-number { font-size: 2.25rem; font-weight: 700; color: var(--brand-orange); margin-bottom: 0.25rem; }
.stat-label { font-size: 0.875rem; color: var(--text-secondary); }

/* ========================================
   INFO CARD (dark blue)
   ======================================== */
.info-card { background: var(--brand-blue-dark); border-radius: 0.75rem; padding: 2rem; color: white; }
.info-card-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; }
@media (min-width: 768px) { .info-card-title { font-size: 1.5rem; } }
.info-card-text { color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 1.5rem; }
.info-card-divider { border: none; border-top: 1px solid rgba(255,255,255,0.2); margin-bottom: 1.5rem; }
.info-card-quote { color: rgba(255,255,255,0.7); font-style: italic; font-size: 0.875rem; line-height: 1.7; }

/* ========================================
   GALLERY
   ======================================== */
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 2.5rem; }
.gallery-filter { padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 500; background: #F1F5F9; color: var(--text-secondary); transition: all 0.2s; border: none; cursor: pointer; }
.gallery-filter:hover { background: #E2E8F0; }
.gallery-filter.active { background: var(--brand-blue); color: white; }

.gallery-item { border-radius: 0.75rem; overflow: hidden; cursor: pointer; position: relative; }
.gallery-item.hidden { display: none; }
.gallery-item-img { aspect-ratio: 4/3; overflow: hidden; }
.gallery-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover .gallery-item-img img { transform: scale(1.05); }
.gallery-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); display: flex; align-items: flex-end; padding: 1rem; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-cat { font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.05em; }
.gallery-item-title { color: white; font-size: 0.875rem; font-weight: 500; margin-top: 0.25rem; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,0.9); align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 0.5rem; }
.lightbox-close { position: absolute; top: 1rem; right: 1rem; width: 2.5rem; height: 2.5rem; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; transition: background 0.2s; z-index: 10; }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-close svg { width: 1.25rem; height: 1.25rem; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 2.5rem; height: 2.5rem; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; transition: background 0.2s; z-index: 10; }
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav svg { width: 1.25rem; height: 1.25rem; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-caption { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); text-align: center; }
.lightbox-caption p { color: rgba(255,255,255,0.9); font-size: 0.875rem; font-weight: 500; }
.lightbox-caption span { color: rgba(255,255,255,0.6); font-size: 0.75rem; }

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section { background: var(--brand-orange); padding: 5rem 0; text-align: center; }
.cta-title { font-size: 1.75rem; font-weight: 700; color: white; line-height: 1.25; margin-bottom: 1rem; }
@media (min-width: 768px) { .cta-title { font-size: 2.25rem; } }
.cta-desc { color: rgba(255,255,255,0.9); max-width: 640px; margin: 0 auto 2rem; }

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 2fr; gap: 3rem; } }

.contact-info-title { font-size: 1.125rem; font-weight: 600; color: var(--text-primary); margin-bottom: 1.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.contact-info-icon { width: 2.5rem; height: 2.5rem; background: rgba(27,79,114,0.1); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; color: var(--brand-blue); flex-shrink: 0; }
.contact-info-icon svg { width: 1.25rem; height: 1.25rem; }
.contact-info-label { font-size: 0.75rem; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.125rem; }
.contact-info-value { font-size: 0.875rem; font-weight: 500; color: var(--text-primary); }
.contact-info-value a:hover { color: var(--brand-blue); }

.contact-sidebar-box { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-light); }
.contact-sidebar-title { font-size: 0.875rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.75rem; }
.contact-sidebar-text { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

.contact-guarantee { background: var(--brand-blue-dark); border-radius: 0.75rem; padding: 1.25rem; color: white; margin-top: 1.5rem; }
.contact-guarantee-title { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.5rem; }
.contact-guarantee-text { font-size: 0.875rem; color: rgba(255,255,255,0.8); line-height: 1.6; }

.contact-form-wrap { background: var(--off-white); border-radius: 0.75rem; padding: 1.5rem; border: 1px solid var(--border-light); }
@media (min-width: 640px) { .contact-form-wrap { padding: 2rem; } }
.contact-form-title { font-size: 1.125rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.5rem; }
.contact-form-desc { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 1.5rem; }

.success-message { background: #F0FDF4; border: 1px solid #BBF7D0; border-radius: 0.75rem; padding: 2rem; text-align: center; }
.success-icon { width: 4rem; height: 4rem; background: #DCFCE7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: var(--success); }
.success-icon svg { width: 2rem; height: 2rem; }
.success-title { font-size: 1.5rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.75rem; }
.success-text { color: var(--text-secondary); line-height: 1.6; margin-bottom: 0.5rem; }
.success-note { font-size: 0.875rem; color: var(--text-tertiary); }

/* ========================================
   SERVICES PAGE
   ======================================== */
.service-detail { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 1024px) { .service-detail { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.service-detail:nth-child(even) .service-detail-content { order: 2; }
.service-detail:nth-child(even) .service-detail-sidebar { order: 1; }

.service-detail-icon { width: 3.5rem; height: 3.5rem; border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.service-detail-title { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin-bottom: 1rem; }
@media (min-width: 768px) { .service-detail-title { font-size: 1.5rem; } }
.service-detail-text { color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; }
.service-detail-features { display: grid; grid-template-columns: 1fr; gap: 0.5rem; }
@media (min-width: 640px) { .service-detail-features { grid-template-columns: 1fr 1fr; } }
.service-detail-feature { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--text-secondary); }
.service-detail-feature::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand-orange); flex-shrink: 0; }

.service-sidebar { background: var(--off-white); border-radius: 0.75rem; padding: 1.5rem; border: 1px solid var(--border-light); }
.service-sidebar-title { font-size: 1.125rem; font-weight: 600; color: var(--brand-blue); margin-bottom: 1rem; }
.service-sidebar-list { list-style: none; }
.service-sidebar-list li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.5rem 0; font-size: 0.875rem; color: var(--text-secondary); border-bottom: 1px solid var(--border-light); }
.service-sidebar-list li:last-child { border-bottom: none; }
.service-sidebar-list .li-icon { width: 1.5rem; height: 1.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.service-sidebar-list .li-icon svg { width: 0.75rem; height: 0.75rem; }
.service-sidebar .btn { margin-top: 1rem; width: 100%; }

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-story-img { position: relative; }
.about-story-img img { border-radius: 0.75rem; box-shadow: var(--shadow-lg); width: 100%; height: auto; object-fit: cover; }
.about-story-badge { position: absolute; bottom: -1.5rem; left: -1.5rem; background: var(--brand-orange); color: white; border-radius: 0.5rem; padding: 1rem 1.25rem; box-shadow: var(--shadow-lg); }
.about-story-badge-number { font-size: 1.875rem; font-weight: 700; line-height: 1; }
.about-story-badge-text { font-size: 0.875rem; color: rgba(255,255,255,0.9); margin-top: 0.25rem; }

.checklist-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.checklist-item svg { width: 1.25rem; height: 1.25rem; color: var(--brand-orange); flex-shrink: 0; margin-top: 0.125rem; }
.checklist-item p { color: var(--text-secondary); }

/* ========================================
   FOOTER
   ======================================== */
.footer { background: var(--navy); padding-top: 4rem; padding-bottom: 2rem; }
.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; } }

.footer-logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.logo-icon-sm { width: 2rem; height: 2rem; background: var(--brand-blue); border-radius: 0.375rem; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 0.875rem; object-fit: cover; }
.footer-logo-text { font-weight: 600; font-size: 0.875rem; color: white; }
.footer-desc { color: var(--text-tertiary); font-size: 0.875rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-quote { color: rgba(148,163,184,0.7); font-size: 0.75rem; font-style: italic; line-height: 1.7; border-left: 2px solid var(--brand-orange); padding-left: 1rem; }

.footer-heading { color: white; font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem; }
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a { color: var(--text-tertiary); font-size: 0.875rem; transition: color 0.15s; }
.footer-links a:hover { color: white; }

.footer-contact li { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.75rem; color: var(--text-tertiary); font-size: 0.875rem; }
.footer-contact a { color: var(--text-tertiary); transition: color 0.15s; }
.footer-contact a:hover { color: white; }
.footer-contact svg { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.125rem; }

.icon-sm { width: 1rem; height: 1rem; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-copyright { color: rgba(148,163,184,0.6); font-size: 0.75rem; text-align: center; }
.footer-social { width: 2.25rem; height: 2.25rem; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: white; transition: background 0.2s; }
.footer-social:hover { background: var(--brand-orange); }
.footer-social svg { width: 1rem; height: 1rem; }

/* ========================================
   UTILITIES
   ======================================== */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.w-full { width: 100%; }
.max-w-640 { max-width: 640px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.space-y-4 > * + * { margin-top: 1rem; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.pt-nav { padding-top: var(--nav-height); }
@media (min-width: 640px) {
    .sm\\:flex-row { flex-direction: row; }
}

/* Scroll animations */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.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; }
