/* ============================================================
   Bravo Fence — main.css
   Version: 2.0 (Refactored)
   ============================================================
   TABLE OF CONTENTS
   ─────────────────────────────────────────────────────────
   00. Google Fonts Import
   01. CSS Custom Properties (:root)
   02. Font Utilities
   03. Reset & Base Styles
   04. Lenis Smooth Scroll
   05. Custom Scrollbar
   06. Typography (Headings)
   07. Links & Images
   08. Utility Classes
       ├── Background Colors
       ├── Text Colors
       ├── Border Utilities
       ├── Border Radius
       ├── Z-index
       └── Section Padding
   09. Buttons
   10. Sub-title Components
   11. Form Inputs
   12. Common / Shared Components
   13. Header
       ├── Top Bar
       ├── Main Nav
       ├── Dropdown Sub-menu
       └── Offcanvas / Mobile Menu
   14. Banner
   15. About Intro Section
   16. Why Choose Us / Feature Cards
   17. Fencing Services Section
   18. Fence Materials Section
   19. Owner Word / Quote Section
   20. Financing Banner Cards
   21. Financing Options Section
   22. Fence Types Section
   23. Fence Process Section
   24. Gallery & Inspiration Section
       └── Swiper Slider
   25. Testimonials
       └── Client Reviews Slider
   26. Service Coverage Section
   27. FAQ / Accordion Section
   28. Contact Section
   29. Footer
   30. About Page Section
   31. Process Timeline Section
   32. Our Team Section
   33. Residential Fencing Section
   34. Maintenance Services Section
   35. Premium Services Section
   36. Benefits Section
   ============================================================ */


/* ============================================================
   00. GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&display=swap');


/* ============================================================
   01. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    /* --- Brand Colors --- */
    --color-red:            #EE403D;
    --color-blue-dark:      #344F63;
    --color-blue-mid:       #3675BA;
    --color-blue-navy:      #314158;
    --color-blue-mist:      #DCE9F7;
    --color-blue-jeans:     #9ECEF5;
    --color-ghost-white:    #F6F9FD;

    /* --- Neutral / Text Colors --- */
    --color-body:           #45556C;
    --color-heading:        #344F63;
    --color-subtle:         #62748E;
    --color-border:         #E2E8F0;
    --color-border-light:   #F1F5F9;
    --color-white:          #ffffff;

    /* --- Background Utilities --- */
    --bg-mist:              rgba(220, 233, 247, 0.25);
    --bg-mist-light:        rgba(220, 233, 247, 0.20);
    --bg-feature-card:      rgba(220, 233, 247, 0.20);

    /* --- Font Families --- */
    --font-body:            "Open Sans", sans-serif;
    --title-font:         "Oswald", sans-serif;
    --font-serif:           "Aleo", serif;

    /* --- Font Sizes (static) --- */
    --fs-xs:   12px;
    --fs-sm:   13px;
    --fs-base: 18px;
    --fs-md:   16px;
    --fs-lg:   20px;

    /* --- Font Weights --- */
    --fw-regular: 400;
    --fw-medium:  500;
    --fw-semibold: 600;
    --fw-bold:    700;

    /* --- Border Radius --- */
    --radius-sm:   6px;
    --radius-md:   8px;
    --radius-lg:   10px;
    --radius-xl:   16px;
    --radius-full: 50%;

    /* --- Shadows --- */
    --shadow-xs:   0 1px 3px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.10);
    --shadow-sm:   0 1px 3px 0 rgba(0,0,0,.10), 0 1px 2px -1px rgba(0,0,0,.10);
    --shadow-md:   0 4px 6px -1px rgba(0,0,0,.10), 0 2px 4px -2px rgba(0,0,0,.10);
    --shadow-lg:   0 10px 15px -3px rgba(0,0,0,.10), 0 4px 6px -4px rgba(0,0,0,.10);
    --shadow-xl:   0 20px 25px -5px rgba(0,0,0,.10), 0 8px 10px -6px rgba(0,0,0,.10);
    --shadow-2xl:  0 25px 50px -12px rgba(0,0,0,.25);

    /* --- Transitions --- */
    --transition-fast:   all 0.2s linear;
    --transition-base:   all 0.3s linear;
    --transition-slow:   all 0.5s ease;

    /* --- Border Accent --- */
    --border-accent: 4px solid var(--color-red);
    font-size: 16px;
}


/* ============================================================
   02. FONT UTILITIES
   ============================================================ */
.tk-open-sans { font-family: var(--font-body)    !important; }
.tk-oswald    { font-family: var(--title-font)  !important; }
.tk-aleo      { font-family: var(--font-serif)    !important; }


/* ============================================================
   03. RESET & BASE STYLES
   ============================================================ */
body, body.home {
    font-size: var(--fs-base);
    line-height: 1.5;
    font-weight: var(--fw-regular);
    font-family: var(--font-body);
    color: var(--color-body);
    background-color: var(--color-white);
}

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

a {
    text-decoration: none;
    color: #000;
}

a:hover {
    color: #000;
}

/* Paragraph spacing helper */
.animation-line p:last-child,
.mb-p p:last-child {
    margin-bottom: 0;
}

/* Animation overflow clip */
.animation-line {
    overflow: hidden;
}

/* Container max-width */
.container {
    max-width: 1240px;
}

/* Background fit helper */
.bg-fix {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* Hero title animation helpers */
.hero-title {
	overflow: hidden;
}

.hero-title .word-wrap {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: top;
}
.animated-content ,
.hero-title span {
	will-change: transform, opacity;
}
.bravo-btn.ins-btn {
    color: #FFF;
    font-size: 12px;
    line-height: 1.33;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 0px 6px 6px 0px;
    background: var(--color-blue-mid);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
    border-color: var(--color-blue-mid);
    padding: 12px 10px;
    position: fixed;
    writing-mode: vertical-lr;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 999;
    min-height: 202px;
    border-left: 0;
}
.bravo-btn.ins-btn:hover{
    border-color: var(--color-red);
}
/* ============================================================
   04. LENIS SMOOTH SCROLL
   ============================================================ */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}


/* header fix */

/* ============================================================
   EXTRACTED BOOTSTRAP UTILITIES
   Source: Bravo Fence Header, Mobile Nav & Footer markup
   Only the classes actually used in the provided HTML
   ============================================================ */


/* ============================================================
   1. CSS CUSTOM PROPERTIES (Bootstrap tokens used internally)
   ============================================================ */




/* ============================================================
   2. CONTAINER
   ============================================================ */
.footer-area .container,
.bravo-header .container
 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}
*, ::after, ::before {
    box-sizing: border-box;
}

/* ============================================================
   3. ROW SYSTEM
   ============================================================ */
.bravo-header .row ,
.footer-area .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.footer-area .row>* ,
.bravo-header .row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}


/* Gutter helpers used in markup */
.bravo-header .gy-2 ,
.footer-area .gy-2 { --bs-gutter-y: 0.5rem;  }
.bravo-header .gy-3 ,
.footer-area .gy-3 { --bs-gutter-y: 1rem;    }

@media (min-width: 768px) {
    .footer-area .gy-md-3,
    .bravo-header .gy-md-3 { --bs-gutter-y: 1rem; }
}


/* ============================================================
   4. COLUMNS
   ============================================================ */

/* Generic col — auto width, takes remaining space */
.col{
    flex: 1 0 0%;
}

/* col-auto — shrinks to content */
.col-auto, 
.footer-area .col-auto  ,
.bravo-header .col-auto  {
    flex: 0 0 auto;
    width: auto;
}

.footer-area .h1, 
.footer-area .h2, 
.footer-area .h3, 
.footer-area .h4, 
.footer-area .h5, 
.footer-area .h6, 
.footer-area h1, 
.footer-area h2, 
.footer-area h3, 
.footer-area h4, 
.footer-area h5, 
.footer-area h6 {
    margin-top: 0;
    margin-bottom: .5rem;
}
img, svg {
    vertical-align: middle;
}
address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}
/* Specific column sizes */
.footer-area .col-sm-6 {
    flex: 0 0 auto;
    width: 100%;
}
/* sm breakpoint overrides */
@media (min-width: 576px) {
    .footer-area .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .footer-area .col-lg-4,
    .footer-area .col-lg-8 {
        flex: 0 0 auto;
        width: 100%; 
    }
}

/* lg breakpoint overrides */
@media (min-width: 992px) {
    .footer-area .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .footer-area .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .footer-area .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
}

/* ============================================================
   5. DISPLAY UTILITIES
   ============================================================ */

.bravo-header .d-block ,
.footer-area .d-block        { display: block !important; }
.bravo-header .d-inline-block ,
.footer-area .d-inline-block { display: inline-block !important; }
.bravo-header .d-inline-flex ,
.footer-area .d-inline-flex  { display: inline-flex !important; }
.footer-area .d-flex ,
.bravo-header .d-flex         { display: flex !important; }
.bravo-header .d-none ,
.footer-area .d-none         { display: none !important; }

