/* ===== ETE Marketing — Shared Styles ===== */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #06080d; color: #f0f2f5;
    overflow-x: hidden; line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* --- CSS VARIABLES --- */
:root {
    --accent: #29ABE2;
    --accent-hover: #1d94c7;
    --bg-dark: #06080d;
    --bg-card: rgba(255,255,255,0.03);
    --bg-card-hover: rgba(41,171,226,0.06);
    --border: rgba(255,255,255,0.06);
    --border-hover: rgba(41,171,226,0.2);
    --text-primary: #f0f2f5;
    --text-muted: rgba(255,255,255,0.55);
    --text-faint: rgba(255,255,255,0.35);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-pill: 999px;
    --max-w: 1200px;
    --transition: 0.3s ease;
}

/* --- NAVIGATION --- */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.25rem 2rem;
    display: flex; align-items: center; justify-content: space-between;
    transition: background 0.4s, backdrop-filter 0.4s, padding 0.3s;
}
.nav.scrolled {
    background: rgba(6, 8, 13, 0.92);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo img { height: 36px; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
    font-size: 0.875rem; font-weight: 500; letter-spacing: 0.02em;
    color: rgba(255,255,255,0.7); transition: color var(--transition);
    position: relative;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 2px; background: var(--accent); border-radius: 2px;
}
.nav-cta {
    background: var(--accent); color: #fff !important; padding: 0.6rem 1.5rem;
    border-radius: var(--radius-pill); font-weight: 600; font-size: 0.85rem;
    letter-spacing: 0.02em; transition: all var(--transition);
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(41,171,226,0.3); }
.nav-cta::after { display: none !important; }
.nav-menu-btn {
    display: none; background: none; border: none; color: #fff;
    font-size: 1.5rem; cursor: pointer;
}

/* Mobile menu */
.mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 99;
    background: rgba(6,8,13,0.97); backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.active { display: flex; }
.mobile-menu a { font-size: 1.25rem; font-weight: 600; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.mobile-menu a:hover { color: #fff; }
.mobile-menu .close-btn { position: absolute; top: 1.5rem; right: 2rem; background: none; border: none; color: #fff; font-size: 1.75rem; cursor: pointer; }

/* --- BUTTONS --- */
.btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--accent); color: #fff; padding: 1rem 2.5rem;
    border-radius: var(--radius-pill); font-weight: 700; font-size: 1rem;
    letter-spacing: 0.02em; transition: all var(--transition); border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(41,171,226,0.35); }
.btn-outline {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: transparent; color: #fff; padding: 1rem 2.5rem;
    border-radius: var(--radius-pill); font-weight: 600; font-size: 1rem;
    border: 1.5px solid rgba(255,255,255,0.25); transition: all var(--transition); cursor: pointer;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }
.btn-sm { padding: 0.7rem 1.75rem; font-size: 0.9rem; }

/* --- PAGE HERO (sub-pages) --- */
.page-hero {
    position: relative; padding: 10rem 2rem 5rem; text-align: center;
    background: linear-gradient(180deg, #0a0e17 0%, var(--bg-dark) 100%);
    overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(41,171,226,0.06) 0%, transparent 70%);
}
.page-hero .section-label { position: relative; z-index: 1; }
.page-hero h1 {
    position: relative; z-index: 1;
    font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800;
    letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 1.25rem;
}
.page-hero p {
    position: relative; z-index: 1;
    font-size: 1.15rem; color: var(--text-muted);
    max-width: 640px; margin: 0 auto; line-height: 1.7;
}

/* --- HERO (home) --- */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background: url('images/hero-bg.jpg') center/cover no-repeat; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(6,8,13,0.75) 0%, rgba(6,8,13,0.6) 40%, rgba(6,8,13,0.85) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; padding: 8rem 2rem 4rem; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(41,171,226,0.12); border: 1px solid rgba(41,171,226,0.25);
    border-radius: var(--radius-pill); padding: 0.5rem 1.25rem;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 2rem;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 1.5rem; }
.hero h1 .accent { color: var(--accent); }
.hero-sub { font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,0.65); max-width: 640px; margin: 0 auto 2.5rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; animation: float 3s ease-in-out infinite; }
.hero-scroll svg { width: 24px; height: 24px; opacity: 0.4; }
@keyframes float { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* --- STATS BAR --- */
.stats-bar {
    background: linear-gradient(135deg, #0d1117 0%, #111827 100%);
    border-top: 1px solid rgba(41,171,226,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 3rem 2rem;
}
.stats-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item h3 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--accent); letter-spacing: -0.02em; }
.stat-item p { font-size: 0.85rem; color: rgba(255,255,255,0.5); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.25rem; }

/* --- TRUSTED BY --- */
.trusted { padding: 3.5rem 0; background: var(--bg-dark); border-bottom: 1px solid rgba(255,255,255,0.04); overflow: hidden; }
.trusted-label { text-align: center; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.3); margin-bottom: 2rem; }
.logo-track-wrapper { position: relative; overflow: hidden; }
.logo-track-wrapper::before, .logo-track-wrapper::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; }
.logo-track-wrapper::before { left: 0; background: linear-gradient(90deg, var(--bg-dark), transparent); }
.logo-track-wrapper::after { right: 0; background: linear-gradient(270deg, var(--bg-dark), transparent); }
.logo-track { display: flex; gap: 4rem; align-items: center; animation: scroll-logos 35s linear infinite; width: max-content; }
.logo-track:hover { animation-play-state: paused; }
.logo-track img { height: 28px; opacity: 0.35; filter: brightness(0) invert(1); transition: opacity var(--transition); }
.logo-track img:hover { opacity: 0.8; }
@keyframes scroll-logos { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- SECTION COMMON --- */
.section { padding: 7rem 2rem; }
.section-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 1rem; }
.section-title { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 1.25rem; }
.section-desc { font-size: 1.1rem; color: var(--text-muted); max-width: 640px; line-height: 1.75; }
.container { max-width: var(--max-w); margin: 0 auto; }

