/* ============================================================
   ELITE CONSTRUCTION CT — Landing Page Styles
   ============================================================ */

/* ===========================
   1. VARIABLES & RESET
   =========================== */
:root {
    --primary:        #191f3a;
    --primary-light:  #252d52;
    --accent:         #f7a91a;
    --accent-hover:   #d4890a;
    --text:           #2c3e50;
    --text-light:     #6c757d;
    --light:          #f4f7fb;
    --white:          #ffffff;
    --dark:           #000000;
    --border:         #dde3f0;
    --gold:           #f7a91a;

    --shadow-sm:   0 2px 10px rgba(0,0,0,0.07);
    --shadow:      0 4px 20px rgba(0,0,0,0.10);
    --shadow-md:   0 8px 30px rgba(0,0,0,0.13);
    --shadow-lg:   0 16px 50px rgba(0,0,0,0.18);

    --radius:    10px;
    --radius-lg: 16px;
    --ease:      all 0.3s ease;

    --font-body:    'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary);
}
a { text-decoration: none; transition: var(--ease); color: inherit; }
img { max-width: 100%; display: block; }
.text-accent { color: var(--accent) !important; }

/* ===========================
   2. LAYOUT UTILITIES
   =========================== */
.section-pad   { padding: 90px 0; }
.section-light { background: var(--light); }
.section-dark  { background: var(--primary); }
.text-muted-light { color: rgba(255,255,255,0.6); }

/* ===========================
   3. SECTION HEADER
   =========================== */
.section-header { margin-bottom: 10px; }
.section-header h2 {
    font-size: clamp(26px, 4vw, 42px);
    margin-bottom: 14px;
}
.section-header p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    background: rgba(247,169,26,0.10);
    color: var(--accent);
    border: 1px solid rgba(247,169,26,0.22);
    border-radius: 50px;
    padding: 5px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-tag-light {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.65);
    border-color: rgba(255,255,255,0.18);
}

/* ===========================
   4. BUTTONS
   =========================== */
.btn-cta {
    background: var(--accent);
    color: var(--primary);
    border: 2px solid var(--accent);
    border-radius: 50px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--ease);
    cursor: pointer;
    white-space: nowrap;
}
.btn-cta:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(247,169,26,0.40);
}
.btn-cta.btn-xl { padding: 16px 38px; font-size: 16px; }
.btn-cta.btn-lg { padding: 14px 32px; font-size: 15px; }

.btn-outline-hero {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.55);
    border-radius: 50px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--ease);
    cursor: pointer;
    white-space: nowrap;
}
.btn-outline-hero:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
    transform: translateY(-2px);
}
.btn-outline-hero.btn-xl { padding: 16px 38px; font-size: 16px; }
.btn-outline-hero.btn-lg { padding: 14px 32px; font-size: 15px; }

.btn-footer-outline {
    background: transparent;
    color: rgba(255,255,255,0.65);
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    padding: 11px 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--ease);
    cursor: pointer;
}
.btn-footer-outline:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

/* ===========================
   5. LANGUAGE SWITCHER
   =========================== */
.lang-switcher {
    display: flex;
    gap: 2px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 4px;
}
.lang-btn {
    background: transparent;
    color: rgba(255,255,255,0.55);
    border: none;
    border-radius: 50px;
    padding: 5px 14px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: var(--ease);
    line-height: 1;
}
.lang-btn.active {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 2px 8px rgba(247,169,26,0.4);
}
.lang-btn:hover:not(.active) { color: #fff; }

@media (max-width: 991px) {
    .lang-switcher {
        background: rgba(255,255,255,0.07);
        border-color: rgba(255,255,255,0.12);
        display: inline-flex;
    }
}

/* ===========================
   6. NAVBAR
   =========================== */
#navbar {
    padding: 20px 0;
    transition: var(--ease);
    z-index: 1050;
    background: var(--primary);
}
#navbar.scrolled {
    background: var(--primary);
    padding: 12px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.28);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    flex-shrink: 0;
    padding-top: 0;
    padding-bottom: 0;
}
.navbar-brand:hover { color: #fff; }

.brand-icon {
    width: 42px; height: 42px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}
.brand-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
}
.brand-name .accent { color: var(--accent); }
.brand-ct {
    font-size: 12px;
    font-weight: 700;
    opacity: 0.6;
    margin-left: 1px;
    vertical-align: super;
}