/* Responsive display */
@media (min-width: 992px) {
    .bravo-header .d-lg-none ,
    .footer-area .d-lg-none  { display: none !important; }
    .bravo-header .d-lg-flex ,
    .footer-area .d-lg-flex  { display: flex !important; }
    .bravo-header .d-lg-block,
    .footer-area .d-lg-block { display: block !important; }
}


/* ============================================================
   6. FLEXBOX UTILITIES
   ============================================================ */

/* Direction */
.flex-wrap    { flex-wrap: wrap !important; }
.flex-column  { flex-direction: column !important; }

/* Justify Content */
.justify-content-start   { justify-content: flex-start !important; }
.justify-content-end     { justify-content: flex-end !important; }
.justify-content-center  { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }

@media (min-width: 576px) {
    .bravo-header .justify-content-sm-end ,
    .footer-area .justify-content-sm-end { justify-content: flex-end !important; }
}

@media (min-width: 992px) {
    .bravo-header .justify-content-lg-start ,
    .footer-area .justify-content-lg-start { justify-content: flex-start !important; }
    .bravo-header .justify-content-lg-end   { justify-content: flex-end !important; }
    .footer-area .justify-content-lg-end   { justify-content: flex-end !important; }
}

/* Align Items */
.align-items-start  { align-items: flex-start !important; }
.align-items-center { align-items: center !important; }
.align-items-end    { align-items: flex-end !important; }


/* ============================================================
   7. SPACING — MARGIN & PADDING
   ============================================================ */

/* Margin */
.mb-0  { margin-bottom: 0 !important; }
.mb-2  { margin-bottom: 0.5rem !important; }
.mb-3  { margin-bottom: 1rem !important; }
.mt-3  { margin-top: 1rem !important; }
.mt-4  { margin-top: 1.5rem !important; }

@media (min-width: 992px) {
    .mb-lg-4 { margin-bottom: 1.5rem !important; }
    .mt-lg-4 { margin-top:    1.5rem !important; }
    .mb-3    { margin-bottom: 1rem !important; }
}

/* Padding */
.pb-1  { padding-bottom: 0.25rem !important; }
.pb-4  { padding-bottom: 1.5rem !important; }
.pt-2  { padding-top: 0.5rem !important; }

@media (min-width: 992px) {
    .bravo-header .mt-lg-4,
    .footer-area .mt-lg-4 { margin-top: 1.5rem !important; }
}


/* ============================================================
   8. GAP UTILITIES (used inside flex/grid containers)
   ============================================================ */

.gap-2  { gap: 0.5rem !important; }
.gap-3  { gap: 1rem !important; }

@media (min-width: 992px) {
    .bravo-header .gap-lg-4 ,
    .footer-area .gap-lg-4 { gap: 1.5rem !important; }
}


/* ============================================================
   9. POSITION UTILITIES
   ============================================================ */

.position-relative { position: relative !important; }


/* ============================================================
   10. Z-INDEX UTILITY
   ============================================================ */

.z-3 { z-index: 3 !important; }


/* ============================================================
   11. OVERFLOW UTILITY
   ============================================================ */

.overflow-hidden { overflow: hidden !important; }


/* ============================================================
   12. TEXT COLOR UTILITY
   ============================================================ */

.text-white  { color: #fff !important; }
.text-center { text-align: center !important; }

@media (min-width: 992px) {
    .bravo-header .text-lg-start { text-align: left !important; }
    .footer-area .text-lg-start { text-align: left !important; }
    .bravo-header .text-lg-end ,
    .footer-area .text-lg-end   { text-align: right !important; }
}


/* ============================================================
   13. BACKGROUND COLOR UTILITY
   ============================================================ */

/* .bg-cyan-blue is a custom class from the theme, not Bootstrap.
   Included here for completeness — set your own color value. */
.bg-cyan-blue {
    background-color: #0b2240; /* adjust to match your brand */
}


/* ============================================================
   14. OFFCANVAS  (used by mobile nav)
   ============================================================ */

.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition)
}
.fade {
    transition: opacity .15s linear;
}
@media (prefers-reduced-motion:reduce) {
    .offcanvas {
        transition: none
    }
}

.offcanvas.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%)
}

.offcanvas.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%)
}

.offcanvas.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%)
}

.offcanvas.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%)
}

.offcanvas.show:not(.hiding),.offcanvas.showing {
    transform: none
}

.offcanvas.hiding,.offcanvas.show,.offcanvas.showing {
    visibility: visible
}

.offcanvas-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000
}

.offcanvas-backdrop.fade {
    opacity: 0
}

.offcanvas-backdrop.show {
    opacity: .5
}

.offcanvas-header {
    display: flex;
    align-items: center;
    padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x)
}

.offcanvas-header .btn-close {
    padding: calc(var(--bs-offcanvas-padding-y) * .5) calc(var(--bs-offcanvas-padding-x) * .5);
    margin: calc(-.5 * var(--bs-offcanvas-padding-y)) calc(-.5 * var(--bs-offcanvas-padding-x)) calc(-.5 * var(--bs-offcanvas-padding-y)) auto
}

.offcanvas-title {
    margin-bottom: 0;
    line-height: var(--bs-offcanvas-title-line-height)
}

.offcanvas-body {
    flex-grow: 1;
    padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
    overflow-y: auto
}

/* header fix */





/* offcanvas */
#offcanvasRight.offcanvas {
    background: linear-gradient(180deg, var(--color-blue-dark) 40%, var(--color-blue-dark) 100%);
}
.offcanvas.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
}
.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
}
.offcanvas, .offcanvas-lg, .offcanvas-md, .offcanvas-sm, .offcanvas-xl, .offcanvas-xxl {
    --bs-offcanvas-zindex: 1045;
    --bs-offcanvas-width: 400px;
    --bs-offcanvas-height: 30vh;
    --bs-offcanvas-padding-x: 1rem;
    --bs-offcanvas-padding-y: 1rem;
    --bs-offcanvas-color: var(--bs-body-color);
    --bs-offcanvas-bg: var(--bs-body-bg);
    --bs-offcanvas-border-width: var(--bs-border-width);
    --bs-offcanvas-border-color: var(--bs-border-color-translucent);
    --bs-offcanvas-box-shadow: var(--bs-box-shadow-sm);
    --bs-offcanvas-transition: transform 0.3s ease-in-out;
    --bs-offcanvas-title-line-height: 1.5;
}

/* ============================================================
   05. CUSTOM SCROLLBAR
   ============================================================ */
.os-scrollbar-handle {
    background: var(--color-red);
}

body > .os-scrollbar {
    z-index: 999;
}


/* ============================================================
   06. TYPOGRAPHY — HEADINGS
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-heading);
    font-weight: var(--fw-bold);
    line-height: 1.1;
    font-family: var(--title-font);
    text-transform: uppercase;
}

h1 { font-size: clamp(42px, 6.5vw, 72px); }
h2 { font-size: clamp(36px, 4.5vw, 60px); letter-spacing: -0.025em; }
h3 { font-size: clamp(28px, 4vw, 36px); }
h4 { font-size: clamp(24px, 3.5vw, 30px); }
h5 { font-size: clamp(20px, 3vw, 24px); }
h6 { font-size: clamp(18px, 2.5vw, 20px); }

/* Heading letter-spacing override */
.text-tracking-normal { letter-spacing: 0; }

/* Shared letter-spacing patterns */
.fence-materials-section .title-48,
.team-member-modal-content h6,
.banner-content h1 {
    letter-spacing: -0.025em;
}

.our-team .title-48,
.process-section .section-title-wrapper .title-48,
.about-section .section-title-wrapper .title-48 {
    letter-spacing: -0.025em;
}

/* Shared large title */
.title-48 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: 0.025em;
}


/* ============================================================
   07. LINKS & IMAGES (already reset above; extended below)
   ============================================================ */
/* (img reset already in §03) */


/* ============================================================
   08. UTILITY CLASSES
   ============================================================ */

/* --- Background Colors --- */
.bg-cyan-blue    { background-color: var(--color-blue-dark); }
.bg-bluish       { background-color: var(--color-blue-mid); }
.bg-blue-wood    { background-color: var(--color-blue-navy); }
.bg-mist         { background-color: var(--bg-mist); }
.bg-ghost-white  { background-color: var(--color-ghost-white); }

/* --- Text Colors --- */
.color-jeans-blue { color: var(--color-blue-jeans) !important; }
.color-bluish     { color: var(--color-blue-mid)   !important; }

/* --- Border Utilities --- */
.bravo-header-brand  { border-top: 8px solid var(--color-red); }
.intro-border-top    { border-top:    var(--border-accent); }
.intro-border-left   { border-left:   var(--border-accent); }
.intro-border-bottom { border-bottom: var(--border-accent); }
.border-color-2      { border-color: var(--color-blue-mid); }

/* --- Border Radius --- */
.b-radius-8  { border-radius: var(--radius-md); }
.b-radius-10 { border-radius: var(--radius-lg); }
.b-radius-16 { border-radius: var(--radius-xl); }

/* --- Z-index --- */
.z-4 { z-index: 4 !important; }

