/* ============================================================
   NIFRAS GUTTERS — style.css
   Navy Blue + Construction Orange + White + Grey
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap");

/* ---------- CSS Variables ---------- */
:root {
    --navy: #0d1f3c;
    --navy-dark: #081429;
    --navy-mid: #162d52;
    --orange: #e8650a;
    --orange-lt: #f5793a;
    --grey-bg: #f4f6f9;
    --grey-mid: #7a8697;
    --grey-dark: #2c3340;
    --white: #ffffff;
    --border: #dde3ec;
    --shadow-sm: 0 2px 12px rgba(13, 31, 60, 0.08);
    --shadow-md: 0 6px 28px rgba(13, 31, 60, 0.14);
    --shadow-lg: 0 16px 48px rgba(13, 31, 60, 0.18);
    --radius: 6px;
    --radius-lg: 12px;
    --transition: 0.28s ease;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

img,
video {
    max-width: 100%;
    height: auto;
}

.hero,
.navbar,
.mobile-menu {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 575.98px) {
    .hero-content {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .hero-content .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .hero-content [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .hero-eyebrow {
        width: 100%;
        justify-content: center;
        text-align: center;
        font-size: 0.68rem;
    }

    .hero-title,
    .hero-sub {
        padding-left: 0;
        padding-right: 0;
    }

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

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: var(--grey-dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
    letter-spacing: 0.01em;
}

a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---------- Utility ---------- */
.text-orange {
    color: var(--orange) !important;
}
.text-navy {
    color: var(--navy) !important;
}
.bg-navy {
    background-color: var(--navy) !important;
}
.bg-navy-dark {
    background-color: var(--navy-dark) !important;
}
.bg-orange {
    background-color: var(--orange) !important;
}
.bg-grey {
    background-color: var(--grey-bg) !important;
}

.section-label {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.55rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--orange);
}

.section-sub {
    font-size: 1rem;
    color: var(--grey-mid);
    max-width: 560px;
}

/* ---------- Buttons ---------- */
.btn-orange {
    background: var(--orange);
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    padding: 0.72rem 1.8rem;
    border-radius: var(--radius);
    border: 2px solid var(--orange);
    transition: var(--transition);
    display: inline-block;
}
.btn-orange:hover {
    background: var(--orange-lt);
    border-color: var(--orange-lt);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 101, 10, 0.28);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    padding: 0.72rem 1.8rem;
    border-radius: var(--radius);
    border: 2px solid var(--navy);
    transition: var(--transition);
    display: inline-block;
}
.btn-navy:hover {
    background: var(--navy-mid);
    border-color: var(--navy-mid);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    padding: 0.72rem 1.8rem;
    border-radius: var(--radius);
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    display: inline-block;
}
.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

#mainNav {
    background: transparent;
    padding: 1.1rem 0 !important;
    transition:
        background 0.35s ease,
        box-shadow 0.35s ease;
    z-index: 1000;
    top: 0;
}

#mainNav.scrolled {
    background: var(--navy-dark) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 1.1rem 0 !important;
    top: 0;
}
#mainNav.scrolled {
    background: var(--navy-dark) !important;
    padding: 0.7rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.navbar-brand {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--white) !important;
    letter-spacing: 0.05em;
}
.navbar-brand span {
    color: var(--orange);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.88) !important;
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    padding: 0.4rem 1rem !important;
    transition: color var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--orange) !important;
}

.navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none;
}
.navbar-toggler-icon {
    filter: invert(1);
}

