/* ============================================
   S'Elect Pty Ltd — Premium Website
   Navy + Gold | High Impact
   ============================================ */

:root {
    --navy: #0a1628;
    --navy-light: #12233d;
    --navy-mid: #0e1d33;
    --gold: #c9a84c;
    --gold-light: #dfc06a;
    --gold-dark: #a8893d;
    --white: #ffffff;
    --off-white: #f5f6f8;
    --gray-100: #ebedf2;
    --gray-200: #d5d8e0;
    --gray-300: #b0b5c1;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-900: #0f172a;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'DM Sans', 'Inter', -apple-system, sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 16px;
    --radius-sm: 10px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--gray-700); line-height: 1.6; background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }

/* ============================================
   NAV
   ============================================ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 18px 0; transition: all 0.4s var(--ease); background: transparent;
}
.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95); backdrop-filter: blur(16px) saturate(180%);
    padding: 10px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; }
.logo-img { height: 64px; width: auto; transition: all 0.4s var(--ease); filter: drop-shadow(0 2px 10px rgba(0,0,0,0.4)); }
.navbar.scrolled .logo-img { height: 48px; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
    color: rgba(255,255,255,0.8); font-size: 0.88rem; font-weight: 500;
    letter-spacing: 0.02em; position: relative; padding: 4px 0;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
    background: var(--gold); transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-phone {
    background: var(--gold) !important; color: var(--navy) !important;
    padding: 10px 22px !important; border-radius: 50px; font-weight: 700 !important;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}
.nav-phone::after { display: none !important; }
.nav-phone:hover { background: var(--gold-light) !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201, 168, 76, 0.45); }
.nav-phone svg { flex-shrink: 0; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s var(--ease); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative; min-height: 100vh; display: flex; flex-direction: column;
    justify-content: center; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.15); transform-origin: center;
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.7) 50%, rgba(10,22,40,0.5) 100%),
        linear-gradient(to top, rgba(10,22,40,0.95) 0%, transparent 40%);
}
.hero-content {
    position: relative; z-index: 2; padding: 140px 0 0;
    flex: 1; display: flex; flex-direction: column; justify-content: center;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(201, 168, 76, 0.12); border: 1px solid rgba(201, 168, 76, 0.25);
    color: var(--gold); padding: 8px 20px; border-radius: 50px;
    font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 28px; width: fit-content;
    animation: fadeInUp 0.8s var(--ease) 0.2s both;
}
.hero-badge-dot {
    width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-family: var(--font-display); font-size: clamp(2.8rem, 6.5vw, 5rem);
    color: #fff; line-height: 1.1; margin-bottom: 24px; font-weight: 800;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s var(--ease) 0.4s both;
}

.hero-subtitle {
    font-size: 1.15rem; color: rgba(255,255,255,0.65); max-width: 520px;
    line-height: 1.7; margin-bottom: 40px;
    animation: fadeInUp 0.8s var(--ease) 0.6s both;
}

.hero-actions {
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease) 0.8s both;
}

/* Stats Bar */
.hero-stats-bar {
    position: relative; z-index: 2;
    background: rgba(255,255,255,0.05); backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: auto;
}
.hero-stats {
    display: flex; align-items: center; justify-content: center; gap: 48px;
    padding: 28px 0;
}
.stat { text-align: center; }
.stat-number {
    font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: #fff;
    display: block; line-height: 1.2; letter-spacing: -0.02em;
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }

/* ============================================
   MARQUEE
   ============================================ */
.marquee-banner {
    background: var(--gold); padding: 14px 0; overflow: hidden; white-space: nowrap;
}
.marquee-track {
    display: inline-flex; gap: 0; animation: marquee 30s linear infinite;
}
.marquee-track span {
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--navy); padding: 0 16px;
}
.marquee-dot { color: rgba(10,22,40,0.3); font-size: 0.5rem; display: flex; align-items: center; }

@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 34px; border-radius: 60px; font-size: 0.92rem;
    font-weight: 700; cursor: pointer; transition: all 0.35s var(--ease);
    border: none; font-family: var(--font); letter-spacing: 0.01em;
}
.btn svg { flex-shrink: 0; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
    background: var(--gold); color: var(--navy);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}
.btn-primary:hover {
    background: var(--gold-light); transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.45);
}

.btn-glass {
    background: rgba(255,255,255,0.08); color: #fff;
    border: 1px solid rgba(255,255,255,0.15); backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); }

.btn-full { width: 100%; justify-content: center; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 72px; }
.section-label {
    display: inline-block; color: var(--gold); font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px;
}
.section-header h2, .division-intro-text h2 {
    font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--gray-900); line-height: 1.15; margin-bottom: 16px;
    font-weight: 800; letter-spacing: -0.025em;
}
.section-header p { font-size: 1.05rem; color: var(--gray-500); line-height: 1.7; }