/* --- Section Padding --- */
.section-padding    { padding: clamp(52px, 10vw, 128px) 0 !important; }
.section-sm-padding { padding: clamp(52px, 10vw, 64px)  0 !important; }
.section-md-padding { padding: clamp(52px, 10vw, 80px)  0 !important; }
.section-lg-padding { padding: clamp(52px, 10vw, 96px)  0 !important; }


/* ============================================================
   09. BUTTONS
   ============================================================ */
.btn ,
.contact-form-wrapper .gform_button ,
.bravo-btn {
    color: var(--color-white);
    text-align: center;
    font-family: var(--font-body);
    font-size: clamp(10px, 1vw, 16px);
    font-weight: var(--fw-bold);
    line-height: 1.2;
    letter-spacing: 0.115em;
    text-transform: uppercase;
    display: inline-block;
    border-radius: var(--radius-sm);
    background: var(--color-red);
    border: 2px solid var(--color-red);
    padding: clamp(8px, 1.2vw, 16px) clamp(12px, 2vw, 30px);
    box-shadow: var(--shadow-xs);
    transition: var(--transition-base);
}
.thank-you-banner .btn-submit:hover ,
.contact-form-wrapper .gform_button:hover,
.bravo-btn:hover {
    background: var(--color-white);
    color: var(--color-red);
}

/* Outline variant */
.bravo-btn.bravo-btn-outline {
    border-color: var(--color-blue-dark);
    color: var(--color-blue-dark);
    background: transparent;
}

.bravo-btn.bravo-btn-outline:hover {
    border-color: var(--color-red);
    color: var(--color-white);
    background: var(--color-red);
}

/* White outline variant */
.bravo-btn-outline.white-version {
    border-color: var(--color-white);
    color: var(--color-white);
}

/* Icon button hover */
.btn-icon svg path            { transition: fill 0.3s ease, stroke 0.3s ease; }
.btn-icon:hover svg path      { fill: var(--color-red); }

/* Coverage box-button */
.box-btn {
    color: var(--color-white);
    font-family: var(--title-font);
    font-size: clamp(13px, 1.2vw, 14px);
    font-weight: var(--fw-bold);
    letter-spacing: 0.025em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: 0;
    background: rgba(255, 255, 255, 0.15);
    padding: clamp(6px, 1vw, 8px) clamp(12px, 1.5vw, 16px);
    min-width: clamp(130px, 18vw, 150.4px);
    display: inline-block;
    transition: var(--transition-base);
    line-height: 1.42;
}

.box-btn:hover {
    background: rgba(255, 255, 255, 0.40);
    color: var(--color-white);
}


/* ============================================================
   10. SUB-TITLE COMPONENTS
   ============================================================ */
.top-sub-title,
.bottom-sub-title {
    display: inline-block;
}

.top-sub-title {
    color: var(--color-red);
    font-weight: var(--fw-bold);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.42;
}

.bottom-sub-title {
    color: var(--color-blue-mid);
    font-family: var(--font-serif);
    font-size: clamp(20px, 2.2vw, 30px);
    line-height: 1.2;
}


/* ============================================================
   11. FORM INPUTS
   ============================================================ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="url"],
textarea {
    width: 100% !important;
    padding: 12px 16px !important;
    background: var(--color-white) !important;
    border-radius: var(--radius-sm) !important;
    border: 2px solid var(--color-blue-mist) !important;
    color: rgba(29, 41, 61, 0.50) !important;
    font-family: var(--font-body) !important;
    font-size: var(--fs-md) !important;
    font-weight: var(--fw-regular) !important;
    line-height: 1.5 !important;
    opacity: 1 !important;
}

textarea { 
    height: 124px !important;
}

input:focus,
textarea:focus {
    outline: none !important;
    box-shadow: none !important;
}

::placeholder { color: rgba(29, 41, 61, 0.50) !important; }


/* ============================================================
   12. COMMON / SHARED COMPONENTS
   ============================================================ */

/* --- Shared card / image borders --- */
.process-timeline-step-number,
.img-card {
    border: 4px solid var(--color-white);
}

.img-card {
    border-radius: var(--radius-xl);
    background: var(--color-white);
    display: block;
    width: 100%;
}

/* --- Section backgrounds --- */
.process-section,
.common-bg {
    background: var(--bg-mist);
}

.common-bg {
    border-top:    1px solid rgba(52, 79, 99, 0.10);
    border-bottom: 1px solid rgba(52, 79, 99, 0.10);
}

/* --- Shared box-shadows --- */
.benefits-card,
.residential-fencing-solutions,
.process-timeline-step-number,
.financing-options-img,
.testimonial-card {
    box-shadow: var(--shadow-lg);
}

.premium-service-img,
.img-card,
.financing-banner-card.version-2,
.branch-office-card {
    box-shadow: var(--shadow-xl);
}

.footer-contact-logo:hover,
.about-img-wrapper img,
.contact-form-wrapper,
.location-missing-notice-box {
    box-shadow: var(--shadow-2xl);
}

.gallery-inspiration-card,
.our-team-card img,
.process-timeline-step-title {
    box-shadow: var(--shadow-sm);
}

/* --- Social links --- */
.social-link {
    display: inline-block;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.10);
    padding: 10px;
    height: 40px;
    width: 40px;
    transition: var(--transition-base);
}

.social-link:hover      { background: rgba(255, 255, 255, 0.5); }
.social-link-wrapper    { gap: 12px; }

/* --- Location notice box --- */
.location-missing-notice-box {
    padding: clamp(20px, 3vw, 32px);
    border-radius: 2px 2px 16px 16px; /* same as .contact-form-wrapper */
}

.location-missing-notice-box > div { flex: 1 0 0%; }
.location-notice-icon               { max-width: 40px; }

/* --- Branch office card --- */
.branch-office-card {
    padding:
        clamp(24px, 3.5vw, 32px)
        clamp(24px, 4vw, 48px)
        clamp(32px, 5vw, 48px)
        clamp(24px, 3vw, 36px);
    max-width: 352px;
    width: 100%;
    margin-left: auto;
    margin-right: 0;
}

.branch-office-card address a {
    color: var(--color-body);
    font-size: clamp(13px, 1.2vw, 14px);
    font-weight: var(--fw-bold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition-base);
    line-height: 1.42;
}

.branch-office-card address a:hover { color: var(--color-blue-mid); }



/* ============================================================
   13. HEADER
   ============================================================ */

/* --- Top Bar --- */
.bravo-header-topbar         { padding: 8px 0; }
.bravo-header-topbar .row    { --bs-gutter-y: 10px; }
.bravo-header-contact        { gap: 20px; }

.bravo-header-info-item {
    color: var(--color-blue-mist);
    font-weight: var(--fw-bold);
    font-size: var(--fs-xs);
    line-height: 16px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition: var(--transition-base);
}

a.bravo-header-info-item:hover { color: var(--color-red); }

.bravo-header-info-item svg { margin-top: -3px; }

/* --- Main Nav Bar --- */
.bravo-header-logo img {
    max-width: clamp(100px, 50vw, 165px);
}

.bravo-header-main {
    border-bottom: 1px solid rgba(220, 233, 247, 0.30);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.50);
    padding: 13px 0;
}

.bravo-header-right   { gap: 27px; }
.bravo-header-actions { gap: 12px; }

.bravo-header-actions .bravo-btn {
    padding: 7.2px 14px;
    letter-spacing: 1.2px;
    font-size: var(--fs-xs);
}

/* --- Primary Navigation --- */
.bravo-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bravo-nav ul li {
    position: relative;
    z-index: 1;
    margin-right: 16px;
    display: inline-block;
}

.bravo-nav ul li:last-child {
    margin-right: 0;
    border-bottom: none;
}

.bravo-nav ul li a {
    color: var(--color-blue-dark);
    font-family: var(--title-font);
    font-size: 13.972px;
    font-weight: var(--fw-bold);
    letter-spacing: 0.349px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-base);
}

.bravo-nav ul li a:hover         { color: var(--color-red); }

/* Dropdown chevron animation */
.bravo-nav ul li a svg { 
    transform: translateY(-1px) rotate(0deg);
    transition: transform 0.3s ease;
}
.bravo-nav > ul > li:hover > a svg { 
    transform: translateY(-3px) rotate(180deg); 
}

/* --- Dropdown Sub-menu --- */
.bravo-nav ul li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background-color: var(--color-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
    z-index: 999;
    border-radius: var(--radius-lg);
    margin-top: 8px;
}

.bravo-nav ul li .sub-menu li          { display: block; width: 100%; }

.bravo-nav ul li .sub-menu li a {
    display: block;
    font-size: var(--fs-md);
    font-weight: var(--fw-medium);
    padding: 8px 20px;
    text-transform: capitalize;
    transition: var(--transition-fast);
}

.bravo-nav ul li .sub-menu li:hover > a {
    background-color: var(--color-blue-mist);
    color: #EF413D;
    padding-left: 25px;
}
.bravo-nav ul li .sub-menu > li:first-child >  a{
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
}
.bravo-nav ul li .sub-menu > li:last-child >  a{
    border-bottom-left-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
}

