/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/*
    Created on : 9 Oct 2025, 3:54:55 pm
    Author     : anoop
*/

:root{
    /* Topbar */
    --color-bg-topbar: #000000;
    --color-text-topbar: #FFD700;
    --color-star: #FFD700;
    --topbar-height: 36px;

    /* Header / Nav */
    --color-bg-header: #ffffff;
    --color-text-nav: #22303f;
    --color-nav-hover: #000000;
    --color-cta-primary-bg: #f6c11d;
    --color-cta-primary-text: #0b0b0b;
    --color-outline-border: rgba(34,48,63,0.08);
    --color-whatsapp-bg: #e7f7ee;
    --color-whatsapp-text: #1b6b46;

    --header-height: 80px;

    /* Typography scale */
    --fs-hero: 40px;
    --fs-h1: 28px;
    --fs-h2: 22px;
    --fs-base: 16px;

    /* Buttons */
    --btn-radius: 10px;
    --btn-outline-border: rgba(34,48,63,0.08);

    /* Spacing tokens */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 32px;
    --space-xl: 48px;
    --font-primary: 'Inter', sans-serif;
}

body{
    height: 100%;
    line-height: 24px;
    letter-spacing: 0.5px;
    font-family: "Inter", system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;
}

/* Reserve space for hero estimate card to avoid layout shifts (above the fold) */
#form-get-estimate {
    min-height: 180px;   /* tune this to the actual height; I recommend 160-220px based on layout */
    transition: none;    /* avoid animation that changes layout */
}

/* When card grows due to validation messages, allow internal scroll rather than expand parent */
#form-get-estimate .card-body {
    overflow: visible;
}