/* ============================================
   SERVICES OVERVIEW
   ============================================ */
.services { padding: 120px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.service-card {
    position: relative; border-radius: var(--radius); overflow: hidden;
    display: flex; flex-direction: column; background: var(--gray-900);
    transition: all 0.5s var(--ease);
    opacity: 0; transform: translateY(40px);
}
.service-card.in-view { opacity: 1; transform: translateY(0); }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.25); }

.service-card-img {
    height: 280px; overflow: hidden;
}
.service-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--ease); filter: brightness(0.7);
}
.service-card:hover .service-card-img img { transform: scale(1.08); filter: brightness(0.8); }

.service-card-content { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.service-card-number {
    font-family: var(--font-display); font-size: 3.5rem; font-weight: 800;
    color: rgba(201, 168, 76, 0.15); line-height: 1; margin-bottom: -8px;
}
.service-card h3 {
    font-family: var(--font-display); font-size: 1.8rem; color: #fff; margin-bottom: 10px;
    font-weight: 800; letter-spacing: -0.02em;
}
.service-card p { color: rgba(255,255,255,0.55); font-size: 0.92rem; line-height: 1.6; margin-bottom: 20px; flex: 1; }
.service-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--gold); font-weight: 600; font-size: 0.88rem;
}
.service-card:hover .service-link { color: var(--gold-light); }
.service-card:hover .service-link svg { transform: translateX(6px); }
.service-link svg { transition: transform 0.3s var(--ease); }

/* ============================================
   DIVISION SECTIONS
   ============================================ */
.division-section { padding: 120px 0; background: var(--off-white); }
.division-dark { background: var(--navy); }
.division-dark .division-intro-text h2, .division-dark .gallery-title { color: #fff; }
.division-dark .division-intro-text p { color: rgba(255,255,255,0.6); }
.division-dark .division-service-item strong { color: #fff; }
.division-dark .division-service-item span { color: rgba(255,255,255,0.5); }
.division-dark .section-label { color: var(--gold); }

.division-intro {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
    margin-bottom: 80px;
    opacity: 0; transform: translateY(30px); transition: all 0.7s var(--ease);
}
.division-intro.in-view { opacity: 1; transform: translateY(0); }
.division-intro-reverse { direction: rtl; }
.division-intro-reverse > * { direction: ltr; }

.division-intro-text h2 { margin-bottom: 16px; }
.division-intro-text > p { color: var(--gray-500); margin-bottom: 32px; line-height: 1.7; }

.division-services-list { display: flex; flex-direction: column; gap: 16px; }
.division-service-item {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 14px 16px; border-radius: var(--radius-sm);
    background: rgba(201, 168, 76, 0.04); border: 1px solid rgba(201, 168, 76, 0.08);
    transition: all 0.4s var(--ease);
    opacity: 0; transform: translateX(-20px);
}
.division-dark .division-service-item {
    background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.06);
}
.division-service-item.in-view { opacity: 1; transform: translateX(0); }
.division-service-item:hover { border-color: var(--gold); background: rgba(201, 168, 76, 0.08); }

.dsi-icon {
    width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
    background: rgba(201, 168, 76, 0.12); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
}
.division-service-item strong { display: block; font-size: 0.92rem; color: var(--gray-900); margin-bottom: 2px; }
.division-service-item span { font-size: 0.82rem; color: var(--gray-500); line-height: 1.4; }

.division-intro-feature {
    position: relative; border-radius: var(--radius); overflow: hidden;
    aspect-ratio: 4/5; max-height: 500px;
}
.division-intro-feature img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.division-intro-feature:hover img { transform: scale(1.04); }
.feature-accent {
    position: absolute; bottom: -20px; right: -20px; width: 120px; height: 120px;
    border: 3px solid var(--gold); border-radius: var(--radius); opacity: 0.3;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-title {
    font-family: var(--font-display); font-size: 1.5rem; color: var(--gray-900); margin-bottom: 28px;
    font-weight: 700; letter-spacing: -0.02em;
}
.gallery-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px; gap: 12px;
}
.gallery-grid-4 { grid-template-columns: repeat(4, 1fr); }
.gallery-grid-4 .gallery-item { grid-column: span 1; grid-row: span 1; }

.gallery-item {
    position: relative; border-radius: var(--radius-sm); overflow: hidden;
    opacity: 0; transform: translateY(20px); transition: all 0.5s var(--ease);
}
.gallery-item.in-view { opacity: 1; transform: translateY(0); }
.gallery-item-large { grid-column: span 2; grid-row: span 2; }

.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 50%);
    display: flex; align-items: flex-end; padding: 24px;
    opacity: 0; transition: opacity 0.4s var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-weight: 600; font-size: 0.9rem; }

