/* ==========================================================================
   SAFE FAST PACKERS & MOVERS — MASTER STYLESHEET
   Premium Moving Company Website — 6 Pages
   Color Scheme: Dark Navy + Orange + White
   ========================================================================== */

/* ==========================================================================
   1. RESET & BASE
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

:root {
    /* Primary — Dark Navy */
    --primary: #0B1E3F;
    --primary-dark: #061428;
    --primary-light: #1A3563;

    /* Accent — Orange */
    --accent: #FF7A00;
    --accent-dark: #E56A00;
    --accent-light: #FFB366;
    --accent-soft: rgba(255, 122, 0, 0.1);

    /* Neutrals */
    --white: #FFFFFF;
    --bg-light: #F5F7FA;
    --bg-cream: #FAFBFD;
    --text-dark: #1A1A1A;
    --text-body: #374151;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    --border: #E5E7EB;
    --border-light: #F0F2F5;

    /* WhatsApp */
    --wa-green: #25D366;
    --wa-green-dark: #1DA851;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(11, 30, 63, 0.05);
    --shadow-md: 0 6px 20px rgba(11, 30, 63, 0.08);
    --shadow-lg: 0 15px 40px rgba(11, 30, 63, 0.1);
    --shadow-orange: 0 10px 30px rgba(255, 122, 0, 0.25);

    /* Radius */
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-pill: 50px;

    /* Transition */
    --transition: all 0.3s ease;

    /* Container */
    --container: 1200px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

iframe {
    border: 0;
    display: block;
}

/* ==========================================================================
   2. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.015em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 1.6vw, 1.35rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
h5 { font-size: 1rem; font-weight: 600; }

p {
    color: var(--text-body);
    margin-bottom: 1rem;
}

p:last-child { margin-bottom: 0; }

/* ==========================================================================
   3. LAYOUT UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 90px 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-white { color: var(--white) !important; }
.text-orange { color: var(--accent) !important; }
.text-green { color: var(--wa-green) !important; }

.bg-white { background: var(--white); }
.bg-light { background: var(--bg-light); }
.bg-dark { background: var(--primary); }

.mt-3 { margin-top: 24px; }

/* Section Head */
.section-head {
    max-width: 760px;
    margin: 0 auto 55px;
}

.section-heading {
    margin-bottom: 14px;
    color: var(--primary);
}