.bravo-nav ul li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.bravo-nav li ul ul.sub-menu {
    left: 100%;
    margin: 0;
    top: 0;
}

.bravo-nav ul ul.sub-menu li a svg {
    transform: rotate(-90deg);
    position: absolute;
    top: 50%;
    right: 5px;
    margin-top: -3px;
}
/* --- Offcanvas / Mobile Menu --- */
#offcanvasRight.offcanvas {
    background: linear-gradient(180deg, var(--color-blue-dark) 40%, var(--color-blue-dark) 100%);
}

#offcanvasRight .offcanvas-header { padding: 20px; }
#offcanvasRight .offcanvas-body   { padding: 40px 20px; }

/* Hamburger button */
.humbarger-btn {
    border: 0;
    height: 43px;
    width: 43px;
    background: var(--color-red);
    transition: var(--transition-base);
    position: relative;
}

.humbarger-btn span {
    display: block;
    background-color: #D8D2CA;
    height: 4px;
    width: 27px;
    position: absolute;
    top: 25px;
    transition: background-color ease .3s, top ease .3s .3s, transform ease .3s, -webkit-transform ease .3s;
    left: 50%;
    transform: translate(-50%, -1.5px);
}

.humbarger-btn span:nth-child(1) { top: 13px; }
.humbarger-btn span:nth-child(2) { top: 21px; }
.humbarger-btn span:nth-child(3) { top: auto; bottom: 10px; }

/* Close button */
.btn-close {
    --bs-btn-close-bg: none;
    --bs-btn-close-opacity: 1;
    --bs-btn-close-hover-opacity: 1;
    border: 0;
    border-radius: 0;
    height: 43px;
    width: 43px;
    gap: 0;
    transition: background-color ease .3s, top ease .3s, transform ease .3s .3s, -webkit-transform ease .3s .3s;
    background-color: var(--color-red);
}

.btn-close:focus { box-shadow: none; }

.offcanvas-product-filter .btn-close,
.header-offcanvas .btn-close {
    padding: 0;
    margin: 0;
}

.btn-close span {
    background-color: #D8D2CA;
    height: 5px;
    width: 27px;
    transition: top ease .3s, transform ease .3s .3s, -webkit-transform ease .3s .3s;
}

/* Product filter offcanvas */
#productFilterOffcanvas .offcanvas-product-filter { background-color: rgba(255, 255, 255, 0.97); }
#productFilterOffcanvas .accordion-item           { background-color: transparent; }

/* Offcanvas layout helpers */
.offcanvas-translate-div { gap: 40px; }
.offcanvas-bottom-btn    { padding: 50px 0; }

/* --- Mobile Navigation List --- */
.mobile-menu li,
.bravo-nav ul li,
.mobile-nav ul li {
    position: relative;
    z-index: 1;
}

.mobile-nav ul,
.footer-box-wrapper ul,
.financing-options-content ul,
.residential-fencing-solutions ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav > ul > li         { padding-bottom: 15px; }
.mobile-nav > ul > li:last-child { padding-bottom: 0; }

.mobile-nav ul > li > a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-size: 20px;
}

.has-sub-item > a.active,
.has-sub-item:hover > a,
.mobile-nav ul > li > a.active,
.mobile-nav ul > li:hover > a {
    color: var(--color-red);
}

.mobile-nav ul li .sub-menu {
    display: none;
    padding-top: 5px;
    padding-left: 16px;
    padding-bottom: 2px;
}

.mobile-nav > ul > li .sub-menu li { padding-bottom: 0; }

.mobile-nav .sub-menu li a {
    line-height: 1.7;
    font-size: 15px;
    color: #D4D4D4;
    transition: var(--transition-slow);
}

.mobile-nav .sub-menu li a:hover { color: var(--color-red); }

/* Mobile chevron icons */
.has-sub-item > a svg path,
.mobile-nav ul > li > a svg path { fill: var(--color-white); }

.has-sub-item > a svg,
.mobile-nav ul > li > a svg { transition: var(--transition-base); }

.has-sub-item > a.rotate svg,
.mobile-nav ul > li > a.rotate svg { transform: rotate(-180deg); }

.has-sub-item:hover a svg path,
.mobile-nav ul > li:hover > a svg path { fill: var(--color-red); }


/* ============================================================
   14. BANNER
   ============================================================ */
.banner-area {
    padding: clamp(120px, 14vw, 210px) 0 clamp(80px, 10vw, 148px);
}
.banner-area::before {
    content: "";
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    background:
        linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.05) 1.73%, rgba(0,0,0,.00) 6.53%),
        linear-gradient(0deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.00) 100%);
    z-index: 1;
}

.banner-content         { max-width: 623px; }

.banner-content p {
    color: var(--color-white);
    line-height: 1.55;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

/* Secondary / inner-page banner */
.banner-secondary { padding: clamp(120px, 10vw, 164px) 0; }

.banner-secondary::before          { background: rgba(0, 0, 0, 0.50); }
.banner-secondary .banner-content  { max-width: 100%; }

.banner-secondary .banner-content h1 {
    line-height: 1;
    letter-spacing: 0.05em;
}

.residential-banner::before {
    background: rgba(52, 79, 99, 0.60);
}


/* ============================================================
   15. ABOUT INTRO SECTION
   ============================================================ */
.about-intro-area {
    padding-block: clamp(52px, 10vw, 128px) clamp(50px, 5vw, 104px);
}

.about-intro-area .row { --bs-gutter-x: clamp(24px, 4vw, 56px); }

.about-intro-img-wrapper {
    width: clamp(280px, 45vw, 592px);
}

.about-intro-img-wrapper img {
    width: calc(100% - clamp(15px, 2vw, 25px));
}

/* Intro badge */
.intro-badge {
    max-width: 320px;
    margin-inline-start: auto;
    margin-inline-end: 0;
    margin-top: clamp(-40px, -6vw, -84px);
    box-shadow: var(--shadow-lg);
    padding:
        clamp(10px, 1.2vw, 12.5px)
        clamp(8px, 1vw, 10px)
        clamp(14px, 1.5vw, 18.5px);
    border-radius: var(--radius-md);
}

.intro-badge h6,
.intro-badge h3 { letter-spacing: 0.5px; }

.intro-badge h3 { font-size: clamp(24px, 4vw, 48px); }


/* ============================================================
   16. WHY CHOOSE US / FEATURE CARDS
   ============================================================ */
.why-choose-us-area {
    padding: clamp(52px, 10vw, 128px) 0 clamp(48px, 6vw, 72px);
}

.why-choose-us-area .section-title-wrapper        { max-width: 940px; }

.why-choose-us-area .section-title-wrapper p {
    font-family: var(--font-serif);
    font-size: clamp(15px, 1.2vw, 20px);
    line-height: 1.4;
    color: var(--color-blue-dark);
}

/* Shared gutter for card grids */
.process-timeline-wrapper .row,
.top-footer-area .row,
.fence-process-card-wrapper .row,
.fencing-services-card-wrapper .row,
.feature-card-wrapper .row {
    --bs-gutter-x: clamp(24px, 3vw, 32px);
    --bs-gutter-y: clamp(24px, 3vw, 32px);
}

/* Feature card */
.feature-card {
    border-radius: 2px 2px 16px 16px;
    padding: clamp(24px, 3vw, 36px)
        clamp(16px, 2vw, 22px)
        clamp(40px, 4vw, 55px)
        clamp(20px, 2.5vw, 32px);
    background: var(--bg-feature-card);
    box-shadow: var(--shadow-xs);
    min-height: clamp(280px, 35vw, 330px);
}

.feature-card-icon {
    width:  clamp(52px, 5vw, 64px);
    height: clamp(52px, 5vw, 64px);
    background: var(--color-blue-mid);
    box-shadow: var(--shadow-md);
}

.feature-card-icon img {
    width:  clamp(24px, 2.5vw, 32px);
    height: clamp(24px, 2.5vw, 32px);
}

/* Shared letter-spacing for card titles */
.banner-content .bottom-sub-title ,
.our-team-card-content h6,
.accordion-header,
.author-info h6,
.fence-process-card h4,
.fencing-services-card-content h5,
.feature-card-content h5 {
    letter-spacing: 0.025em;
}

/* Shared small font-size for card body text */
.residential-fencing-content p,
.residential-fencing-content ul li,
.footer-contact-info a,
.footer-box-wrapper ul li a,
.footer-box-wrapper ul li,
.footer-box-wrapper p,
.accordion-body p,
.testimonial-card blockquote,
.fence-process-card p,
.feature-card-content p {
    font-size: 15px;
}

.residential-fencing-content ul {
    list-style: disc;
}


/* ============================================================
   17. FENCING SERVICES SECTION
   ============================================================ */
.fencing-services-area {
    padding: clamp(52px, 10vw, 128px) 0 clamp(64px, 8vw, 116px);
}

.fencing-services-card {
    border-radius: 16px 16px 2px 2px;
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition-base);
}