/* =========================
   Topbar Styling
========================= */
.topbar {
    background-color: var(--color-bg-topbar);
    color: var(--color-text-topbar);
    font-family: var(--font-primary);
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.topbar small {
    color: var(--color-text-topbar);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.topbar .stars {
    color: var(--color-star);
    margin-left: 2px;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* =============================
   HEADER / NAVBAR STYLING
============================= */
.site-header {
    background: var(--color-bg-header);
    border-bottom: 1px solid var(--color-outline-border);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.site-header .navbar {
    min-height: var(--header-height);
    font-family: var(--font-primary);
}

.site-header .brand-logo {
    height: 50px;
}

.site-header .navbar-nav .nav-link {
    color: var(--color-text-nav);
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: 0.2s ease;
}

.site-header .navbar-nav .nav-link:hover,
.site-header .navbar-nav .nav-link:focus {
    color: var(--color-nav-hover);
}

/* CTA Buttons */
.site-header .nav-ctas .btn {
    border-radius: var(--btn-radius);
    font-weight: 600;
    padding: 8px 14px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.site-header .btn-phone {
    background: #fff;
    color: var(--color-text-nav);
    border: 1px solid var(--btn-outline-border);
}

.site-header .btn-phone:hover {
    background: rgba(34,48,63,0.03);
}

.site-header .btn-whatsapp {
    background: var(--color-whatsapp-bg);
    color: var(--color-whatsapp-text);
    border: 1px solid var(--color-whatsapp-text);
}

.site-header .btn-whatsapp:hover {
    background: var(--color-whatsapp-text);
    color: #fff;
}

.site-header .btn-quote {
    background: var(--color-cta-primary-bg);
    color: var(--color-cta-primary-text);
    border: none;
    font-weight: 700;
    box-shadow: 0 3px 6px rgba(0,0,0,0.08);
}

.site-header .btn-quote:hover {
    background: #e2b617;
}

/* ===============================
   HERO SECTION - DESKTOP
================================ */

/* Core section styling */
.hero-section {
    background: linear-gradient(180deg, #fbfcfd 0%, #ffffff 100%);
    font-family: 'Inter', sans-serif;
    color: #22303f;
}

/* Headings and text */
.hero-section .hero-section__title {
    font-size: 3rem;
    font-weight: 800;
    color: #0b1220;
    line-height: 1.1;
}
.hero-section .hero-section__subtitle {
    font-size: 1.05rem;
    color: #5b6b78;
    margin-bottom: 1.25rem;
}

/* Badges */
.hero-section .hero-section__badges li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: #22303f;
}
.hero-section .hero-section__badges .badge-icon {
    color: #f6c11d;
    font-size: 1.1rem;
}

/* Estimate Card */
/* ---------- hero-section (Estimate Form) ---------- */
.hero-section .hero-section__estimate-card {
    border-radius: 14px;
    background: linear-gradient(180deg, #fffaf0 0%, #fffdf9 100%);
    box-shadow: 0 8px 26px rgba(11,18,32,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-section .hero-section__estimate-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(11,18,32,0.12);
}

/* Form Fields */
.hero-section .hero-section__estimate-form .form-control,
.hero-section .hero-section__estimate-form .form-select {
    border-radius: 10px;
    border: 1px solid rgba(11,18,32,0.1);
    font-size: 0.95rem;
    padding: 0.6rem 0.8rem;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-section .hero-section__estimate-form .form-control:focus,
.hero-section .hero-section__estimate-form .form-select:focus {
    border-color: #f6c11d;
    box-shadow: 0 0 0 3px rgba(246,193,29,0.2);
    outline: none;
}

/* Input group icons */
.hero-section .hero-section__estimate-form .input-group-text {
    border-radius: 10px 0 0 10px;
    border-color: rgba(11,18,32,0.1);
    padding: 0.6rem 0.75rem;
}

/* Button */
.hero-section .hero-section__estimate-btn {
    background: #f6c11d;
    border: none;
    color: #0b1220;
    font-size: 0.95rem;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    box-shadow: 0 10px 20px rgba(246,193,29,0.15);
    transition: all 0.25s ease-in-out;
}
.hero-section .hero-section__estimate-btn:hover,
.hero-section .hero-section__estimate-btn:focus {
    background: #f2b90f;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(246,193,29,0.25);
    color: #0b1220;
}

/* Buttons */
.hero-section .btn-warning {
    background-color: #f6c11d;
    color: #0b0b0b;
    border-radius: 10px;
    font-weight: 600;
}
.hero-section .btn-dark {
    background-color: #000;
    color: #fff;
    border-radius: 10px;
    padding: 10px 20px;
}
.hero-section .btn-outline-warning {
    border: 2px solid #f6c11d;
    color: #f6c11d;
    border-radius: 10px;
    padding: 10px 20px;
}
/* Hover effect: text + icon turns white, background becomes yellow */
.hero-section .btn-outline-warning:hover {
    background-color: #f6c11d;
    color: #ffffff !important;
}

/* Also ensure the icon inherits the color */
.hero-section .btn-outline-warning:hover i {
    color: #ffffff !important;
}

/* Image and stats */
.hero-section .hero-section__image {
    position: relative;
}

/* Hero Section - Play Button Enhancement */
.hero-section__btn-play {
    width: 4rem; /* Circle size */
    height: 4rem;
    border-radius: 50%;
    background-color: #ff0000; /* YouTube Red */
    color: #ffffff; /* White play icon */
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

/* Play icon size */
.hero-section__btn-play i {
    font-size: 2rem; /* Increased icon size */
    line-height: 1;
}

/* Hover effect — slight scale & glow */
.hero-section__btn-play:hover {
    background-color: #e60000; /* Darker red on hover */
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.4);
    color: #FFF;
}

.hero-section .hero-section__stats {
    left: 5%;
    right: 5%;
    bottom: -6%;
    background: #fff;
    border-radius: 14px;
    padding: 12px 18px;
    box-shadow: 0 8px 22px rgba(19,24,31,0.08);
}

#videoModal iframe {
    width: 100%;
    height: 80vh;
    border-radius: 12px;
}


/* ------- Fun Facts: Base / Desktop styles ------- */
.funfacts-section {
    background: #fbfcfd;
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #0b1220;
}

/* Card surface */
.funfacts-section .funfact-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(19,24,31,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    min-height: 180px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .6s ease, transform .6s ease;
}

/* visible state */
.funfacts-section .funfact-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover / focus lift (keyboard accessible) */
.funfacts-section .funfact-card:hover,
.funfacts-section .funfact-card:focus-within {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(19,24,31,0.08);
    outline: none;
}

/* 🔥 On hover, scale icon as well */
.funfacts-section .funfact-card:hover .funfact-icon,
.funfacts-section .funfact-card:focus-within .funfact-icon {
    transform: scale(1.25);
    box-shadow: 0 10px 22px rgba(246,193,29,0.3);
}

/* Fun Fact Icon — Bigger and more visual */
.funfacts-section .funfact-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #fff4d6; /* soft yellow */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #f6c11d;
    box-shadow: 0 6px 18px rgba(19,24,31,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Number */
.funfacts-section .funfact-number {
    font-weight: 800;
    font-size: 2rem;
    color: #0b1220;
    letter-spacing: -0.01em;
}

/* Supporting text */
.funfacts-section .funfact-text {
    font-size: 0.95rem;
    color: #6b7680;
}

/* Make sure cards are focusable for keyboard users */
.funfacts-section .funfact-card[tabindex] {
    cursor: pointer;
}

/* WHY SECTION - Base / Desktop */
.why-section {
    background: #f8fafb; /* very light gray */
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: #0b1220;
}

/* Card wrapper */
.why-section .why-section__card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 18px 42px rgba(19,24,31,0.06);
}

/* Heading */
.why-section .why-section__heading {
    font-size: 1.75rem; /* ~28px */
    font-weight: 700;
    margin-bottom: .25rem;
}

/* Lead */
.why-section .why-section__lead {
    font-size: 1rem;
    max-width: 72ch;
    margin-left: auto;
    margin-right: auto;
}

/* Feature item */
.why-section .why-section__item {
    background: transparent;
    border-radius: 12px;
}

/* Icon circle */
.why-section .why-section__icon {
    width: 100px;      /* increased from 84px */
    height: 100px;     /* increased from 84px */
    font-size: 2rem;   /* increased from 1.65rem */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(246, 193, 29, 0.10);
    color: #f6c11d;
    box-shadow: 0 8px 18px rgba(19, 24, 31, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* variant colors */
.why-section .why-section__icon--blue {
    background: rgba(32,115,255,0.08);
    color: #2b66ff;
}
.why-section .why-section__icon--violet {
    background: rgba(162,99,255,0.08);
    color: #b46bff;
}

/* Titles / description */
.why-section .why-section__title {
    font-weight: 700;
    color: #0b1220;
    margin-top: 6px;
}

.why-section .why-section__desc {
    font-size: 0.95rem;
    color: #6b7680;
}

/* Small responsive helper - keep the column content vertically even */
.why-section .why-section__item.h-100 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* Hover / Focus Animation */
.why-section .why-section__item:hover,
.why-section .why-section__item:focus-within {
    transform: scale(1.05); /* Scale up to 1.2x */
    transition: transform 1s ease, box-shadow 1s ease;
    box-shadow: 0 16px 36px rgba(19,24,31,0.1);
    background-color: #ffffff;
    z-index: 2;
}

/* Smooth scaling of icon along with card */
.why-section .why-section__item:hover .why-section__icon,
.why-section .why-section__item:focus-within .why-section__icon {
    transform: scale(1.1);
    box-shadow: 0 12px 26px rgba(246,193,29,0.25);
    transition: transform 1s ease, box-shadow 1s ease;
}

.recent-projects h2, .recent-projects .h2{
    color: #0b1220;
    font-size: 1.875rem;
}


.recent-projects .card-img-top {
    position: relative;
    padding: 0;
}
.recent-projects .project-badge-left,
.recent-projects .project-badge-right {
    position: absolute;
    top: 12px;
    z-index: 5;
    font-weight: 700;
    padding: .35rem .6rem;
    border-radius: 12px;
    font-size: 0.82rem;
    box-shadow: 0 6px 18px rgba(19,24,31,0.08);
}

/* left feature badge (yellow) */
.recent-projects .project-badge-left {
    left: 12px;
    background: #f6c11d;
    color: #0b0b0b;
    border-radius: 12px;
}

/* right duration badge (darker pill) */
.recent-projects .project-badge-right {
    right: 12px;
    background: rgba(0,0,0,0.72);
    color: white;
    border-radius: 14px;
    padding: .35rem .65rem;
}

/* small shadow around badges to separate from image */
.recent-projects .card-img-top .badge {
    box-shadow: 0 6px 18px rgba(19,24,31,0.08);
}

/* Project detail tags in card body */
.recent-projects .project-tag {
    display: inline-block;
    padding: .35rem .6rem;
    border-radius: 12px;
    font-size: .80rem;
    background: #f2f4f6;
    color: #22303f;
    box-shadow: none;
}


/* CTA - Base styles */
.cta-section {
    background: transparent;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.cta-section .cta-box {
    max-width: 1100px;
    background-color: #fffbea; /* soft creamy yellow */
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(19,24,31,0.06);
    padding: 36px 40px;
}

/* Title & subtitle */
.cta-section .cta-title {
    font-size: 1.5rem;
    color: #0b1220;
    line-height: 1.1;
}

.cta-section .cta-subtitle {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: #57636b;
    font-size: 0.95rem;
}

/* Buttons */
.cta-section .btn-cta-primary {
    background-color: #f6c11d;
    color: #0b0b0b;
    border: none;
    border-radius: 8px;
    box-shadow: 0 6px 14px rgba(246,193,29,0.16);
    transition: transform .15s ease, box-shadow .15s ease, background-color .12s ease;
}

.cta-section .btn-cta-primary:hover,
.cta-section .btn-cta-primary:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(19,24,31,0.10);
    background-color: #f3b90f;
    color: #060606;
    text-decoration: none;
    outline: none;
}

.cta-section .btn-cta-outline {
    background: transparent;
    color: #0b0b0b;
    border: 2px solid #111111;
    border-radius: 8px;
    transition: background-color .15s ease, color .15s ease, transform .15s ease;
}

.cta-section .btn-cta-outline:hover,
.cta-section .btn-cta-outline:focus {
    background-color: #111111;
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
    outline: none;
}

/* Spacing / responsive helpers (desktop default) */
.cta-section .cta-actions .btn {
    min-width: 170px;
}

/* Focus states for accessibility */
.cta-section .btn-cta-primary:focus-visible,
.cta-section .btn-cta-outline:focus-visible {
    box-shadow: 0 0 0 4px rgba(246,193,29,0.16);
}


/* how-we-work - base styles */
.how-we-work {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #22303f;
    background: #f7f9fa; /* subtle page background for section */
}

/* Header */
.how-we-work .how-we-work__header {
    padding-bottom: 6px;
}
.how-we-work .how-we-work__title {
    color: #0b1220;
    font-size: 1.875rem;
} /* ~30px */
.how-we-work .how-we-work__desc {
    color: #5b6b78;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

/* Steps container: create a connector line behind the steps (desktop) */
.how-we-work .how-we-work__steps {
    position: relative;
    padding-top: 28px;
    padding-bottom: 6px;
}

/* horizontal connector line (desktop default visible) */
.how-we-work .how-we-work__steps::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 120px; /* aligns approx to center of step-number circles */
    height: 4px;
    background: linear-gradient(90deg, rgba(246,193,29,0) 0%, rgba(246,193,29,0.95) 50%, rgba(246,193,29,0) 100%);
    z-index: 1;
    border-radius: 6px;
    filter: blur(0.2px);
}

/* individual card */
.how-we-work .how-we-work__card {
    background: #ffffff;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 8px 26px rgba(19,24,31,0.06);
    position: relative;
    overflow: visible;
    z-index: 5; /* above connector */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* step-number circle above card (yellow) */
.how-we-work .how-we-work__card .step-badge {
    position: relative;
    z-index: 6;
}

.how-we-work .how-we-work__card .step-number {
    display: inline-block;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f6c11d; /* primary yellow */
    color: #0b0b0b;
    font-weight: 700;
    line-height: 44px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(246,193,29,0.12);
    font-size: 1rem;
}

/* icon circle */
.how-we-work .how-we-work__card .icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f1f5f8;
    color: #22303f;
    font-size: 1.35rem;
    margin: 0 auto;
    z-index: 6;
    box-shadow: 0 8px 20px rgba(19,24,31,0.04);
}

/* duration pill */
.how-we-work .how-we-work__card .duration-pill {
    display: inline-block;
    background: rgba(246,193,29,0.12);
    color: #5a4b1a;
    padding: 6px 10px;
    border-radius: 16px;
    font-size: 0.82rem;
    font-weight: 600;
}

/* title and text */
.how-we-work .how-we-work__card .step-title {
    margin-top: 6px;
    margin-bottom: 6px;
    color: #0b1220;
}

.how-we-work .how-we-work__card .step-text {
    color: #6b7780;
}

/* equal-height cards: make all cards stretchable */
.how-we-work .how-we-work__card .card-body,
.how-we-work .how-we-work__card .step-text {
    flex: 1 1 auto;
}

/* hover lift */
.how-we-work .how-we-work__card:hover {
    transform: translateY(-6px);
    transition: transform 220ms ease;
    box-shadow: 0 18px 36px rgba(19,24,31,0.09);
}

/* small spacing tuning */
.how-we-work .how-we-work__card .step-icon {
    margin-top: 6px;
}
.how-we-work .how-we-work__card .step-duration {
    margin-top: 8px;
    margin-bottom: 8px;
}

/* ensure connector sits behind the circles (z-index ordering) */
.how-we-work .how-we-work__steps .col-lg-3 {
    position: relative;
    z-index: 6;
}


.process-works {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #0b1220;
    background: #f7f9fa;
}

.process-works .process-works__card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(19,24,31,0.06);
}

/* Heading */
.process-works .process-works__heading {
    font-weight: 700;
    color: #0b1220;
}

/* Item surface */
.process-works .process-works__item {
    background: transparent;
    border-radius: 12px;
    transition: transform 260ms ease, box-shadow 260ms ease;
    cursor: default;
    outline: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 220px;
}

/* slight lift on hover/focus */
.process-works .process-works__item:hover,
.process-works .process-works__item:focus-within {
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(19,24,31,0.08);
    z-index: 3;
}

/* Icon wrapper centers icon and reserves space */
.process-works .process-works__icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon visual */
.process-works .process-works__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f7fb;
    color: #2b66ff;          /* default icon color (can be overridden) */
    font-size: 1.45rem;
    box-shadow: 0 6px 18px rgba(19,24,31,0.04);
    transition: transform 320ms cubic-bezier(.2,.9,.2,1), box-shadow 320ms ease, filter 320ms ease;
    transform-origin: center;
}

/* Icon hover animation triggered by hovering item */
.process-works .process-works__item:hover .process-works__icon,
.process-works .process-works__item:focus-within .process-works__icon {
    transform: scale(1.25) rotate(8deg);
    box-shadow: 0 18px 34px rgba(43,102,255,0.15);
    filter: drop-shadow(0 6px 18px rgba(43,102,255,0.08));
}

/* Titles & description */
.process-works .process-works__title {
    font-weight: 700;
    color: #0b1220;
    margin-top: 0.5rem;
}

.process-works .process-works__desc {
    color: #6b7680;
    font-size: 0.95rem;
    max-width: 38ch;
    margin: 0 auto;
}

/* Variant colors for icons (optional) */
.process-works .process-works__item:nth-child(1) .process-works__icon {
    color: #2b9e6a;
    background: #eaf8f0;
}
.process-works .process-works__item:nth-child(2) .process-works__icon {
    color: #f6c11d;
    background: #fff7e3;
}
.process-works .process-works__item:nth-child(3) .process-works__icon {
    color: #b46bff;
    background: #f5efff;
}

/* Accessibility: keyboard focus outline */
.process-works .process-works__item:focus-within {
    box-shadow: 0 20px 40px rgba(19,24,31,0.10);
}


/* ---------- testimonials-section (BASE) ---------- */
/* ---------- testimonials-section (BASE) ---------- */
.testimonials-section {
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #0b1220;
}

/* Header Button */
.testimonials-section .testimonials-section__google-btn {
    border-color: #f6c11d;
    color: #f6c11d;
    background: transparent;
    border-radius: 30px;
}
.testimonials-section .testimonials-section__google-btn:hover {
    background: #fff7e0;
    color: #000;
}

/* Featured Testimonial Card */
.testimonials-section .testimonials-section__featured {
    background: linear-gradient(90deg, rgba(255,250,240,1) 0%, rgba(255,252,245,1) 100%);
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(19,24,31,0.06);
}

/* Quote & Author */
.testimonials-section .testimonials-section__quote-mark {
    font-size: 3.5rem;
    color: rgba(246,193,29,0.9);
    font-weight: 800;
    line-height: 0.8;
    margin-bottom: 0.3rem;
}
.testimonials-section .testimonials-section__quote {
    font-size: 1.125rem;
    color: #22303f;
    font-style: italic;
    margin-left: 0;
}

/* Star Ratings */
.testimonials-section .testimonials-section__stars i {
    color: #f6c11d;
    font-size: 1.05rem;
}

/* Video Placeholder */
.testimonials-section .testimonials-section__video {
    height: 240px;
}
.testimonials-section .testimonials-section__video img {
    object-fit: cover;
    height: 100%;
}

/* Play Button */
.testimonials-section .testimonials-section__play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 6px 20px rgba(20,24,31,0.10);
    position: absolute;
    color: #0b0b0b;
}

/* Video CTA Badge */
.testimonials-section .testimonials-section__video-cta {
    right: 18px;
    bottom: 14px;
    font-weight: 600;
}

/* Thumbnail Images */
.testimonials-section .testimonials-section__thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    cursor: pointer;
    border: 4px solid transparent;
    transition: transform 220ms ease, border-color 220ms ease;
}
.testimonials-section .testimonials-section__thumb:hover,
.testimonials-section .testimonials-section__thumb.active {
    transform: translateY(-6px);
    border-color: #f6c11d;
}

/* Small Testimonial Cards (Swiper) */
.testimonials-section .testimonials-section__small-card {
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(19,24,31,0.04);
}

/* Google Review Cards (in Modal) */
.testimonials-section .google-review {
    border-radius: 10px;
    box-shadow: none;
    border: 1px solid rgba(19,24,31,0.03);
}

/* Modal Content Tweaks */
.testimonials-section #googleReviewsModal .modal-content {
    border-radius: 12px;
}

/* Video Modal */
.testimonials-section #videoModal .video-frame {
    height: 100vh;
}

/* Swiper Navigation */
.testimonials-section .swiper-button-prev,
.testimonials-section .swiper-button-next {
    color: #0b1220;
}
.testimonials-section .swiper-pagination-bullet {
    background: rgba(0,0,0,0.15);
}

/* -------------------------
   Google Reviews Modal - Base (desktop)
   Scoped to #googleReviewsModal
   ------------------------- */
/* ============================================
   GOOGLE REVIEWS MODAL — BASE (LIGHT THEME)
   ============================================ */
#googleReviewsModal .modal-content {
    background: linear-gradient(180deg, #fffaf0 0%, #fffdf9 100%);
    color: #1e293b;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ---------- HEADER ---------- */
#googleReviewsModal .modal-header {
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: transparent;
}

/* Google logo */
#googleReviewsModal .gr-google-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 8px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Business section */
#googleReviewsModal .gr-business-name {
    font-weight: 800;
    color: #222;
    font-size: 1.05rem;
}
#googleReviewsModal .gr-business-address {
    color: #666;
    font-size: 0.84rem;
    margin-top: 4px;
}

/* Verified badge */
#googleReviewsModal .gr-verified {
    margin-top: 8px;
    align-items: center;
    display: flex;
    gap: 6px;
}
#googleReviewsModal .gr-verified-badge {
    height: 22px;
    object-fit: contain;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 2px 4px;
}
#googleReviewsModal .gr-verified-text {
    color: #333;
    font-size: 0.82rem;
    font-weight: 500;
}

