/* ========================================
   ADORES SHIPMANAGEMENT - Modern Website
   ======================================== */

:root {
    --color-primary: #0a2540;
    --color-primary-light: #0d3254;
    --color-primary-dark: #061829;
    --color-accent: #c8a951;
    --color-accent-light: #d4bc6a;
    --color-accent-dark: #a88b3a;
    --color-white: #ffffff;
    --color-off-white: #f8f9fb;
    --color-gray-100: #f0f2f5;
    --color-gray-200: #e2e6ea;
    --color-gray-300: #c5cdd5;
    --color-gray-500: #6b7c8f;
    --color-gray-700: #3d4f63;
    --color-gray-900: #1a2332;
    --color-success: #10b981;
    --color-error: #ef4444;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    --header-height: 72px;
    --top-bar-height: 40px;
    --total-header: calc(var(--header-height) + var(--top-bar-height));
    --hero-top-space: calc(var(--total-header) * 2 + 32px);
    --container-max: 1200px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.06);
    --shadow-md: 0 8px 30px rgba(10, 37, 64, 0.1);
    --shadow-lg: 0 20px 60px rgba(10, 37, 64, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--total-header);
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-gray-700);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

ul { list-style: none; }

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--color-primary-dark);
    border-color: transparent;
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 169, 81, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-white);
}

.btn-outline-dark {
    background: transparent;
    color: var(--color-primary-dark);
    border-color: rgba(6, 24, 41, 0.3);
}
.btn-outline-dark:hover {
    background: rgba(6, 24, 41, 0.08);
    border-color: var(--color-primary-dark);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}
.btn-white:hover {
    background: var(--color-off-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-full { width: 100%; }

/* ---- Header group (fixed) ---- */
.site-header-group {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: box-shadow var(--transition);
}

.site-header-group.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.18);
}

.top-bar {
    background: linear-gradient(90deg, var(--color-primary-dark) 0%, #071525 50%, var(--color-primary-dark) 100%);
    border-bottom: 1px solid rgba(200, 169, 81, 0.12);
    height: var(--top-bar-height);
}

.site-main {
    padding-top: var(--total-header);
    max-width: 100%;
    overflow-x: hidden;
}

.page-home .site-main,
.page-about .site-main,
.page-services .site-main,
.page-why-us .site-main,
.page-contact .site-main,
.page-privacy .site-main,
.page-accessibility .site-main {
    padding-top: 0;
}

/* ---- Top Bar ---- */
.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--top-bar-height);
    gap: 16px;
}
.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}
.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.68);
    transition: color var(--transition);
    white-space: nowrap;
}
.top-bar-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--color-accent);
    opacity: 0.85;
}
.top-bar-item:hover { color: var(--color-white); }
.top-bar-divider {
    width: 1px;
    height: 14px;
    background: rgba(200, 169, 81, 0.25);
    flex-shrink: 0;
}
.top-bar-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-accent-light);
    white-space: nowrap;
}
.top-bar-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-success);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.75; transform: scale(0.92); }
}
.top-bar-location { color: rgba(255, 255, 255, 0.55); }

/* ---- Header ---- */
.site-header {
    position: relative;
    height: var(--header-height);
    transition: background var(--transition), backdrop-filter var(--transition);
}

.header-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--color-accent) 20%, var(--color-accent-light) 50%, var(--color-accent) 80%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 2;
}

.page-home .site-header:not(.scrolled) {
    background: linear-gradient(to bottom, rgba(6, 24, 41, 0.92) 0%, rgba(6, 24, 41, 0.55) 65%, transparent 100%);
}

.page-home .site-header.scrolled,
.site-header.scrolled {
    background: rgba(10, 37, 64, 0.96);
    backdrop-filter: blur(16px);
}

.page-home .site-header.scrolled .header-accent,
.site-header.scrolled .header-accent,
.page-about .site-header .header-accent,
.page-services .site-header .header-accent,
.page-why-us .site-header .header-accent,
.page-contact .site-header .header-accent,
.page-privacy .site-header .header-accent,
.page-accessibility .site-header .header-accent {
    opacity: 1;
}

.page-about .site-header,
.page-services .site-header,
.page-why-us .site-header,
.page-contact .site-header,
.page-privacy .site-header,
.page-accessibility .site-header {
    background: rgba(10, 37, 64, 0.96);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 20px;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--color-white);
}

.logo-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: block;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
    transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), filter var(--transition);
}

.logo:hover .logo-icon {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(200, 169, 81, 0.45));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    gap: 4px;
    padding-left: 14px;
    border-left: 2px solid rgba(200, 169, 81, 0.5);
}
.logo-text strong {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 3.5px;
    color: var(--color-white);
}
.logo-text small {
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-accent-light);
}