.fencing-services-card:hover    { transform: translateY(-4px); }

.fencing-services-card img {
    opacity: 0.9;
    display: block;
    width: 100%;
    object-fit: cover;
}

.fencing-services-card-content {
    padding:
        clamp(28px, 4vw, 43px)
        clamp(18px, 2vw, 24px)
        clamp(18px, 2vw, 24px);
    min-height: clamp(140px, 20vw, 205px);
}
.fencing-services-card-content h5 {
    margin-bottom: clamp(18px, 3vw, 28px);
    padding-bottom: clamp(8px, 0.5vw, 10px);
}

.residential-fencing-content .title-48,
.residential-fencing-solutions .bottom-sub-title,
.fencing-services-card-content h5 {
    line-height: 1.25;
}

/* Red underline accent on card title */
.fencing-services-card-content h5::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 4px;
    width: clamp(36px, 4vw, 48px);
    background: var(--color-red);
    transform: translateX(-50%);
}

.fencing-services-card-content p { font-size: clamp(13px, 1vw, 14px); }


/* ============================================================
   18. FENCE MATERIALS SECTION
   ============================================================ */
.fence-materials-area { padding-top: clamp(40px, 6vw, 65px); }

.fence-materials-card {
    min-height: clamp(320px, 40vw, 454px);
    padding:
        clamp(16px, 2vw, 20px)
        clamp(12px, 1.5vw, 15px);
    border-top:    0.926px solid #F3F3F3;
    border-bottom: 0.926px solid #F3F3F3;
    border-left:   1.852px solid #F3F3F3;
    background-color: #BCBCBC;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fence-materials-card:hover { transform: translateY(-10px); }

.fence-materials-card::before {
    content: "";
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,.00) 64.49%, rgba(0,0,0,.65) 100%);
    z-index: 1;
}

.fence-materials-card h6 { font-size: clamp(18px, 2vw, 22.233px); }

.fence-materials-slider .swiper-slide:first-child .fence-materials-card {
    border-left: 0;
}


/* ============================================================
   19. OWNER WORD / QUOTE SECTION
   ============================================================ */
.owner-word-area::before {
    content: "";
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    background: rgba(52, 79, 99, 0.90);
    z-index: 1;
}

.owner-message-box {
    border-radius: 14px;
    border: 2px solid #F3F3F3;
    padding: clamp(32px, 5vw, 66px) clamp(24px, 4vw, 50px);
    max-width: 896px;
}

.owner-message-box blockquote { font-size: clamp(16px, 1.5vw, 20px); }

.owner-message-box blockquote p {
    margin-bottom: clamp(24px, 4vw, 50px);
}

.testimonial-card blockquote,
.owner-message-box blockquote,
.owner-message-box blockquote p:last-child {
    margin-bottom: 0;
}


/* ============================================================
   20. FINANCING BANNER CARDS
   ============================================================ */
.financing-banner-card {
    border: 1px solid #DDD;
    box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.10);
    margin-bottom: clamp(32px, 5vw, 56px);
}

.financing-banner-card-content {
    padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px);
}
.financing-banner-card-content .bottom-button-wrapper {
    gap: clamp(20px, 4vw, 48px);
}
.financing-banner-card-img-wrapper {
    max-width: clamp(400px, 30vw, 486px);
    width: 100%;
    padding:
        clamp(48px, 8vw, 105px)
        clamp(40px, 6vw, 85px)
        clamp(48px, 7vw, 100px)
        clamp(24px, 3vw, 40px);
}

.financing-banner-card-img-info {
    transform: rotate(-5.21deg);
    box-shadow:
        25px 41px 14px 0 rgba(0,0,0,.00),
        16px 26px 12px 0 rgba(0,0,0,.01),
         9px 15px 10px 0 rgba(0,0,0,.05),
         4px  7px  8px 0 rgba(0,0,0,.09),
         1px  2px  4px 0 rgba(0,0,0,.10);
}

.financing-banner-card-content .title-48 { line-height: 1.16; }

.financing-banner-card-content p { color: var(--color-blue-dark); }

/* Blue variant */
.financing-banner-card.version-2 { border: 0; }

.financing-banner-card.version-2 .financing-banner-card-content p,
.financing-banner-card.version-2 .financing-banner-card-content h3 {
    color: var(--color-white);
}

.financing-banner-card.version-2 .financing-banner-card-content {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    background: var(--color-blue-mid);
}

.financing-banner-card.version-2 .financing-banner-card-img-wrapper {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    background: var(--color-blue-dark);
}


/* ============================================================
   21. FINANCING OPTIONS SECTION
   ============================================================ */
.financing-section          { padding: clamp(50px, 8vw, 97px) 0; }
.financing-section.version-2 { padding: clamp(50px, 8vw, 96px) 0 clamp(40px, 5vw, 62px); }
.accept-card-info img {
    max-width: 83px;
    border-radius: 4px;
    display: block;
}

.financing-options-content ul {
    margin: clamp(16px, 2.5vw, 24px) 0;
}

/* Shared body-text color */
.residential-fencing-solutions ul > li a ,
.client-reviews-slider .testimonial-card blockquote,
.premium-service-content p,
.residential-fencing-solutions ul li,
.residential-fencing-content p,
.process-section .section-title-wrapper p,
.about-section .section-title-wrapper p,
.financing-options-content ul li,
.financing-options-content p {
    color: var(--color-blue-navy);
}
.residential-fencing-solutions ul > li:hover a{
    text-decoration: none;
}
/* Bullet list items */
.financing-options-content ul li {
    position: relative;
    z-index: 1;
    padding-left: clamp(16px, 2vw, 20px);
    margin-bottom: clamp(10px, 1.5vw, 16px);
    margin-left: clamp(6px, 1vw, 10px);
}

.financing-options-content ul li:last-child { margin-bottom: 0; }

.financing-options-content ul li::before {
    content: "";
    inset: 0;
    position: absolute;
    height: 4px;
    width: 4px;
    background: var(--color-blue-navy);
    z-index: -1;
    border-radius: 100%;
    top: 13px;
}

.benefits-card-content p,
.financing-options-content p { font-size: var(--fs-md); }

.financing-options-content p strong { font-weight: var(--fw-bold); }

/* We-accept box */
.we-accept-info {
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border-light);
    background: #F8FAFC;
    padding: clamp(12px, 2vw, 16px) clamp(14px, 2vw, 17px);
    margin-top: clamp(12px, 2.5vw, 20px);
}

.we-accept-info h6 { font-size: clamp(16px, 1.5vw, 18px); }

/* Financing image */
.financing-options-img {
    background: rgba(255, 255, 255, 0.00);
    max-width: 584px;
    margin-right: 0;
    margin-left: auto;
}

/* Version 2 overrides */
.financing-options-section.version-2 .financing-options-content ul li {
    margin-left: 0;
    padding-left: clamp(20px, 3vw, 32px);
}

.financing-options-section.version-2 .financing-options-content ul li::before {
    height: clamp(10px, 1.5vw, 12px);
    width:  clamp(10px, 1.5vw, 12px);
    top: clamp(6px, 1vw, 8px);
}

.financing-options-section.version-2 .we-accept-info {
    margin-top: clamp(12px, 2.5vw, 34px);
}

.financing-options-section.version-2 .row {
    --bs-gutter-x: clamp(24px, 4vw, 48px);
}


/* ============================================================
   22. FENCE TYPES SECTION
   ============================================================ */
.fence-types-item .row {
    --bs-gutter-x: clamp(24px, 5vw, 66px);
    --bs-gutter-y: clamp(30px, 3vw, 50px);
}

.fence-types-content p { margin-bottom: clamp(20px, 3vw, 30px); }

.fence-types-item .bottom-button-wrapper .bravo-btn {
    min-width: clamp(180px, 20vw, 240px);
    padding:
        clamp(12px, 1.2vw, 18.5px)
        clamp(12px, 2vw, 16px);
}
.accordion-body p a ,
.content p a ,
.inner-data p a,
.inn-card p a,
.al-accordion-panel-content p a ,
.section-area p a ,
.fence-types-content p a {
    color: #83A57F;
    text-decoration: underline;
}
.accordion-body p a:hover ,
.content p a:hover ,
.inner-data p a:hover ,
.inn-card p a:hover ,
.al-accordion-panel-content p a:hover ,
.section-area p a:hover ,
.fence-types-content p a:hover{
    text-decoration: none;
}
/* Reverse row direction */
.reverse-item .row { flex-direction: row-reverse; }


/* ============================================================
   23. FENCE PROCESS SECTION
   ============================================================ */
.fence-process-section .section-title-wrapper {
    margin-bottom: clamp(48px, 8vw, 110px);
}

.contact-form-wrapper,
.location-missing-notice-box,
.fence-process-card,
.feature-card {
    border-radius: 2px 2px 16px 16px;
}

.fence-process-card {
    box-shadow: var(--shadow-sm);
    padding: clamp(24px, 3.5vw, 35px) clamp(15px, 4vw, 48px);
    min-height: clamp(280px, 40vw, 384px);
}