.section-lead {
    font-size: 1.02rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.sub-title {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

/* ==========================================================================
   4. BUTTONS
   ========================================================================== */
.btn-orange,
.btn-wa,
.btn-dark-outline,
.btn-light-outline,
.btn-cta-light,
.btn-cta-wa,
.btn-cta-orange,
.btn-block,
.btn-call-header,
.btn-wa-header,
.btn-map {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
    line-height: 1.2;
}

.btn-orange,
.btn-cta-orange {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    box-shadow: 0 4px 14px rgba(255, 122, 0, 0.3);
}
.btn-orange:hover,
.btn-cta-orange:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
    color: var(--white);
}

.btn-wa,
.btn-cta-wa {
    background: var(--wa-green);
    color: var(--white);
    border-color: var(--wa-green);
}
.btn-wa:hover,
.btn-cta-wa:hover {
    background: var(--wa-green-dark);
    border-color: var(--wa-green-dark);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-dark-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-dark-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-light-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}
.btn-light-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-cta-light {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.btn-cta-light:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.btn-map {
    background: var(--accent-soft);
    color: var(--accent);
    border-color: rgba(255, 122, 0, 0.25);
    padding: 10px 20px;
    font-size: 0.85rem;
    margin-top: 10px;
}
.btn-map:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-block {
    width: 100%;
    padding: 15px 28px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* ==========================================================================
   5. TOP STRIP
   ========================================================================== */
.top-strip {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    padding: 9px 0;
}

.strip-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.strip-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.strip-item i {
    color: var(--accent);
    font-size: 0.9rem;
}

/* ==========================================================================
   6. HEADER
   ========================================================================== */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(11, 30, 63, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 20px;
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 1.4rem;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
}

.brand-info {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.brand-tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 1.5px;
}

.brand-tagline {
    font-size: 0.66rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    margin-top: 2px;
    font-weight: 400;
}

/* Nav */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--primary);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-call-header {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    padding: 10px 18px;
    font-size: 0.85rem;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-call-header:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-wa-header {
    background: var(--wa-green);
    color: var(--white);
    border-color: var(--wa-green);
    padding: 10px 18px;
    font-size: 0.85rem;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-wa-header:hover {
    background: var(--wa-green-dark);
    border-color: var(--wa-green-dark);
    transform: translateY(-2px);
    color: var(--white);
}

/* Menu Toggler */
.menu-toggler {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    font-size: 1.15rem;
    color: var(--primary);
    transition: var(--transition);
}

.menu-toggler:hover {
    background: var(--accent);
    color: var(--white);
}

/* Drawer Menu (Mobile) */
.drawer-menu {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.drawer-menu.open {
    display: flex;
    max-height: 600px;
    padding: 20px;
}

.drawer-menu a {
    padding: 13px 0;
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--primary);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.drawer-menu a:last-of-type {
    border-bottom: none;
}

.drawer-menu a.active,
.drawer-menu a:hover {
    color: var(--accent);
}

.drawer-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.btn-call-block {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    width: 100%;
    padding: 13px 20px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
}

.btn-wa-block {
    background: var(--wa-green);
    color: var(--white);
    border-color: var(--wa-green);
    width: 100%;
    padding: 13px 20px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
}

/* ==========================================================================
   7. HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 90px 0 70px;
    background: linear-gradient(135deg, rgba(11, 30, 63, 0.95), rgba(11, 30, 63, 0.82)),
        url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 30, 63, 0.2), rgba(11, 30, 63, 0.4));
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    max-width: 640px;
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 122, 0, 0.15);
    color: var(--accent-light);
    border: 1px solid rgba(255, 122, 0, 0.3);
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 22px;
}

.pill-badge i {
    color: var(--accent);
}

.hero-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 30px;
    line-height: 1.75;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}

.hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.92rem;
    font-weight: 500;
}

.hero-trust li i {
    color: var(--accent);
    font-size: 0.85rem;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    max-width: 480px;
    width: 100%;
}

.image-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 12px 18px;
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.badge-top {
    top: 20px;
    left: 20px;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.badge-bottom {
    bottom: 20px;
    right: 20px;
}

.stars-row {
    color: var(--accent);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* ==========================================================================
   8. QUOTE BAR (Form)
   ========================================================================== */
.quote-bar-section {
    padding: 0 0 60px;
    background: var(--bg-light);
    position: relative;
}

.quote-bar-section .container {
    position: relative;
}

.quote-bar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 45px 45px 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    margin-top: -70px;
    position: relative;
    z-index: 5;
}

.quote-bar-head {
    text-align: center;
    margin-bottom: 30px;
}

.quote-bar-head h2 {
    margin-bottom: 8px;
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
}

.quote-bar-head p {
    font-size: 0.98rem;
    color: var(--text-muted);
    margin: 0;
}

/* Form */
.quote-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    font-family: inherit;
    font-size: 0.94rem;
    color: var(--text-dark);
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.12);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 44px;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
    font-family: inherit;
}

.quote-form-submit {
    text-align: center;
    margin-top: 26px;
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
    margin-bottom: 0;
}

/* ==========================================================================
   9. TRUST CARDS
   ========================================================================== */
.trust-cards-section {
    padding: 20px 0 70px;
    background: var(--bg-light);
}

.trust-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.trust-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 122, 0, 0.25);
}

.trust-icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: var(--radius);
    font-size: 1.5rem;
    margin-bottom: 18px;
    transition: var(--transition);
}

.trust-card:hover .trust-icon {
    background: var(--accent);
    color: var(--white);
    transform: rotate(-6deg) scale(1.05);
}

.trust-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.trust-card p {
    font-size: 0.88rem;
    margin: 0;
    color: var(--text-muted);
}

/* ==========================================================================
   10. ABOUT SECTION
   ========================================================================== */
.about-section {
    background: var(--white);
}

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