.main-nav ul {
    display: flex;
    gap: 4px;
    align-items: center;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform var(--transition);
}

.main-nav a:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.06);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.main-nav a.active {
    color: var(--color-white);
    background: rgba(200, 169, 81, 0.08);
}

.nav-chevron {
    width: 14px;
    height: 14px;
    opacity: 0.7;
    transition: transform var(--transition);
}
.has-dropdown:hover .nav-chevron,
.has-dropdown:focus-within .nav-chevron,
.has-dropdown.open .nav-chevron {
    transform: rotate(180deg);
}

.mobile-nav-footer,
.mobile-nav-phone {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 81, 0.35);
    color: var(--color-accent-light);
    background: rgba(200, 169, 81, 0.08);
    transition: all var(--transition);
}
.header-phone svg { width: 18px; height: 18px; }
.header-phone:hover {
    background: rgba(200, 169, 81, 0.18);
    border-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-1px);
}

/* Nav dropdown */
.has-dropdown { position: relative; }
.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 260px;
    background: rgba(6, 24, 41, 0.98);
    border: 1px solid rgba(200, 169, 81, 0.15);
    border-radius: var(--radius-md);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    z-index: 1100;
    list-style: none;
}
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 24px;
    width: 12px;
    height: 12px;
    background: rgba(6, 24, 41, 0.98);
    border-left: 1px solid rgba(200, 169, 81, 0.15);
    border-top: 1px solid rgba(200, 169, 81, 0.15);
    transform: rotate(45deg);
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown li { margin: 0; }
.nav-dropdown a {
    display: block;
    padding: 11px 14px;
    font-size: 13px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover {
    background: rgba(200, 169, 81, 0.12);
    color: var(--color-accent-light);
}

.header-cta {
    padding: 10px 22px;
    font-size: 14px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 10px;
    transition: background var(--transition);
}
.nav-toggle:hover { background: rgba(255, 255, 255, 0.1); }
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition);
    border-radius: 2px;
}
.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: calc(100dvh + var(--total-header));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: calc(-1 * var(--total-header));
    padding-top: var(--hero-top-space);
    padding-bottom: 60px;
    box-sizing: border-box;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slider {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease, visibility 1.2s ease;
    z-index: 0;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--slide-pos, center 35%);
    transform: scale(1);
}

.hero-slide.is-active .hero-slide-img {
    animation: heroKenBurns 8s ease-out forwards;
}

@keyframes heroKenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(6, 24, 41, 0.75) 0%,
        rgba(10, 37, 64, 0.55) 40%,
        rgba(10, 37, 64, 0.78) 100%
    );
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    overflow: hidden;
    pointer-events: none;
}

.hero-slider-dots {
    position: absolute;
    bottom: 108px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
}

.hero-slider-dot:hover {
    border-color: var(--color-accent-light);
    background: rgba(200, 169, 81, 0.25);
}

.hero-slider-dot.is-active {
    width: 28px;
    border-radius: 999px;
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.hero-slider-dot:focus-visible {
    outline: 2px solid var(--color-accent-light);
    outline-offset: 3px;
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
    animation-delay: calc(var(--i) * 1.2s);
    left: calc(10% + var(--i) * 15%);
    top: calc(20% + var(--i) * 10%);
}
@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.2; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 0.5; }
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    line-height: 0;
}
.hero-waves svg { width: 100%; height: 80px; }

.hero-badge-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(200,169,81,0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(200,169,81,0); }
}

.scroll-indicator-text {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(200, 169, 81, 0.15);
    border: 1px solid rgba(200, 169, 81, 0.3);
    border-radius: 50px;
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 24px 40px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
}

.stat { text-align: center; }
.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--color-accent);
}
.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: rgba(255,255,255,0.5);
    animation: bounce 2s infinite;
}
.scroll-indicator svg { width: 28px; height: 28px; }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- Sections ---- */
.section {
    padding: 100px 0;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}
.section-label.light { color: var(--color-accent-light); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.25;
    margin-bottom: 16px;
}
.section-title.light { color: var(--color-white); }

.section-desc {
    font-size: 17px;
    color: var(--color-gray-500);
    max-width: 640px;
}
.section-desc.light { color: rgba(255,255,255,0.7); }

.section-header.center {
    text-align: center;
    margin-bottom: 60px;
}
.section-header.center .section-desc {
    margin: 0 auto;
}

/* ---- About ---- */
.about { background: var(--color-off-white); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}
.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    border: 3px solid var(--color-accent);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content p {
    margin-bottom: 16px;
    color: var(--color-gray-500);
}
.about-content .btn { margin-top: 12px; }