.fence-process-card-icon {
    background: var(--color-blue-dark);
    height: clamp(52px, 8vw, 96px);
    width:  clamp(52px, 8vw, 96px);
    box-shadow: var(--shadow-lg);
    margin-bottom: clamp(24px, 4vw, 40px);
}

.fence-process-num {
    height: clamp(24px, 3.5vw, 40px);
    width:  clamp(24px, 3.5vw, 40px);
    border-radius: var(--radius-full);
    background: var(--color-red);
    box-shadow: var(--shadow-md);
    font-size: clamp(12px, 2vw, 20px);
    line-height: 1.4;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
}

/* Shared line-height for card body text */
.footer-box-wrapper p,
.testimonial-card blockquote,
.fence-process-card p {
    line-height: 1.62;
}


/* ============================================================
   24. GALLERY & INSPIRATION SECTION
   ============================================================ */
.gallery-inspiration-section {
    padding: clamp(50px, 10vw, 128px) 0 clamp(32px, 6vw, 46px);
}

.gallery-inspiration-card {
    border: 1px solid var(--color-border-light);
    background: var(--bg-mist-light);
}

.gallery-inspiration-slider .bravo-btn {
    margin-top: clamp(24px, 4vw, 48px);
}

.swiper.gallery-inspiration-slider {
    margin-top: clamp(20px, 3vw, 34px);
    padding-bottom: clamp(60px, 6vw, 81px);
}

/* --- Swiper Slider --- */
.swiper-button-next::after,
.swiper-button-prev::after { font-size: 0; }

.swiper-button-next,
.swiper-rtl .swiper-button-prev { right: 0; left: auto; }

.swiper-button-prev,
.swiper-rtl .swiper-button-next { left: 0; right: auto; }

.swiper-icon {
    height: clamp(40px, 4vw, 49px);
    width:  clamp(40px, 4vw, 49px);
    background: var(--color-blue-dark);
    border-radius: 50%;
}

.swiper-icon svg {
    height: clamp(12px, 1.5vw, 16px);
    width: clamp(12px, 1.5vw, 16px);
}

/* Margin offsets for arrows */
.swiper-button-prev.swiper-icon.swiper-bottom-icon svg  { margin-left: -5px; }
.swiper-button-next.swiper-icon.swiper-bottom-icon svg  { margin-right: -5px; }
.swiper-button-prev.swiper-icon svg                     { margin-left: -3px; }
.swiper-button-next.swiper-icon svg                     { margin-right: -3px; }

/* Bottom-positioned arrows */
.swiper-icon.swiper-bottom-icon {
    position: absolute;
    top: auto;
    bottom: 0;
}

.swiper-button-prev.swiper-icon.swiper-bottom-icon {
    left: 50%;
    transform: translateX(calc(-50% - clamp(24px, 3vw, 30.5px)));
}

.swiper-button-next.swiper-icon.swiper-bottom-icon {
    right: 50%;
    transform: translateX(calc(50% + clamp(24px, 3vw, 30.5px)));
}

/* MD-size arrows */
.swiper-icon.swiper-md-icon {
    height: clamp(25px, 4vw, 32px);
    width:  clamp(25px, 4vw, 32px);
}

.swiper-icon.swiper-md-icon svg {
    height: clamp(12px, 1.5vw, 10px);
    width: clamp(12px, 1.5vw, 10px);
}


/* ============================================================
   25. TESTIMONIALS
   ============================================================ */
.testimonial-area {
    padding: clamp(50px, 8vw, 100px) 0 clamp(40px, 5vw, 64px);
}

.testimonial-area .container { max-width: 1260px; }

.testimonial-slider {
    padding-bottom: clamp(60px, 6vw, 93px);
    padding-right: 10px;
    padding-left: 10px;
}

.testimonial-card {
    border-radius: 2px 16px 16px 2px;
    border-left: clamp(4px, 0.6vw, 8px) solid var(--color-red);
    padding:
        clamp(24px, 3.5vw, 40px)
        clamp(24px, 4vw, 48px);
}
.testimonial-card blockquote {max-width: 496px; min-height: 121px;}
.disable { opacity: 0.5; }

/* Quote icon */
.quote-icon {
    position: absolute;
    top:   clamp(16px, 3vw, 32px);
    right: clamp(16px, 3vw, 32px);
    z-index: -1;
    opacity: 0.7;
}

/* Author info */
.author-info {
    border-top: 1px solid var(--color-blue-mist);
    padding-top: clamp(16px, 2.5vw, 25px);
    margin-top:  clamp(20px, 3.5vw, 32px);
}

.our-team-card-content p,
.contact-form-wrapper .bottom-section p,
.author-info p { color: var(--color-subtle); }

.author-info p { font-family: var(--font-serif) !important; }

/* --- Client Reviews Slider --- */
.client-reviews-slider .testimonial-card blockquote {
    font-size: 14px;
    font-style: italic;
    color: var(--color-blue-navy);
}

.client-reviews-slider .testimonial-card {
    border-radius: 0;
    border-left: clamp(2px, 0.6vw, 4px) solid var(--color-red);
    box-shadow: none;
    padding: 0;
    padding-left: clamp(16px, 2vw, 22px);
    min-height: 240px;
}

.client-reviews-slider .author-info {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
}

.client-reviews-slider .author-info h6 {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.5;
    letter-spacing: 0.025em;
    margin-bottom: 0;
}

.client-reviews-area .container { max-width: 1144px; }

/* Slider arrow positioning */
.client-reviews-slider-wrapper .swiper-button-next,
.client-reviews-slider-wrapper .swiper-rtl .swiper-button-prev { right: -42px; }

.client-reviews-slider-wrapper .swiper-button-prev,
.client-reviews-slider-wrapper .swiper-rtl .swiper-button-next { left: -42px; }


/* ============================================================
   26. SERVICE COVERAGE SECTION
   ============================================================ */
.service-coverage-area {
    padding: clamp(50px, 8vw, 100px) 0 clamp(50px, 10vw, 115px);
}

.service-coverage-area::before {
    content: "";
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, rgba(54, 117, 186, 0.95) 0%, rgba(54, 117, 186, 0.95) 100%);
    z-index: 1;
}

.service-coverage-area .section-title-wrapper p {
    color: rgba(255, 255, 255, 0.80);
    font-family: var(--font-serif);
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.4;
}

.coverage-cities-grid-box {
    column-gap: 8px;
    row-gap: 12px;
}

.service-locations-info { max-width: clamp(560px, 80vw, 784px); }


/* ============================================================
   27. FAQ / ACCORDION SECTION
   ============================================================ */
.faq-fencing-section {
    padding: clamp(50px, 10vw, 128px) 0 clamp(70px, 12vw, 163px);
}

.faq-fencing-section .section-title-wrapper p { line-height: 1.4; }

/* Accordion component */
.accordion {
    --bs-accordion-color: var(--color-body);
    --bs-accordion-bg: var(--color-white);
}

.accordion-item:first-of-type { border-top-left-radius: 0; border-top-right-radius: 0; }
.accordion-item:last-of-type  { border-bottom-right-radius: 0; border-bottom-left-radius: 0; }

.faq-accordion-container {
    max-width: 896px;
    width: 100%;
    margin-top: clamp(48px, 8vw, 90px);
}

.accordion-item {
    border: 0;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: clamp(10px, 2vw, 17px);
    transition: var(--transition-base);
}

.accordion-item:last-child { margin-bottom: 0; }

/* Active accordion item */
.accordion .accordion-item:has(.accordion-header[aria-expanded="true"]) {
    border-color: var(--color-red);
    background: var(--bg-mist-light);
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    line-height: 1.4;
    letter-spacing: 0.025em;
    cursor: pointer;
    padding:
        clamp(16px, 2.5vw, 24px)
        clamp(56px, 4vw, 64px)
        clamp(16px, 2.5vw, 24px)
        clamp(16px, 2.5vw, 24px);
    transition: var(--transition-base);
}

.accordion-body {
    padding:
        clamp(12px, 2vw, 16.5px)
        clamp(16px, 2.5vw, 24px)
        clamp(6px, 1vw, 8px)
        clamp(16px, 2.5vw, 24px);
    border-top: 1px solid var(--color-border-light);
}

/* Shared line-height for body text */
.client-reviews-slider .testimonial-card blockquote,
.benefits-card-content p,
.premium-service-content p,
.residential-fencing-content p,
.residential-fencing-content ul li,
.team-member-modal-content p,
.about-section .section-title-wrapper p,
.contact-section .section-title-wrapper p,
.accordion-body p {
    line-height: 1.62;
}

/* Accordion expand/collapse icon */
.accordion-icon {
    height: clamp(28px, 3vw, 32px);
    width:  clamp(28px, 3vw, 32px);
    background: var(--color-blue-mist);
    position: absolute;
    top: 50%;
    right: clamp(16px, 2vw, 24px);
    transform: translateY(-50%);
    transition: background-color 0.3s linear, transform 0.3s linear, box-shadow 0.3s linear;
}