.nav-phone {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-phone i { color: var(--accent); }
.nav-phone:hover { color: var(--accent); }

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.80) !important;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 8px 14px !important;
}
.navbar-nav .nav-link:hover { color: #fff !important; }

.navbar-toggler {
    border-color: rgba(255,255,255,0.3);
    padding: 6px 10px;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse { background: transparent; }
@media (max-width: 991px) {
    #navbar {
        box-shadow: 0 4px 24px rgba(0,0,0,0.28);
    }
    .navbar-collapse {
        background: var(--primary);
        padding: 12px 0 20px;
        border-top: 1px solid rgba(255,255,255,0.10);
    }
    .navbar-brand img {
        max-width: 180px;
        height: auto;
    }
}

/* ===========================
   7. HERO
   =========================== */
.hero-section {
    min-height: 100vh;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    position: relative;
    /* PRODUCTION: Replace with a real construction photo:
       background: url('../img/hero-construction.jpg') center/cover no-repeat; */
    background: linear-gradient(135deg, #000000 0%, #0d1320 35%, #191f3a 65%, #252d52 100%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(0,0,0,0.94) 0%,
        rgba(0,0,0,0.75) 55%,
        rgba(25,31,58,0.55) 100%
    );
}

.min-vh-hero {
    min-height: calc(100vh - 200px);
    padding: 40px 0;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.badge-item {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.88);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.3px;
    backdrop-filter: blur(6px);
}
.badge-item i { color: var(--accent); }

.hero-title {
    font-size: clamp(32px, 5.5vw, 64px);
    color: #fff;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero-highlight { color: var(--accent); }

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.72);
    max-width: 500px;
    margin-bottom: 24px;
    line-height: 1.65;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}
.hero-trust span {
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.hero-trust i { color: #4ade80; font-size: 15px; }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.15);
}
.hero-card-header {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--light);
}
.hero-card-header i { color: var(--accent); font-size: 20px; }

.hero-form { display: flex; flex-direction: column; gap: 12px; }
.hero-form .form-control {
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text);
    background: var(--light);
    transition: var(--ease);
    width: 100%;
}
.hero-form .form-control:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(25,31,58,0.07);
    outline: none;
}

.form-note {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}
.form-note i { color: var(--accent); margin-right: 4px; }

.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
}
.hero-scroll a {
    color: rgba(255,255,255,0.35);
    font-size: 22px;
    display: block;
    animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(10px); }
}

/* ===========================
   8. TRUST BAR
   =========================== */
.trust-bar {
    background: var(--primary);
    padding: 28px 0;
    border-top: 4px solid var(--accent);
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 16px;
    border-right: 1px solid rgba(255,255,255,0.09);
}
.trust-item:last-child { border-right: none; }
.trust-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.trust-label {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin-top: 5px;
    letter-spacing: 0.4px;
}

/* ===========================
   9. WHY CHOOSE US CARDS
   =========================== */
.why-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    height: 100%;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--ease);
    position: relative;
    overflow: hidden;
}
.why-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: var(--ease);
    transform-origin: left;
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(247,169,26,0.2);
}
.why-card:hover::after { transform: scaleX(1); }

.why-icon {
    width: 62px; height: 62px;
    background: linear-gradient(135deg, var(--accent), #d4890a);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 6px 18px rgba(247,169,26,0.28);
}
.why-card h4 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary);
}
.why-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

/* ===========================
   10. SERVICE CARDS
   =========================== */