/* ---- Services ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    padding: 0;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-accent);
    transform: scaleX(0);
    transition: transform var(--transition);
    z-index: 2;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}
.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-card-image img {
    transform: scale(1.06);
}

.service-card-body {
    padding: 28px 24px 32px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 169, 81, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-accent-dark);
    margin-bottom: 20px;
}
.service-icon svg { width: 28px; height: 28px; }

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}
.service-card p {
    font-size: 14px;
    color: var(--color-gray-500);
    margin-bottom: 16px;
    line-height: 1.6;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-accent-dark);
    transition: gap var(--transition);
}
.service-link svg { width: 16px; height: 16px; }
.service-link:hover { gap: 10px; color: var(--color-primary); }

/* ---- Why Us ---- */
.why-us {
    position: relative;
    background: var(--color-primary);
    overflow: hidden;
}
.why-us-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(200, 169, 81, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(200, 169, 81, 0.05) 0%, transparent 40%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.feature-card {
    text-align: center;
    padding: 36px 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}
.feature-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(200, 169, 81, 0.12);
    border-radius: 50%;
    color: var(--color-accent);
}
.feature-icon svg { width: 28px; height: 28px; }

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* ---- CTA Banner ---- */
.cta-banner {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    padding: 60px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cta-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-primary-dark);
    margin-bottom: 8px;
}
.cta-text p {
    color: rgba(6, 24, 41, 0.7);
    font-size: 16px;
}
.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ---- Contact ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info p {
    color: var(--color-gray-500);
    margin-bottom: 32px;
}

.contact-departments {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px 48px;
    margin-top: 8px;
}

.contact-dept-wide {
    grid-column: 1;
}

.contact-dept-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.contact-dept-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-dept-link {
    font-size: 15px;
    color: var(--color-gray-700);
    line-height: 1.6;
    transition: color var(--transition);
    word-break: break-word;
}
.contact-dept-link:hover {
    color: var(--color-accent-dark);
}

.contact-office {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--color-gray-200);
    font-size: 14px;
    color: var(--color-gray-500);
    line-height: 1.7;
    max-width: 360px;
}
.contact-office-label {
    display: block;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.contact-details li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 169, 81, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-accent-dark);
    flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; }

.contact-details strong {
    display: block;
    font-size: 14px;
    color: var(--color-primary);
    margin-bottom: 4px;
}
.contact-details span,
.contact-details a {
    font-size: 15px;
    color: var(--color-gray-500);
}
.contact-details a:hover { color: var(--color-accent-dark); }

.contact-email-list {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-email-list li {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.contact-email-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--color-gray-500);
}

.contact-form-wrap {
    background: var(--color-off-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: max(16px, 15px);
    color: var(--color-gray-700);
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(200, 169, 81, 0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}

.form-message {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}
.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}
.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-error);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ---- Footer ---- */
.site-footer {
    position: relative;
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.72);
    margin-top: 0;
    clear: both;
}

.footer-wave {
    position: relative;
    height: 48px;
    margin-top: -1px;
    color: var(--color-primary-dark);
    line-height: 0;
}
.footer-wave svg {
    width: 100%;
    height: 48px;
    display: block;
}

.footer-main {
    background: linear-gradient(180deg, var(--color-primary-dark) 0%, #040e18 100%);
    border-top: 1px solid rgba(200, 169, 81, 0.1);
}

.footer-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 56px 0 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-footer .logo-text strong { font-size: 20px; }
.logo-footer .logo-text small { font-size: 7.5px; letter-spacing: 3px; }

.footer-desc {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.75;
    max-width: 420px;
    color: rgba(255, 255, 255, 0.62);
}

.footer-cta-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(200, 169, 81, 0.2);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
}
.footer-cta-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 8px;
}
.footer-cta-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--color-white);
    line-height: 1.35;
    margin-bottom: 20px;
}
.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-outline-footer {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.25);
    padding: 12px 28px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-outline-footer:hover {
    border-color: var(--color-accent);
    color: var(--color-accent-light);
    background: rgba(200, 169, 81, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    gap: 40px;
    padding: 48px 0 40px;
}

.footer-heading {
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    border-radius: 2px;
}

.footer-links li { margin-bottom: 11px; }
.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.62);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width var(--transition);
}
.footer-links a:hover {
    color: var(--color-accent-light);
    padding-left: 4px;
}
.footer-links a:hover::before { width: 12px; }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 14px;
}
.footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    background: rgba(200, 169, 81, 0.1);
    border: 1px solid rgba(200, 169, 81, 0.2);
    color: var(--color-accent);
}
.footer-contact-icon svg { width: 18px; height: 18px; }
.footer-contact-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 3px;
}
.footer-contact a {
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
}
.footer-contact a:hover { color: var(--color-accent-light); }