.accordion-icon svg           { transition: transform 0.35s linear; }
.accordion-icon svg path      { transition: stroke 0.3s linear, opacity 0.3s linear; }

/* Hover effect */
.accordion .accordion-header:hover .accordion-icon {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 10px 20px -10px rgba(238, 64, 61, 0.65);
}

/* Active state */
.accordion .accordion-header[aria-expanded="true"]                  { color: var(--color-red); }
.accordion .accordion-header[aria-expanded="true"] .accordion-icon  { background-color: var(--color-red); transform: translateY(-50%) rotate(180deg); }
.accordion .accordion-header[aria-expanded="true"] .accordion-icon svg { transform: rotate(180deg); }
.accordion .accordion-header[aria-expanded="true"] .accordion-icon svg path { stroke: var(--color-white); }

/* Plus → minus: hide the vertical bar */
.accordion .accordion-header[aria-expanded="true"] .accordion-icon svg path:last-child { opacity: 0; }


/* ============================================================
   28. CONTACT SECTION
   ============================================================ */
.contact-section .container > .row {
    --bs-gutter-x: clamp(24px, 6vw, 100px);
    --bs-gutter-y: clamp(35px, 6vw, 50px);
}

/* Blue left-border accent on sub-title */
.contact-section .top-sub-title { padding-left: clamp(14px, 2vw, 20px); }

.contact-section .top-sub-title::before {
    content: "";
    inset: 0;
    position: absolute;
    height: 100%;
    width: 4px;
    background: var(--color-blue-mid);
    z-index: -1;
}

.contact-section .section-title-wrapper p,
.faq-fencing-section .section-title-wrapper p,
.service-coverage-area .section-title-wrapper p {
    font-size: clamp(16px, 2vw, 20px);
}

.contact-info label,
.contact-section .section-title-wrapper p { color: var(--color-blue-dark); }

/* Contact form */
.contact-form-wrapper { padding: clamp(20px, 4vw, 48px); }

.contact-form-wrapper h2 {
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.2;
    color: #3675BA;
    letter-spacing: 0.025em;
    margin-bottom: clamp(18px, 3vw, 27px);
}
.contact-form-wrapper .gfield_label.gform-field-label,
.contact-info label {
    color: var(--color-blue-dark) !important;
    font-family: var(--title-font) !important;
    font-size: clamp(13px, 1.2vw, 14px) !important;
    font-weight: var(--fw-bold) !important;
    letter-spacing: 0.025em !important;
    text-transform: uppercase;
    margin-bottom: clamp(6px, 1vw, 8px) !important;
    line-height: 1.42 !important;
}

.contact-form-wrapper .bottom-section { margin-top: clamp(24px, 4vw, 40px); }
.contact-form-wrapper .bottom-section p {
    line-height: 1.33;
    margin-top: clamp(12px, 2vw, 23px);
    font-size: var(--fs-xs);
}
/* Shared xs font-size */
.team-member-modal-content .bravo-btn,
.bravo-header-info-item,
.bravo-header-actions .bravo-btn {
    font-size: var(--fs-xs);
}
.contact-form-wrapper .gform-theme--foundation .gform_fields {
    -moz-column-gap: var(--gf-form-gap-x);
    column-gap: 24px !important;
    row-gap: 24px !important;
}
.contact-form-wrapper .gform_button{
    margin-top: clamp(24px, 5vw, 46px) !important;
}
.i-section .gform_button ,
.contact-form-wrapper .gform_button {
    width: 100% !important;
    font-family: var(--font-body) !important;
    font-size: clamp(10px, 1vw, 16px) !important;
    font-weight: var(--fw-bold) !important;
    line-height: 1.2 !important;
    letter-spacing: 0.115em !important;
    text-transform: uppercase !important;
    display: inline-block  !important;
    border-radius: var(--radius-sm)  !important;
    background: var(--color-red)  !important;
    border: 2px solid var(--color-red)  !important;
    padding: clamp(8px, 1.2vw, 16px) clamp(12px, 2vw, 30px) !important;
    box-shadow: var(--shadow-xs) !important;
    transition: var(--transition-base) !important;
}
.i-section .gform_button:hover ,
.contact-form-wrapper .gform_button:hover{
    background: var(--color-white) !important;
    color: var(--color-red) !important;
}
.contact-form-wrapper .ginput_container input{
    block-size: auto !important;
}
.contact-form-wrapper .gfield_required{
    color:var(--color-heading) !important;
}
.contact-form-wrapper .gform-theme--foundation .gfield textarea.large {
    min-block-size: 124px;
}

/* ============================================================
   29. FOOTER
   ============================================================ */
.footer-area {
    padding: clamp(56px, 8vw, 88px) 0 clamp(24px, 4vw, 40px);
}

.footer-logo img { max-width: clamp(140px, 20vw, 197px); }

.footer-box-wrapper.footer-menu h5 {
    line-height: 1.33;
    letter-spacing: 0.025em;
}

.footer-box-wrapper ul li { margin-bottom: clamp(10px, 2vw, 16px); }
.footer-box-wrapper ul li:last-child { margin-bottom: 0; }

/* Footer text color + hover */
.other-link,
.copy-right-text,
.copy-right-text a,
.footer-contact-info a,
.footer-box-wrapper ul li a,
.footer-box-wrapper ul li,
.footer-box-wrapper p {
    color: var(--color-blue-mist);
    transition: var(--transition-base);
}

.other-link:hover,
.copy-right-text a:hover,
.footer-contact-info a:hover,
.footer-box-wrapper ul li:hover a,
.footer-box-wrapper ul li:hover {
    color: var(--color-red);
}

/* Shared small font-size */
.other-link,
.copy-right-text {
    font-size: var(--fs-sm);
}

/* Footer menu bullet dots */
.residential-fencing-solutions ul li,
.footer-menu ul li {
    position: relative;
    z-index: 1;
    padding-left: clamp(12px, 1.5vw, 18px);
}

.residential-fencing-solutions ul li::before,
.footer-menu ul li::before {
    content: "";
    position: absolute;
    inset: 0;
    height: 6px;
    width: 6px;
    background: var(--color-red);
    z-index: -1;
    top: 9px;
}

/* Footer contact links */
.footer-contact-info a { gap: 12px; }

.footer-contact-info {
    margin-bottom: clamp(10px, 2vw, 16px);
}

.footer-contact-info:last-child { margin-bottom: 0; }

/* Footer logo box */
.footer-contact-logo {
    background-color: var(--color-white);
    padding: clamp(6px, 1vw, 8px);
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.footer-contact-logo > img {
    height: clamp(36px, 4vw, 48px);
    width:  clamp(36px, 4vw, 48px);
    transition: transform 0.3s linear;
}

.footer-contact-logo:hover { transform: translateY(-2px); }

/* Bottom footer bar */
.bottom-footer-area {
    border-top: 1px solid rgba(255, 255, 255, 0.20);
    padding-top: clamp(20px, 3vw, 33px);
    margin-top: clamp(40px, 6vw, 64px);
}


/* ============================================================
   30. ABOUT PAGE SECTION
   ============================================================ */
.about-section .section-title-wrapper { max-width: 896px; }
.about-img-wrapper                     { max-width: 1024px; }


/* ============================================================
   31. PROCESS TIMELINE SECTION
   ============================================================ */
.benefits-section .container,
.premium-services .container,
.process-section .container {
    max-width: 1048px;
}

.process-timeline-step-number {
    border-radius: var(--radius-full);
    height: clamp(40px, 5vw, 56px);
    width:  clamp(40px, 5vw, 56px);
}

.process-timeline-step-title {
    padding: clamp(16px, 2.5vw, 24px) clamp(18px, 3vw, 25px);
    border: 1px solid var(--color-border);
}

.process-timeline-step-title h6 {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.5;
    letter-spacing: 0.025em;
}

/* Connecting timeline line */
.process-timeline-wrapper { position: relative; }

.timeline-line {
    position: absolute;
    left: 50%;
    top: 28px;
    height: 2px;
    width: 100%;
    max-width: calc(100% - 292px);
    background: rgba(54, 117, 186, 0.20);
    z-index: -1;
    transform: translateX(-50%);
    margin-top: -1px;
}


/* ============================================================
   32. OUR TEAM SECTION
   ============================================================ */
.our-team-card-wrapper .row { --bs-gutter-y: clamp(24px, 4vw, 48px); }

.our-team-card,
.our-team-card img { transition: var(--transition-base); }

.our-team-card img {
    border-radius: var(--radius-xl);
    background: var(--color-border-light);
    height: 360px;
    display: block;
    object-fit: cover;
    width: 100%;
}

.our-team-card-content p { font-size: 14px; }

.our-team-card-content h6 {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--color-blue-mid);
    transition: var(--transition-base);
}

/* Hover effects */
.our-team-card:hover{ transform: translateY(-8px); }
.our-team-card:hover .our-team-card-content h6 { color: #EF413D; }
.our-team-card:hover img{ box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25); }