/* Rating (Right side) */
#googleReviewsModal .gr-right {
    min-width: 140px;
    text-align: right;
}
#googleReviewsModal .gr-rating-number {
    font-size: 1.9rem;
    font-weight: 900;
    color: #f6c11d;
    line-height: 1;
}
#googleReviewsModal .gr-rating-stars i {
    color: #f6c11d;
    font-size: 1.05rem;
    margin-left: 2px;
}
#googleReviewsModal .gr-rating-count {
    color: #555;
    font-size: 0.9rem;
}

/* Close Button */
#googleReviewsModal .btn-close {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    opacity: 0.8;
    transition: all 0.2s ease;
}
#googleReviewsModal .btn-close:hover {
    background: rgba(0, 0, 0, 0.1);
    opacity: 1;
}

/* ---------- BODY / REVIEWS ---------- */
#googleReviewsModal .modal-body {
    padding: 20px;
}

#googleReviewsModal #googleReviewsGrid {
    margin-top: 10px;
}

/* Review Card */
#googleReviewsModal .google-review {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    color: #222;
    transition: all 0.2s ease;
}
#googleReviewsModal .google-review:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Reviewer Avatar */
#googleReviewsModal .google-review .rounded-circle {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.05);
}

/* Reviewer Name */
#googleReviewsModal .google-review__author {
    color: #000;
    font-weight: 700;
    font-size: 0.98rem;
}
#googleReviewsModal .google-review__meta {
    color: #666;
    font-size: 0.82rem;
    margin-top: 3px;
}

