/* ============================================
   MDA Automobile Premium — Main Stylesheet
   Colors: Navy #0a1628, Gold #c9a84c, White #fff, Warm #f8f7f4
   Fonts: Playfair Display (headings), Inter (body)
   ============================================ */

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

:root {
    --navy: #0a1628;
    --navy-light: #1a2744;
    --navy-medium: #12203a;
    --gold: #c9a84c;
    --gold-light: #d4b85c;
    --gold-dark: #b8943f;
    --white: #ffffff;
    --warm: #f8f7f4;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --text-light: rgba(255,255,255,0.7);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --transition: all 0.3s ease;
    --font-heading: 'Montserrat', -apple-system, sans-serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- Site Header (Double Header) --- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

/* Secondary bar */
.header-secondary {
    background: var(--navy);
    border-bottom: 1px solid rgba(201,168,76,0.12);
    padding: 6px 0;
    font-size: 13px;
    transition: all 0.3s ease;
}
.header-secondary .container { display: flex; justify-content: space-between; align-items: center; }
.header-secondary-left { display: flex; align-items: center; gap: 8px; }
.header-secondary-left a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.header-secondary-left a:hover { color: var(--gold); }
.header-secondary-left i { font-size: 11px; margin-right: 4px; color: var(--gold); opacity: 0.6; }
.header-secondary-sep { color: rgba(255,255,255,0.15); font-size: 11px; }
.header-secondary-right { display: flex; gap: 10px; }
.header-secondary-right a {
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    border-radius: 50%;
    transition: var(--transition);
}
.header-secondary-right a:hover { color: var(--gold); background: rgba(201,168,76,0.1); }

/* Main nav */
.header-main {
    background: rgba(10,22,40,0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201,168,76,0.08);
    transition: all 0.3s ease;
}
.header-main .container { display: flex; justify-content: space-between; align-items: center; }

/* Scrolled state */
.site-header.scrolled .header-secondary { margin-top: -40px; opacity: 0; pointer-events: none; }
.site-header.scrolled .header-main {
    background: rgba(10,22,40,0.97);
    backdrop-filter: blur(24px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    padding: 10px 0;
}

/* Brand */
.navbar-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.navbar-brand img { height: 42px; transition: var(--transition); }
.site-header.scrolled .navbar-brand img { height: 36px; }
.navbar-brand-text { display: flex; flex-direction: column; }
.navbar-brand-name {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.navbar-brand-tagline {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}

/* Nav links */
.header-nav-links { display: flex; align-items: center; gap: 6px; }
.header-nav-link {
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    padding: 8px 14px;
    position: relative;
    transition: var(--transition);
    text-decoration: none;
    border-radius: 4px;
}
.header-nav-link:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.header-nav-link.active {
    color: var(--gold);
    background: rgba(201,168,76,0.08);
}
.header-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 14px; right: 14px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

/* CTA button */
.navbar-cta {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 9px 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    margin-left: 8px;
    transition: var(--transition);
}
.navbar-cta:hover {
    background: var(--gold-light);
    color: var(--navy);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201,168,76,0.35);
}

/* Hamburger (Sling animation) */
.hamburger {
    display: none;
    width: 42px;
    height: 42px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    border-radius: 6px;
    position: relative;
    transition: background 0.2s ease;
}
.hamburger:hover { background: rgba(255,255,255,0.07); }
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    left: 10px;
    transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6),
                opacity 0.2s ease,
                width 0.3s ease;
}
.hamburger span:nth-child(1) { top: 12px; }
.hamburger span:nth-child(2) { top: 20px; }
.hamburger span:nth-child(3) { top: 28px; }

/* Sling animation: top rotates down-right, middle fades, bottom slings up-left */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.15s ease, transform 0.3s ease;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* Mobile drawer */
.mobile-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 22, 40, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10001;
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

.mobile-drawer {
    position: fixed; top: 0; right: 0;
    width: 320px; max-width: 85vw; height: 100vh;
    background: linear-gradient(180deg, #0d1b30 0%, var(--navy) 100%);
    z-index: 10002;
    overflow-y: auto;
    box-shadow: -10px 0 50px rgba(0,0,0,0.5);
    display: flex; flex-direction: column;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.45s;
}
.mobile-drawer.open { transform: translateX(0); visibility: visible; }

/* Decorative gold line at top */
.mobile-drawer::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Header with brand */
.mobile-drawer-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 24px 20px;
}
.mobile-drawer-brand {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
}
.mobile-drawer-brand img {
    width: 40px; height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.mobile-drawer-brand-name {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800; font-size: 14px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}
.mobile-drawer-brand-tagline {
    display: block;
    font-family: var(--font-body);
    font-size: 11px; font-weight: 400;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.mobile-drawer-close {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    font-size: 14px; color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}
.mobile-drawer-close:hover {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--gold);
    color: var(--gold);
    transform: rotate(90deg);
}

/* Navigation links */
.mobile-drawer-nav {
    padding: 8px 16px;
    flex: 1;
}
.mobile-drawer-link {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px;
    font-family: var(--font-heading);
    font-size: 14px; font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateX(30px);
}
.mobile-drawer.open .mobile-drawer-link {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s ease, opacity 0.4s ease calc(var(--i) * 0.06s + 0.15s), transform 0.4s ease calc(var(--i) * 0.06s + 0.15s);
}
.mobile-drawer-link i:first-child {
    width: 20px; text-align: center;
    font-size: 15px;
    color: rgba(255,255,255,0.35);
    transition: color 0.3s ease;
}
.mobile-drawer-link span { flex: 1; }
.mobile-drawer-arrow {
    font-size: 10px;
    color: rgba(255,255,255,0.15);
    transition: all 0.3s ease;
    transform: translateX(0);
}
.mobile-drawer-link:hover,
.mobile-drawer-link:active {
    background: rgba(255,255,255,0.06);
    color: var(--white);
}
.mobile-drawer-link:hover i:first-child { color: var(--gold); }
.mobile-drawer-link:hover .mobile-drawer-arrow {
    color: var(--gold);
    transform: translateX(3px);
}
.mobile-drawer-link.active {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
    color: var(--gold);
}
.mobile-drawer-link.active i:first-child { color: var(--gold); }
.mobile-drawer-link.active::before {
    content: '';
    position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 3px; height: 24px;
    background: var(--gold);
    border-radius: 0 3px 3px 0;
}

/* CTA button */
.mobile-drawer-cta {
    padding: 8px 24px 16px;
}
.mobile-drawer-cta-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--gold), #d4b85c);
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 13px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}
.mobile-drawer-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(201, 168, 76, 0.4);
}
.mobile-drawer-cta-btn i { font-size: 15px; }

/* Footer area */
.mobile-drawer-footer {
    padding: 16px 24px 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: auto;
}
.mobile-drawer-contact {
    display: flex; flex-direction: column; gap: 12px;
    margin-bottom: 20px;
}
.mobile-drawer-contact a {
    display: flex; align-items: center; gap: 12px;
    font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.3s ease;
}
.mobile-drawer-contact a:hover { color: var(--white); }
.mobile-drawer-contact-icon {
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 8px;
    color: var(--gold);
    font-size: 13px;
    transition: all 0.3s ease;
}
.mobile-drawer-contact a:hover .mobile-drawer-contact-icon {
    background: rgba(201, 168, 76, 0.2);
    border-color: rgba(201, 168, 76, 0.3);
}

/* Social icons */
.mobile-drawer-social {
    display: flex; gap: 10px;
}
.mobile-drawer-social a {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    color: rgba(255,255,255,0.45);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.mobile-drawer-social a:hover {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* --- Hero (Karet Style) --- */
.hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-bg-image {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.75) 50%, rgba(10,22,40,0.85) 100%);
    z-index: 2;
}

/* Decorative lines */
.hero-deco-line {
    position: absolute;
    background: linear-gradient(180deg, transparent, rgba(201,168,76,0.15), transparent);
    z-index: 3;
}
.hero-deco-line-1 { width: 1px; height: 100%; top: 0; left: 20%; }
.hero-deco-line-2 { width: 1px; height: 100%; top: 0; left: 80%; }
.hero-deco-circle {
    position: absolute;
    width: 500px; height: 500px;
    border: 1px solid rgba(201,168,76,0.06);
    border-radius: 50%;
    top: -150px; right: -100px;
    z-index: 3;
    animation: heroCircleSpin 40s linear infinite;
}
@keyframes heroCircleSpin { to { transform: rotate(360deg); } }