.about-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-wrap:hover img {
    transform: scale(1.04);
}

.about-floating-badge {
    position: absolute;
    bottom: 22px;
    left: 22px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-floating-badge i {
    color: var(--accent);
    font-size: 1.6rem;
}

.about-floating-badge strong {
    display: block;
    font-size: 0.94rem;
    color: var(--primary);
    font-weight: 700;
}

.about-floating-badge span {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 16px;
    font-size: 0.98rem;
}

.about-list-title {
    font-weight: 700;
    color: var(--primary);
    margin-top: 22px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 26px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.94rem;
    color: var(--text-body);
    font-weight: 500;
}

.about-list li i {
    color: var(--accent);
    font-size: 0.9rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.about-intro-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

/* ==========================================================================
   11. SERVICES SECTION
   ========================================================================== */
.services-section {
    background: var(--bg-light);
}

.services-grid-8 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 26px;
}

.service-card-lg {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card-lg:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 122, 0, 0.25);
}

.service-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-lg:hover .service-card-img img {
    transform: scale(1.08);
}

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

.service-num {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.service-card-body h3 {
    font-size: 1.12rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.service-card-body p {
    font-size: 0.92rem;
    margin-bottom: 16px;
    flex-grow: 1;
    color: var(--text-muted);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: auto;
}

.service-link i {
    transition: transform 0.3s ease;
    font-size: 0.8em;
}

.service-link:hover {
    color: var(--accent-dark);
}

.service-link:hover i {
    transform: translateX(4px);
}

.services-view-all {
    margin-top: 50px;
}

/* Services Mini Grid (About page) */
.services-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.service-mini-card {
    background: var(--white);
    padding: 30px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
}

.service-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 122, 0, 0.25);
}

.service-mini-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: var(--radius);
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.service-mini-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.service-mini-card p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-muted);
}

/* ==========================================================================
   12. WHY CHOOSE US
   ========================================================================== */
.why-section {
    background: var(--white);
}

.why-grid-6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.why-card {
    background: var(--bg-light);
    padding: 34px 26px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.why-card:hover {
    background: var(--white);
    border-color: rgba(255, 122, 0, 0.25);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 50%;
    font-size: 1.6rem;
    margin-bottom: 18px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--accent);
    color: var(--white);
    transform: rotate(-6deg) scale(1.05);
}

.why-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.why-card p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-muted);
}

/* ==========================================================================
   13. PROCESS SECTION
   ========================================================================== */
.process-section {
    background: var(--primary);
}

.process-section .section-heading {
    color: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 34px 24px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 122, 0, 0.4);
    transform: translateY(-5px);
}

.step-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 18px;
    transition: var(--transition);
    box-shadow: 0 6px 18px rgba(255, 122, 0, 0.4);
}

.process-step:hover .step-circle {
    transform: scale(1.08);
}

.process-step h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--white);
}

.process-step p {
    font-size: 0.88rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   14. GALLERY SECTION
   ========================================================================== */
.gallery-section {
    background: var(--bg-light);
}

.gallery-grid-8 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(11, 30, 63, 0.6));
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ==========================================================================
   15. EXPERIENCE CTA (Full Width)
   ========================================================================== */
.experience-section {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(135deg, rgba(11, 30, 63, 0.94), rgba(11, 30, 63, 0.8)),
        url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.experience-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 30, 63, 0.15), rgba(11, 30, 63, 0.4));
    pointer-events: none;
}

.experience-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
}

.experience-content h2 {
    color: var(--white);
    margin-bottom: 14px;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.experience-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.experience-sub {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 0.95rem !important;
    margin-bottom: 30px !important;
}

.experience-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
}

/* ==========================================================================
   16. AREAS SECTION
   ========================================================================== */
.areas-section {
    background: var(--bg-light);
}

.areas-serve-section {
    background: var(--white);
}

.areas-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.area-serve-card {
    background: var(--white);
    padding: 36px 26px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
}

.area-serve-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 122, 0, 0.25);
}

.area-serve-icon {
    width: 66px;
    height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 18px;
    transition: var(--transition);
}