/* --- CARDS (generic) --- */
.card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--border); border-radius: var(--radius-md); padding: 2rem;
    transition: all 0.4s;
}
.card:hover { border-color: var(--border-hover); background: linear-gradient(135deg, var(--bg-card-hover) 0%, rgba(41,171,226,0.02) 100%); transform: translateY(-4px); }
.card .card-icon {
    width: 44px; height: 44px; border-radius: var(--radius-sm);
    background: rgba(41,171,226,0.1); display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}
.card .card-icon svg { width: 20px; height: 20px; color: var(--accent); }
.card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.card p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.65; }
.card ul { list-style: none; margin-top: 0.75rem; }
.card ul li { font-size: 0.82rem; color: rgba(255,255,255,0.4); padding: 0.3rem 0; padding-left: 1.25rem; position: relative; }
.card ul li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-size: 0.75rem; }

/* --- SERVICES GRID --- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* --- EVENT TYPES --- */
.types-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.type-pill {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 14px; padding: 1.75rem 1.5rem; text-align: center; transition: all 0.4s; cursor: default;
}
.type-pill:hover { border-color: var(--border-hover); background: var(--bg-card-hover); transform: translateY(-3px); }
.type-pill .type-emoji { font-size: 1.75rem; margin-bottom: 0.75rem; }
.type-pill h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.35rem; }
.type-pill p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* --- GALLERY --- */
.gallery { background: var(--bg-dark); padding: 7rem 0; overflow: hidden; }
.gallery-header { text-align: center; padding: 0 2rem; margin-bottom: 4rem; }
.gallery-header .section-desc { margin: 0 auto; }
.gallery-row { display: flex; gap: 1.25rem; margin-bottom: 1.25rem; }
.gallery-row:nth-child(1) { animation: scroll-left 45s linear infinite; }
.gallery-row:nth-child(2) { animation: scroll-right 50s linear infinite; }
.gallery-row:hover { animation-play-state: paused; }
.gallery-item { min-width: 380px; height: 260px; border-radius: 14px; overflow: hidden; position: relative; flex-shrink: 0; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .gallery-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 2rem 1.25rem 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.85);
    opacity: 0; transform: translateY(8px); transition: all 0.4s;
}
.gallery-item:hover .gallery-label { opacity: 1; transform: translateY(0); }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scroll-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* Gallery grid (portfolio page) */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.gallery-grid .gallery-card { border-radius: 14px; overflow: hidden; position: relative; aspect-ratio: 16/11; }
.gallery-grid .gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-grid .gallery-card:hover img { transform: scale(1.05); }
.gallery-grid .gallery-card .gallery-label { opacity: 0; position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 1.25rem 1rem; background: linear-gradient(transparent, rgba(0,0,0,0.75)); font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.9); transition: all 0.4s; transform: translateY(8px); }
.gallery-grid .gallery-card:hover .gallery-label { opacity: 1; transform: translateY(0); }