.footer-email-list {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-email-list li {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.footer-email-role {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.footer-certs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    padding: 24px 0 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-cert {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
}
.footer-cert svg {
    width: 14px;
    height: 14px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-bottom-inner p {
    margin: 0;
    line-height: 1.5;
    padding-top: 8px;
}

.footer-contact li > div {
    flex: 1;
    min-width: 0;
}

.footer-contact li > div > span:not(.footer-contact-label):not(.footer-email-role) {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    word-break: break-word;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0 22px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}
.footer-tagline {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(200, 169, 81, 0.65);
}
.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}
.footer-legal a:hover { color: var(--color-accent); }

/* ---- Animations ---- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--delay, 0s);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0);
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: calc(-1 * var(--total-header));
    padding-top: var(--hero-top-space);
    padding-bottom: 40px;
    box-sizing: border-box;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding: 0 24px;
    text-align: center;
    width: 100%;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}
.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 24, 41, 0.95) 0%, rgba(10, 37, 64, 0.85) 100%);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 16px;
}
.breadcrumb a {
    color: rgba(255,255,255,0.6);
}
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}
.page-hero-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    margin: 0 auto;
}

/* ---- Section CTA ---- */
.section-cta {
    margin-top: 48px;
}
.section-cta.center { text-align: center; }

/* ---- Values Grid ---- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.value-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: all var(--transition);
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.value-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-accent);
    opacity: 0.5;
    margin-bottom: 12px;
}
.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}
.value-card p {
    font-size: 14px;
    color: var(--color-gray-500);
    line-height: 1.6;
}

/* ---- About grid reverse ---- */
.about-grid-reverse {
    direction: rtl;
}
.about-grid-reverse > * {
    direction: ltr;
}

/* ---- Location card ---- */
.location-card {
    background: var(--color-primary);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    text-align: center;
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
}
.location-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(200, 169, 81, 0.15);
    border-radius: 50%;
    color: var(--color-accent);
}
.location-icon svg { width: 28px; height: 28px; }
.location-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}
.location-card p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.6;
}

/* ---- Service Details ---- */
.service-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-detail {
    display: grid;
    grid-template-columns: 220px 56px 1fr;
    gap: 24px;
    align-items: start;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all var(--transition);
    scroll-margin-top: calc(var(--total-header) + 20px);
    overflow: hidden;
}
.service-detail:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.service-detail-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
}
.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.service-detail:hover .service-detail-image img {
    transform: scale(1.04);
}

.service-detail-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 169, 81, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-accent-dark);
    flex-shrink: 0;
}
.service-detail-icon svg { width: 28px; height: 28px; }

.service-detail-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}
.service-detail-content p {
    font-size: 15px;
    color: var(--color-gray-500);
    line-height: 1.7;
    margin-bottom: 12px;
}

/* ---- Why Us page ---- */
.why-us-page {
    padding-top: 80px;
}

/* ---- Promise Grid ---- */
.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.promise-item {
    text-align: center;
    padding: 32px 20px;
}
.promise-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: rgba(200, 169, 81, 0.1);
    border-radius: 50%;
    color: var(--color-accent-dark);
}
.promise-icon svg { width: 26px; height: 26px; }
.promise-item h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}
.promise-item p {
    font-size: 14px;
    color: var(--color-gray-500);
    line-height: 1.6;
}

/* ---- Stats Banner ---- */
.stats-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: var(--color-primary);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
}

.stats-banner-item {
    text-align: center;
}
.stats-banner-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 4px;
}
.stats-banner-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---- Legal / Prose ---- */
.container-narrow {
    max-width: 760px;
}

.prose h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 32px 0 12px;
}
.prose h2:first-of-type { margin-top: 0; }
.prose p {
    color: var(--color-gray-500);
    margin-bottom: 16px;
    line-height: 1.8;
}
.prose ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}
.prose li {
    color: var(--color-gray-500);
    margin-bottom: 8px;
    line-height: 1.7;
}
.prose a {
    color: var(--color-accent-dark);
    text-decoration: underline;
}
.prose a:hover { color: var(--color-primary); }
.prose em { color: var(--color-gray-500); font-size: 14px; }