.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    height: 100%;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--ease);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #d4890a);
    transform: scaleX(0);
    transition: var(--ease);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(247,169,26,0.15);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
    width: 64px; height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
    color: #fff;
}
.service-blue {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    box-shadow: 0 6px 16px rgba(25,31,58,0.25);
}
.service-red {
    background: linear-gradient(135deg, var(--accent), #d4890a);
    box-shadow: 0 6px 16px rgba(247,169,26,0.28);
}
.service-card h5 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary);
}
.service-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 16px;
}
.service-link {
    color: var(--accent);
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.service-link i { transition: transform 0.25s ease; }
.service-link:hover i { transform: translateX(4px); }

/* ===========================
   11. BEFORE & AFTER GALLERY
   =========================== */
.gallery-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    transition: var(--ease);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.gallery-card:hover {
    transform: translateY(-4px);
    border-color: rgba(247,169,26,0.5);
    box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}

.gallery-single {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
.gallery-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-card:hover .gallery-single img {
    transform: scale(1.04);
}

.gallery-group-header {
    text-align: center;
    margin-bottom: 16px;
}
.gallery-group-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 22px;
    border-radius: 50px;
}
.badge-before {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    border: 1px solid rgba(255,255,255,0.2);
}
.badge-after {
    background: var(--accent);
    color: #fff;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255,255,255,0.35);
    font-size: 12px;
}
.img-placeholder i { font-size: 28px; }
.ph-size {
    font-size: 10px;
    color: rgba(255,255,255,0.22);
    letter-spacing: 0.5px;
    margin-top: -2px;
    font-weight: 500;
}
.img-dark  { background: #1c2d42; }
.img-blue  { background: #163a5f; }

.gallery-label {
    position: absolute;
    bottom: 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 50px;
}
.label-before { left: 8px;  background: rgba(0,0,0,0.55); color: rgba(255,255,255,0.7); }
.label-after  { right: 8px; background: var(--accent);    color: #fff; }

.gallery-info { padding: 16px 18px; flex: 1; }
.gallery-info h6 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}
.gallery-info p { color: rgba(255,255,255,0.45); font-size: 12px; margin: 0; }

/* ===========================
   12. PROCESS CARDS
   =========================== */
.process-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 34px 26px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--ease);
}
.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(247,169,26,0.2);
}

.process-step-num {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    color: rgba(247,169,26,0.07);
    position: absolute;
    top: 14px;
    right: 18px;
    line-height: 1;
    user-select: none;
}
.process-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: 0 6px 18px rgba(25,31,58,0.3);
}
.process-card h5 {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}
.process-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

/* ===========================
   13. TESTIMONIAL CARDS
   =========================== */
.review-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--ease);
    position: relative;
}
.review-card::before {
    content: '\201C';
    font-size: 110px;
    color: rgba(247,169,26,0.055);
    position: absolute;
    top: -8px;
    left: 18px;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}
.review-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(247,169,26,0.18);
}

.review-stars {
    display: flex;
    gap: 3px;
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 14px;
}
.review-text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.72;
    font-style: italic;
    margin-bottom: 20px;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-avatar {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}
.review-author strong { display: block; font-size: 15px; color: var(--primary); }
.review-author span   { font-size: 12px; color: var(--text-light); }

/* ===========================
   14. SERVICE AREAS
   =========================== */
.area-badge {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 10px;
    text-align: center;
    transition: var(--ease);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.area-badge:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.area-badge.area-primary {
    border-color: var(--accent);
    background: rgba(247,169,26,0.04);
    box-shadow: var(--shadow-sm);
}
.area-badge i    { font-size: 18px; color: var(--accent); }
.area-badge span { font-weight: 700; font-size: 14px; color: var(--primary); }
.area-badge small { font-size: 10px; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.area-badge.area-more { opacity: 0.65; }
.area-badge.area-more i { color: var(--text-light); }
.area-badge.area-more span { color: var(--text-light); }

.areas-note { font-size: 15px; color: var(--text-light); }
.areas-note a { color: var(--accent); font-weight: 700; }
.areas-note a:hover { text-decoration: underline; }

/* ===========================
   15. CTA SECTION
   =========================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #191f3a 50%, var(--primary) 100%);
    position: relative;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.88), rgba(25,31,58,0.80));
}
.cta-section h2 {
    font-size: clamp(26px, 4vw, 48px);
    margin: 12px 0 16px;
    color: #fff;
}
.cta-trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 8px;
}
.cta-trust-badges span {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.cta-trust-badges i { color: var(--accent); }

/* ===========================
   16. CONTACT / FORM
   =========================== */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.ci-icon {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--accent), #d4890a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(247,169,26,0.28);
}
.contact-info-item strong {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 3px;
}
.contact-info-item a,
.contact-info-item span {
    font-size: 15px;
    color: var(--primary);
    font-weight: 500;
}
.contact-info-item a:hover { color: var(--accent); }

.contact-trust-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-pill {
    background: rgba(25,31,58,0.07);
    border: 1px solid rgba(25,31,58,0.12);
    color: var(--primary);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.trust-pill i { color: var(--accent); }

.quote-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 38px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.quote-form-card h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--light);
}
.quote-form-card h4 i { color: var(--accent); font-size: 22px; }