/* Team member modal */
.modal .btn-close {
    height: 16px;
    width: 16px;
    background: var(--color-white);
    position: absolute;
    top: 16px;
    right: 16px;
    opacity: 0.7;
    z-index: 1;
}

.member-designation {
    color: var(--color-red);
    font-size: clamp(14px, 2vw, 16px);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.1em;
}

.team-member-modal-content .bravo-btn {
    padding: 7px 13px;
    letter-spacing: 1.2px;
}

.modal {
    --bs-modal-zindex: 1055;
    --bs-modal-width: clamp(320px, 80vw, 800px);
    --bs-modal-padding: clamp(24px, 4vw, 48px);
    --bs-modal-border-radius: 16px;
    --bs-modal-box-shadow: var(--shadow-lg);
}

.team-member-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: calc(50% - 79px);
    z-index: 1;
}

.team-member-modal-content {
    width: calc(100% - 320px);
    margin-right: 0;
    margin-left: auto;
}

.modal-backdrop        { background: rgba(0, 0, 0, 0.65); }
.modal-backdrop.show   { opacity: 1; }


/* ============================================================
   33. RESIDENTIAL FENCING SECTION
   ============================================================ */
.residential-fencing-section .row {
    --bs-gutter-x: clamp(24px, 4vw, 64px);
    --bs-gutter-y: clamp(24px, 4vw, 50px);
}

.process-timeline-step-title,
.residential-fencing-solutions {
    border: 1px solid var(--color-border);
}

.residential-fencing-solutions ul li::before {
    border-radius: var(--radius-full);
    top: 11px;
}

.residential-fencing-content p a {
    color: #83A57F;
    text-decoration: underline;
}

.residential-fencing-content ul li a {
    color: #83A57F;
    text-decoration: underline;
}

.residential-fencing-content p a:hover { text-decoration: none; }

.residential-fencing-solutions {
    padding: clamp(20px, 3vw, 33px);
    margin-top: clamp(24px, 4vw, 40px);
}

.residential-fencing-solutions ul li a { text-decoration: underline; }

.residential-fencing-solutions ul {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(10px, 2vw, 16px);
}

.residential-fencing-solutions ul > li {
    flex: 1 0 calc(50% - clamp(10px, 2vw, 16px));
}


/* ============================================================
   34. MAINTENANCE SERVICES SECTION
   ============================================================ */
.maintenance-services-section {
    background: linear-gradient(0deg, rgba(158, 206, 245, 0.35) 0.03%, rgba(158, 206, 245, 0.00) 100%), var(--color-blue-mid);
}

.maintenance-services-section .title-48 { line-height: 1; }
.maintenance-services-card {
    max-width: 211px;
    margin-right: auto;
    margin-left: auto;
}
.maintenance-services-card-icon {
    border: 2px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.05);
    padding: clamp(20px, 4vw, 37px);
}
.maintenance-services-card-icon img {
    max-width: clamp(90px, 12vw, 139px);
    max-height: clamp(90px, 12vw, 139px);
}
.maintenance-services-card-title { padding: 12px;}
.maintenance-services-section .container { max-width: 1176px; }
/* ============================================================
   35. PREMIUM SERVICES SECTION
   ============================================================ */
.premium-services {
    padding: clamp(64px, 10vw, 120px) 0 clamp(48px, 8vw, 96px);
}

.premium-services .row {
    --bs-gutter-x: clamp(24px, 4vw, 48px);
    --bs-gutter-y: clamp(24px, 4vw, 48px);
}

.premium-service-content h3 {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
}


/* ============================================================
   36. BENEFITS SECTION
   ============================================================ */
.benefits-section::before {
    content: "";
    inset: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,.50) 0%, rgba(0,0,0,.50) 100%);
    z-index: 1;
}

.benefits-card-icon {
    height: clamp(40px, 5vw, 64px);
    max-width: clamp(40px, 5vw, 64px);
    border-radius: var(--radius-sm);
}

.benefits-card-icon img {
    height: clamp(20px, 3vw, 32px);
    width:  clamp(20px, 3vw, 32px);
}

.benefits-card {
    padding: clamp(18px, 3vw, 32px);
}

.benefits-card > div    { flex: 1 0 0; }
.benefits-card-content p { max-width: 348px; }




/* ============================================================
   37. FIX ALL SECTION
============================================================ */

/* Area Who Serve */

.scylla-banner-content h1 {
    color: #fff;
}
.scylla-banner figure {
    margin: 0;
}
.form.blue-card h2 {
    margin-bottom: clamp(18px, 3vw, 30px);
}

/* Area Who Serve */

/* atlanta-fence-company */
.loc-sectiion-x1 h1 {
    margin-bottom: 15px;
}
.loc-sectiion-x1 h2{
    margin-bottom: 27px;
}
.step-section h2 strong {
    margin-top: 10px;
}
.step-title {
    font-size: 30px;
}
.inner-data h2,
.i-section.material-section h2 {
    margin-bottom: 20px;
}
.stp-item {
    min-height: 158px;
}
.i-section.section-sfa .inn-card p {
    text-align: center;
}
.btn {
    margin: 0;
    max-width: inherit !important;
    display: inline-block !important;
    background: var(--color-red) none !important;
    border-color: var(--color-red) !important;
}
.btn:hover {
    background: var(--color-white) !important;
    color: var(--color-red) !important;
}
.owl-carousel .owl-nav button span {
    transform: translateY(-12px);
}
/* atlanta-fence-company */

/* blog */
.sd-title h3 {
    color: var(--color-white);
}
.with-slidebar .navigation.pagination {
    flex-direction: column;
    gap: 15px;
}
.with-slidebar .nav-links .page-numbers {
    min-width: clamp(40px, 5vw, 52px);
    min-height: clamp(40px, 5vw, 52px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(14px, 2vw, 18px);
}
/* blog */

/* bravo-fence-lp */
.inner-sfa h3 {
    font-size: 16px;
    margin: 0;
}
.inner-sfa p{
    text-align: center;
}
.inner-sfa .card-box {
    min-height: clamp(180px, 25vw, 245px);
}
/* bravo-fence-lp */


/* commercial-fencing */
.section-ins-services .step-title {
    font-size: 20px;
}
.sm-wrap .btn.bgtn {
    margin-top: 30px;
}

/* commercial-fencing */

/* contact */
.section-area .card {
    border: 0;
}
/* contact */

/* custom-gate-design */
.page .content h1,
.single-locations h1 {
    font-size: clamp(40px, 5vw, 55px);
}
.ts-title h2,
.inner-data.left-content h3 ,
.about-us-content h1 ,
.content h2 {
    margin-bottom: 20px;
}

/* custom-gate-design */

/* fence-installation */
.about-us-content {
    padding-bottom: clamp(28px, 5vw, 50px) !important;
    background-color: #fff !important;
}

.image-section-x1 {
    background-color: #fff !important;
}
.section-rca h3 {
    font-size: 20px;
}
.section-area.i-section .card,
.section-blue .section-area .card {
    background: transparent;
}
.blue-card .social-media li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.social-media li a img {
    height: clamp(16px, 2vw, 20px);
    width: clamp(16px, 2vw, 20px);
}
/* fence-installation */

/* fencing-estimate-request */
.csform h2 {
    color: #fff;
}
.csform .gform-theme--foundation .gform_fields input:not([type='checkbox']), 
.csform .gform-theme--foundation .gform_fields select, 
.csform .gform-theme--foundation .gform_fields textarea {
    outline: none!important;
    border-color: #fff !important;
    border-bottom-color: rgb(255, 255, 255) !important;
    border-radius: 0 !important;
    border-width: 1px !important;
    border-bottom: 0 !important;
    min-height: 50px !important;
    background-color: var(--blue) !important;
    color: #fff !important;
    line-height: 50px !important;
}
.csform .gform-theme--foundation ::placeholder {
    color: #fff !important;
    font-size: inherit;
    line-height: inherit;
    opacity: 1;
}
.csform #input_1_1_3 {
    border-top-left-radius: 10px !important;
    border-right: 0 !important;
}
#input_1_10_3, .csform #input_1_2 {
    border-right: 0 !important;
}
.csform #input_1_1_6 {
    border-top-right-radius: 10px !important;
}

/* fencing-estimate-request */


/* fencing-estimate-request */
.csform #gform_submit_button_1 {
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
}
.form-section .row {
    --bs-gutter-x: 0;
}
.i-section .btn.align-left {
    margin-left: 20px;
    text-decoration: 0;
    color: #fff;
    padding: 10px 25px;
}
/* fencing-estimate-request */


/* lawrenceville-fence-company */
.stp-item {
    min-height: 180px;
    background-color: #fff;
}

.container .stp-item {
    background-color: #fff !important;
}

.sd-title h3, .sd-title .h3 {
    font-size: 24px;
}

/* lawrenceville-fence-company */

.form-disclaimer {
    display: block !important;
    padding-top: 20px !important;
    color: #62748E !important;
    text-align: center !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 16px !important;
    width: 100% !important;
}

.form-disclaimer a:hover{
    text-decoration:underline !important;
}