/* ---------- PAGE HEADER ---------- */
.page-header {
    background: var(--navy-dark);
    padding: 6rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--navy-dark) 0%,
        var(--navy-mid) 100%
    );
    opacity: 0.97;
}
.page-header::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 60px solid rgba(232, 101, 10, 0.08);
}
.page-header .container {
    position: relative;
    z-index: 1;
}
.page-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    color: var(--white);
    font-weight: 800;
}
.page-header .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}
.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
}
.page-header .breadcrumb-item.active {
    color: var(--orange);
    font-size: 0.85rem;
}
.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- HERO ---------- */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--navy-dark);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80");
    background-size: cover;
    background-position: center;
    filter: brightness(0.35);
    transform: scale(1.04);
    transition: transform 8s ease;
}
.hero-section:hover .hero-bg {
    transform: scale(1);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(8, 20, 41, 0.82) 45%,
        rgba(13, 31, 60, 0.4) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 7rem 0 5rem;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232, 101, 10, 0.18);
    border: 1px solid rgba(232, 101, 10, 0.4);
    color: var(--orange-lt);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 40px;
    margin-bottom: 1.4rem;
}
.hero-title {
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.2rem;
}
.hero-title .accent {
    color: var(--orange);
}
.hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 540px;
    margin-bottom: 2rem;
    line-height: 1.75;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.4rem;
}
.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    font-weight: 500;
}
.hero-badge i {
    color: var(--orange);
    font-size: 0.9rem;
}

/* Hero diagonal strip */
.hero-section::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 90px;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* ---------- SECTION SPACING ---------- */
.section-pad {
    padding: 5.5rem 0;
}
.section-pad-sm {
    padding: 3.5rem 0;
}

/* ---------- ABOUT PREVIEW (Home) ---------- */
.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.about-exp-badge {
    position: absolute;
    bottom: 24px;
    left: -16px;
    background: var(--orange);
    color: var(--white);
    padding: 1rem 1.4rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
}
.about-exp-badge .num {
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
}
.about-exp-badge .lbl {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.about-check-list {
    list-style: none;
    padding: 0;
}
.about-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.7rem;
    font-size: 0.94rem;
    color: var(--grey-dark);
}
.about-check-list li i {
    color: var(--orange);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ---------- SERVICES CARDS ---------- */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 2rem 1.6rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 58px;
    height: 58px;
    background: rgba(232, 101, 10, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: var(--transition);
}
.service-icon i {
    font-size: 1.5rem;
    color: var(--orange);
}
.service-card:hover .service-icon {
    background: var(--orange);
}
.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--navy);
}
.service-card p {
    font-size: 0.9rem;
    color: var(--grey-mid);
    line-height: 1.65;
    margin: 0;
}

/* Services page card with image */
.service-full-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
    transition: var(--transition);
}
.service-full-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.service-full-card .card-img {
    height: 200px;
    overflow: hidden;
}
.service-full-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-full-card:hover .card-img img {
    transform: scale(1.06);
}
.service-full-card .card-body {
    padding: 1.5rem;
}
.service-full-card .svc-icon {
    width: 48px;
    height: 48px;
    background: var(--orange);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.service-full-card .svc-icon i {
    font-size: 1.2rem;
    color: var(--white);
}
.service-full-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.service-full-card p {
    font-size: 0.88rem;
    color: var(--grey-mid);
    margin-bottom: 1.2rem;
}

/* ---------- WHY CHOOSE US ---------- */
.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}
.why-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--orange);
}
.why-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(
        135deg,
        var(--orange) 0%,
        var(--orange-lt) 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
}
.why-icon i {
    font-size: 1.6rem;
    color: var(--white);
}
.why-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.why-card p {
    font-size: 0.88rem;
    color: var(--grey-mid);
    margin: 0;
}

/* ---------- GALLERY ---------- */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    background: var(--navy-dark);
}
.gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition:
        transform 0.45s ease,
        filter 0.45s ease;
    display: block;
}
.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.72);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    background: rgba(13, 31, 60, 0.5);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay i {
    font-size: 2rem;
    color: var(--white);
}