.hero .container { position: relative; z-index: 4; flex: 1; display: flex; align-items: center; }
.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 140px 0 120px;
    gap: 40px;
}
.hero-content { max-width: 650px; }

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}
.hero-badge-line {
    width: 40px; height: 2px;
    background: var(--gold);
}
.hero-badge-text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

/* Title */
.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 22px;
    text-transform: uppercase;
}
.hero-title-line { display: block; }
.hero-title-line:first-child { font-size: 54px; }
.hero-title-line:last-child { font-size: 58px; }
.hero-gradient {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 500px;
}

/* Hero actions */
.hero-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}
.btn-glow::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: btnShine 3s ease-in-out infinite;
}
@keyframes btnShine { 0% { left: -100%; } 50%, 100% { left: 100%; } }

.hero-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}
.hero-phone:hover { transform: translateX(3px); }
.hero-phone-icon {
    width: 48px; height: 48px;
    border: 2px solid rgba(201,168,76,0.4);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 16px;
    animation: phonePulse 2s ease-in-out infinite;
}
@keyframes phonePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.3); }
    50% { box-shadow: 0 0 0 8px rgba(201,168,76,0); }
}
.hero-phone-text small { display: block; font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; }
.hero-phone-text strong { display: block; font-size: 16px; color: var(--white); font-weight: 600; }

/* Experience badge (right side) */
.hero-experience {
    flex-shrink: 0;
}
.hero-experience-inner {
    width: 160px; height: 160px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    animation: expFloat 4s ease-in-out infinite;
}
.hero-experience-inner::before {
    content: '';
    position: absolute;
    top: -8px; left: -8px; right: -8px; bottom: -8px;
    border: 1px dashed rgba(201,168,76,0.3);
    border-radius: 50%;
    animation: heroCircleSpin 20s linear infinite reverse;
}
.hero-experience-number {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.hero-experience-label {
    font-size: 12px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    font-weight: 600;
    line-height: 1.3;
}
@keyframes expFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Hero bottom stats bar */
.hero-bottom-bar {
    position: relative;
    z-index: 5;
    background: var(--gold);
}
.hero-bottom-bar .container { max-width: 100%; padding: 0; }
.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}
.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    padding: 22px 15px;
    position: relative;
    transition: var(--transition);
}
.hero-stat-item > div { text-align: center; }
.hero-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 20%; height: 60%;
    width: 1px;
    background: rgba(10,22,40,0.15);
}
.hero-stat-item:hover { background: rgba(10,22,40,0.08); }
.hero-stat-item i {
    font-size: 28px;
    color: var(--navy);
    opacity: 0.7;
}
.hero-stat-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}
.hero-stat-item span {
    display: block;
    font-size: 12px;
    color: rgba(10,22,40,0.65);
    margin-top: 2px;
}

/* Entrance animations */
.hero-anim-1 { animation: heroFadeUp 0.7s ease-out 0.1s both; }
.hero-anim-2 { animation: heroFadeUp 0.7s ease-out 0.25s both; }
.hero-anim-3 { animation: heroFadeUp 0.7s ease-out 0.4s both; }
.hero-anim-4 { animation: heroFadeUp 0.7s ease-out 0.55s both; }
.hero-anim-5 { animation: heroFadeUp 0.7s ease-out 0.7s both; }
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Keep old classes for other pages */
.hero-image {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}
.hero-image-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    background: var(--navy-light);
    border: 2px solid rgba(201,168,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 14px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover {
    background: var(--gold-light);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}
.btn-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

/* --- Section Styles --- */
.section { padding: 100px 0; overflow-x: clip; }
.section-dark { background: var(--navy); color: var(--white); }
.section-warm { background: var(--warm); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}
.section-dark .section-title { color: var(--white); }
.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.section-dark .section-subtitle { color: var(--text-light); }

/* --- Section Header Left (Karet) --- */
.section-header-left { margin-bottom: 50px; }
.section-header-left .section-label { display: block; margin-bottom: 10px; }
.section-header-left .section-title { text-align: left; }
.section-title-line { width: 60px; height: 3px; background: var(--gold); margin-top: 15px; }

/* --- Service Cards (Karet Style) --- */
.services-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    position: relative;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.service-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.service-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.1); }
.service-card-number {
    position: absolute;
    top: 15px; left: 15px;
    background: var(--gold);
    color: var(--navy);
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    z-index: 2;
}
.service-card-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 0;
    background: rgba(10,22,40,0.85);
    display: flex; align-items: center; justify-content: center;
    transition: height 0.4s ease;
    overflow: hidden;
}
.service-card:hover .service-card-overlay { height: 100%; }
.service-card-btn {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    padding: 12px 28px;
    border: 2px solid var(--gold);
    transition: var(--transition);
}
.service-card-btn:hover { background: var(--gold); color: var(--navy); }
.service-card-body { padding: 25px 25px 30px; position: relative; }
.service-card-icon {
    position: absolute;
    top: -25px; right: 25px;
    width: 50px; height: 50px;
    background: var(--gold);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(201,168,76,0.4);
}
.service-card-body h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.service-card-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}
.service-card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
    transition: var(--transition);
}
.service-card-link:hover { gap: 12px; color: var(--gold-dark); }

/* --- About Home (Karet) --- */
.about-home { padding: 100px 0; overflow-x: clip; }
.about-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-img-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 450px; object-fit: cover; display: block; }
.about-img-main::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gold);
}
.about-badge-float {
    position: absolute;
    bottom: -20px; right: 30px;
    background: var(--gold);
    color: var(--navy);
    padding: 18px 22px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(201,168,76,0.4);
    z-index: 2;
}
.about-badge-float i { font-size: 24px; }
.about-home-images { position: relative; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-feature {
    display: flex; gap: 14px;
    padding: 15px;
    border-radius: 10px;
    transition: var(--transition);
}
.about-feature:hover { background: rgba(255,255,255,0.03); }
.about-feature-icon {
    width: 44px; height: 44px;
    background: rgba(201,168,76,0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
}
.about-feature h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.about-feature p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.5; }

/* --- CTA Parallax (Karet) --- */
.cta-parallax {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.cta-parallax-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,22,40,0.88);
}
.cta-parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}
.cta-parallax-content h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
}
.cta-parallax-content p {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 35px;
}
.cta-parallax-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.25);
    background: transparent;
    text-decoration: none;
    transition: var(--transition);
}
.btn-outline-light:hover {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255,255,255,0.05);
}

/* --- Testimonials (Karet Style) --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 16px;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.testimonial-stars {
    display: flex; gap: 3px;
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 14px;
}
.testimonial-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 22px;
    font-style: italic;
    position: relative;
    z-index: 1;
}
.testimonial-footer { display: flex; align-items: center; gap: 12px; position: relative; z-index: 1; }
.testimonial-avatar {
    width: 44px; height: 44px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
}
.testimonial-author {
    font-weight: 700;
    font-size: 15px;
    color: var(--navy);
}
.testimonial-role {
    font-size: 12px;
    color: var(--text-muted);
}
.testimonial-quote-bg {
    position: absolute;
    bottom: -10px; right: 15px;
    font-size: 120px;
    font-family: var(--font-heading);
    color: rgba(201,168,76,0.07);
    line-height: 1;
    font-weight: 900;
    z-index: 0;
}

/* --- CTA Section (Bottom) --- */
.cta-section {
    background: var(--navy);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 60%);
}
.cta-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    text-transform: uppercase;
}
.cta-text { color: var(--text-light); font-size: 16px; margin-bottom: 30px; position: relative; }

/* --- Page Header --- */
.page-header {
    background: var(--navy);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.page-header h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
}
.page-header p { color: var(--text-light); font-size: 16px; position: relative; }
.breadcrumb {
    display: flex; justify-content: center; gap: 10px;
    margin-top: 20px; font-size: 13px; position: relative;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--text-light); }

/* Page header with background image */
.page-header-bg {
    background-size: cover;
    background-position: center;
    padding: 180px 0 90px;
}
.page-header-bg::before { display: none; }
.page-header-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.8) 100%);
}
.page-header-bg .page-header-content { position: relative; z-index: 1; }