/* Review Stars */
#googleReviewsModal .google-review__stars i {
    color: #f6c11d;
    margin-right: 4px;
    font-size: 1rem;
}

/* Review Text */
#googleReviewsModal .google-review__text {
    color: #444;
    margin-top: 10px;
    font-size: 0.96rem;
    line-height: 1.55;
}

/* ---------- FOOTER ---------- */
#googleReviewsModal .modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: transparent;
    padding: 12px 20px;
}

/* Buttons */
#googleReviewsModal .gr-open-google {
    background: rgba(246, 193, 29, 0.12);
    color: #f6c11d;
    border: 1px solid rgba(246, 193, 29, 0.25);
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}
#googleReviewsModal .gr-open-google:hover {
    background: #f6c11d;
    color: #fff;
}

#googleReviewsModal .btn-secondary {
    background-color: #f6c11d;
    border-color: #f6c11d;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}
#googleReviewsModal .btn-secondary:hover {
    background-color: #e2ad10;
}

/* ---------- SCROLLBAR ---------- */
#googleReviewsModal .modal-body::-webkit-scrollbar {
    width: 8px;
}
#googleReviewsModal .modal-body::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}
#googleReviewsModal .modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

.testimonials-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch; /* ensures all slides stretch equally */
}

.testimonials-swiper .swiper-slide {
    display: flex;
    height: auto;
}