/* --- TESTIMONIALS --- */
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.testimonial-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 2.5rem; transition: all 0.4s;
}
.testimonial-card:hover { border-color: rgba(41,171,226,0.15); background: rgba(255,255,255,0.03); }
.testimonial-card .quote-mark { font-size: 3rem; color: rgba(41,171,226,0.2); line-height: 1; margin-bottom: 1rem; font-family: Georgia, serif; }
.testimonial-card blockquote { font-size: 0.95rem; line-height: 1.8; color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; font-style: italic; }
.testimonial-card .author { display: flex; align-items: center; gap: 1rem; }
.testimonial-card .author-avatar { width: 44px; height: 44px; border-radius: var(--radius-sm); background: linear-gradient(135deg, var(--accent), #1a6b8a); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; color: #fff; }
.testimonial-card .author-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-card .author-title { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* --- APPROACH --- */
.approach-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.approach-step {
    position: relative; padding: 2rem 1.5rem;
    background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-md); transition: all 0.4s;
}
.approach-step:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.approach-step .step-num { font-size: 3rem; font-weight: 900; color: rgba(41,171,226,0.12); line-height: 1; margin-bottom: 1rem; letter-spacing: -0.03em; }
.approach-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.approach-step p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* --- CTA SECTION --- */
.cta-section { position: relative; padding: 8rem 2rem; text-align: center; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(41,171,226,0.08) 0%, transparent 60%); }
.cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; line-height: 1.15; }
.cta-content p { font-size: 1.1rem; color: rgba(255,255,255,0.5); margin-bottom: 2.5rem; line-height: 1.7; }
.cta-content .btn-primary { font-size: 1.1rem; padding: 1.1rem 3rem; }
.cta-email { display: block; margin-top: 1.25rem; font-size: 0.85rem; color: var(--text-faint); }
.cta-email a { color: var(--text-muted); border-bottom: 1px solid rgba(255,255,255,0.15); transition: all var(--transition); }
.cta-email a:hover { color: var(--accent); border-color: var(--accent); }