.area-serve-card:hover .area-serve-icon {
    background: var(--accent);
    color: var(--white);
}

.area-serve-card h3 {
    font-size: 1.12rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.area-serve-card p {
    font-size: 0.92rem;
    margin: 0;
    color: var(--text-muted);
}

/* Areas Gallery */
.areas-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 30px;
}

.areas-gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4 / 3;
}

.areas-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.areas-gallery-item:hover img {
    transform: scale(1.05);
}

/* Areas List (home page) */
.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto 32px;
}

.area-tag {
    padding: 10px 22px;
    background: var(--white);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--border);
    transition: var(--transition);
}

.area-tag:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.areas-cta {
    margin-top: 20px;
}

/* Route Section (Areas page) */
.route-section {
    background: var(--bg-light);
}

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

.route-content h2 {
    margin-bottom: 18px;
}

.route-content p {
    margin-bottom: 22px;
    font-size: 0.98rem;
}

.route-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.route-info-card {
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.route-info-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.route-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.route-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.94rem;
    color: var(--text-body);
    font-weight: 500;
}

.route-info-list li i {
    color: var(--accent);
    font-size: 0.9rem;
    margin-top: 5px;
    flex-shrink: 0;
}

/* ==========================================================================
   17. REVIEWS SECTION
   ========================================================================== */
.reviews-section {
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.review-box {
    background: var(--bg-light);
    padding: 32px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.review-box:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 122, 0, 0.25);
    transform: translateY(-4px);
}

.rating-stars {
    color: var(--accent);
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.review-comment {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 20px;
    flex-grow: 1;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.reviewer-info strong {
    font-size: 0.94rem;
    color: var(--primary);
    font-weight: 700;
}

.reviewer-info span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ==========================================================================
   18. FAQ SECTION
   ========================================================================== */
.faq-section {
    background: var(--bg-light);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 22px 26px;
    transition: var(--transition);
    overflow: hidden;
}

.faq-item[open] {
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 122, 0, 0.3);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--primary);
    position: relative;
    padding-right: 40px;
    line-height: 1.5;
    transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--accent);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 400;
    transition: var(--transition);
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '−';
    background: var(--accent);
    color: var(--white);
    transform: translateY(-50%) rotate(180deg);
}

.faq-item summary:hover {
    color: var(--accent);
}

.faq-item p {
    margin-top: 14px;
    margin-bottom: 0;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
    font-size: 0.94rem;
    line-height: 1.75;
    color: var(--text-muted);
}

/* ==========================================================================
   19. FINAL CTA SECTION
   ========================================================================== */
.final-cta-section {
    background: var(--primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.15), transparent 70%);
    border-radius: 50%;
}

.final-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.final-cta-text {
    max-width: 560px;
}

.final-cta-text h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.final-cta-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

.final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ==========================================================================
   20. CTA SECTION (Mid Page)
   ========================================================================== */
.cta-section {
    padding: 70px 0;
    background: var(--bg-light);
}

.cta-inner-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 50px 55px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.cta-inner-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.2), transparent 70%);
    border-radius: 50%;
}

.cta-text {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.cta-text h2 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}

.cta-text p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.98rem;
    margin: 0;
}

.cta-action {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ==========================================================================
   21. FOOTER
   ========================================================================== */
.footer-new {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.75);
    padding-top: 70px;
}

.footer-grid-4 {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: 45px;
    padding-bottom: 50px;
}

.f-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 22px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 0.3px;
}

.f-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--accent);
}

.brand-name-footer {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1.1;
}

.brand-tag-footer {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--accent-light);
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 16px;
}

.f-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.f-contact-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-sm);
}

.f-contact-highlight i {
    color: var(--accent);
    font-size: 1.3rem;
}