/* ---- Trust Bar ---- */
.trust-bar {
    background: var(--color-primary);
    border-top: 1px solid rgba(200, 169, 81, 0.15);
    border-bottom: 1px solid rgba(200, 169, 81, 0.15);
    padding: 16px 0;
    overflow: hidden;
    max-width: 100%;
}
.trust-marquee {
    overflow: hidden;
    max-width: 100%;
}
.trust-track {
    display: flex;
    gap: 48px;
    animation: marquee 30s linear infinite;
    width: max-content;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

/* ---- Check List ---- */
.check-list {
    margin: 20px 0 28px;
}
.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--color-gray-500);
    font-size: 15px;
}
.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 16px;
    background: rgba(200, 169, 81, 0.15);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a88b3a' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

/* ---- About float card ---- */
.about-float-card {
    position: absolute;
    bottom: 24px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--color-white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    animation: floatCard 4s ease-in-out infinite;
}
.about-float-card svg {
    width: 32px;
    height: 32px;
    color: var(--color-accent-dark);
    flex-shrink: 0;
}
.about-float-card strong {
    display: block;
    font-size: 14px;
    color: var(--color-primary);
}
.about-float-card span {
    font-size: 12px;
    color: var(--color-gray-500);
}
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ---- Stats Section ---- */
.stats-section {
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stat-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.stat-card-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 8px;
}
.counter-suffix {
    color: var(--color-accent);
}
.stat-card-label {
    font-size: 13px;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ---- Process Section ---- */
.process-section { background: var(--color-off-white); }
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.process-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all var(--transition);
}
.process-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}
.process-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-accent);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 12px;
}
.process-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}
.process-card p {
    font-size: 14px;
    color: var(--color-gray-500);
    line-height: 1.6;
}

/* ---- Service card num ---- */
.service-card-num {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 28px;
    font-weight: 800;
    color: var(--color-gray-100);
    line-height: 1;
    z-index: 1;
}

/* ---- Gallery ---- */
.gallery-section {
    background: var(--color-off-white);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 0;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 16px 14px;
    background: linear-gradient(to top, rgba(6, 24, 41, 0.9), transparent);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ---- Location overlay ---- */
.location-overlay-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(10, 37, 64, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(200, 169, 81, 0.3);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    color: var(--color-white);
    text-align: center;
}
.location-overlay-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}
.location-overlay-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}
.location-overlay-card .location-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
}

/* ---- Commitments ---- */
.commitments-section { background: var(--color-off-white); }
.commitments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.commitment-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all var(--transition);
}
.commitment-card:hover {
    border-color: rgba(200, 169, 81, 0.35);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.commitment-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 169, 81, 0.12);
    border-radius: var(--radius-sm);
    color: var(--color-accent-dark);
    margin-bottom: 16px;
}
.commitment-icon svg { width: 22px; height: 22px; }
.commitment-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}
.commitment-card p {
    font-size: 14px;
    color: var(--color-gray-500);
    line-height: 1.65;
}

/* ---- Testimonials (legacy styles retained for compatibility) ---- */
.testimonials-section { background: var(--color-off-white); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    margin: 0;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.testimonial-quote-icon {
    color: var(--color-accent);
    opacity: 0.4;
    margin-bottom: 16px;
}
.testimonial-quote-icon svg { width: 32px; height: 32px; }
.testimonial-text {
    font-size: 15px;
    color: var(--color-gray-700);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
    margin-bottom: 24px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.testimonial-author cite {
    display: block;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    color: var(--color-primary);
}
.testimonial-author span {
    font-size: 12px;
    color: var(--color-gray-500);
}

/* ---- FAQ ---- */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}
.faq-header p {
    color: var(--color-gray-500);
    margin-top: 12px;
}
.faq-header a {
    color: var(--color-accent-dark);
    text-decoration: underline;
}
.faq-item {
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item[open] {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-sm);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    font-weight: 600;
    font-size: 15px;
    color: var(--color-primary);
    cursor: pointer;
    list-style: none;
    transition: background var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-item[open] .faq-question { background: rgba(200, 169, 81, 0.06); }
.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--color-accent-dark);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
    padding: 0 22px 18px;
}
.faq-answer p {
    font-size: 14px;
    color: var(--color-gray-500);
    line-height: 1.7;
}

/* ---- Timeline ---- */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-accent), var(--color-gray-200));
}
.timeline-item {
    position: relative;
    padding-left: 60px;
    padding-bottom: 40px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
    position: absolute;
    left: 11px;
    top: 4px;
    width: 20px;
    height: 20px;
    background: var(--color-accent);
    border: 3px solid var(--color-white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(200, 169, 81, 0.2);
}
.timeline-year {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-accent-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.timeline-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
}
.timeline-item p {
    font-size: 14px;
    color: var(--color-gray-500);
    line-height: 1.6;
}

/* ---- Map embed ---- */
.map-section {
    padding-bottom: 80px;
}
.map-header {
    margin-bottom: 28px;
}
.map-header .section-title {
    margin-bottom: 12px;
}
.map-address {
    font-size: 16px;
    color: var(--color-gray-500);
    line-height: 1.7;
    max-width: 640px;
    margin-bottom: 20px;
}
.map-directions {
    display: inline-flex;
}
.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow-sm);
    aspect-ratio: 16/9;
    background: var(--color-gray-100);
}
.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 300px;
    color: var(--color-gray-500);
    text-align: center;
    padding: 40px;
}
.map-placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--color-accent);
    margin-bottom: 16px;
}