/* ✅ Make card fill full height of slide */
.testimonials-swiper .testimonials-section__small-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    background: #fff;
    height: 100%; /* critical line */
    background: linear-gradient(180deg, #fffaf0 0%, #fffdf9 100%);
}

/* Avatar styles */
.testimonials-swiper .testimonials-section__small-card img {
    width: 64px;
    height: 64px;
    object-fit: cover;
}

/* ✅ Equal padding + spacing */
.testimonials-swiper .testimonials-section__small-card .small-card__text {
    flex-grow: 1;
    margin-top: 1rem;
}

/* Swiper nav & pagination */
.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
    color: #222;
    background: rgba(255,255,255,0.95);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.testimonials-swiper .swiper-button-prev::after,
.testimonials-swiper .swiper-button-next::after {
    font-size: 16px;
}


.section-trust-factors .stats-card {
    background: linear-gradient(180deg, #fffaf0 0%, #fffdf9 100%);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.section-trust-factors .stats-card__title {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
    color: #212529;
    letter-spacing: -0.2px;
    font-size: 20px;
    margin-bottom: 1rem;
}

.section-trust-factors .stats-card__grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.section-trust-factors .stat {
    text-align: center;
    min-width: 170px;
    flex: 1 1 180px;
    max-width: 240px;
}

.section-trust-factors .stat__value {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #111827;
    font-weight: 800;
    font-size: 34px;
    line-height: 1;
}

.section-trust-factors .stat__small {
    font-weight: 700;
    font-size: 18px;
    color: #111827;
    margin-left: 4px;
}

.section-trust-factors .stat__label {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #6c757d;
}

/* =========================
   SECTION: FAQ - Base (Desktop)
   All selectors scoped under .section-faq
   ========================= */

/* ---------- section-faq (BASE) ---------- */
.section-faq {
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #0b1220;
}

/* container card around accordion (left) */
.section-faq .section-faq__panel {
    background: linear-gradient(180deg, #fffaf0 0%, #fffdf9 100%);
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(19,24,31,0.06);
    border: 1px solid rgba(11,18,32,0.03);
}

/* Header */
.section-faq .section-faq__title {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 6px;
    color: #0b1220;
}

.section-faq .section-faq__subtitle {
    font-size: 15px;
    color: #6b7280; /* muted */
}

/* Accordion adjustments */
.section-faq .section-faq__accordion .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 10px;
}

/* Accordion button (question) */
.section-faq .section-faq__accordion .accordion-button {
    background: #ffffff;
    border-radius: 8px;
    padding: 18px 20px;
    color: #0b1220;
    font-weight: 600;
    box-shadow: 0 3px 8px rgba(11,18,32,0.04);
    border: 1px solid rgba(11,18,32,0.04);
    transition: all .18s ease;
}

/* collapsed state uses Bootstrap class .collapsed - keep look consistent */
.section-faq .section-faq__accordion .accordion-button.collapsed {
    background: #ffffff;
}

/* question chevron alignment stays default; reduce default Bootstrap focus ring */
.section-faq .section-faq__accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.15rem rgba(246,193,29,0.12);
    border-color: rgba(246,193,29,0.2);
}

/* Accordion body (answer) */
.section-faq .section-faq__accordion .accordion-body {
    padding: 14px 22px 18px;
    background: white;
    color: #000;
    font-size: 16px;
}

/* Subtle spacing between items inside the wrapper */
.section-faq  .section-faq__accordion .accordion-item + .accordion-item {
    margin-top: 8px;
}

/* Sidebar card shared styling */
.section-faq  .section-faq__sidebar-card,
.section-faq .section-faq__why-card {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(19,24,31,0.04);
    border: 1px solid rgba(11,18,32,0.03);
    background: #fff;
}

/* call button (yellow outline style like screenshot) */
.section-faq  .section-faq__call-btn {
    background: #ffd43b;
    color: #111;
    border-radius: 8px;
    padding: 10px 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
}
.section-faq .section-faq__call-btn:hover {
    opacity: 0.95;
    text-decoration: none;
}

/* whatsapp button: green outline style */
.section-faq .section-faq__whatsapp-btn {
    background: transparent;
    border-radius: 8px;
    padding: 10px 14px;
    color: #0f5132;
    border: 1px solid rgba(15,81,50,0.12);
    font-weight: 600;
    text-decoration: none;
}
.section-faq .section-faq__whatsapp-btn:hover {
    background: rgba(15,81,50,0.04);
    text-decoration: none;
}