.f-contact-highlight span {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

.f-contact-highlight a {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.f-contact-highlight a:hover {
    color: var(--accent);
}

.f-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.f-links li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.f-links li a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.f-address {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    margin-bottom: 14px;
}

.f-address i {
    color: var(--accent);
    margin-top: 5px;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.f-contact-link {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.f-contact-link i {
    color: var(--accent);
    margin-top: 5px;
    flex-shrink: 0;
}

.f-contact-link a {
    color: rgba(255, 255, 255, 0.75);
    word-break: break-all;
}

.f-contact-link a:hover {
    color: var(--accent);
}

.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 20px;
}

.copyright-bar p {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

/* ==========================================================================
   22. PAGE BANNER (Inner Pages)
   ========================================================================== */
.page-banner {
    position: relative;
    padding: 100px 0 70px;
    background: linear-gradient(135deg, rgba(11, 30, 63, 0.95), rgba(11, 30, 63, 0.82)),
        url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 30, 63, 0.15), rgba(11, 30, 63, 0.4));
    pointer-events: none;
}

.page-banner-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
}

.page-banner-title {
    color: var(--white);
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
    margin-bottom: 16px;
    font-weight: 800;
}

.page-banner-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 720px;
    margin: 0 auto 22px;
    line-height: 1.7;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: var(--white);
    opacity: 0.85;
}

.breadcrumb a:hover {
    color: var(--accent);
    opacity: 1;
}

.breadcrumb-sep {
    color: var(--accent);
}

.breadcrumb-current {
    color: var(--accent);
    font-weight: 600;
}

/* ==========================================================================
   23. ABOUT PAGE SPECIFIC
   ========================================================================== */
.story-section {
    background: var(--bg-light);
}

.story-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.story-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 18px;
    color: var(--text-body);
}

.approach-section {
    background: var(--white);
}

.approach-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.approach-card {
    background: var(--bg-light);
    padding: 34px 26px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.approach-card:hover {
    background: var(--white);
    border-color: rgba(255, 122, 0, 0.25);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.approach-icon {
    width: 66px;
    height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 18px;
    transition: var(--transition);
}

.approach-card:hover .approach-icon {
    background: var(--accent);
    color: var(--white);
}

.approach-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.approach-card p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-muted);
}

/* ==========================================================================
   24. SERVICES PAGE INTRO
   ========================================================================== */
.services-intro-section {
    background: var(--white);
    padding-bottom: 20px;
}

/* ==========================================================================
   25. CONTACT PAGE
   ========================================================================== */
.contact-cards-section {
    background: var(--white);
}

.contact-cards-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.contact-card {
    background: var(--white);
    padding: 36px 26px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 122, 0, 0.25);
}

.contact-card-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.7rem;
    color: var(--white);
    margin-bottom: 20px;
    transition: var(--transition);
}

.contact-icon-call {
    background: var(--primary);
}

.contact-icon-wa {
    background: var(--wa-green);
}

.contact-icon-hours {
    background: var(--accent);
}

.contact-icon-rating {
    background: #F59E0B;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.08) rotate(-6deg);
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.contact-card p {
    font-size: 0.92rem;
    color: var(--text-body);
    margin-bottom: 14px;
}

.contact-card p strong {
    color: var(--primary);
    font-weight: 700;
}

.contact-card-note {
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
    margin-bottom: 0 !important;
}

.contact-card .btn-orange,
.contact-card .btn-wa {
    margin-top: auto;
}

/* Location + Map */
.contact-location-section {
    background: var(--bg-light);
}

.contact-location-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.contact-location-content h2 {
    margin-bottom: 18px;
}

.contact-location-content > p {
    margin-bottom: 22px;
    font-size: 0.98rem;
}

.location-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.location-info-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.location-info-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 50%;
    font-size: 1rem;
    flex-shrink: 0;
}

.location-info-list li h5 {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 4px;
}

.location-info-list li p {
    font-size: 0.94rem;
    color: var(--text-body);
    margin: 0;
    line-height: 1.6;
}

.location-info-list li p a {
    color: var(--accent);
    font-weight: 500;
}

.location-info-list li p a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

.location-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
    background: var(--white);
    padding: 8px;
    min-height: 400px;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border-radius: var(--radius-sm);
}

/* ==========================================================================
   26. MOBILE STICKY BAR
   ========================================================================== */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 9998;
    background: var(--white);
    box-shadow: 0 -3px 16px rgba(0, 0, 0, 0.12);
    border-top: 1px solid var(--border);
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    line-height: 1;
}