/* ============================================
   WHY US
   ============================================ */
.why-us { padding: 120px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.why-card {
    text-align: center; padding: 40px 28px; border-radius: var(--radius);
    border: 1px solid var(--gray-100); background: var(--white);
    transition: all 0.4s var(--ease);
    opacity: 0; transform: translateY(25px);
}
.why-card.in-view { opacity: 1; transform: translateY(0); }
.why-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }

.why-icon {
    width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px;
    background: rgba(201, 168, 76, 0.1); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.4s var(--ease);
}
.why-card:hover .why-icon { background: var(--gold); color: var(--navy); transform: scale(1.1); }
.why-card h4 { font-size: 1.05rem; color: var(--gray-900); margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative; padding: 120px 0; overflow: hidden;
}
.cta-bg {
    position: absolute; inset: 0;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.93) 0%, rgba(10,22,40,0.8) 100%);
}
.cta-container { position: relative; z-index: 2; }
.cta-content { text-align: center; max-width: 580px; margin: 0 auto; }
.cta-content h2 {
    font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem);
    color: #fff; margin-bottom: 16px; line-height: 1.15;
    font-weight: 800; letter-spacing: -0.025em;
}
.cta-content p { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   CONTACT
   ============================================ */
.contact { padding: 120px 0; background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
    display: flex; align-items: center; gap: 18px;
    padding: 24px; border-radius: var(--radius-sm); background: var(--white);
    border: 1px solid var(--gray-100); transition: all 0.4s var(--ease);
    opacity: 0; transform: translateX(-20px);
}
.contact-card.in-view { opacity: 1; transform: translateX(0); }
.contact-card:hover { border-color: var(--gold); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }

.contact-icon {
    width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0;
    background: rgba(201, 168, 76, 0.1); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
}
.contact-label { font-size: 0.75rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; display: block; margin-bottom: 2px; }
.contact-value { font-size: 1.05rem; font-weight: 600; color: var(--gray-900); display: block; }
a.contact-value:hover { color: var(--gold-dark); }

/* Contact Form */
.contact-form-wrapper {
    opacity: 0; transform: translateY(30px); transition: all 0.6s var(--ease);
}
.contact-form-wrapper.in-view { opacity: 1; transform: translateY(0); }

.contact-form {
    background: var(--white); padding: 40px; border-radius: var(--radius);
    box-shadow: 0 8px 40px rgba(0,0,0,0.06); border: 1px solid var(--gray-100);
}
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 16px 18px; border: 2px solid var(--gray-100);
    border-radius: var(--radius-sm); font-family: var(--font); font-size: 0.92rem;
    color: var(--gray-900); transition: all 0.3s var(--ease); background: var(--off-white);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-300); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--gold); background: #fff;
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 18px center; padding-right: 44px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--navy); padding: 60px 0 0; }
.footer-top { display: flex; justify-content: space-between; gap: 60px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand { max-width: 280px; }
.footer-brand .logo-img { height: 44px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.88rem; line-height: 1.6; }

.footer-nav { display: flex; gap: 64px; }
.footer-col h4 { color: #fff; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col li { margin-bottom: 8px; color: rgba(255,255,255,0.4); font-size: 0.88rem; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom { padding: 20px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 0.8rem; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Staggered animation delays */
.service-card:nth-child(2) { transition-delay: 0.15s; }
.gallery-item:nth-child(2) { transition-delay: 0.08s; }
.gallery-item:nth-child(3) { transition-delay: 0.16s; }
.gallery-item:nth-child(4) { transition-delay: 0.24s; }
.gallery-item:nth-child(5) { transition-delay: 0.32s; }
.why-card:nth-child(2) { transition-delay: 0.1s; }
.why-card:nth-child(3) { transition-delay: 0.2s; }
.why-card:nth-child(4) { transition-delay: 0.3s; }
.contact-card:nth-child(2) { transition-delay: 0.1s; }
.contact-card:nth-child(3) { transition-delay: 0.2s; }
.division-service-item:nth-child(2) { transition-delay: 0.1s; }
.division-service-item:nth-child(3) { transition-delay: 0.2s; }
.division-service-item:nth-child(4) { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 250px; }
    .gallery-item-large { grid-column: span 2; grid-row: span 1; }
    .gallery-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { gap: 32px; }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: var(--navy); flex-direction: column; padding: 90px 28px 40px;
        gap: 0; transition: right 0.4s var(--ease); box-shadow: -8px 0 40px rgba(0,0,0,0.5);
        z-index: 1001;
    }
    .nav-links.active { right: 0; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 16px 0; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .nav-links a::after { display: none; }
    .nav-phone { text-align: center; margin-top: 16px; justify-content: center; }

    .hero { min-height: 100svh; }
    .hero-content { padding: 120px 0 0; }
    .hero h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
    .hero-subtitle { font-size: 1rem; }
    .hero-badge { font-size: 0.72rem; padding: 6px 14px; }

    .hero-stats { flex-wrap: wrap; gap: 16px; padding: 20px 0; }
    .stat-number { font-size: 1.5rem; }
    .stat-label { font-size: 0.68rem; }

    .section-header { margin-bottom: 48px; }
    .section-header h2 { font-size: 1.8rem; }

    /* Full-screen mobile sections */
    .services {
        padding: 60px 0; min-height: 100svh;
        display: flex; align-items: center;
    }
    .services > .container { width: 100%; }
    .services-grid { grid-template-columns: 1fr; gap: 20px; }
    .service-card-img { height: 220px; }
    .service-card-content { padding: 24px; }
    .service-card-number { font-size: 2.5rem; }
    .service-card h3 { font-size: 1.4rem; }

    .division-section { padding: 0; }
    .division-intro {
        grid-template-columns: 1fr; gap: 24px;
        min-height: 100svh; padding: 60px 0;
        align-content: center; margin-bottom: 0;
    }
    .division-intro-reverse { direction: ltr; }
    .division-intro-feature { max-height: 240px; aspect-ratio: 16/10; order: -1; }
    .division-intro-text h2 { font-size: 1.6rem; }
    .division-service-item { padding: 12px; }

    .gallery-section {
        min-height: 100svh; display: flex; flex-direction: column;
        justify-content: center; padding: 60px 0;
    }
    .gallery-grid { grid-auto-rows: 200px; }

    .why-us {
        padding: 60px 0; min-height: 100svh;
        display: flex; align-items: center;
    }
    .why-us > .container { width: 100%; }
    .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .why-card { padding: 28px 16px; }
    .why-card h4 { font-size: 0.95rem; }
    .why-card p { font-size: 0.82rem; }
    .why-icon { width: 52px; height: 52px; }

    .cta-banner {
        min-height: 100svh; display: flex;
        align-items: center; justify-content: center;
    }
    .cta-content h2 { font-size: 1.8rem; }

    .contact {
        padding: 60px 0; min-height: 100svh;
        display: flex; align-items: center;
    }
    .contact > .container { width: 100%; }
    .contact-grid { grid-template-columns: 1fr; gap: 28px; }
    .contact-form { padding: 24px; }

    .footer { padding: 40px 0 0; }
    .footer-top { flex-direction: column; gap: 32px; }
    .footer-nav { flex-wrap: wrap; gap: 32px; }
    .stat-divider { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .hero h1 { font-size: 2rem; line-height: 1.15; }
    .hero-subtitle { font-size: 0.92rem; line-height: 1.6; margin-bottom: 28px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; padding: 14px 28px; font-size: 0.88rem; }
    .hero-stats { gap: 12px; padding: 16px 0; }
    .stat-number { font-size: 1.3rem; }
    .stat-label { font-size: 0.62rem; }
    .stat-divider { display: none; }

    .marquee-track span { font-size: 0.75rem; padding: 0 10px; }
    .marquee-banner { padding: 10px 0; }

    .section-header h2 { font-size: 1.55rem; }
    .section-header p { font-size: 0.92rem; }
    .service-card-img { height: 180px; }
    .service-card-content { padding: 20px; }
    .service-card h3 { font-size: 1.3rem; }

    .division-intro-text h2 { font-size: 1.4rem; }
    .division-intro-feature { max-height: 200px; }
    .division-intro { padding: 40px 0; }
    .gallery-section { padding: 40px 0; }
    .gallery-grid, .gallery-grid-4 { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .gallery-item-large { grid-column: span 1; }
    .gallery-title { font-size: 1.2rem; }

    .why-grid { grid-template-columns: 1fr; gap: 12px; }
    .why-card { padding: 24px 16px; }

    .cta-content h2 { font-size: 1.5rem; }
    .cta-content p { font-size: 0.92rem; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { justify-content: center; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 20px; }
    .btn-full { padding: 14px; font-size: 0.9rem; }

    .footer-nav { gap: 24px; }
    .footer-col h4 { font-size: 0.78rem; }
    .footer-col li { font-size: 0.82rem; }
    .footer-bottom p { font-size: 0.72rem; }

    .logo-img { height: 52px; }
    .navbar.scrolled .logo-img { height: 40px; }
}