/* Project cards */
.project-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}
.project-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.48s ease;
    display: block;
}
.project-card:hover img {
    transform: scale(1.07);
}
.project-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(8, 20, 41, 0.92) 0%,
        transparent 100%
    );
    padding: 1.4rem 1.2rem 1rem;
    transform: translateY(10px);
    transition: transform 0.35s ease;
}
.project-card:hover .project-card-info {
    transform: translateY(0);
}
.project-card-info h4 {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}
.project-card-info span {
    color: var(--orange-lt);
    font-size: 0.78rem;
    font-weight: 500;
}
.project-card-info span i {
    margin-right: 3px;
}

/* ---------- TESTIMONIALS ---------- */
.testi-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
}
.testi-card::before {
    content: "\201C";
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--orange);
    opacity: 0.15;
    position: absolute;
    top: 0.4rem;
    left: 1.2rem;
    line-height: 1;
}
.testi-stars {
    color: #f5a623;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}
.testi-text {
    font-size: 0.92rem;
    color: var(--grey-dark);
    line-height: 1.72;
    margin-bottom: 1.2rem;
    font-style: italic;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--orange) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.testi-author-info strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
}
.testi-author-info span {
    font-size: 0.78rem;
    color: var(--grey-mid);
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0;
}
.cta-banner::before {
    content: "";
    position: absolute;
    right: -100px;
    top: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 80px solid rgba(232, 101, 10, 0.08);
}
.cta-banner::after {
    content: "";
    position: absolute;
    left: -50px;
    bottom: -120px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 50px solid rgba(255, 255, 255, 0.04);
}
.cta-banner .container {
    position: relative;
    z-index: 1;
}
.cta-banner h2 {
    color: var(--white);
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 800;
}
.cta-banner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* ---------- STATS ---------- */
.stat-card {
    text-align: center;
    padding: 2rem 1rem;
}
.stat-num {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(2.8rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 0.3rem;
}
.stat-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.stats-section {
    background: var(--navy-mid);
    padding: 4rem 0;
}

/* ---------- PROCESS STEPS ---------- */
.process-step {
    text-align: center;
    padding: 0 1rem;
    position: relative;
}
.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 34px;
    left: calc(50% + 36px);
    width: calc(100% - 72px);
    height: 2px;
    background: var(--border);
}
.process-num {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 3px solid var(--orange);
    color: var(--orange);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: var(--white);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.process-step:hover .process-num {
    background: var(--orange);
    color: var(--white);
}
.process-step h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.process-step p {
    font-size: 0.85rem;
    color: var(--grey-mid);
}

/* ---------- MISSION / VISION ---------- */
.mv-card {
    border-radius: var(--radius-lg);
    padding: 2.4rem;
    height: 100%;
}
.mv-card.mission {
    background: var(--navy);
    color: var(--white);
}
.mv-card.vision {
    background: var(--orange);
    color: var(--white);
}
.mv-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.mv-card p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.72;
}
.mv-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}
.mv-icon i {
    font-size: 1.4rem;
    color: var(--white);
}

/* ---------- CONTACT ---------- */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    transition: var(--transition);
}
.contact-info-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-md);
}
.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(232, 101, 10, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-icon i {
    font-size: 1.2rem;
    color: var(--orange);
}
.contact-info-text strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--grey-mid);
    margin-bottom: 0.2rem;
}
.contact-info-text a,
.contact-info-text span {
    font-size: 0.96rem;
    font-weight: 500;
    color: var(--navy);
}
.contact-info-text a:hover {
    color: var(--orange);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.4rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.contact-form-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
}
.contact-form-card p {
    font-size: 0.9rem;
    color: var(--grey-mid);
    margin-bottom: 1.6rem;
}

.form-control,
.form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    color: var(--grey-dark);
    background: var(--white);
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}
.form-control:focus,
.form-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232, 101, 10, 0.12);
    outline: none;
}
.form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--grey-dark);
    letter-spacing: 0.03em;
    margin-bottom: 0.35rem;
}

/* ---------- MAP EMBED ---------- */
.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.map-wrap iframe {
    display: block;
    width: 100%;
    border: none;
}