.sticky-btn i {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.sticky-call {
    background: var(--primary);
}

.sticky-call:active {
    background: var(--primary-dark);
}

.sticky-wa {
    background: var(--wa-green);
}

.sticky-wa:active {
    background: var(--wa-green-dark);
}

.sticky-quote {
    background: var(--accent);
}

.sticky-quote:active {
    background: var(--accent-dark);
}

/* ==========================================================================
   27. FLOATING BUTTONS (Desktop)
   ========================================================================== */
.quick-float-wrapper {
    position: fixed;
    bottom: 24px;
    right: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9997;
}

.float-btn {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.35rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.float-btn:hover {
    transform: scale(1.1);
    color: var(--white);
}

.float-call {
    background: var(--primary);
}

.float-call:hover {
    background: var(--primary-dark);
}

.float-wa {
    background: var(--wa-green);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.float-wa:hover {
    background: var(--wa-green-dark);
}

/* ==========================================================================
   28. RESPONSIVE — TABLET (≤ 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
        max-width: 520px;
        margin: 0 auto;
    }

    .image-frame img {
        height: 380px;
    }

    .hero-content {
        max-width: 100%;
    }

    .about-grid,
    .route-grid,
    .contact-location-grid {
        gap: 40px;
    }

    .about-image-wrap img {
        height: 420px;
    }

    .footer-grid-4 {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .main-col {
        grid-column: 1 / -1;
    }
}

/* ==========================================================================
   29. RESPONSIVE — MOBILE (≤ 991px)
   ========================================================================== */
@media (max-width: 991px) {
    /* Header mobile */
    .nav-menu,
    .btn-wa-header {
        display: none;
    }

    .menu-toggler {
        display: flex;
    }

    .drawer-menu {
        display: none;
    }

    .drawer-menu.open {
        display: flex;
    }

    /* Show mobile sticky bar */
    .mobile-sticky-bar {
        display: flex;
    }

    body {
        padding-bottom: 66px;
    }

    /* Floating buttons adjust */
    .quick-float-wrapper {
        bottom: 78px;
        right: 14px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

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

    .section-head {
        margin-bottom: 40px;
    }

    /* Hero */
    .hero-section {
        padding: 60px 0 50px;
    }

    .hero-buttons,
    .hero-trust {
        gap: 12px;
    }

    .hero-trust {
        grid-template-columns: 1fr;
    }

    /* Quote form */
    .quote-bar-card {
        padding: 32px 24px 28px;
        margin-top: -50px;
    }

    .quote-form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* About grid */
    .about-grid,
    .route-grid,
    .contact-location-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-image-wrap img {
        height: 360px;
    }

    /* Areas gallery */
    .areas-gallery-grid {
        grid-template-columns: 1fr;
    }

    /* CTA card */
    .cta-inner-card {
        padding: 40px 32px;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .cta-action {
        width: 100%;
    }

    /* Final CTA */
    .final-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .final-cta-buttons {
        width: 100%;
    }

    /* Footer */
    .footer-grid-4 {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
        padding-bottom: 40px;
    }

    /* Page banner */
    .page-banner {
        padding: 70px 0 50px;
    }

    /* Two column layouts */
    .services-grid-8 {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 22px;
    }
}

/* ==========================================================================
   30. RESPONSIVE — SMALL MOBILE (≤ 640px)
   ========================================================================== */
@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    /* Typography */
    h1 { font-size: 1.85rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.1rem; }

    /* Top strip */
    .strip-flex {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .strip-item {
        font-size: 0.78rem;
    }

    /* Header */
    .header-flex {
        padding: 12px 16px;
    }

    .logo-icon {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .brand-name {
        font-size: 1rem;
    }

    .brand-tag {
        font-size: 0.66rem;
    }

    .brand-tagline {
        display: none;
    }

    .btn-call-header {
        padding: 9px 14px;
        font-size: 0.78rem;
    }

    .btn-call-header span {
        display: none;
    }

    .menu-toggler {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Hero */
    .hero-title {
        font-size: 1.65rem;
    }

    .hero-desc {
        font-size: 0.92rem;
    }

    .hero-buttons,
    .about-intro-btns,
    .final-cta-buttons,
    .experience-buttons,
    .route-cta,
    .location-cta-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn-orange,
    .hero-buttons .btn-wa,
    .about-intro-btns .btn-orange,
    .about-intro-btns .btn-dark-outline,
    .final-cta-buttons .btn-orange,
    .final-cta-buttons .btn-wa,
    .final-cta-buttons .btn-light-outline,
    .experience-buttons .btn-orange,
    .experience-buttons .btn-wa,
    .route-cta .btn-orange,
    .route-cta .btn-wa,
    .location-cta-btns .btn-orange,
    .location-cta-btns .btn-dark-outline {
        width: 100%;
    }

    .image-frame img {
        height: 300px;
    }

    .floating-badge {
        padding: 10px 14px;
        font-size: 0.75rem;
    }

    /* Quote card */
    .quote-bar-card {
        padding: 26px 20px;
        border-radius: var(--radius);
    }

    /* Grid to single column */
    .trust-cards-grid,
    .services-grid-8,
    .why-grid-6,
    .process-grid,
    .gallery-grid-8,
    .reviews-grid,
    .contact-cards-grid-4,
    .services-mini-grid,
    .approach-grid-4,
    .areas-cards-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    /* Section padding reduce */
    .section-padding {
        padding: 50px 0;
    }

    /* Cards padding */
    .service-card-body,
    .trust-card,
    .why-card,
    .approach-card,
    .service-mini-card,
    .area-serve-card,
    .contact-card {
        padding: 26px 20px;
    }

    /* About image */
    .about-image-wrap img {
        height: 300px;
    }

    /* CTA Card */
    .cta-inner-card {
        padding: 32px 22px;
        border-radius: var(--radius);
    }

    .cta-text h2 {
        font-size: 1.3rem;
    }

    .cta-action {
        flex-direction: column;
    }

    .cta-action .btn-cta-light,
    .cta-action .btn-cta-wa,
    .cta-action .btn-cta-orange {
        width: 100%;
    }

    /* Final CTA */
    .final-cta-section {
        padding: 55px 0;
    }

    .final-cta-text h2 {
        font-size: 1.3rem;
    }

    /* Process */
    .process-step {
        padding: 28px 20px;
    }

    /* FAQ */
    .faq-item {
        padding: 18px 20px;
    }

    .faq-item summary {
        font-size: 0.96rem;
        padding-right: 34px;
    }

    /* Footer */
    .footer-grid-4 {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 30px;
    }

    .footer-new {
        padding-top: 50px;
    }

    .f-contact-highlight {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    /* Page banner */
    .page-banner {
        padding: 55px 0 40px;
    }

    .page-banner-title {
        font-size: 1.6rem;
    }

    .page-banner-desc {
        font-size: 0.92rem;
    }

    /* Floating buttons */
    .quick-float-wrapper {
        bottom: 74px;
        right: 12px;
        gap: 8px;
    }

    .float-btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    /* Contact map */
    .contact-map-wrapper {
        min-height: 300px;
    }

    .contact-map-wrapper iframe {
        min-height: 280px;
    }

    /* Areas route card */
    .route-info-card {
        padding: 28px 22px;
    }

    /* Reviews */
    .review-box {
        padding: 26px 22px;
    }
}

/* ==========================================================================
   31. RESPONSIVE — TINY MOBILE (≤ 380px)
   ========================================================================== */
@media (max-width: 380px) {
    .brand-name {
        font-size: 0.92rem;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    .sticky-btn {
        font-size: 0.62rem;
        padding: 9px 4px;
    }

    .sticky-btn i {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.45rem;
    }

    .page-banner-title {
        font-size: 1.4rem;
    }

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

/* ==========================================================================
   32. ACCESSIBILITY & MISC
   ========================================================================== */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print */
@media print {
    .main-header,
    .top-strip,
    .mobile-sticky-bar,
    .quick-float-wrapper,
    .hero-buttons,
    .cta-action,
    .final-cta-buttons {
        display: none !important;
    }

    body {
        padding-bottom: 0;
    }
}