/* --- About Story (Karet) --- */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.about-story-images { position: relative; }
.about-story-img-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.about-story-img-main img {
    width: 100%; height: 480px;
    object-fit: cover; display: block;
}
.about-story-img-main::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--gold);
}
.about-story-exp {
    position: absolute;
    bottom: -25px; right: -20px;
    background: var(--gold);
    color: var(--navy);
    padding: 22px 28px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(201,168,76,0.4);
    z-index: 2;
}
.about-story-exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}
.about-story-exp-text {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    line-height: 1.3;
}
.about-story-deco {
    position: absolute;
    top: -15px; left: -15px;
    width: 100px; height: 100px;
    border-left: 3px solid var(--gold);
    border-top: 3px solid var(--gold);
    border-radius: 4px 0 0 0;
    opacity: 0.4;
    z-index: -1;
}
.about-story-content .section-title { margin-bottom: 10px; }
.about-story-content .section-title-line { margin-bottom: 25px; }
.about-story-text {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 15px;
    font-size: 15px;
}
.about-story-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 25px;
}
.about-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-highlight-icon {
    width: 24px; height: 24px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}
.about-highlight span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

/* --- Mission / Counters (Karet) --- */
.about-counters-section { position: relative; overflow: hidden; }
.about-counters-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
}
.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}
.about-mission-text {
    color: rgba(255,255,255,0.6);
    line-height: 1.85;
    font-size: 15px;
    margin-bottom: 20px;
}
.about-counters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.about-counter {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 12px;
    padding: 25px 20px;
    transition: var(--transition);
}
.about-counter:hover {
    background: rgba(201,168,76,0.08);
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-4px);
}
.about-counter-icon {
    width: 50px; height: 50px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.about-counter-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.about-counter-label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Values Grid (Karet) --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.value-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 25px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid transparent;
}
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--gold);
}
.value-card-icon-wrap { position: relative; margin-bottom: 22px; }
.value-card-icon {
    width: 70px; height: 70px;
    background: rgba(201,168,76,0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
    font-size: 26px;
    transition: var(--transition);
}
.value-card:hover .value-card-icon {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.1);
}
.value-card-number {
    position: absolute;
    top: -5px; right: calc(50% - 50px);
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: rgba(10,22,40,0.04);
    line-height: 1;
}
.value-card h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.value-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}
.value-card-line {
    width: 40px; height: 2px;
    background: var(--gold);
    margin: 0 auto;
    transition: width 0.3s ease;
}
.value-card:hover .value-card-line { width: 60px; }

/* --- Process Steps (Karet) --- */
.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}
.process-step {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    position: relative;
    max-width: 260px;
}
.process-step-number {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 900;
    color: rgba(10,22,40,0.05);
    line-height: 1;
    margin-bottom: -10px;
    position: relative;
    z-index: 0;
}
.process-step-icon {
    width: 70px; height: 70px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(10,22,40,0.15);
}
.process-step:hover .process-step-icon {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.1);
}
.process-step h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.process-step p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}
.process-step-arrow {
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: var(--gold);
    font-size: 18px;
    opacity: 0.4;
}

/* --- Services Quick Nav --- */
.services-nav-section { margin-top: -40px; position: relative; z-index: 5; padding-bottom: 20px; }
.services-nav-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.services-nav-item {
    display: flex; align-items: center; gap: 16px;
    background: var(--white); padding: 22px 25px;
    border-radius: 14px; text-decoration: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 4px solid transparent;
    position: relative; overflow: hidden;
}
.services-nav-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-left-color: var(--gold); }
.services-nav-icon {
    width: 50px; height: 50px;
    background: rgba(201,168,76,0.1); color: var(--gold);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
    transition: var(--transition);
}
.services-nav-item:hover .services-nav-icon { background: var(--gold); color: var(--navy); }
.services-nav-num { font-size: 11px; color: var(--gold); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.services-nav-title { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--navy); margin-top: 2px; display: block; }
.services-nav-arrow { margin-left: auto; color: var(--gold); opacity: 0.4; transition: var(--transition); }
.services-nav-item:hover .services-nav-arrow { opacity: 1; transform: translateY(3px); }

/* --- Service Detail Section (Premium) --- */
.svc-detail-section { padding: 80px 0; overflow-x: clip; }

.svc-detail-header {
    display: flex; align-items: flex-start; gap: 25px;
    margin-bottom: 50px;
}
.svc-detail-number {
    font-family: var(--font-heading);
    font-size: 80px; font-weight: 900;
    line-height: 1;
    color: rgba(201,168,76,0.1);
    flex-shrink: 0;
}

.svc-detail-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: flex-start;
}
.svc-detail-grid-reverse { direction: rtl; }
.svc-detail-grid-reverse > * { direction: ltr; }

/* Image with decorations */
.svc-detail-img-wrap { position: relative; }
.svc-detail-img {
    border-radius: 16px; overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.svc-detail-img img { width: 100%; height: 400px; object-fit: cover; display: block; }
.svc-detail-img-badge {
    position: absolute; bottom: 20px; right: 20px;
    width: 55px; height: 55px;
    background: var(--gold); color: var(--navy);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    box-shadow: 0 6px 20px rgba(201,168,76,0.4);
    z-index: 6;
}
.svc-img-deco-dots {
    position: absolute;
    bottom: -20px; left: -20px;
    width: 80px; height: 80px;
    background-image: radial-gradient(var(--gold) 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.25;
    z-index: -1;
}

/* Content */
.svc-detail-desc {
    font-size: 15px; color: var(--text-muted);
    line-height: 1.85; margin-bottom: 25px;
}
.svc-benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
.svc-benefit-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px;
    background: rgba(201,168,76,0.05);
    border-radius: 8px;
    transition: var(--transition);
}
.svc-benefit-item:hover { background: rgba(201,168,76,0.1); transform: translateX(4px); }
.svc-benefit-check {
    width: 22px; height: 22px;
    background: var(--gold); color: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; flex-shrink: 0;
}
.svc-benefit-item span { font-size: 13px; font-weight: 500; color: var(--text-dark); }

.svc-advantages {
    background: var(--navy); border-radius: 12px;
    padding: 25px; margin-bottom: 10px;
}
.svc-advantages h4 {
    font-family: var(--font-heading); font-size: 16px;
    font-weight: 700; color: var(--white); margin-bottom: 15px;
}
.svc-advantage-item {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.svc-advantage-item:last-child { border-bottom: none; }
.svc-advantage-item i { color: var(--gold); font-size: 10px; }
.svc-advantage-item span { color: rgba(255,255,255,0.7); font-size: 14px; }

/* Steps timeline */
.svc-steps-section { margin-top: 60px; }
.svc-steps-title {
    display: flex; align-items: center; gap: 20px;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 22px; font-weight: 700; color: var(--navy);
    margin-bottom: 40px; text-align: center;
}
.svc-steps-title-line { flex: 1; max-width: 100px; height: 1px; background: rgba(201,168,76,0.3); }

.svc-steps-timeline { display: flex; gap: 0; justify-content: center; }
.svc-step {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; flex: 1; max-width: 250px;
    position: relative;
}
.svc-step-connector { position: relative; margin-bottom: 18px; }
.svc-step-dot {
    width: 20px; height: 20px;
    background: var(--gold); border-radius: 50%;
    position: relative; z-index: 2;
    box-shadow: 0 0 0 5px rgba(201,168,76,0.15);
    transition: var(--transition);
}
.svc-step:hover .svc-step-dot { transform: scale(1.3); box-shadow: 0 0 0 8px rgba(201,168,76,0.2); }
.svc-step-line {
    position: absolute;
    top: 50%; left: 100%;
    width: calc(100% + 60px);
    height: 2px;
    background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.2));
    transform: translateX(10px);
    z-index: 1;
}
.svc-step-num {
    font-size: 11px; font-weight: 700;
    color: var(--gold); letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 6px;
}
.svc-step-content p { font-size: 13px; color: var(--text-muted); line-height: 1.7; padding: 0 10px; }

/* Divider between services */
.svc-divider { padding: 0; }
.svc-divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