/* ---------- TRUST BADGES ---------- */
.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--grey-bg);
    border-radius: var(--radius);
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--border);
}
.trust-badge i {
    font-size: 1.4rem;
    color: var(--orange);
}
.trust-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

/* ---------- FOOTER ---------- */
footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.72);
    padding: 4rem 0 0;
}
.footer-brand {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.9rem;
}
.footer-brand span {
    color: var(--orange);
}
footer p {
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer-heading {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.6rem;
}
.footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--orange);
}

.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 0.55rem;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.footer-links a:hover {
    color: var(--orange);
}
.footer-links a i {
    font-size: 0.65rem;
    color: var(--orange);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 0.8rem;
}
.footer-contact-item i {
    color: var(--orange);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.9rem;
}
.footer-contact-item span {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.65);
}
.footer-contact-item a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.87rem;
}
.footer-contact-item a:hover {
    color: var(--orange);
}

.social-icons {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.8rem;
}
.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    transition: var(--transition);
}
.social-icon:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.2rem 0;
    margin-top: 3rem;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}
.footer-bottom span {
    color: var(--orange);
}

/* ---------- FLOATING WHATSAPP ---------- */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    color: var(--white);
    font-size: 1.5rem;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    text-decoration: none;
}
.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
    color: var(--white);
}
.wa-float::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.45);
    animation: wa-pulse 2.5s infinite;
}
@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.35);
        opacity: 0;
    }
    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

/* ---------- BACK TO TOP ---------- */
#backToTop {
    position: fixed;
    bottom: 96px;
    right: 28px;
    z-index: 9998;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy);
    border: none;
    color: var(--white);
    font-size: 0.9rem;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
#backToTop:hover {
    background: var(--orange);
    transform: translateY(-3px);
}
#backToTop.show {
    display: flex;
}

/* ---------- MODAL ---------- */
.modal-header {
    background: var(--navy);
    border-bottom: none;
    padding: 1.4rem 1.8rem;
}
.modal-title {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
}
.modal-header .btn-close {
    filter: invert(1);
}
.modal-body {
    padding: 1.8rem;
}
.modal-footer {
    border-top: 1px solid var(--border);
    padding: 1.2rem 1.8rem;
}

/* ---------- FADE-IN ANIMATION ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-delay-1 {
    transition-delay: 0.1s;
}
.fade-in-delay-2 {
    transition-delay: 0.2s;
}
.fade-in-delay-3 {
    transition-delay: 0.3s;
}
.fade-in-delay-4 {
    transition-delay: 0.4s;
}

/* ---------- ABOUT PAGE ---------- */
.about-full-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.4rem;
}
.feature-icon {
    width: 46px;
    height: 46px;
    background: rgba(232, 101, 10, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-icon i {
    font-size: 1.1rem;
    color: var(--orange);
}
.feature-item h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}
.feature-item p {
    font-size: 0.87rem;
    color: var(--grey-mid);
    margin: 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .process-step::after {
        display: none;
    }
    .about-exp-badge {
        left: 8px;
    }
}

@media (max-width: 767.98px) {
    .section-pad {
        padding: 3.5rem 0;
    }
    .hero-content {
        padding: 5rem 0 4rem;
    }
    .about-exp-badge {
        bottom: 12px;
        left: 12px;
    }
    .cta-banner {
        padding: 3rem 0;
    }
    .contact-form-card {
        padding: 1.5rem;
    }
    .stats-section {
        padding: 2.5rem 0;
    }
    .wa-float {
        bottom: 20px;
        right: 20px;
    }
    #backToTop {
        bottom: 84px;
        right: 20px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2.1rem;
    }
    .hero-badges {
        flex-direction: column;
        gap: 0.6rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
}

.navbar-toggler {
    width: 48px;
    height: 48px;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: 0 !important;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    width: 30px;
    height: 30px;
    filter: invert(1);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: none !important;
    filter: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    content: "×";
    color: #ffffff !important;
    font-size: 40px !important;
    font-weight: 300;
    line-height: 1;
}