/* --- CONTACT FORM --- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: start; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; color: rgba(255,255,255,0.7); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.9rem 1.25rem;
    background: rgba(255,255,255,0.04); border: 1px solid var(--border);
    border-radius: var(--radius-sm); color: #fff;
    font-family: inherit; font-size: 0.95rem;
    transition: border-color var(--transition), background var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--accent);
    background: rgba(41,171,226,0.04);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group select option { background: #111; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.contact-info-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 2rem; margin-bottom: 1.5rem;
}
.contact-info-card .icon-circle {
    width: 44px; height: 44px; border-radius: var(--radius-sm);
    background: rgba(41,171,226,0.1); display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
}
.contact-info-card .icon-circle svg { width: 20px; height: 20px; color: var(--accent); }
.contact-info-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.35rem; }
.contact-info-card p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.contact-info-card a { color: var(--accent); transition: opacity var(--transition); }
.contact-info-card a:hover { opacity: 0.8; }

/* --- ABOUT HIGHLIGHTS --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-highlight { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.about-highlight:last-child { border-bottom: none; }
.about-highlight .icon-circle { width: 40px; height: 40px; min-width: 40px; border-radius: 10px; background: rgba(41,171,226,0.1); display: flex; align-items: center; justify-content: center; }
.about-highlight .icon-circle svg { width: 18px; height: 18px; color: var(--accent); }
.about-highlight h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.about-highlight p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* --- VALUES GRID --- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 2.5rem 2rem; text-align: center; transition: all 0.4s;
}
.value-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.value-card .value-icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.value-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.value-card p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* --- LEADERSHIP --- */
.leadership-card {
    display: grid; grid-template-columns: auto 1fr; gap: 3rem;
    background: linear-gradient(135deg, rgba(41,171,226,0.04) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(41,171,226,0.12); border-radius: var(--radius-lg);
    padding: 3rem; margin-top: 3rem; align-items: center;
}
.leadership-avatar {
    width: 160px; height: 160px; border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--accent), #0d4f6b);
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem; font-weight: 800; color: #fff;
}
.leadership-info h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.25rem; }
.leadership-info .role { font-size: 0.9rem; color: var(--accent); font-weight: 600; margin-bottom: 1rem; }
.leadership-info p { font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.8; }

/* --- TIMELINE --- */
.timeline { max-width: 700px; margin: 3rem auto 0; position: relative; }
.timeline::before { content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 2px; background: rgba(41,171,226,0.15); }
.timeline-item { display: flex; gap: 2rem; margin-bottom: 2.5rem; position: relative; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot { width: 42px; min-width: 42px; height: 42px; border-radius: 50%; background: rgba(41,171,226,0.1); border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; color: var(--accent); z-index: 1; }
.timeline-content h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.timeline-content p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* --- SERVICE DETAIL (services page) --- */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding: 4rem 0; border-bottom: 1px solid var(--border); }
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.service-detail p { font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 1rem; }
.service-detail .detail-features { list-style: none; }
.service-detail .detail-features li { padding: 0.4rem 0 0.4rem 1.5rem; font-size: 0.88rem; color: rgba(255,255,255,0.5); position: relative; }
.service-detail .detail-features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.service-detail-visual {
    aspect-ratio: 4/3; border-radius: var(--radius-md); overflow: hidden;
    background: linear-gradient(135deg, rgba(41,171,226,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
}
.service-detail-visual img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-visual .icon-large { font-size: 4rem; opacity: 0.3; }

/* --- FOOTER --- */
.footer { border-top: 1px solid rgba(255,255,255,0.05); padding: 4rem 2rem 3rem; }
.footer-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 28px; opacity: 0.5; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.35); line-height: 1.6; max-width: 280px; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 1.25rem; }
.footer-col a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.4); padding: 0.3rem 0; transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { max-width: var(--max-w); margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.2); }

/* --- SCROLL ANIMATIONS --- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .types-grid { grid-template-columns: repeat(2, 1fr); }
    .approach-steps { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .service-detail { grid-template-columns: 1fr; gap: 2rem; }
    .service-detail.reverse { direction: ltr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-menu-btn { display: block; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .gallery-item { min-width: 280px; height: 200px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .section { padding: 5rem 1.5rem; }
    .hero-content { padding: 7rem 1.5rem 3rem; }
    .page-hero { padding: 8rem 1.5rem 3.5rem; }
    .leadership-card { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .leadership-avatar { margin: 0 auto; width: 120px; height: 120px; font-size: 3rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .types-grid { grid-template-columns: 1fr; }
    .approach-steps { grid-template-columns: 1fr; }
}