/* USP Cards */
.svc-usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc-usp-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 16px; padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-usp-card:hover {
    background: rgba(201,168,76,0.08);
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-8px);
}
.svc-usp-icon {
    width: 65px; height: 65px;
    background: var(--gold); color: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 24px;
    transition: var(--transition);
}
.svc-usp-card:hover .svc-usp-icon { transform: scale(1.1) rotate(5deg); }
.svc-usp-card h3 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.svc-usp-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* Legacy class kept for other pages */
.service-image {
    width: 100%; height: 350px;
    object-fit: cover; border-radius: 12px;
    box-shadow: var(--shadow-md);
}

/* --- Gallery Premium --- */
.gallery-counter-bar {
    background: var(--navy); padding: 18px 0;
    border-bottom: 2px solid rgba(201,168,76,0.15);
}
.gallery-counter-inner {
    display: flex; justify-content: space-between; align-items: center;
}
.gallery-counter-stat {
    display: flex; align-items: center; gap: 10px;
    color: var(--white); font-size: 14px;
}
.gallery-counter-stat i { color: var(--gold); font-size: 20px; }
.gallery-counter-stat strong { color: var(--gold); font-weight: 800; }
.gallery-counter-inner p { color: rgba(255,255,255,0.4); font-size: 13px; }

.gallery-empty {
    text-align: center; padding: 80px 20px;
}
.gallery-empty-icon {
    width: 80px; height: 80px;
    background: rgba(201,168,76,0.1); color: var(--gold);
    border-radius: 50%; margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px;
}
.gallery-empty h3 { font-family: var(--font-heading); font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.gallery-empty p { color: var(--text-muted); }

.gallery-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.gallery-premium-item {
    position: relative; overflow: hidden;
    border-radius: 14px; cursor: pointer;
    aspect-ratio: 4/3;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item-large { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-premium-img { width: 100%; height: 100%; }
.gallery-premium-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.gallery-premium-item:hover .gallery-premium-img img { transform: scale(1.08); }

.gallery-premium-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10,22,40,0.85) 100%);
    opacity: 0; transition: opacity 0.4s ease;
    display: flex; align-items: flex-end; padding: 25px;
}
.gallery-premium-item:hover .gallery-premium-overlay { opacity: 1; }
.gallery-premium-overlay-content { display: flex; align-items: center; gap: 15px; width: 100%; }
.gallery-premium-zoom {
    width: 42px; height: 42px;
    background: var(--gold); color: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0;
    transition: var(--transition);
}
.gallery-premium-item:hover .gallery-premium-zoom { transform: scale(1.1); }
.gallery-premium-caption { color: var(--white); font-size: 14px; font-weight: 500; }
.gallery-premium-number {
    position: absolute; top: 15px; right: 15px;
    font-family: var(--font-heading); font-size: 14px; font-weight: 800;
    color: rgba(255,255,255,0.2); letter-spacing: 1px;
}