.quote-form-card label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}
.quote-form-card .form-control {
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text);
    transition: var(--ease);
    background: var(--light);
    width: 100%;
}
.quote-form-card .form-control:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(25,31,58,0.07);
    outline: none;
}

.form-success {
    text-align: center;
    padding: 30px 20px;
}
.form-success i {
    font-size: 56px;
    color: #27ae60;
    margin-bottom: 16px;
    display: block;
}
.form-success h5 { color: var(--primary); margin-bottom: 10px; }
.form-success p  { color: var(--text-light); }

/* ===========================
   17. FOOTER
   =========================== */
.footer { background: var(--dark); }
.footer-top { padding: 70px 0 40px; }

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-desc {
    color: rgba(255,255,255,0.50);
    font-size: 14px;
    line-height: 1.75;
    max-width: 320px;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 4px;
}
.footer-contact a {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-contact a:hover { color: var(--accent); }
.footer-contact i { color: var(--accent); width: 16px; }

.footer-social { display: flex; gap: 8px; }
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    transition: var(--ease);
}
.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
}

.footer-heading {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
}
.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-links a {
    color: rgba(255,255,255,0.50);
    font-size: 14px;
}
.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-license p {
    color: rgba(255,255,255,0.35);
    font-size: 12px;
    margin-bottom: 4px;
}
.footer-license i { color: var(--accent); margin-right: 5px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0;
}
.footer-bottom p {
    color: rgba(255,255,255,0.30);
    font-size: 12px;
    margin: 0;
}
.footer-bottom a {
    color: rgba(255,255,255,0.30);
    font-size: 12px;
    margin-left: 18px;
}
.footer-bottom a:hover { color: var(--accent); }

/* ===========================
   18. MOBILE STICKY BAR
   =========================== */
.mobile-sticky {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    display: flex;
    z-index: 1040;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
}
.mobile-sticky-call {
    flex: 1;
    background: var(--primary);
    color: #fff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    border-right: 1px solid rgba(255,255,255,0.12);
    transition: var(--ease);
}
.mobile-sticky-call i { color: var(--accent); font-size: 18px; }
.mobile-sticky-call:hover { background: #252d52; color: #fff; }

.mobile-sticky-quote {
    background: var(--accent);
    color: var(--primary);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--ease);
}
.mobile-sticky-quote:hover { background: var(--accent-hover); color: var(--primary); }

/* ===========================
   19. WHATSAPP FLOAT BUTTON
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 1035;
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 6px 24px rgba(37,211,102,0.42);
    transition: var(--ease);
    text-decoration: none;
    white-space: nowrap;
}
.whatsapp-float:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(37,211,102,0.58);
}
.whatsapp-float i { font-size: 22px; }
.whatsapp-float .wa-text { display: none; }

@media (min-width: 576px) {
    .whatsapp-float .wa-text { display: inline; }
}

@media (max-width: 767px) {
    .whatsapp-float {
        bottom: 78px;
        right: 16px;
        padding: 12px 16px;
    }
    .whatsapp-float .wa-text { display: none; }
}

/* Desktop: WhatsApp above the right edge (no mobile sticky) */
@media (min-width: 992px) {
    .whatsapp-float { bottom: 32px; }
}

/* ===========================
   20. RESPONSIVE
   =========================== */
@media (max-width: 1199px) {
    .hero-card { padding: 26px; }
}

@media (max-width: 991px) {
    .section-pad { padding: 70px 0; }
    .hero-section { padding: 100px 0 70px; }
    /* Mobile sticky bar visible up to 991px — give body room */
    body { padding-bottom: 62px; }
}

@media (max-width: 767px) {
    .section-pad { padding: 60px 0; }

    /* Trust bar: Bootstrap col-6 → 2 columns (g-0, no gutter) */
    .trust-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .trust-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.08); }
    .trust-item:nth-child(3),
    .trust-item:nth-child(4)    { border-bottom: none; }

    .hero-title { font-size: 34px; letter-spacing: -0.5px; }
    .hero-subtitle { font-size: 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .quote-form-card { padding: 24px 18px; }

    .footer-bottom .text-md-end { text-align: left !important; margin-top: 8px; }
    .footer-bottom a { margin-left: 0; margin-right: 16px; }

    .cta-section .d-flex { flex-direction: column; align-items: center; }
    .cta-section .btn { width: 100%; max-width: 320px; justify-content: center; }
}