/* Estimate CTA (yellow gradient) */
.section-faq .section-faq__estimate-card {
    border-radius: 14px;
    background: linear-gradient(90deg, #ffd43b 0%, #f6b81d 100%);
    box-shadow: 0 12px 30px rgba(246,193,29,0.12);
    border: none;
}
.section-faq .section-faq__estimate-card h5,
.section-faq .section-faq__estimate-card p {
    color: #111;
}
.section-faq .section-faq__estimate-btn {
    display: inline-block;
    background: #0b1220;
    color: #fff;
    border-radius: 8px;
    padding: 10px 14px;
    font-weight: 700;
    text-decoration: none;
}
.section-faq .section-faq__estimate-btn:hover {
    opacity: 0.95;
    text-decoration: none;
}

/* Why list */
.section-faq .section-faq__why-list li {
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
}

/* subtle spacing utilities */
.section-faq .section-faq .mb-0 {
    margin-bottom: 0 !important;
}

/* ---------- section-footer-buildmasters (BASE / Desktop) ---------- */
.section-footer-buildmasters {
    background-color: #000000; /* solid black background like screenshot */
    color: #ffffff;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    margin-bottom: 60px;
}

/* Brand */
.section-footer-buildmasters .section-footer-buildmasters__brand .section-footer-buildmasters__logo {
    letter-spacing: 0.2px;
    color: #ffffff;
}

/* Slightly muted descriptive text */
.section-footer-buildmasters .section-footer-buildmasters__desc {
    color: rgba(255,255,255,0.8); /* text-white-70 */
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Headings (section titles) */
.section-footer-buildmasters .section-footer-buildmasters__heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f6c11d; /* yellow accent */
}

/* Links list general */
.section-footer-buildmasters .section-footer-buildmasters__links a,
.section-footer-buildmasters .section-footer-buildmasters__areas a,
.section-footer-buildmasters .section-footer-buildmasters__contact a {
    color: rgba(255,255,255,0.85);
    transition: color 0.15s ease, transform 0.12s ease;
}
.section-footer-buildmasters .section-footer-buildmasters__links a:hover,
.section-footer-buildmasters .section-footer-buildmasters__areas a:hover,
.section-footer-buildmasters .section-footer-buildmasters__contact a:hover {
    color: #f6c11d;
    transform: translateX(2px);
}

/* Contact list icons */
.section-footer-buildmasters .section-footer-buildmasters__contact i {
    font-size: 1.05rem;
}

/* Social icons */
.section-footer-buildmasters .section-footer-buildmasters__social a {
    color: rgba(255,255,255,0.85);
    transition: color 0.12s ease;
}
.section-footer-buildmasters .section-footer-buildmasters__social a:hover {
    color: #f6c11d;
}

/* CTA button */
.section-footer-buildmasters .section-footer-buildmasters__cta {
    background: #f6c11d; /* yellow */
    border: none;
    color: #111; /* dark text on yellow */
    box-shadow: 0 6px 18px rgba(246,193,29,0.12);
}
.section-footer-buildmasters .section-footer-buildmasters__cta:hover,
.section-footer-buildmasters .section-footer-buildmasters__cta:focus {
    background: #f2b90f;
    text-decoration: none;
    color: #111;
    transform: translateY(-1px);
}

/* Bottom small text */
.section-footer-buildmasters .small,
.section-footer-buildmasters .text-white-60 {
    color: rgba(255,255,255,0.6);
}

/* Utility to slightly dim text (used above) */
.section-footer-buildmasters .text-white-70 {
    color: rgba(255,255,255,0.7);
}
.section-footer-buildmasters .text-white-80 {
    color: rgba(255,255,255,0.85);
}

/* Spacing tweaks */
.section-footer-buildmasters .section-footer-buildmasters .container {
    max-width: 1180px;
}

/* Make social and contact icons vertically aligned at small sizes */
.section-footer-buildmasters .section-footer-buildmasters__contact li i,
.section-footer-buildmasters .section-footer-buildmasters__social i {
    vertical-align: middle;
}

/* ---------- section-services-buildmasters (BASE) ---------- */
.section-services-buildmasters {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #0b1220;
    background: linear-gradient(180deg,#fffaf0 0%, #fffdf9 100%); /* soft warm background */
}

/* Header / lead */
.section-services-buildmasters .section-services-buildmasters__eyebrow {
    letter-spacing: 0.02em;
    color: #6b7280;
}
.section-services-buildmasters .section-services-buildmasters__title {
    font-size: 2rem;
    font-weight: 800;
    color: #0b1220;
    margin-bottom: 0.25rem;
}
.section-services-buildmasters .section-services-buildmasters__lead {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Grid container spacing */
.section-services-buildmasters .section-services-buildmasters__grid {
    margin-top: 1.25rem;
}

/* ---------- Card (service tile) ---------- */
.section-services-buildmasters .section-services-buildmasters__card {
    background: #ffffff;
    border-radius: 12px;
    transition: transform 280ms cubic-bezier(.2,.9,.2,1), box-shadow 280ms ease, border-color 280ms ease;
    box-shadow: 0 8px 18px rgba(11,18,32,0.06);
    border: 1px solid rgba(11,18,32,0.03);
    min-height: 140px; /* ensures consistent baseline */
    display: flex;
    align-items: flex-start;
    outline: none; /* focus styling handled separately */
}

/* make it keyboard focusable and visible */
.section-services-buildmasters .section-services-buildmasters__card:focus {
    box-shadow: 0 18px 44px rgba(11,18,32,0.12);
    transform: translateY(-6px);
    border-color: rgba(246,193,29,0.12);
}

/* Icon wrapper */
.section-services-buildmasters .section-services-buildmasters__icon-wrapper {
    flex: 0 0 auto;
}
.section-services-buildmasters .section-services-buildmasters__icon {
    width: 56px;
    height: 56px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(246,193,29,0.12) 0%, rgba(255,237,187,0.12) 100%);
    color: #f6c11d;
    font-size: 1.2rem;
    box-shadow: 0 8px 18px rgba(246,193,29,0.06);
    transition: transform 300ms ease, box-shadow 300ms ease;
}

/* title & excerpt */
.section-services-buildmasters .section-services-buildmasters__service-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: #0b1220;
}
.section-services-buildmasters .section-services-buildmasters__excerpt {
    font-size: 0.92rem;
    color: #6b7280;
    line-height: 1.45;
}

/* CTA */
.section-services-buildmasters .section-services-buildmasters__cta {
    background: #f6c11d;
    color: #0b1220;
    font-weight: 700;
    border: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(246,193,29,0.12);
}
.section-services-buildmasters .section-services-buildmasters__cta:hover,
.section-services-buildmasters .section-services-buildmasters__cta:focus {
    background: #f2b90f;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Accessibility focus ring */
.section-services-buildmasters .section-services-buildmasters__card:focus,
.section-services-buildmasters .section-services-buildmasters__cta:focus {
    outline: 3px solid rgba(246,193,29,0.14);
    outline-offset: 3px;
}

/* ---------- Hover / interactive animation ---------- */
/* Lift card + increase shadow + icon pop on hover */
.section-services-buildmasters .section-services-buildmasters__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(11,18,32,0.12);
    border-color: rgba(11,18,32,0.06);
}
.section-services-buildmasters .section-services-buildmasters__card:hover .section-services-buildmasters__icon {
    transform: translateY(-6px) scale(1.06);
    box-shadow: 0 18px 44px rgba(246,193,29,0.14);
}

/* subtle icon animation */
.section-services-buildmasters .section-services-buildmasters__icon i {
    display: inline-block;
    transform-origin: center;
    transition: transform 360ms cubic-bezier(.2,.9,.2,1);
}

/* when hovered the icon will do a tiny rotation */
.section-services-buildmasters .section-services-buildmasters__card:hover .section-services-buildmasters__icon i {
    transform: rotate(-6deg);
}

/* Ensure equal height content lines (use flex) */
.section-services-buildmasters .section-services-buildmasters__card > .d-flex {
    width: 100%;
}

/* Responsive spacing for card text to avoid crowding */
.section-services-buildmasters .section-services-buildmasters__card .section-services-buildmasters__excerpt {
    max-width: 100%;
}

/* ---------- section-house-tours (BASE) ---------- */
.section-house-tours {
    --ht-bg: #fffdfb;
    --ht-accent: #f6c11d;
    --ht-text: #0b1220;
    --ht-muted: #6b7280;
    --ht-card-bg: #ffffff;
    --ht-radius: 12px;
    --ht-shadow: 0 12px 30px rgba(11,18,32,0.06);
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: var(--ht-text);
    background: transparent;
    padding-bottom: 2.5rem;
}

/* Title & lead */
.section-house-tours .section-house-tours__title {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--ht-text);
}
.section-house-tours .section-house-tours__lead {
    color: var(--ht-muted);
    font-size: 0.95rem;
}