/* Premium Lightbox */
.lightbox-premium {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    z-index: 100000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: all 0.3s ease;
}
.lightbox-premium.open { opacity: 1; visibility: visible; }
.lightbox-backdrop { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10,22,40,0.96); }
.lightbox-content { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; }
.lightbox-img-wrap { display: flex; align-items: center; justify-content: center; }
.lightbox-img-wrap img {
    max-width: 85vw; max-height: 80vh;
    object-fit: contain; border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: opacity 0.3s ease;
}
.lightbox-close {
    position: fixed; top: 25px; right: 25px;
    width: 45px; height: 45px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
    color: var(--white); font-size: 18px;
    border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.lightbox-close:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.lightbox-nav {
    position: fixed; top: 50%; transform: translateY(-50%);
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    color: var(--white); font-size: 18px;
    border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.lightbox-nav:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.lightbox-prev { left: 25px; }
.lightbox-next { right: 25px; }
.lightbox-info {
    text-align: center; margin-top: 18px;
}
.lightbox-counter {
    font-size: 13px; color: rgba(255,255,255,0.4);
    font-weight: 600; letter-spacing: 2px;
}

/* --- Blog Premium --- */
.blog-featured {
    margin-bottom: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.blog-featured-link {
    display: grid; grid-template-columns: 1.2fr 1fr;
    text-decoration: none; color: inherit;
    background: var(--white);
    transition: var(--transition);
}
.blog-featured-link:hover { box-shadow: var(--shadow-lg); }
.blog-featured-img { position: relative; height: 100%; min-height: 350px; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-featured-badge {
    position: absolute; top: 20px; left: 20px;
    background: var(--gold); color: var(--navy);
    padding: 7px 16px; border-radius: 50px;
    font-size: 12px; font-weight: 700;
    display: flex; align-items: center; gap: 6px;
    z-index: 6;
}
.blog-featured-content {
    padding: 45px 40px;
    display: flex; flex-direction: column; justify-content: center;
}
.blog-featured-meta {
    display: flex; gap: 20px;
    font-size: 13px; color: var(--text-muted); margin-bottom: 18px;
}
.blog-featured-meta i { color: var(--gold); margin-right: 5px; }
.blog-featured-content h2 {
    font-family: var(--font-heading);
    font-size: 26px; font-weight: 800;
    color: var(--navy); margin-bottom: 14px;
    line-height: 1.3;
    transition: var(--transition);
}
.blog-featured-link:hover h2 { color: var(--gold); }
.blog-featured-content p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 22px; }
.blog-featured-btn {
    font-size: 14px; font-weight: 700; color: var(--gold);
    text-transform: uppercase; letter-spacing: 0.5px;
    display: inline-flex; align-items: center; gap: 8px;
    transition: var(--transition);
}
.blog-featured-link:hover .blog-featured-btn { gap: 14px; }

.blog-section-header {
    text-align: center; margin-bottom: 40px;
}
.blog-section-header h3 {
    font-family: var(--font-heading); font-size: 18px; font-weight: 700;
    color: var(--navy);
    display: flex; align-items: center; gap: 15px; justify-content: center;
}
.blog-section-line { flex: 1; max-width: 80px; height: 1px; background: rgba(201,168,76,0.3); }

.blog-premium-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.blog-premium-card {
    background: var(--white); border-radius: 16px;
    overflow: hidden; text-decoration: none; color: inherit;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex; flex-direction: column;
}
.blog-premium-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.blog-premium-card-img {
    position: relative; height: 200px; overflow: hidden;
}
.blog-premium-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-premium-card:hover .blog-premium-card-img img { transform: scale(1.08); }
.blog-premium-card-date {
    position: absolute; top: 15px; left: 15px;
    background: var(--gold); color: var(--navy);
    padding: 8px 12px; border-radius: 10px;
    text-align: center; line-height: 1;
}
.blog-date-day { display: block; font-family: var(--font-heading); font-size: 22px; font-weight: 800; }
.blog-date-month { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.blog-premium-card-body { padding: 25px; flex: 1; display: flex; flex-direction: column; }
.blog-premium-card-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.blog-premium-card-meta i { color: var(--gold); margin-right: 4px; }
.blog-premium-card-body h3 {
    font-family: var(--font-heading); font-size: 18px; font-weight: 700;
    color: var(--navy); margin-bottom: 10px; line-height: 1.35;
    transition: var(--transition);
}
.blog-premium-card:hover h3 { color: var(--gold); }
.blog-premium-card-body p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; flex: 1; }
.blog-premium-card-link {
    font-size: 13px; font-weight: 700; color: var(--gold);
    text-transform: uppercase; letter-spacing: 0.5px;
    display: inline-flex; align-items: center; gap: 6px;
    transition: var(--transition);
}
.blog-premium-card:hover .blog-premium-card-link { gap: 12px; }

/* Blog newsletter bar */
.blog-newsletter {
    display: flex; justify-content: space-between; align-items: center;
    gap: 30px; background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 16px; padding: 35px 40px;
}
.blog-newsletter-content { display: flex; align-items: center; gap: 20px; }
.blog-newsletter-icon {
    width: 55px; height: 55px;
    background: var(--gold); color: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; flex-shrink: 0;
}
.blog-newsletter h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.blog-newsletter p { font-size: 14px; color: rgba(255,255,255,0.5); }

/* --- Blog Post Premium --- */
.blogpost-header-meta {
    display: flex; gap: 20px; justify-content: center;
    margin-top: 20px; font-size: 13px; color: rgba(255,255,255,0.5);
    position: relative;
}
.blogpost-header-meta i { color: var(--gold); margin-right: 5px; }

.blogpost-layout {
    display: grid; grid-template-columns: 1fr 350px; gap: 50px; align-items: flex-start;
    overflow-x: clip;
}
.blogpost-main { background: var(--white); border-radius: 20px; box-shadow: var(--shadow-md); overflow: hidden; }
.blogpost-hero-img { max-height: 450px; overflow: hidden; }
.blogpost-hero-img img { width: 100%; height: 450px; object-fit: cover; display: block; }
.blogpost-content {
    padding: 45px; font-size: 16px; line-height: 1.9; color: var(--text-dark);
}
.blogpost-content h2 { font-family: var(--font-heading); font-size: 24px; margin: 30px 0 15px; color: var(--navy); font-weight: 700; }
.blogpost-content p { margin-bottom: 16px; }
.blogpost-content ul { margin: 15px 0; padding-left: 25px; }
.blogpost-content li { margin-bottom: 10px; }
.blogpost-content strong { color: var(--navy); }

.blogpost-footer { padding: 30px 45px; border-top: 1px solid #f0f0f0; }
.blogpost-share { display: flex; align-items: center; gap: 10px; }
.blogpost-share-label { font-size: 14px; font-weight: 600; color: var(--navy); margin-right: 5px; }
.blogpost-share-btn {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; text-decoration: none;
    transition: var(--transition);
}
.blogpost-share-btn.facebook { background: #f0f2f5; color: #1877f2; }
.blogpost-share-btn.facebook:hover { background: #1877f2; color: white; }
.blogpost-share-btn.twitter { background: #e8f5fd; color: #1da1f2; }
.blogpost-share-btn.twitter:hover { background: #1da1f2; color: white; }
.blogpost-share-btn.whatsapp { background: #e8f8f0; color: #25d366; }
.blogpost-share-btn.whatsapp:hover { background: #25d366; color: white; }

.blogpost-nav {
    padding: 25px 45px 35px;
    display: flex; justify-content: space-between; align-items: center; gap: 15px;
}

/* Blog Sidebar */
.blogpost-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 120px; }
.blogpost-sidebar-box {
    background: var(--white); border-radius: 16px;
    padding: 28px; box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
}
.blogpost-sidebar-cta {
    background: var(--navy); border-color: var(--navy);
    text-align: center;
}
.blogpost-sidebar-cta-icon {
    width: 55px; height: 55px;
    background: var(--gold); color: var(--navy);
    border-radius: 50%; margin: 0 auto 15px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
}
.blogpost-sidebar-cta h3 { font-family: var(--font-heading); font-size: 18px; color: var(--white); margin-bottom: 8px; }
.blogpost-sidebar-cta p { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 18px; }

.blogpost-sidebar-title {
    font-family: var(--font-heading); font-size: 16px; font-weight: 700;
    color: var(--navy); margin-bottom: 18px; padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
}
.blogpost-related-item {
    display: flex; gap: 12px; text-decoration: none;
    padding: 10px 0; border-bottom: 1px solid #f5f5f5;
    transition: var(--transition);
}
.blogpost-related-item:last-child { border-bottom: none; }
.blogpost-related-item:hover { padding-left: 5px; }
.blogpost-related-img {
    width: 70px; height: 55px; border-radius: 8px;
    overflow: hidden; flex-shrink: 0;
    background: var(--navy-light);
}
.blogpost-related-img img { width: 100%; height: 100%; object-fit: cover; }
.blogpost-related-item h4 {
    font-family: var(--font-heading); font-size: 13px; font-weight: 700;
    color: var(--navy); line-height: 1.35; margin-bottom: 4px;
    transition: var(--transition);
}
.blogpost-related-item:hover h4 { color: var(--gold); }
.blogpost-related-item span { font-size: 11px; color: var(--text-muted); }

.blogpost-sidebar-contact { display: flex; flex-direction: column; gap: 10px; }
.blogpost-sidebar-contact a {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: var(--text-dark); text-decoration: none;
    padding: 10px 14px; border-radius: 8px; background: var(--warm);
    transition: var(--transition);
}
.blogpost-sidebar-contact a:hover { background: rgba(201,168,76,0.1); }
.blogpost-sidebar-contact a i { color: var(--gold); width: 18px; text-align: center; }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--navy); margin-bottom: 6px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea {
    width: 100%; padding: 14px 18px;
    border: 1px solid #ddd; border-radius: 6px;
    font-family: var(--font-body); font-size: 15px;
    transition: var(--transition); background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none; border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { min-height: 150px; resize: vertical; }
.contact-info-list { list-style: none; }
.contact-info-list li {
    display: flex; align-items: flex-start; gap: 15px;
    padding: 15px 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 15px;
}
.contact-info-list li i { color: var(--gold); font-size: 18px; margin-top: 3px; }

/* --- Contact Info Cards --- */
.contact-cards-section { margin-top: -50px; position: relative; z-index: 5; padding-bottom: 0; }
.contact-cards-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid transparent;
}
.contact-info-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-bottom-color: var(--gold); }
.contact-info-card-icon {
    width: 65px; height: 65px;
    background: rgba(201,168,76,0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
    transition: var(--transition);
}
.contact-info-card:hover .contact-info-card-icon { background: var(--gold); color: var(--navy); transform: scale(1.1); }
.contact-info-card h2.contact-card-title { font-family: var(--font-heading); font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.contact-info-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.contact-info-card-link { font-size: 13px; font-weight: 600; color: var(--gold); word-break: break-word; }
a.contact-info-card-link:hover { color: var(--gold-dark); }

/* --- Contact Main Grid (Form + Sidebar) --- */
.contact-main-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; align-items: flex-start; overflow-x: clip; }
.contact-form-wrap { background: var(--white); border-radius: 20px; padding: 45px; box-shadow: var(--shadow-md); }
.contact-form-header { margin-bottom: 30px; }
.contact-form-header .section-title { font-size: 28px; }
.contact-form-desc { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-top: 15px; }

.contact-alert {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 20px; border-radius: 10px; margin-bottom: 25px;
    font-size: 14px; font-weight: 500;
}
.contact-alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.contact-alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.contact-alert i { font-size: 18px; }

/* Premium form fields */
.contact-form-premium { display: flex; flex-direction: column; gap: 0; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { margin-bottom: 22px; }
.form-field label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--navy); margin-bottom: 8px;
    letter-spacing: 0.3px;
}
.form-field label i { color: var(--gold); margin-right: 5px; font-size: 12px; }
.form-field input,
.form-field textarea,
.form-field select {
    width: 100%; padding: 14px 18px;
    border: 2px solid #eee; border-radius: 10px;
    font-family: var(--font-body); font-size: 14px;
    background: var(--warm);
    transition: all 0.3s ease;
    color: var(--text-dark);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #aaa; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none; border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(201,168,76,0.1);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field 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 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }

.contact-form-footer { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 5px; }
.btn-lg { padding: 16px 40px; font-size: 15px; }
.contact-form-note { font-size: 12px; color: var(--text-muted); }
.contact-form-note i { color: var(--gold); margin-right: 4px; }
.contact-form-note a { color: var(--gold); }

/* --- Contact Sidebar --- */
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.contact-sidebar-box {
    background: var(--white); border-radius: 16px;
    padding: 30px; box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}
.contact-sidebar-box:hover { box-shadow: var(--shadow-md); }
.contact-sidebar-box-header { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.contact-sidebar-box-header i { color: var(--gold); font-size: 20px; }
.contact-sidebar-box-header h3 { font-family: var(--font-heading); font-size: 17px; font-weight: 700; color: var(--navy); }
.contact-sidebar-box p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 15px; }

/* Call button with pulse */
.contact-call-btn {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 20px;
    background: var(--navy); color: var(--white);
    border-radius: 10px; text-decoration: none;
    font-weight: 700; font-size: 16px;
    transition: var(--transition);
    position: relative;
}
.contact-call-btn:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.contact-call-btn i { font-size: 18px; color: var(--gold); }
.contact-call-btn:hover i { color: var(--navy); }
.contact-call-btn-pulse {
    position: absolute; left: 14px;
    width: 36px; height: 36px; border-radius: 50%;
    animation: phonePulse 2s ease-in-out infinite;
}

/* Details list */
.contact-details-list { list-style: none; }
.contact-details-list li {
    display: flex; flex-direction: column; gap: 2px;
    padding: 12px 0; border-bottom: 1px solid #f5f5f5;
}
.contact-details-list li:last-child { border-bottom: none; }
.contact-detail-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); font-weight: 600; }
.contact-detail-value { font-size: 14px; color: var(--text-dark); font-weight: 500; }

/* Social buttons */
.contact-social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-social-btn {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 18px; border-radius: 8px;
    font-size: 13px; font-weight: 600;
    text-decoration: none; transition: var(--transition);
}
.contact-social-btn.facebook { background: #f0f2f5; color: #1877f2; }
.contact-social-btn.facebook:hover { background: #1877f2; color: white; }
.contact-social-btn.instagram { background: #fef2f8; color: #e4405f; }
.contact-social-btn.instagram:hover { background: #e4405f; color: white; }
.contact-social-btn.google { background: #fef7e6; color: #ea4335; }
.contact-social-btn.google:hover { background: #ea4335; color: white; }

/* --- Map Section (Premium) --- */
.contact-map-section { position: relative; }
.contact-map-header { background: var(--navy); padding: 30px 0; }
.contact-map-header-inner { display: flex; justify-content: space-between; align-items: center; }
.contact-map-header .section-title { color: var(--white); font-size: 24px; }
.contact-map-wrap { height: 450px; position: relative; overflow: hidden; }
.contact-map-wrap::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gold); z-index: 1000; }
#map { width: 100%; height: 100%; }

/* Custom map pin */
.map-pin { position: relative; width: 44px; height: 44px; }
.map-pin-inner {
    width: 44px; height: 44px;
    background: var(--gold);
    border: 3px solid var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy); font-size: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    position: relative; z-index: 2;
}
.map-pin-pulse {
    position: absolute;
    top: 50%; left: 50%;
    width: 44px; height: 44px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: mapPinPulse 2s ease-in-out infinite;
    border: 2px solid var(--gold);
    z-index: 1;
}
@keyframes mapPinPulse {
    0% { width: 44px; height: 44px; opacity: 0.6; }
    100% { width: 80px; height: 80px; opacity: 0; }
}

/* --- FAQ Section --- */
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: var(--transition);
}
.faq-question span {
    font-family: var(--font-heading);
    font-size: 15px; font-weight: 700;
    color: var(--navy);
}
.faq-question i {
    color: var(--gold); font-size: 14px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.faq-item.open .faq-question { background: rgba(201,168,76,0.05); }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
    padding: 0 25px;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 25px 20px; }
.faq-answer p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }

/* --- Footer --- */
.footer { background: var(--navy); padding: 60px 0 0; color: var(--text-light); }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px; padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name { font-family: var(--font-heading); font-size: 20px; color: var(--white); margin-bottom: 15px; }
.footer-brand-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 36px; height: 36px;
    border: 1px solid rgba(201,168,76,0.3); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 14px; transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer h4 { color: var(--white); font-size: 16px; margin-bottom: 20px; font-family: var(--font-heading); }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: var(--text-light); font-size: 14px; transition: var(--transition); }
.footer ul a:hover { color: var(--gold); padding-left: 5px; }
.footer-bottom {
    padding: 20px 0; text-align: center;
    font-size: 13px; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--gold); }

/* --- Legal Pages --- */
.legal-content { max-width: 800px; margin: 0 auto; padding: 60px 20px; }
.legal-content h2 { font-family: var(--font-heading); font-size: 24px; color: var(--navy); margin: 30px 0 15px; }
.legal-content p { line-height: 1.8; margin-bottom: 15px; color: var(--text-muted); }

/* --- Scroll Animations (Premium) --- */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(50px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-right.visible { opacity: 1; transform: translateX(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.25s; }
.stagger-3 { transition-delay: 0.4s; }
.stagger-4 { transition-delay: 0.55s; }

/* --- Cursor glow in hero --- */
.cursor-glow {
    position: absolute;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease;
    opacity: 0;
    z-index: 3;
}

/* --- Text reveal animation --- */
.char-wrap {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) rotateX(-40deg);
    animation: charReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes charReveal {
    to { opacity: 1; transform: translateY(0) rotateX(0); }
}

/* --- Hero badge shimmer --- */
.hero-badge {
    position: relative;
    overflow: hidden;
}
.hero-badge-shimmer {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.15) 50%, transparent 100%);
    animation: shimmerSlide 3s ease-in-out infinite;
}
@keyframes shimmerSlide {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* --- Image reveal wipe --- */
.img-reveal {
    position: relative;
    overflow: hidden;
}
.img-reveal::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--gold);
    z-index: 5;
    transform: scaleX(1);
    transform-origin: right;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0.2s;
}
.img-reveal.img-revealed::before {
    transform: scaleX(0);
}
.img-reveal img {
    transform: scale(1.15);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}
.img-reveal.img-revealed img {
    transform: scale(1);
}

/* --- Button ripple --- */
.btn-gold { position: relative; overflow: hidden; }
.btn-ripple {
    position: absolute;
    width: 0; height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    animation: rippleOut 0.6s ease-out;
    pointer-events: none;
}
@keyframes rippleOut {
    to { width: 300px; height: 300px; opacity: 0; }
}

/* --- Gold shimmer on section labels --- */
.section-label {
    position: relative;
    background: linear-gradient(90deg, var(--gold) 0%, #e8d5a0 45%, var(--gold) 55%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 250% auto;
    animation: labelShimmer 5s ease-in-out infinite;
}
@keyframes labelShimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 250% center; }
}

/* --- Navbar auto-hide on scroll down --- */
.site-header.header-hidden {
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Process step entrance --- */
.process-step .process-step-icon {
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.process-step.process-visible .process-step-icon {
    transform: scale(1);
    opacity: 1;
}
.process-step .process-step-number {
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.5s ease 0.2s;
}
.process-step.process-visible .process-step-number {
    transform: translateY(0);
    opacity: 1;
    color: rgba(10,22,40,0.05);
}

/* --- Service card shine on hover --- */
.service-card::after {
    content: '';
    position: absolute;
    top: 0; left: -75%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
    z-index: 10;
    pointer-events: none;
}
.service-card:hover::after { left: 125%; }

/* --- Value card icon pulse --- */
.value-card:hover .value-card-icon {
    animation: iconPop 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
@keyframes iconPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); }
    100% { transform: scale(1.1); }
}

/* --- Testimonial card hover glow --- */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    background: linear-gradient(135deg, var(--gold), transparent 50%);
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.testimonial-card:hover::before { opacity: 1; }
.testimonial-card { position: relative; z-index: 0; }

/* --- About experience badge float enhanced --- */
.about-story-exp {
    animation: expBadgeFloat 3s ease-in-out infinite;
}
@keyframes expBadgeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

/* --- Hero bottom bar counter slide-up --- */
.hero-stat-item strong {
    display: inline-block;
}

/* --- Gold underline grow on section titles --- */
.section-title-line {
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}
.fade-up.visible .section-title-line,
.section-header.visible .section-title-line,
.fade-left.visible .section-title-line,
.fade-right.visible .section-title-line {
    transform: scaleX(1);
}
/* For standalone section-title-line */
.section-header .section-title-line { transform: scaleX(1); }
.section-header-left .section-title-line { transform: scaleX(1); }

/* --- Smooth hover transitions for all interactive --- */
.service-card, .value-card, .testimonial-card, .about-counter,
.process-step-icon, .btn-gold, .btn-outline, .navbar-cta {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- About counter hover gold border pulse --- */
.about-counter:hover .about-counter-icon {
    animation: iconPop 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* --- Cookie Consent --- */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--navy); padding: 20px;
    z-index: 10000; box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
    transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.cookie-text { color: var(--text-light); font-size: 14px; flex: 1; }
.cookie-text a { color: var(--gold); }
.cookie-buttons { display: flex; gap: 10px; }
.cookie-btn {
    padding: 10px 20px; border: none; cursor: pointer;
    font-size: 13px; font-weight: 600; transition: var(--transition); border-radius: 4px;
}
.cookie-accept { background: var(--gold); color: var(--navy); }
.cookie-accept:hover { background: var(--gold-light); }
.cookie-reject { background: transparent; color: var(--text-light); border: 1px solid rgba(255,255,255,0.2); }
.cookie-reject:hover { background: rgba(255,255,255,0.1); }

/* --- Accessibility Widget --- */
.a11y-toggle {
    position: fixed; bottom: 20px; left: 20px;
    width: 50px; height: 50px; padding: 0;
    background: var(--navy); border: 2px solid var(--gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 9999;
    font-size: 22px; color: var(--gold);
    transition: var(--transition); box-shadow: var(--shadow-md);
}
.a11y-toggle:hover, .a11y-toggle:focus-visible { background: var(--gold); color: var(--navy); outline: none; }
.a11y-panel {
    position: fixed; bottom: 80px; left: 20px;
    width: 300px; background: var(--white);
    border-radius: 12px; box-shadow: var(--shadow-lg);
    border: 1px solid #e0e0e0;
    z-index: 9999; padding: 25px; display: none;
}
.a11y-panel.open { display: block; }
.a11y-panel h3 {
    font-family: var(--font-heading); font-size: 18px; color: var(--navy);
    margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--gold);
}
button.a11y-option {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 10px 0; border: none; border-bottom: 1px solid #f0f0f0;
    background: transparent; cursor: pointer; transition: var(--transition);
    font-family: inherit; text-align: left;
}
button.a11y-option:hover, button.a11y-option:focus-visible {
    background: var(--warm); margin: 0 -10px; padding: 10px; border-radius: 6px; outline: none;
}
.a11y-option-label { font-size: 14px; color: var(--text-dark); }
.a11y-option-icon { font-size: 18px; }
button.a11y-option.active { color: var(--gold); font-weight: 600; }
button.a11y-option.active .a11y-option-label { color: var(--gold); }
.a11y-reset {
    margin-top: 15px; width: 100%; padding: 10px;
    background: var(--navy); color: var(--white);
    border: none; border-radius: 6px; cursor: pointer;
    font-size: 13px; font-weight: 600; font-family: inherit; transition: var(--transition);
}
.a11y-reset:hover, .a11y-reset:focus-visible { background: var(--gold); color: var(--navy); outline: none; }

/* Filters — combine when both active */
body.a11y-high-contrast { filter: contrast(1.5); }
body.a11y-grayscale { filter: grayscale(1); }
body.a11y-high-contrast.a11y-grayscale { filter: contrast(1.5) grayscale(1); }

body.a11y-large-cursor,
body.a11y-large-cursor * { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M5 1l20 14-9 2 5 12-4 2-5-12-7 7z' fill='black' stroke='white'/%3E%3C/svg%3E"), auto !important; }
body.a11y-highlight-links a { outline: 3px solid var(--gold) !important; outline-offset: 2px; }

/* Font size — relative scaling so headings and body both grow */
body.a11y-big-font { font-size: 120% !important; }
body.a11y-big-font h1 { font-size: 2.4rem !important; }
body.a11y-big-font h2 { font-size: 2rem !important; }
body.a11y-big-font h3 { font-size: 1.6rem !important; }
body.a11y-bigger-font { font-size: 140% !important; }
body.a11y-bigger-font h1 { font-size: 2.8rem !important; }
body.a11y-bigger-font h2 { font-size: 2.3rem !important; }
body.a11y-bigger-font h3 { font-size: 1.8rem !important; }

body.a11y-line-height, body.a11y-line-height * { line-height: 2.2 !important; }
body.a11y-readable-font, body.a11y-readable-font * { font-family: 'OpenDyslexic', 'Comic Sans MS', cursive, sans-serif !important; }
body.a11y-stop-animations *, body.a11y-stop-animations *::before, body.a11y-stop-animations *::after {
    animation: none !important; transition: none !important;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-title-line:first-child { font-size: 40px; }
    .hero-title-line:last-child { font-size: 44px; }
    .hero-experience { display: none; }
    .hero-stats-row { grid-template-columns: repeat(2, 1fr); }
    .services-cards { grid-template-columns: 1fr; max-width: 450px; }
    .services-nav-row { grid-template-columns: 1fr; }
    .svc-detail-grid, .svc-detail-grid-reverse { grid-template-columns: 1fr; direction: ltr; }
    .svc-detail-number { font-size: 50px; }
    .svc-steps-timeline { flex-wrap: wrap; gap: 20px; }
    .svc-step-line { display: none; }
    .svc-usp-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-benefits-grid { grid-template-columns: 1fr; }
    .about-home-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-mission-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { flex-wrap: wrap; }
    .process-step-arrow { display: none; }
    .contact-cards-row { grid-template-columns: repeat(2, 1fr); }
    .contact-main-grid { grid-template-columns: 1fr; }
    .contact-map-header-inner { flex-direction: column; gap: 15px; text-align: center; }
    .gallery-premium-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item-large { grid-column: span 2; }
    .blog-featured-link { grid-template-columns: 1fr; }
    .blog-premium-grid { grid-template-columns: repeat(2, 1fr); }
    .blogpost-layout { grid-template-columns: 1fr; }
    .blogpost-sidebar { position: static; }
    .blog-newsletter { flex-direction: column; text-align: center; }
    .blog-newsletter-content { flex-direction: column; text-align: center; }
    .services-grid { grid-template-columns: 1fr; }
    .service-panel { height: 300px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .service-detail:nth-child(even) .service-detail-grid { direction: ltr; }
}

@media (max-width: 768px) {
    .header-secondary { display: none; }
    .header-main { background: rgba(10,22,40,0.97); backdrop-filter: blur(20px); }
    .header-nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-inner { padding: 120px 0 40px; }
    .hero-title { line-height: 1.2; }
    .hero-title-line:first-child { font-size: 30px; }
    .hero-title-line:last-child { font-size: 34px; }
    .hero-subtitle { font-size: 15px; margin-bottom: 25px; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-deco-line, .hero-deco-circle { display: none; }
    .hero-stats-row { grid-template-columns: 1fr 1fr; }
    .hero-stat-item { padding: 15px; }
    .hero-stat-item i { font-size: 20px; }
    .hero-stat-item:nth-child(2)::after,
    .hero-stat-item:nth-child(4)::after { display: none; }
    .cta-parallax { padding: 60px 0; background-attachment: scroll; }
    .cta-parallax-content h2 { font-size: 28px; }
    .cta-parallax-content p { font-size: 14px; margin-bottom: 25px; }
    .about-home { padding: 60px 0; }
    .about-home-grid { gap: 35px; }
    .about-img-main img { height: 300px; }
    .about-badge-float { right: 15px; bottom: -15px; padding: 14px 16px; font-size: 12px; }
    .about-badge-float i { font-size: 18px; }
    .about-story-grid { grid-template-columns: 1fr; gap: 35px; }
    .about-story-img-main img { height: 300px; }
    .about-story-exp { right: 10px; bottom: -15px; padding: 16px 20px; }
    .about-story-exp-number { font-size: 32px; }
    .about-story-highlights { grid-template-columns: 1fr; }
    .about-story-deco { display: none; }
    .about-counters { grid-template-columns: 1fr; }
    .about-counter { padding: 20px 15px; }
    .values-grid { grid-template-columns: 1fr; }
    .value-card { padding: 25px 20px; }
    .process-steps { flex-direction: column; align-items: center; }
    .process-step { max-width: 100%; }
    .svc-detail-section { padding: 50px 0; }
    .svc-detail-header { gap: 15px; margin-bottom: 30px; }
    .svc-detail-number { font-size: 40px; }
    .svc-detail-grid { gap: 30px; }
    .svc-detail-img img { height: 280px; }
    .svc-detail-img-badge { bottom: 12px; right: 12px; width: 44px; height: 44px; font-size: 18px; border-radius: 10px; }
    .svc-steps-timeline { flex-direction: column; align-items: flex-start; }
    .svc-step { flex-direction: row; text-align: left; max-width: 100%; gap: 15px; }
    .svc-step-connector { margin-bottom: 0; }
    .svc-usp-grid { grid-template-columns: 1fr; }
    .svc-usp-card { padding: 25px 18px; }
    .services-nav-item { padding: 16px 18px; gap: 12px; }
    .services-nav-icon { width: 42px; height: 42px; font-size: 18px; }
    .services-nav-item .services-nav-title { font-size: 14px; }
    .gallery-premium-grid { grid-template-columns: 1fr; }
    .gallery-item-large { grid-column: span 1; }
    .gallery-counter-inner { flex-direction: column; text-align: center; gap: 5px; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-nav { width: 44px; height: 44px; font-size: 16px; }
    .blog-featured-img { min-height: 220px; }
    .blog-featured-content { padding: 25px; }
    .blog-featured-content h2 { font-size: 20px; }
    .blog-premium-grid { grid-template-columns: 1fr; }
    .blog-premium-card-img { height: 180px; }
    .blog-newsletter { padding: 25px 20px; gap: 20px; }
    .blog-newsletter-icon { width: 45px; height: 45px; font-size: 18px; }
    .blog-newsletter h3 { font-size: 17px; }
    .blogpost-hero-img, .blogpost-hero-img img { height: 280px; max-height: 280px; }
    .blogpost-content { padding: 25px; font-size: 15px; }
    .blogpost-content h2 { font-size: 20px; margin: 20px 0 12px; }
    .blogpost-footer { padding: 20px 25px; }
    .blogpost-share-btn { width: 44px; height: 44px; }
    .blogpost-nav { padding: 20px 25px; flex-direction: column; }
    .blogpost-header-meta { flex-direction: column; gap: 8px; }
    .blogpost-sidebar-box { padding: 22px; }
    .contact-cards-row { grid-template-columns: 1fr; }
    .contact-cards-section { margin-top: -30px; }
    .contact-info-card { padding: 25px 20px; }
    .contact-info-card-icon { width: 50px; height: 50px; font-size: 20px; }
    .contact-form-wrap { padding: 25px; }
    .contact-form-header .section-title { font-size: 22px; }
    .form-row-2 { grid-template-columns: 1fr; }
    .contact-form-footer { flex-direction: column; align-items: flex-start; }
    .contact-map-wrap { height: 280px; }
    .testimonial-card { padding: 25px 20px; }
    .testimonial-quote-bg { font-size: 80px; }
    .cta-title { font-size: 26px; }
    .cta-text { font-size: 14px; }
    .cta-section { padding: 50px 0; }
    .page-header { padding: 120px 0 55px; }
    .page-header h1 { font-size: 28px; }
    .page-header-bg { padding: 130px 0 60px; }
    .section { padding: 60px 0; }
    .section-header { margin-bottom: 35px; }
    .section-title { font-size: 26px; }
    .section-subtitle { font-size: 14px; }
    .section-label { font-size: 11px; letter-spacing: 3px; }
    .btn { padding: 12px 28px; font-size: 13px; }
    .btn-lg { padding: 14px 32px; font-size: 14px; }
    .btn-outline-light { padding: 12px 24px; font-size: 13px; }
    .why-grid { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: 1fr; gap: 20px; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-col { text-align: center; }
    .footer-social { justify-content: center; }
    .footer-links { columns: 2; }
    .cookie-banner .container { flex-direction: column; }
    .a11y-panel { left: 10px; right: 10px; width: auto; }
}

/* Small phones */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-inner { padding: 100px 0 30px; gap: 20px; }
    .hero-badge { margin-bottom: 18px; }
    .hero-badge-text { font-size: 11px; letter-spacing: 2px; }
    .hero-title-line:first-child { font-size: 24px; }
    .hero-title-line:last-child { font-size: 26px; }
    .hero-subtitle { font-size: 14px; line-height: 1.7; }
    .hero-phone-icon { width: 40px; height: 40px; }
    .hero-phone-text { font-size: 14px; }
    .hero-stats-row { grid-template-columns: 1fr 1fr; gap: 0; }
    .hero-stat-item { padding: 14px 10px; }
    .hero-stat-number { font-size: 22px; }
    .section { padding: 45px 0; }
    .section-header { margin-bottom: 28px; }
    .section-title { font-size: 22px; }
    .section-subtitle { font-size: 13px; }
    .cta-parallax { padding: 45px 0; }
    .cta-parallax-content h2 { font-size: 22px; }
    .cta-parallax-content p { font-size: 13px; }
    .about-home { padding: 45px 0; }
    .about-home-grid { gap: 25px; }
    .about-img-main img { height: 240px; }
    .about-badge-float { padding: 10px 14px; font-size: 11px; right: 10px; }
    .about-badge-float i { font-size: 16px; }
    .about-feature { padding: 10px; gap: 10px; }
    .about-feature-icon { width: 38px; height: 38px; font-size: 15px; border-radius: 8px; }
    .about-feature h4 { font-size: 13px; }
    .about-feature p { font-size: 12px; }
    .about-story-img-main img { height: 240px; }
    .about-story-exp { padding: 12px 16px; }
    .about-story-exp-number { font-size: 26px; }
    .about-story-text { font-size: 14px; }
    .about-counter { padding: 16px 12px; }
    .value-card { padding: 20px 16px; }
    .service-card-img { height: 200px; }
    .service-card-body { padding: 20px 18px; }
    .service-card h3 { font-size: 17px; }
    .services-cards { max-width: 100%; }
    .services-nav-section { margin-top: -25px; }
    .services-nav-item { padding: 14px 14px; gap: 10px; }
    .services-nav-icon { width: 38px; height: 38px; font-size: 16px; border-radius: 10px; }
    .services-nav-item .services-nav-title { font-size: 13px; }
    .services-nav-num { font-size: 10px; }
    .svc-detail-section { padding: 35px 0; }
    .svc-detail-header { margin-bottom: 20px; }
    .svc-detail-number { font-size: 28px; }
    .svc-detail-title { font-size: 20px; }
    .svc-detail-grid { gap: 20px; }
    .svc-detail-img img { height: 220px; }
    .svc-benefits-grid .svc-benefit-item { font-size: 13px; padding: 8px 10px; }
    .svc-usp-card { padding: 20px 14px; }
    .svc-usp-card h3 { font-size: 16px; }
    .svc-step { gap: 10px; }
    .svc-step-num { width: 36px; height: 36px; font-size: 13px; }
    .blog-featured-img { min-height: 180px; }
    .blog-featured-content { padding: 20px; }
    .blog-featured-content h2 { font-size: 18px; }
    .blog-featured-content p { font-size: 13px; }
    .blog-featured-meta { font-size: 12px; gap: 12px; }
    .blog-premium-card-body { padding: 18px; }
    .blog-premium-card-body h3 { font-size: 16px; }
    .blog-premium-card-body p { font-size: 13px; }
    .blog-newsletter { padding: 20px 16px; flex-direction: column; text-align: center; }
    .blog-newsletter-content { flex-direction: column; text-align: center; }
    .blogpost-hero-img, .blogpost-hero-img img { height: 220px; max-height: 220px; }
    .blogpost-content { padding: 20px; font-size: 14px; }
    .blogpost-content h2 { font-size: 18px; }
    .blogpost-footer { padding: 16px 20px; }
    .blogpost-nav { padding: 16px 20px; }
    .blogpost-sidebar-box { padding: 18px; }
    .contact-cards-section { margin-top: -20px; }
    .contact-info-card { padding: 20px 16px; }
    .contact-info-card-icon { width: 44px; height: 44px; font-size: 18px; margin-bottom: 12px; }
    .contact-info-card h2.contact-card-title { font-size: 15px; }
    .contact-form-wrap { padding: 20px; }
    .contact-form-header .section-title { font-size: 20px; }
    .form-field input, .form-field textarea, .form-field select { padding: 12px 14px; font-size: 14px; }
    .contact-form-footer { gap: 12px; }
    .btn-lg { padding: 13px 28px; font-size: 13px; width: 100%; text-align: center; justify-content: center; }
    .contact-map-wrap { height: 240px; }
    .testimonial-card { padding: 22px 16px; }
    .testimonial-text { font-size: 14px; line-height: 1.7; }
    .testimonial-quote-bg { font-size: 60px; }
    .cta-title { font-size: 22px; }
    .cta-text { font-size: 13px; margin-bottom: 22px; }
    .cta-section { padding: 40px 0; }
    .page-header { padding: 105px 0 45px; }
    .page-header h1 { font-size: 24px; }
    .page-header p { font-size: 14px; }
    .page-header-bg { padding: 115px 0 50px; }
    .breadcrumb { font-size: 12px; margin-top: 14px; gap: 6px; flex-wrap: wrap; justify-content: center; }
    .lightbox-close { width: 40px; height: 40px; font-size: 16px; top: 15px; right: 15px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-nav { width: 40px; height: 40px; font-size: 14px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; font-size: 13px; }
    .footer-col h4 { font-size: 15px; }
    .process-step { padding: 25px 18px; }
    .section-header-left .section-title { font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .fade-up, .fade-left, .fade-right { opacity: 1; transform: none; }
}