/* ---- Back to top ---- */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(200, 169, 81, 0.4);
    transition: all var(--transition);
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}
.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.back-to-top:hover {
    background: var(--color-accent-light);
    transform: translateY(-4px);
}
.back-to-top svg { width: 22px; height: 22px; }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .top-bar-left .top-bar-divider,
    .top-bar-left a[href^="mailto:"] {
        display: none;
    }
}

@media (max-width: 1024px) {
    .main-nav ul { gap: 2px; }
    .main-nav a { padding: 8px 12px; font-size: 13px; }
    .header-cta { padding: 8px 16px; font-size: 13px; }
    .header-phone { display: none; }
    .logo-text strong { font-size: 16px; letter-spacing: 2.5px; }
    .footer-intro { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-departments { grid-template-columns: 1fr; gap: 28px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr; }
    .promise-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-banner { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .commitments-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-grid { grid-template-columns: 1fr; gap: 40px; }
    .service-detail {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
    }
    .service-detail-icon {
        display: none;
    }
    .service-detail-image {
        max-height: 240px;
        aspect-ratio: 16/9;
    }
    .location-card { padding: 36px 28px; }
}

@media (max-width: 900px) {
    :root {
        --top-bar-height: 0px;
        --safe-top: env(safe-area-inset-top, 0px);
        --total-header: calc(var(--header-height) + var(--safe-top));
    }

    .top-bar { display: none; }

    .site-header {
        height: calc(var(--header-height) + var(--safe-top));
        padding-top: var(--safe-top);
        box-sizing: border-box;
    }

    .page-hero {
        --hero-top-space: calc(var(--header-height) + var(--total-header) + 32px);
    }

    .nav-toggle { display: flex; }
    .header-inner {
        gap: 10px;
    }
    .header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
        flex-shrink: 0;
    }
    .header-cta { display: none; }
    .header-phone {
        display: flex;
        width: 40px;
        height: 40px;
    }
    .header-phone svg { width: 17px; height: 17px; }

    .nav-toggle {
        width: 40px;
        height: 40px;
        padding: 0;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        z-index: 1001;
        position: relative;
    }
    .nav-toggle span { width: 20px; }

    .has-dropdown .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 12px;
        min-width: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition);
    }
    .has-dropdown .nav-dropdown::before { display: none; }
    .has-dropdown.open .nav-dropdown {
        max-height: 400px;
    }
    .nav-dropdown a {
        font-size: 14px;
        padding: 8px 16px;
        color: rgba(255, 255, 255, 0.7);
    }

    .main-nav {
        position: fixed;
        top: var(--total-header);
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        background: linear-gradient(180deg, rgba(6, 24, 41, 0.99) 0%, rgba(10, 37, 64, 0.98) 100%);
        backdrop-filter: blur(16px);
        padding: 20px 24px calc(32px + env(safe-area-inset-bottom, 0px));
        transform: translate3d(100%, 0, 0);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
        pointer-events: none;
        overflow-x: hidden;
        overflow-y: auto;
        z-index: 999;
        display: flex;
        flex-direction: column;
    }
    .main-nav.open {
        transform: translate3d(0, 0, 0);
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 4px;
        align-items: stretch;
        flex: 1;
    }
    .main-nav a {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: var(--radius-md);
        justify-content: space-between;
    }
    .main-nav a::after {
        left: 16px;
        right: auto;
        width: 24px;
    }
    .main-nav a.active::after,
    .main-nav a:hover::after {
        transform: scaleX(1);
    }

    .mobile-nav-footer {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid rgba(200, 169, 81, 0.15);
    }
    .mobile-nav-phone {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: rgba(255, 255, 255, 0.75);
        font-size: 15px;
        font-weight: 500;
    }
    .mobile-nav-phone:hover { color: var(--color-accent-light); }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: var(--total-header);
        overflow-x: hidden;
    }

    body.nav-open {
        overflow: hidden;
        touch-action: none;
    }

    :root {
        --safe-top: env(safe-area-inset-top, 0px);
        --header-height: 64px;
        --top-bar-height: 0px;
        --total-header: calc(var(--header-height) + var(--safe-top));
        --hero-top-space: calc(var(--header-height) + var(--total-header) + 32px);
    }

    .container { padding: 0 20px; }

    .top-bar { display: none; }

    .site-header-group {
        max-width: 100%;
        overflow-x: hidden;
    }

    .site-header {
        height: calc(var(--header-height) + var(--safe-top));
        padding-top: var(--safe-top);
        box-sizing: border-box;
    }

    .site-footer {
        max-width: 100%;
        overflow-x: hidden;
    }

    .main-nav {
        top: var(--total-header);
    }

    .header-inner {
        height: var(--header-height);
    }

    .logo {
        gap: 10px;
        flex: 1 1 auto;
        min-width: 0;
        overflow: hidden;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
    }
    .logo-text {
        gap: 2px;
        padding-left: 10px;
        min-width: 0;
        overflow: hidden;
    }
    .logo-text strong {
        font-size: 15px;
        letter-spacing: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .logo-text small {
        font-size: 6px;
        letter-spacing: 1.5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero {
        min-height: 100dvh;
        min-height: 100svh;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        margin-top: calc(-1 * var(--total-header));
        padding-top: var(--hero-top-space);
        padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
        max-width: 100%;
    }

    .hero-content {
        padding: 0;
        width: 100%;
        max-width: 100%;
        margin-inline: auto;
        box-sizing: border-box;
    }

    .hero-bg,
    .hero-slider,
    .hero-slide-img {
        max-width: 100%;
    }

    .hero-badge {
        font-size: 10px;
        padding: 7px 14px;
        margin-bottom: 16px;
        letter-spacing: 0.6px;
        line-height: 1.45;
        max-width: 100%;
        white-space: normal;
    }

    .hero-badge-dot {
        width: 6px;
        height: 6px;
        margin-right: 6px;
        vertical-align: middle;
    }

    .hero-title {
        font-size: clamp(1.65rem, 7.5vw, 2.25rem);
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
        line-height: 1.55;
        margin-bottom: 22px;
        max-width: none;
        padding: 0 4px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 24px;
        width: 100%;
        max-width: 320px;
    }

    .hero-actions .btn-lg {
        width: 100%;
        max-width: none;
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px 8px;
        padding: 14px 12px;
        width: 100%;
        max-width: 100%;
        margin-inline: auto;
    }

    .hero-stats .stat {
        flex: 1 1 calc(33.333% - 12px);
        min-width: 72px;
    }

    .hero-stats .stat-number {
        font-size: 18px;
        line-height: 1.2;
    }

    .hero-stats .stat-label {
        font-size: 9px;
        letter-spacing: 0.6px;
        line-height: 1.3;
    }

    .stat-divider {
        width: 1px;
        height: 32px;
        flex-shrink: 0;
    }

    .scroll-indicator { display: none; }

    .hero-slider-dots {
        bottom: 20px;
        gap: 8px;
    }

    .hero-slider-dot {
        width: 8px;
        height: 8px;
    }

    .hero-slider-dot.is-active {
        width: 22px;
    }

    .hero-waves svg { height: 48px; }

    .hero-slide.is-active .hero-slide-img {
        animation: none;
    }

    .page-hero {
        min-height: 220px;
        padding-bottom: 36px;
        --hero-top-space: calc(var(--header-height) + var(--total-header) + 32px);
        overflow: hidden;
        max-width: 100%;
    }

    .page-hero-content { padding: 0; }

    .page-hero-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        line-height: 1.2;
    }

    .page-hero-subtitle {
        font-size: 15px;
        line-height: 1.55;
        max-width: 100%;
        padding: 0;
    }

    .breadcrumb {
        flex-wrap: wrap;
        font-size: 12px;
    }

    .section-header.center { margin-bottom: 40px; }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-departments {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .contact-dept-wide {
        grid-column: auto;
    }
    .contact-office {
        max-width: none;
    }
    .about-image { overflow: hidden; }
    .about-image-accent { display: none; }

    .about-float-card {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 16px;
        max-width: 100%;
        animation: none;
    }

    .location-overlay-card {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 16px 18px;
    }
    .location-overlay-card h3 { font-size: 16px; }
    .location-overlay-card p { font-size: 13px; line-height: 1.5; }
    .location-overlay-card .location-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }

    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .promise-grid { grid-template-columns: 1fr; }
    .stats-banner {
        grid-template-columns: 1fr 1fr;
        padding: 32px 20px;
        gap: 20px;
    }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .service-detail {
        grid-template-columns: 1fr;
        padding: 20px 16px;
    }
    .service-detail-image { max-height: 220px; aspect-ratio: 16/9; }
    .about-grid-reverse { direction: ltr; }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
    .cta-actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }
    .cta-actions .btn { width: 100%; }

    .cta-banner { padding: 48px 0; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 20px 16px; }
    .contact-dept-link { font-size: 14px; }

    .stats-grid { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .stats-section { margin-top: 0; padding-top: 32px; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 36px 0 28px;
    }

    .footer-intro {
        padding: 36px 0 28px;
        text-align: left;
    }

    .footer-brand .logo-footer {
        justify-content: flex-start;
    }

    .footer-desc { max-width: none; }

    .footer-cta-box { padding: 22px 18px; }

    .footer-cta-text {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .footer-cta-actions {
        flex-direction: column;
    }

    .footer-cta-actions .btn { width: 100%; justify-content: center; }

    .footer-links,
    .footer-contact {
        text-align: left;
    }

    .footer-heading::after {
        left: 0;
        transform: none;
    }

    .footer-contact li {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .footer-contact a,
    .footer-email-list a {
        word-break: break-word;
    }

    .footer-certs {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px 0 12px;
    }

    .footer-cert {
        width: 100%;
        justify-content: flex-start;
        font-size: 11px;
        letter-spacing: 0.4px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        text-align: center;
        padding: 32px 0 calc(76px + env(safe-area-inset-bottom, 0px));
    }

    .footer-bottom-inner p {
        font-size: 12px;
        line-height: 1.55;
        max-width: 100%;
        width: 100%;
        text-align: center;
        padding: 16px 16px 0;
        box-sizing: border-box;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 20px;
        width: 100%;
    }

    .footer-tagline { display: none; }

    .back-to-top {
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        right: max(16px, env(safe-area-inset-right));
        width: 44px;
        height: 44px;
    }

    .back-to-top svg { width: 20px; height: 20px; }

    .map-section { padding-bottom: 60px; }
    .map-embed {
        aspect-ratio: 4/3;
        min-height: 240px;
    }
    .map-address { font-size: 15px; }

    .faq-grid { gap: 28px; }

    .faq-question {
        font-size: 15px;
        padding: 16px 44px 16px 16px;
    }

    .timeline { padding-left: 28px; }
    .timeline-item { padding-left: 20px; }

    .trust-track { gap: 32px; }

    .section { padding: 60px 0; }
    .why-us-page { padding-top: 32px; }
    .legal-content.section { padding: 48px 0 60px; }
    .value-card { padding: 28px 22px; }

    .prose h2 {
        font-size: 20px;
        margin: 24px 0 10px;
    }
    .prose p,
    .prose li {
        font-size: 15px;
        line-height: 1.75;
    }
    .prose ul { padding-left: 20px; }

    .section-title {
        font-size: clamp(1.65rem, 5vw, 2rem);
    }

    .cta-actions .btn { white-space: normal; }

    .reveal-left,
    .reveal-right {
        transform: translateY(32px);
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .logo-text small { display: none; }

    .logo-text strong {
        font-size: 14px;
        letter-spacing: 1.8px;
    }

    .hero {
        --hero-top-space: calc(var(--header-height) + var(--total-header) + 24px);
        padding-bottom: calc(48px + env(safe-area-inset-bottom, 0px));
    }

    .hero-badge {
        font-size: 9px;
        padding: 6px 12px;
    }

    .hero-title {
        font-size: clamp(1.5rem, 7vw, 1.85rem);
    }

    .hero-subtitle {
        font-size: 0.875rem;
        margin-bottom: 18px;
    }

    .hero-actions {
        gap: 8px;
        margin-bottom: 20px;
    }

    .hero-actions .btn-lg {
        padding: 11px 18px;
        font-size: 13px;
    }

    .hero-stats {
        padding: 12px 8px;
        gap: 8px;
    }

    .hero-stats .stat-number { font-size: 16px; }
    .hero-stats .stat-label { font-size: 8px; }

    .stat-divider { display: none; }

    .hero-slider-dots { bottom: 14px; }

    .section { padding: 52px 0; }
    .legal-content.section { padding: 40px 0 52px; }

    .page-hero {
        min-height: 200px;
        padding-bottom: 32px;
    }

    .stats-banner { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }

    .gallery-grid { grid-template-columns: 1fr; }

    .commitments-grid { grid-template-columns: 1fr; }

    .service-card { padding: 28px 22px; }
    .btn-lg { padding: 14px 24px; font-size: 15px; }

    .page-hero-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
}

@media (max-width: 360px) {
    .logo-text strong {
        font-size: 13px;
        letter-spacing: 1.5px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hero-bg-img { animation: none; }
    .hero-slide.is-active .hero-slide-img { animation: none; }
    .trust-track { animation: none; }
    .about-float-card { animation: none; }
}