/* Grid spacing */
.section-house-tours .section-house-tours__grid {
    margin-top: 1.25rem;
}

/* Card look */
.section-house-tours .section-house-tours__card {
    background: linear-gradient(180deg, var(--ht-card-bg) 0%, #fffaf7 100%);
    border-radius: var(--ht-radius);
    box-shadow: var(--ht-shadow);
    transition: transform .18s ease, box-shadow .18s ease;
    overflow: visible;
}

/* Hover lift */
.section-house-tours .section-house-tours__card:hover,
.section-house-tours .section-house-tours__card:focus-within {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(11,18,32,0.10);
}

/* Thumbnail container */
.section-house-tours .section-house-tours__thumb-wrap {
    cursor: pointer;
    display: block;
    position: relative;
    outline: none;
}
.section-house-tours .section-house-tours__thumb {
    background: #f4efe8;
    border-top-left-radius: calc(var(--ht-radius) - 2px);
    border-top-right-radius: calc(var(--ht-radius) - 2px);
}

/* Play button - centered overlay */
.section-house-tours .section-house-tours__play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(11,18,32,0.9);
    color: #fff;
    border: none;
    box-shadow: 0 10px 30px rgba(11,18,32,0.24);
    transition: transform .18s ease, box-shadow .18s ease, opacity .12s ease;
    z-index: 5;
}
.section-house-tours .section-house-tours__play-btn i {
    font-size: 1.6rem;
    margin-left: 2px;
}
.section-house-tours .section-house-tours__thumb-wrap:hover .section-house-tours__play-btn,
.section-house-tours .section-house-tours__thumb-wrap:focus .section-house-tours__play-btn {
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow: 0 14px 38px rgba(11,18,32,0.32);
    opacity: 0.98;
}

/* Card body text */
.section-house-tours .section-house-tours__meta {
    padding: 1.15rem;
    background: transparent;
}
.section-house-tours .section-house-tours__video-title {
    color: var(--ht-text);
    font-size: 1rem;
    margin-bottom: 0;
}
.section-house-tours .section-house-tours__location {
    color: var(--ht-muted);
}

/* Play button hidden from tab order (thumbnail is the interactive element) */
.section-house-tours .section-house-tours__play-btn[tabindex="-1"] {
    pointer-events: none;
}

/* Modal fixes */
.section-house-tours #houseTourModal .modal-content {
    background: var(--ht-card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(11,18,32,0.5);
}

/* Make close visible above iframe */
.section-house-tours #houseTourModal .btn-close {
    z-index: 1060; /* above iframe */
    background: rgba(255,255,255,0.95);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(11,18,32,0.18);
}
.section-house-tours #houseTourModal .modal-body {
    padding: 0;
}

/* Footer title/ location */
.section-house-tours #houseTourModalTitle {
    font-weight: 600;
    color: var(--ht-text);
}
.section-house-tours #houseTourModalLocation {
    color: var(--ht-muted);
}

/* Accessibility focus state for thumbnails */
.section-house-tours .section-house-tours__thumb-wrap:focus {
    box-shadow: 0 0 0 4px rgba(246,193,29,0.12);
    border-radius: 8px;
    outline: none;
}

/* 16:9 images object-fit helper */
.section-house-tours img.object-fit-cover {
    object-fit: cover;
    object-position: center;
}

/* ---------- section-cta-bar (BASE) ---------- */
.section-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0px;                    /* slight lift above edge */
    z-index: 1050;                   /* above most site content */
    pointer-events: auto;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    -webkit-font-smoothing: antialiased;
    background-color: #FFF;
    padding: 10px 0px;
}

/* inner container centers the buttons and constrains max width */
.section-cta-bar .section-cta-bar__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;                    /* spacing between buttons */
    flex-wrap: nowrap;               /* IMPORTANT: keep single line */
    max-width: 980px;                /* keeps buttons centered within container */
    margin-left: auto;
    margin-right: auto;
    padding: 0 12px;
}

/* Generic button baseline */
.section-cta-bar .section-cta-bar__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;             /* prevent internal wrapping */
    border-radius: 10px;
    padding: 0.55rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1;
    box-shadow: 0 10px 30px rgba(11,18,32,0.06);
    transition: transform 0.12s ease, box-shadow 0.12s ease;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
}

/* Small icon within buttons */
.section-cta-bar .section-cta-bar__icon {
    font-size: 1.05rem;
    display: inline-block;
    line-height: 1;
}

/* ---------- Call Now (neutral white) ---------- */
.section-cta-bar .section-cta-bar__btn--call {
    background: #ffffff;
    color: #0b1220;
    border: 1px solid rgba(11,18,32,0.06);
}
.section-cta-bar .section-cta-bar__btn--call:hover,
.section-cta-bar .section-cta-bar__btn--call:focus {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(11,18,32,0.08);
}

/* ---------- WhatsApp (green outline) ---------- */
.section-cta-bar .section-cta-bar__btn--whatsapp {
    background: #ffffff;
    color: #075e30;
    border: 2px solid #2f9f6a;      /* green outline */
    padding-left: 0.9rem;
    padding-right: 0.9rem;
}
.section-cta-bar .section-cta-bar__btn--whatsapp:hover,
.section-cta-bar .section-cta-bar__btn--whatsapp:focus {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(47,159,106,0.08);
}

/* ---------- Primary: Get Free Estimate (yellow filled) ---------- */
.section-cta-bar .section-cta-bar__btn--estimate {
    background: linear-gradient(90deg,#ffd97a 0%, #f6c11d 100%);
    color: #0b1220;
    border: none;
    box-shadow: 0 14px 36px rgba(246,193,29,0.14);
    padding-left: 1rem;
    padding-right: 1rem;
}
.section-cta-bar .section-cta-bar__btn--estimate:hover,
.section-cta-bar .section-cta-bar__btn--estimate:focus {
    transform: translateY(-3px);
    box-shadow: 0 20px 46px rgba(246,193,29,0.18);
}

/* Focus ring for keyboard users (visible focus) */
.section-cta-bar .section-cta-bar__btn:focus {
    outline: 3px solid rgba(246,193,29,0.14);
    outline-offset: 4px;
}


/* ---------- section-service-areas (BASE) ---------- */
.section-service-areas {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: linear-gradient(180deg, #fffdf9 0%, #fffaf0 100%);
    border-radius: 12px;
    box-shadow: 0 10px 26px rgba(11,18,32,0.04);
    border: 1px solid rgba(11,18,32,0.05);
}

/* Heading */
.section-service-areas h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0b1220;
}

/* Badge styles */
.section-service-areas .section-service-areas__badge {
    font-size: 0.85rem;
    padding: 0.45rem 0.7rem;
    border-radius: 10px;
    transition: all 0.15s ease;
    background: #ffffff;
}

.section-service-areas .section-service-areas__badge:hover {
    background: #fdf4db;
    color: #0b1220;
    border-color: #f6c11d;
    transform: translateY(-2px);
}

/* Label headings */
.section-service-areas p {
    margin-bottom: 0.4rem;
    color: #374151;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
}

/* Validation */
.form-control.error{
    color:#500000;
    border-color: #f44336;
}
input.error{
    color:#500000;
    border-color: #f44336;
}
span.error{
    color:#FFF;
    font-size: 12px;
    padding: 5px 5px;
    margin: 0 5px 0 0;
    position: relative;
    top: 0px;
    background: red;
}

.mandatory{
    color:red;
}

/* ---------- section-thank-you (BASE) ---------- */
.section-thank-you {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #0b1220;
    background: #fffefb;
}

/* Confirmation content wrapper */
.section-thank-you .section-thank-you__content {
    background: linear-gradient(180deg, #ffffff 0%, #fffbf2 100%);
    border-radius: 12px;
    box-shadow: 0 14px 40px rgba(11,18,32,0.06);
    padding: 2rem;
    border: 1px solid rgba(11,18,32,0.03);
}

/* small badge */
.section-thank-you .section-thank-you__badge .badge {
    font-weight: 600;
    letter-spacing: 0.15px;
}

/* Title & lead */
.section-thank-you .section-thank-you__title {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
    line-height: 1.15;
}
.section-thank-you .section-thank-you__lead {
    color: #374151;
    font-size: 1rem;
}

/* reassurance */
.section-thank-you .section-thank-you__reassure {
    color: #6b7280;
}

/* CTAs */
.section-thank-you .section-thank-you__btn-call,
.section-thank-you .section-thank-you__btn-wa {
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 8px;
    padding: 10px 14px;
    font-weight: 700;
}
.section-thank-you .section-thank-you__btn-call {
    background: #fff;
    border: 1px solid rgba(11,18,32,0.06);
    color: #0b1220;
}
.section-thank-you .section-thank-you__btn-call:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
}

.section-thank-you .section-thank-you__btn-wa {
    color: #165e3b;
    border: 1px solid rgba(22,94,59,0.12);
    background: rgba(22,94,59,0.04);
}
.section-thank-you .section-thank-you__btn-wa:hover {
    background: #e9f7ef;
    transform: translateY(-2px);
}

.section-thank-you .section-thank-you__btn-book {
    min-width: 220px;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(246,193,29,0.12);
}
.section-thank-you .section-thank-you__btn-book:hover {
    transform: translateY(-3px);
}

/* Trust row */
.section-thank-you .section-thank-you__trust {
    color: #475569;
}
.section-thank-you .section-thank-you__trust i {
    font-size: 1rem;
}

/* Right column summary */
.section-thank-you .section-thank-you__summary {
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(11,18,32,0.03);
    box-shadow: 0 12px 30px rgba(11,18,32,0.04);
}
.section-thank-you .section-thank-you__request-id {
    color: #0b1220;
    font-weight: 700;
    font-size: 1rem;
}
.section-thank-you .section-thank-you__icon {
    color: #111827;
}

/* Steps list */
.section-thank-you .section-thank-you__steps {
    padding-left: 1.1rem;
    margin: 0;
    color: #374151;
}

/* download & support */
.section-thank-you .section-thank-you__download {
    color: #0b1220;
    text-decoration: none;
}
.section-thank-you .section-thank-you__download:hover {
    text-decoration: underline;
}

/* small secondary CTA */
.section-thank-you .section-thank-you__btn-secondary {
    border-radius: 8px;
    padding: 8px 14px;
    font-weight: 700;
    width: 100%;
}

/* Accessibility focus states */
.section-thank-you .section-thank-you__btn-call:focus,
.section-thank-you .section-thank-you__btn-wa:focus,
.section-thank-you .section-thank-you__btn-book:focus,
.section-thank-you .section-thank-you__btn-secondary:focus {
    outline: 3px solid rgba(246,193,29,0.14);
    outline-offset: 3px;
    box-shadow: none;
}

/* ---------- section-social-engagement (BASE) ---------- */
.section-social-engagement {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #0b1220;
    background: #ffffff;
}

/* Header & lead */
.section-social-engagement .section-social-engagement__title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.section-social-engagement .section-social-engagement__lead {
    color: #6b7280;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons wrapper */
.section-social-engagement .section-social-engagement__buttons {
    margin-top: 0.5rem;
}

/* Generic button base */
.section-social-engagement .section-social-engagement__btn {
    border-radius: 10px;
    min-height: 46px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
    border: 0;
    color: #fff;
    background: #111827;
    box-shadow: 0 6px 18px rgba(11,18,32,0.06);
    display: inline-flex;
    align-items: center;
    gap: .6rem;
}

/* Focus & hover */
.section-social-engagement .section-social-engagement__btn:focus {
    outline: 3px solid rgba(246,193,29,0.14);
    outline-offset: 3px;
    transform: translateY(-1px);
}
.section-social-engagement .section-social-engagement__btn:hover {
    transform: translateY(-3px);
    opacity: 0.98;
}

/* Platform colours */
.section-social-engagement .section-social-engagement__btn--facebook {
    background: #1877f2;
    box-shadow: 0 8px 22px rgba(24,119,242,0.12);
}
.section-social-engagement .section-social-engagement__btn--instagram {
    background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af);
    box-shadow: 0 8px 22px rgba(130,58,120,0.12);
}
.section-social-engagement .section-social-engagement__btn--youtube {
    background: #ff0000;
    box-shadow: 0 8px 22px rgba(255,0,0,0.12);
}

/* icon sizing */
.section-social-engagement .section-social-engagement__btn i {
    font-size: 1.125rem;
}

/* micro note */
.section-social-engagement .section-social-engagement__note {
    color: #6b7280;
}