/* ═══════════════════════════════════════════
   AVILA CRI — styles.css  (ENHANCED EDITION)
   Rich animations · Scroll reveals · Premium FX
   ═══════════════════════════════════════════ */

/* ── CSS VARIABLES ── */

:root {
    --gold: #b59410;
    --gold2: #d4ae1a;
    --gold3: #f0cc45;
    --cream: #faf7ef;
    --dark: #0e0e0e;
    --dark2: #161616;
    --mid: #2a2a2a;
    --text: #1a1a1a;
    --muted: #6b6457;
    --border: #e2ddd0;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}
.fcon span
{
   font-family: 'Poppins', sans-serif !important;  
}
h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
}
p, a, button
{
    font-family: 'Poppins', sans-serif !important;
}
/* ════════════════════════════════
   KEYFRAME ANIMATIONS
════════════════════════════════ */

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.94);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes lineGrow {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes lineGrowV {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}

@keyframes glowPulse {
    0%,
    100% {
        opacity: 0.12;
    }
    50% {
        opacity: 0.4;
    }
}

@keyframes floatY {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-14px);
    }
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes counterUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.82);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* ════════════════════════════════
   SCROLL-REVEAL UTILITIES
════════════════════════════════ */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .75s var(--ease-out-expo), transform .75s var(--ease-out-expo);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.88);
    transition: opacity .7s var(--ease-out-expo), transform .7s var(--ease-out-expo);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

.reveal-d1 {
    transition-delay: .1s;
}

.reveal-d2 {
    transition-delay: .2s;
}

.reveal-d3 {
    transition-delay: .3s;
}

.reveal-d4 {
    transition-delay: .4s;
}

.reveal-d5 {
    transition-delay: .5s;
}

/* Scroll progress bar */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold3));
    z-index: 9999;
    width: 0%;
    transition: width .1s linear;
}

/* ════════════════════════════════
   TOPBAR
════════════════════════════════ */

.topbar {
    background: var(--dark);
    padding: 10px 0;
    font-size: .78rem;
    letter-spacing: .8px;
    position: relative;
    overflow: hidden;
    animation: fadeSlideDown .6s var(--ease-out-expo) both;
}

.topbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(181, 148, 16, .4) 50%, transparent 100%);
    transform-origin: left;
    animation: lineGrow 1.2s var(--ease-out-expo) .4s both;
}

.topbar a,
.topbar span {
    color: rgba(255, 255, 255, .55);
    font-size: 16px;
    text-decoration: none;
    transition: color .25s;
}

.topbar a:hover {
    color: var(--gold2);
}

.topbar .divider {
    color: rgba(255, 255, 255, .15);
    margin: 0 14px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 4px;
}

.topbar-icon {
    color: var(--gold);
    font-size: 16px;
    margin-right: 6px;
}

.topbar .d-flex a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
   
    transition: background .25s, transform .25s;
}

.topbar .d-flex a:hover {
    /*background: var(--gold);*/
    /*color: #fff !important;*/
    /*transform: translateY(-2px) scale(1.1);*/
}

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */

.navbar {
    background: #fff;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: box-shadow .3s, background .3s;
    animation: fadeSlideDown .6s var(--ease-out-expo) .15s both;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, .07);
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(12px);
}

/* gold underline that reveals on scroll */

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease-out-expo);
}

.navbar.scrolled::after {
    transform: scaleX(1);
}

.navbar-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
}

.brand {
    display: flex;
    align-items: center;
    padding: 0 32px 0 0;
    flex-shrink: 0;
}

.brand img {
    height: 130px;
    transition: transform .4s var(--ease-out-expo);
}

/*.brand:hover img {*/
/*    transform: scale(1.03);*/
/*}*/

/* Desktop nav links */

.nav-links {
    display: flex;
    align-items: stretch;
    gap: 0;
    flex: 1;
    padding: 0 12px;
    justify-content: center;
}

.nav-links>a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 16px;
     letter-spacing:1px;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    border-bottom: 3px solid transparent;
    transition: color .25s;
    position: relative;
}

/* Animated underline sweep */

.nav-links>a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    right: 50%;
    height: 3px;
    background: var(--gold);
    transition: left .3s var(--ease-out-expo), right .3s var(--ease-out-expo);
}

.nav-links>a:hover::after,
.nav-links>a.active::after {
    left: 0;
    right: 0;
}

.nav-links>a:hover,
.nav-links>a.active {
    color: var(--gold);
}

/* CTA */

.nav-cta {
    background: #22552dd1;
    color: #fff;
    padding: 20px 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: .85rem;
    height: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    white-space: nowrap;
    transition: background .25s, letter-spacing .25s;
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, .12) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform .5s;
}

.nav-cta:hover::before {
    transform: translateX(100%);
}

.nav-cta:hover {
    background: var(--dark);
    color: #fff;
/*     letter-spacing: 3px; */
}

/* Hamburger */

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: 1.5px solid var(--gold);
    padding: 8px;
    cursor: pointer;
    margin: auto 14px;
    flex-shrink: 0;
    transition: transform .2s;
}

.nav-hamburger:hover {
    transform: scale(1.06);
}
.navbar a.nav-cta {
    margin-right: 3rem !important;
}
.nav-hamburger span {
    display: block;
    height: 2px;
    background: var(--gold);
    transition: all .35s var(--ease-out-expo);
    border-radius: 1px;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ════════════════════════════════
   SERVICES DROPDOWN
════════════════════════════════ */

.nav-item-services {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-services-trigger {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing:1px;
    text-transform: uppercase;
    color: var(--text);
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    border-bottom: 3px solid transparent;
    background: none;
    cursor: pointer;
    outline: none;
    transition: color .25s;
    position: relative;
}

.nav-services-trigger::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    right: 50%;
    height: 3px;
    background: var(--gold);
    transition: left .3s var(--ease-out-expo), right .3s var(--ease-out-expo);
}

.nav-item-services:hover .nav-services-trigger::after {
    left: 0;
    right: 0;
}

.nav-item-services:hover .nav-services-trigger {
    color: var(--gold);
}

.nav-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-size: .5rem;
    transition: transform .35s var(--ease-out-expo);
    flex-shrink: 0;
    opacity: .65;
}

.nav-item-services:hover .nav-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.services-dropdown {
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%) translateY(16px);
    width: 660px;
    background: #fff;
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .14);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, transform .3s var(--ease-out-expo), visibility .3s;
    pointer-events: none;
    z-index: 1000;
}

.nav-item-services:hover .services-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.services-dropdown::before {
    content: '';
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid var(--gold);
}

.services-dropdown::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #fff;
}

.sd-header {
    padding: 14px 24px 12px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sd-header-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
}

.sd-header-tagline {
    font-size:16px;
    color: var(--muted);
}

.sd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.sd-title {
   
    line-height: 26px;
}
.calc-scope-btn.active span
{
	    color: var(--gold2);
}
.calc-option.active  .calc-opt-sub
{
	 color: var(--gold2);
}
.sd-card {
    padding: 24px 22px 22px;
    text-decoration: none;
    position: relative;
    border-right: 1px solid var(--border);
    transition: background .25s;
    overflow: hidden;
}

.sd-card:last-child {
    border-right: none;
}

.sd-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.sd-card:hover {
    background: var(--cream);
}

.sd-card:hover::after {
    transform: scaleX(1);
}

.sd-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(181, 148, 16, .08);
    line-height: 1;
    margin-bottom: 10px;
    transition: color .25s;
}

.sd-card:hover .sd-num {
    color: rgba(181, 148, 16, .22);
}

.sd-icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(181, 148, 16, .09);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: background .25s, transform .3s var(--ease-out-expo);
}

.sd-card:hover .sd-icon-wrap {
    background: var(--gold);
    transform: rotate(-4deg) scale(1.08);
}

.sd-icon-wrap i {
    color: var(--gold);
    font-size: 1.1rem;
    transition: color .22s;
}

.sd-card:hover .sd-icon-wrap i {
    color: #fff;
}

.sd-title {
    font-family: 'Cormorant Garamond', serif;
   font-size: 1.59rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.sd-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0 0 12px;
}

.sd-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .25s;
}

.sd-card:hover .sd-link {
    gap: 11px;
}

.sd-footer {
    padding: 13px 24px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sd-footer-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
}

.sd-footer-btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: gap .25s, color .25s;
}

.sd-footer-btn:hover {
    gap: 12px;
    color: var(--gold3);
}

/* ════════════════════════════════
   MOBILE DRAWER
════════════════════════════════ */

.mobile-drawer {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 16px 20px 20px;
    gap: 2px;
    width: 100%;
}

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

.mobile-nav-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    padding: 10px 6px;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    transition: color .2s, padding-left .2s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--gold);
    padding-left: 10px;
}

.mobile-services-wrap {
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.mobile-services-toggle {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text);
    padding: 10px 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color .2s;
}

.mobile-services-toggle:hover {
    color: var(--gold);
}

.mobile-chevron-icon {
    font-size: .65rem;
    opacity: .55;
    transition: transform .35s var(--ease-out-expo);
}

.mobile-services-toggle.open .mobile-chevron-icon {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--gold);
}

.mobile-services-list {
    display: none;
    padding: 4px 0 10px 10px;
}

.mobile-services-list.open {
    display: block;
}

.mobile-services-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: .82rem;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s, padding-left .2s;
    border-radius: 2px;
}

.mobile-services-list a:hover {
    color: var(--gold);
    padding-left: 16px;
}

.mobile-services-list a i {
    color: var(--gold);
    width: 16px;
    text-align: center;
}

.mobile-cta-btn {
    display: inline-block;
    margin-top: 10px;
    background: var(--gold);
    color: #fff;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 28px;
    text-align: center;
    transition: background .25s, transform .2s;
}

.mobile-cta-btn:hover {
    background: var(--dark);
    color: #fff;
    transform: scale(1.02);
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */

.hero {
    position: relative;
    min-height: 100%;
    background: var(--dark);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* ── VIDEO HERO ── */
.hero-video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: scaleIn 1.8s var(--ease-out-expo) both;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
        background: linear-gradient(105deg, rgb(34 85 45 / 30%) 40%, rgb(34 85 45 / 30%) 70%, rgb(34 85 45 / 30%) 100%);
}

/* Ambient glow */

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(181, 148, 16, .04) 0%, transparent 50%);
    animation: glowPulse 6s ease-in-out infinite;
    pointer-events: none;
}

.hero-line-a {
    position: absolute;
    top: 0;
    right: 42%;
    bottom: 0;
    width: 1px;
    background: rgba(181, 148, 16, .1);
    pointer-events: none;
    transform-origin: top;
    animation: lineGrowV 1.5s var(--ease-out-expo) .5s both;
}

.hero-line-b {
    position: absolute;
    top: 0;
    right: 20%;
    bottom: 0;
    width: 1px;
    background: rgba(181, 148, 16, .05);
    pointer-events: none;
    transform-origin: top;
    animation: lineGrowV 1.5s var(--ease-out-expo) .7s both;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0 60px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    animation: slideRight .8s var(--ease-out-expo) .8s both;
}

.hero-eyebrow-line {
    width: 48px;
    height: 1px;
    background: var(--gold);
    transform-origin: left;
    animation: lineGrow .8s var(--ease-out-expo) 1.1s both;
}

.hero-eyebrow-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.0;
    font-style: italic;
    animation: fadeSlideUp .9s var(--ease-out-expo) 1.0s both;
}

.hero h1 strong {
    font-weight: 700;
    font-style: normal;
}

.hero h1 em {
    color: #fff;
}

.hero-subtext {
    color: rgb(255 255 255);
    font-size: 1.1rem;
    margin-bottom: 28px;
    font-family: "Barlow", sans-serif;
    font-weight: 300;
    letter-spacing: .5px;
}

.topbar a,
.topbar span {
    font-size: 16px;
}

.nav-item-services button.nav-services-trigger {
    font-size: 16px;
    font-weight: 600;
}

.hero-areas {
   margin: 28px 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    animation: fadeSlideUp .9s var(--ease-out-expo) 1.2s both;
}

.area-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .77rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 7px 14px;
    position: relative;
    overflow: hidden;
    transition: color .3s, border-color .3s;
}

.area-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(-105%);
    transition: transform .35s var(--ease-out-expo);
    z-index: -1;
}

.area-tag:hover {
    color: #fff;
    border-color: var(--gold);
}

.area-tag:hover::before {
    transform: translateX(0);
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
      margin-bottom: 30px;
    animation: fadeSlideUp .9s var(--ease-out-expo) 1.35s both;
}

/* ── Buttons ── */

.btn-gold {
    background: #22552dd1 !important;
    color: #fff;
    padding: 17px 42px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
    display: inline-block;
    transition: all .3s;
}

.btn-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, .15) 50%, transparent 70%);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform .5s;
}

.btn-gold:hover::before {
    transform: translateX(200%) skewX(-15deg);
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(181, 148, 16, .3);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    padding: 17px 42px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, .25);
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.btn-ghost:hover {
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .04);
}

/* ── Hero right ── */

.hero-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 42%;
    z-index: 1;
    animation: slideLeft 1.2s var(--ease-out-expo) .6s both;
}

.hero-right-img {
    position: absolute;
    inset: 0;
    background: url('./img/IMG_3064-1.webp') center/cover no-repeat;
    opacity: .6;
    transition: transform .6s var(--ease-out-expo);
}

/*.hero:hover .hero-right-img { transform: scale(1.03); }*/

.hero-right-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(14, 14, 14, 1) 0%, rgba(14, 14, 14, .3) 40%, transparent 80%);
}

.hero-accent-box {
    position: absolute;
    bottom: 80px;
    right: 44px;
    width: 220px;
    background: rgba(14, 14, 14, .85);
    border: 1px solid rgba(181, 148, 16, .3);
    padding: 22px 24px;
    backdrop-filter: blur(10px);
    transition: transform .3s, box-shadow .3s;
    animation: fadeSlideUp 1s var(--ease-out-expo) 1.5s both;
}

.hero-accent-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(181, 148, 16, .2);
}

.hero-accent-box .acn {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold2);
    line-height: 1;
}

.hero-accent-box .acl {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .68rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-top: 4px;
}

/* ════════════════════════════════
   MARQUEE
════════════════════════════════ */

.marquee-wrap {
    background: var(--gold);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-wrap::before,
.marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--gold), transparent);
}

.marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--gold), transparent);
}

.marquee-inner {
    display: inline-flex;
    animation: marquee 26s linear infinite;
}

.marquee-wrap:hover .marquee-inner {
    animation-play-state: paused;
}

.marquee-inner span {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    padding: 0 36px;
}

.marquee-inner .dot {
    color: rgba(255, 255, 255, .35);
}

/* ════════════════════════════════
   LABEL + GOLD BAR
════════════════════════════════ */
.lbl {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Barlow Condensed', sans-serif;
        font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.lbl::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.lbl.center {
    justify-content: center;
}

.lbl.center::before,
.lbl.center::after {
    display: none;
}

.gold-bar {
    width: 52px;
    height: 2px;
    background: var(--gold);
    margin: 22px 0 30px;
    position: relative;
    overflow: hidden;
}

.gold-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent);
    background-size: 200% 100%;
    animation: shimmer 2.5s ease-in-out infinite;
}

.gold-bar.center {
    margin-left: auto;
    margin-right: auto;
}

/* ════════════════════════════════
   MISSION
════════════════════════════════ */

.mission {
    background: var(--cream);
    padding: 120px 0;
    position: relative;
    /*overflow: hidden;*/
}

.mission-watermark {
    position: absolute;
    top: -30px;
    left: -10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16rem;
    font-weight: 700;
        color: rgb(181 148 16 / 25%);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    animation: glowPulse 9s ease-in-out infinite;
}

.mission-logo-wrap {
    position: sticky;
    top: 150px;
}

.mission-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(181, 148, 16, .13);
    animation: rotateRing 22s linear infinite;
}

.mission-ring2 {
    position: absolute;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    border: 1px solid rgba(181, 148, 16, .07);
    animation: rotateRing 16s linear infinite reverse;
}

.mission-logo-wrap img {
    width: 100%;
    position: relative;
    z-index: 1;
    transition: transform .5s var(--ease-out-expo);
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, .12));
}

.mission-logo-wrap:hover img {
    transform: scale(1.02) translateY(-4px);
}

.mission h2 {
       font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.1;
}

.mission h2 strong {
    font-weight: 700;
    display: block;
}

.mission-text {
    font-size: 1.02rem;
    line-height: 1.92;
    color: var(--muted);
    max-width: 530px;
}

.mission-text-gap {
    margin-top: 18px;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border: 1px solid var(--border);
    background: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text);
    cursor: default;
    position: relative;
    overflow: hidden;
    transition: all .3s var(--ease-out-expo);
}

/*.chip::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0;*/
/*    bottom: 0;*/
/*    width: 3px;*/
/*    background: var(--gold);*/
/*}*/

/*.chip::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background: var(--gold);*/
/*    transform: translateX(-105%);*/
/*    transition: transform .4s var(--ease-out-expo);*/
/*    z-index: 0;*/
/*}*/

.chip i,
.chip span {
    position: relative;
    z-index: 1;
}

.chip i {
    color: var(--gold);
    font-size: .9rem;
    transition: color .3s;
}

.chip:hover {
    color: #b59410 !important;
    border-color: var(--gold);
    transform: translateY(-2px);
}

.chip:hover::after {
    transform: translateX(0);
}

.chip:hover i {
    color: #b59410;
}

/* ════════════════════════════════
   SERVICES GRID
════════════════════════════════ */

.services-header {
    background: #fff;
    text-align: center;
    padding: 72px 20px 52px;
    position: relative;
    overflow: hidden;
}

.services-header::before {
    content: 'SERVICES';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 10rem;
    font-weight: 700;
    color: rgb(181 148 16 / 4%);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 20px;
}

.services-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}

.sg {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.sg-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 400px;
    height: 400px;
}

.sg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease-out-expo), filter .5s;
    filter: saturate(.9);
}

.sg-item:hover img {
    transform: scale(1.1);
    filter: saturate(1.1);
}

/* Gold border on hover */

.sg-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    transition: border-color .4s;
    z-index: 3;
    pointer-events: none;
}

.sg-item:hover::after {
    border-color: rgba(181, 148, 16, .45);
}
.sg {
   
    max-width: 70%;
    margin: auto;
}
.sg-layer {
    position: absolute;
    inset: 0;
        background: linear-gradient(to top, rgb(10 10 10 / 19%) 0%, rgb(10 10 10 / 12%) 55%, rgb(10 10 10 / 0%) 100%);
    transition: background .5s;
}

.sg-item:hover .sg-layer {
    background: linear-gradient(to top, rgba(10, 10, 10, .97) 0%, rgba(10, 10, 10, .5) 65%, rgba(181, 148, 16, .08) 100%);
}

.sg-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 32px;
    transition: transform .4s var(--ease-out-expo);
    z-index: 2;
}

.sg-item:hover .sg-body {
    transform: translateY(-6px);
}

.sg-n {
    font-family: 'Barlow Condensed', sans-serif;
   font-size: 30px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 8px;
}

.sg-t {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 12px;
}

.sg-d {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .62);
    max-width: 340px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .4s .05s, transform .4s var(--ease-out-expo) .05s;
    margin-bottom: 16px;
}

.sg-item:hover .sg-d {
    opacity: 1;
    transform: translateY(0);
}

.sg-lnk {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .3s .15s, transform .35s var(--ease-out-expo) .15s;
}

.sg-item:hover .sg-lnk {
    opacity: 1;
    transform: translateY(0);
}

.sg-lnk i {
    transition: transform .25s;
}

.sg-item:hover .sg-lnk i {
    transform: translateX(5px);
}

.sg-item.tall {
    grid-row: span 2;
}

.sg-item.tall img {
    min-height: 680px;
}

.sg-item.tall .sg-t {
    font-size: 2.6rem;
}

.sg-item-bg {
    background: #111;
}

/* ════════════════════════════════
   STATS BAND
════════════════════════════════ */

.stats-band {
    background: var(--dark2);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.stats-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.stats-band::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(181, 148, 16, .04), transparent 60%);
    animation: glowPulse 6s ease-in-out infinite;
    pointer-events: none;
}

.sbl {
    text-align: center;
    padding: 0 24px;
    position: relative;
    z-index: 1;
    transition: transform .3s var(--ease-out-expo);
}

.sbl:hover {
    transform: translateY(-5px);
}

.sbl:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 52px;
    width: 1px;
    background: rgba(255, 255, 255, .07);
}

.sbl-n {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--gold2);
    line-height: 1;
    transition: text-shadow .3s;
}

.sbl:hover .sbl-n {
    text-shadow: 0 0 40px rgba(212, 174, 26, .4);
}

.sbl-sup {
    font-size: 2.2rem;
    vertical-align: top;
    margin-top: 8px;
    display: inline-block;
}

.sbl-l {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-top: 8px;
    transition: color .3s;
}

.sbl:hover .sbl-l {
    color: rgba(255, 255, 255, .5);
}

/* ════════════════════════════════
   WHY AVILA
════════════════════════════════ */

.why-sec {
    background: #fff;
    padding: 120px 0;
    position: relative;
}

.why-sec::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 44%;
    background: var(--cream);
    z-index: 0;
}

.why-inner {
    position: relative;
    z-index: 1;
}

.why-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.1;
}

.why-intro {
    font-size: 16px;
    line-height: 1.88;
    color: var(--muted);
    max-width: 520px;
}

.why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 42px;
}

/* 5th why-card spans full width */
.why-cards .wcard:nth-child(5) {
    grid-column: 1 / -1;
}

.wcard {
    background: #fff;
    border: 1px solid var(--border);
    padding: 34px 30px;
    position: relative;
    overflow: hidden;
    transition: all .3s var(--ease-out-expo);
}

/* corner triangle accent */

.wcard::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-top: 20px solid var(--gold);
    opacity: 0;
    transition: opacity .3s;
}

.wcard::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold3));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
}

.wcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.wcard:hover::before {
    opacity: 1;
}

.wcard:hover::after {
    transform: scaleX(1);
}

.wcard-icon {
    width: 50px;
    height: 50px;
    background: rgba(181, 148, 16, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background .25s, transform .35s var(--ease-out-expo);
}

.wcard:hover .wcard-icon {
    background: var(--gold);
    transform: rotate(-5deg) scale(1.1);
}

.wcard-icon i {
    color: var(--gold);
    font-size: 1.25rem;
    transition: color .25s;
}

.wcard:hover .wcard-icon i {
    color: #fff;
}

.wcard h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.wcard p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    margin: 0;
}

.why-visual-col {
    position: relative;
}

.why-photo {
    height: 560px;
    background: url('./img/Accent Wall 1.png') center/cover no-repeat;
    transition: transform .5s var(--ease-out-expo);
    overflow: hidden;
}
.why-sec .why-visual-col {
    position: sticky;
    top: 100px;
}
.calc-option:hover span.calc-opt-title {
    color: #fff;
}
.calc-option:hover .calc-opt-sub {
    color: #fff;
}
.why-photo:hover {
    transform: scale(1.02);
}

.why-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--gold);
    padding: 30px 34px;
}

.why-badge-n {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.why-badge-l {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    margin-top: 4px;
}

/* ════════════════════════════════
   TESTIMONIALS
════════════════════════════════ */

.testimonials {
    background: #f3f5f7;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '\201C';
    position: absolute;
    top: -90px;
    left: -30px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 30rem;
    font-weight: 700;
    color: rgba(181, 148, 16, .025);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    animation: glowPulse 10s ease-in-out infinite;
}

.tcard {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(0, 0, 0, .06);
    padding: 42px 36px;
	border-radius:20px !important;
    height: 100%;
    position: relative;
    overflow: hidden;
	box-shadow:0 0 0 1px rgba(0,0,0,.03),    0 8px 25px rgba(0,0,0,.06),    0 2px 8px rgba(0,0,0,.04);
    transition: all .35s var(--ease-out-expo);
}

.tcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold3));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}

.tcard:hover::before {
    transform: scaleX(1);
}

.tcard:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(181, 148, 16, .28);
/*     transform: translateY(-4px); */
/*     box-shadow: 0 20px 60px rgba(0, 0, 0, .3); */
}

.tcard-num {
    position: absolute;
    top: 26px;
    right: 30px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(181, 148, 16, .06);
    line-height: 1;
    transition: color .3s;
}

.tcard:hover .tcard-num {
    color: rgba(181, 148, 16, .13);
}

.tcard-stars {
    display: flex;
	justify-content:center;
    gap: 3px;
    margin: 20px 0px;
}

.tcard .quote-icon i{
	font-size:30px;
	color:#222222ba;
}

.tcard-stars i {
    color: var(--gold);
    font-size: .82rem;
}

/* Wave animation on hover */

.tcard:hover .tcard-stars i:nth-child(1) {
    animation: counterUp .3s .00s both;
}

.tcard:hover .tcard-stars i:nth-child(2) {
    animation: counterUp .3s .06s both;
}

.tcard:hover .tcard-stars i:nth-child(3) {
    animation: counterUp .3s .12s both;
}

.tcard:hover .tcard-stars i:nth-child(4) {
    animation: counterUp .3s .18s both;
}

.tcard:hover .tcard-stars i:nth-child(5) {
    animation: counterUp .3s .24s both;
}

.tcard-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.88;
    color: rgb(0 0 0 / 60%);
    margin-bottom: 26px;
}

.tcard-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
	text-align:center;
}

.tcard-role {
    font-size: 18px;
    color: rgba(255, 255, 255, .28);
    margin-top: 3px;
}

.t-controls {
    display: flex;
    gap: 8px;
}

.t-btn {
    width: 48px;
    height: 48px;
    background: rgb(72 114 82);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    font-size: .9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: border-color .3s;
}

.t-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #22552dd1;
    transform: scale(0);
    border-radius: 50%;
    transition: transform .35s var(--ease-out-expo);
}

.t-btn:hover::before,
.t-btn.active-btn::before {
    transform: scale(2.5);
    border-radius: 0;
}

.t-btn:hover,
.t-btn.active-btn {
    border-color: var(--gold);
}

.t-btn i {
    position: relative;
    z-index: 1;
}

.testimonials-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: #00;
    margin: 0;
	text-align:center;
}

.testimonials-lbl {
    color: var(--gold);
}

.mobile-dots-wrap {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 18px;
}

.ts-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 48px;
}

.ts-header-left {
    flex: 1;
    min-width: 240px;
}

.ts-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.ts-counter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .28);
    letter-spacing: 2px;
    min-width: 44px;
    text-align: right;
}

.ts-slider-wrap {
    overflow: hidden;
    width: 100%;
}

.ts-track {
    display: flex;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

.ts-slide {
    flex: 0 0 calc(100% / 3);
    padding: 10px 10px;
    box-sizing: border-box;
}

.ts-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 36px;
}

.tslider-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .18);
    cursor: pointer;
    transition: width .35s var(--ease-out-expo), background .35s;
    margin: 0 2px;
}

.tslider-dot-active {
    width: 20px;
    background: var(--gold);
}

/* ════════════════════════════════
   COST CALCULATOR
════════════════════════════════ */

.calc-sec {
    background: var(--dark2);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.calc-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.calc-sec::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(181, 148, 16, .04), transparent 70%);
    animation: floatY 8s ease-in-out infinite;
    pointer-events: none;
}

.calc-lbl {
    color: var(--gold2);
}

.calc-heading {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: #fff;
}

.calc-subtext {
    font-size: 16px;
    color: rgba(255, 255, 255, .42);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.8;
}

.calc-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.calc-step-block {
    margin-bottom: 28px;
}

.calc-step-label {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calc-step-num {
    background: var(--gold);
    color: #fff;
        width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform .3s, box-shadow .3s;
}

.calc-step-label:hover .calc-step-num {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(181, 148, 16, .5);
}

.calc-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.calc-option {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .9);
    padding: 14px 10px;
    text-align: center;
    cursor: pointer;
    transition: all .3s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    position: relative;
    overflow: hidden;
}

.calc-option i {
    font-size: 1.2rem;
    color: #888;
    transition: color .25s, transform .3s var(--ease-out-expo);
}

.calc-opt-title {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a1a1a;
    transition: color .25s;
}

.calc-opt-sub {
    font-size: 16px;
    color: #555;
}

.calc-option:hover,
.calc-option.active {
    background: rgba(181, 148, 16, .12);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.calc-option:hover i,
.calc-option.active i {
    color: var(--gold2);
    transform: scale(1.2);
}

.calc-option.active .calc-opt-title {
    color: var(--gold2);
}

.calc-scope-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.calc-scope-btn {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .9);
    padding: 14px 10px;
    text-align: center;
    cursor: pointer;
    transition: all .3s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.calc-scope-btn strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a1a1a;
    display: block;
    transition: color .25s;
}

.calc-scope-btn span {
    font-size: 16px;
    color: #555;
}

.calc-scope-btn:hover,
.calc-scope-btn.active {
    background: rgba(181, 148, 16, .12);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.calc-scope-btn.active strong {
    color: var(--gold2);
}

.calc-addon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.calc-addon {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 12px 14px;
    cursor: pointer;
    transition: all .3s;
}

.calc-addon:hover {
    background: rgba(181, 148, 16, .08);
    border-color: rgba(181, 148, 16, .3);
    transform: translateX(3px);
}

.calc-addon input {
    display: none;
}

.calc-addon i {
    font-size: .9rem;
    color: rgba(255, 255, 255, .3);
    width: 16px;
    transition: color .2s;
}

.calc-addon:has(input:checked) {
    background: rgba(181, 148, 16, .12);
    border-color: var(--gold);
}

.calc-addon:has(input:checked) i {
    color: var(--gold2);
}

.calc-addon-name {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    flex: 1;
}

.calc-addon-price {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
}

.calc-result-panel {
    background: #fff;
    border-top: 3px solid var(--gold);
    position: sticky;
    top: 100px;
    padding-bottom: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
    transition: transform .3s var(--ease-out-expo);
}

.calc-result-panel:hover {
    transform: translateY(-3px);
}

.calc-result-top {
    padding: 26px 26px 20px;
    border-bottom: 1px solid var(--border);
}

.calc-result-label {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.calc-result-range {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
    min-height: 44px;
}

.calc-result-note {
    font-size: 16px;
    color: var(--muted);
    margin-top: 7px;
    line-height: 1.5;
}

.calc-result-breakdown {
    padding: 14px 26px;
    min-height: 10px;
}

.calc-bd-line {
    display: flex;
    justify-content: space-between;
    font-size: .82rem;
    color: var(--muted);
    padding: 5px 0;
    border-bottom: 1px solid var(--border);
}

.calc-bd-head {
    font-weight: 600;
    color: var(--text);
}

.calc-bd-total {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: .83rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: none;
    padding-top: 9px;
}

.calc-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #22552dd1;
    color: #fff;
    text-decoration: none;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 26px;
    margin: 0 26px 26px;
    transition: background .25s;
    position: relative;
    overflow: hidden;
}

.calc-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--dark);
    transform: translateX(-100%);
    transition: transform .35s var(--ease-out-expo);
}

.calc-cta-btn:hover::before {
    transform: translateX(0);
}

.calc-cta-btn:hover {
    color: #fff;
}

.calc-cta-btn span,
.calc-cta-btn i {
    position: relative;
    z-index: 1;
}

/* ════════════════════════════════
   FAQ / RESOURCES
════════════════════════════════ */

.faq-sec {
    background: var(--cream);
    padding: 120px 0;
}

.faq-heading {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.12;
    color: var(--text);
}

.faq-intro {
    font-size: 16px;
    line-height: 1.85;
    color: var(--muted);
    margin-bottom: 28px;
}

.faq-resources {
    margin-top: 8px;
}

.faq-resource-title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.faq-resource-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    text-decoration: none;
    margin-bottom: 8px;
    transition: all .3s var(--ease-out-expo);
}

.faq-resource-link:hover {
    background: var(--dark);
    border-color: var(--dark);
    transform: translateX(4px);
}

.faq-pdf-icon {
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
    transition: color .22s;
}

.faq-resource-link:hover .faq-pdf-icon {
    color: var(--gold2);
}

.faq-resource-info {
    flex: 1;
}

.faq-resource-info strong {
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
    transition: color .22s;
}

.faq-resource-info span {
    font-size: 16px;
    color: var(--muted);
    transition: color .22s;
}

.faq-resource-link:hover .faq-resource-info strong,
.faq-resource-link:hover .faq-resource-info span {
    color: rgba(255, 255, 255, .65);
}

.faq-dl-icon {
    color: var(--muted);
    font-size: .82rem;
    transition: color .22s, transform .22s;
}

.faq-resource-link:hover .faq-dl-icon {
    color: var(--gold2);
    transform: translateY(3px);
}

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    padding: 20px 0;
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    transition: color .25s;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-item.active .faq-question {
    color: var(--gold);
}

.faq-icon {
    width: 26px;
    height: 26px;
    background: rgba(181, 148, 16, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .3s, transform .35s var(--ease-out-expo), box-shadow .3s;
}

.faq-icon i {
    color: var(--gold);
    font-size: .6rem;
    transition: transform .35s var(--ease-out-expo);
}

.faq-item.active .faq-icon {
    background: var(--gold);
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(181, 148, 16, .4);
}

.faq-item.active .faq-icon i {
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s, padding .4s;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 18px;
}

.faq-answer p {
    font-size: .92rem;
    line-height: 1.88;
    color: var(--muted);
    margin: 0;
}

/* ════════════════════════════════
   INSTAGRAM
════════════════════════════════ */

.insta-sec {
    background: var(--cream);
    padding: 90px 0px 120px;
}

.insta-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
}

.ig-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.ig-cell {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    background: var(--border);
}

.ig-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e2d4, #d4ccb8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .5s var(--ease-out-expo);
}

.ig-placeholder i {
    font-size: 2.2rem;
    color: rgba(181, 148, 16, .35);
}

.ig-cell:hover .ig-placeholder {
    transform: scale(1.08);
}

.ig-over {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    z-index: 2;
    transition: opacity .4s, transform .5s var(--ease-out-expo);
    transform: scale(1.05);
}

.ig-cell:hover .ig-over {
   background:#b59410;
    transform: scale(1);
}

.ig-cell::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(181, 148, 16, 0);
    transition: background .4s;
    z-index: 1;
    pointer-events: none;
}

.ig-cell:hover::after {
    background: rgba(181, 148, 16, .45);
}

.ig-over i {
    color: #fff;
    font-size: 1.8rem;
    position: relative;
    z-index: 3;
    transition: transform .3s;
}

.ig-cell:hover .ig-over i {
    transform: scale(1.2);
}

.ig-over-1 {
    background: url(./img/649473229_18037581602781083_3994336693718270193_nlow.webp) center/cover;
}

.ig-over-2 {
    background: url(./img/615370679_18031032347781083_6561464325227058443_nlow.webp) center/cover;
}

.ig-over-3 {
    background: url(./img/612476368_1260315072683451_1948755370559515884_nlow.webp) center/cover;
}

.ig-over-4 {
    background: url(./img/607311755_18029362034781083_7007543589937808719_nlow.webp) center/cover;
}

.ig-over-5 {
    background: url(./img/584773308_1546266746556918_6397427923784631890_nlow.webp) center/cover;
}

.ig-over-6 {
    background: url(./img/583631090_1926790791523649_1347294798681999223_nlow.webp) center/cover;
}

.ig-over-7 {
    background: url(./img/580702175_18024530735781083_1726309119727170070_nlow.webp) center/cover;
}

.ig-over-8 {
    background: url(./img/536461753_18014507540781083_6656892290471539861_nlow.webp) center/cover;
}

/* ════════════════════════════════
   CTA BAND
════════════════════════════════ */

.cta-sec {

      background-image: url("./img/Chic Ashley 1.png");
    padding: 88px 88px;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    background-position: center;
}


.cta-sec::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;;
      background: linear-gradient(105deg, rgb(34 85 45 / 30%) 40%, rgb(34 85 45 / 30%) 70%, rgb(34 85 45 / 30%) 100%);
    /*animation: floatY 10s ease-in-out infinite;*/
}
.calc-scope-btn:hover strong
{
    color: #fff;
}
.calc-scope-btn:hover span  
{
   color: #fff; 
}
.cta-box::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 50%;
    width: 1px;
    height: 140px;
    background: rgba(181, 148, 16, .15);
}

.cta-box .col-lg-6.d-flex.flex-column.align-items-lg-end {
    position: relative;
}

.cta-box h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.12;
    font-style: italic;
}

.cta-box h2 strong {
    font-weight: 700;
    font-style: normal;
    display: block;
}

.cta-box p {
  color: rgb(255 255 255);
    font-size: 16px;
    line-height: 1.85;
    max-width: 370px;
    margin-top: 18px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #22552dd1;
    color: #fff;
    padding: 18px 44px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold3), var(--gold));
    transform: translateX(-100%);
    transition: transform .4s var(--ease-out-expo);
}

.btn-cta:hover::before {
    transform: translateX(0);
}

.btn-cta:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(181, 148, 16, .4);
}

.btn-cta i {
    position: relative;
    z-index: 1;
    transition: transform .25s;
}

.btn-cta:hover i {
    transform: translateX(6px);
}

.btn-cta span {
    position: relative;
    z-index: 1;
}

.cta-ph {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.cta-ph i {
    color: var(--gold);
}

.cta-ph a {
    color: rgb(255 255 255);
    text-decoration: none;
    font-size: .95rem;
    transition: color .25s;
}

.cta-ph a:hover {
    color: var(--gold2);
}

.cta-lbl {
  color: #ffffff;
}
.cta-lbl::before {
    content: '';
    width: 32px;
    height: 2px;
    background: #fff;
}
/* ════════════════════════════════
   CONTACT FORM
════════════════════════════════ */

.contact-sec {
    background: var(--dark);
    padding: 120px 0;
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1.55fr;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, .07);
    overflow: hidden;
}

.contact-info-col {
    background: rgba(255, 255, 255, .02);
    border-right: 1px solid rgba(255, 255, 255, .07);
}

.contact-info-inner {
    padding: 48px 40px;
}

.contact-lbl {
    color: var(--gold2);
}

.contact-heading {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.12;
    margin: 0;
}

.contact-heading strong {
    font-weight: 700;
    display: block;
}

.contact-intro {
    font-size: .9rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, .42);
    max-width: 300px;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-detail-icon {
    width: 38px;
    height: 38px;
    background: rgba(181, 148, 16, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .3s, transform .3s;
}

.contact-detail:hover .contact-detail-icon {
    background: var(--gold);
    transform: rotate(-5deg);
}

.contact-detail-icon i {
    color: var(--gold);
    font-size: .9rem;
    transition: color .3s;
}

.contact-detail:hover .contact-detail-icon i {
    color: #fff;
}

.contact-detail-label {
    font-family: "Barlow Condensed", sans-serif;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .28);
    margin-bottom: 3px;
}

.contact-detail-value {
    font-size: .88rem;
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    line-height: 1.6;
    transition: color .25s;
}

a.contact-detail-value:hover {
    color: var(--gold2);
}

.contact-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 28px;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 7px 12px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    transition: all .25s;
}

.contact-badge:hover {
    background: rgba(181, 148, 16, .12);
    border-color: var(--gold);
    color: rgba(255, 255, 255, .7);
}

.contact-badge i {
    color: var(--gold);
}

.contact-form-col {
    background: #fff;
}

.contact-form-inner {
    padding: 48px 40px;
}

.contact-form-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.contact-form-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 5px;
}

.contact-form-sub {
    font-size: .83rem;
    color: var(--muted);
    margin: 0;
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.cf-group {
    margin-bottom: 14px;
}

.cf-label {
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

.cf-input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    background: #faf9f7;
    font-family: "Barlow", sans-serif;
    font-size: .88rem;
    color: var(--text);
    outline: none;
    transition: border-color .25s, background .25s, box-shadow .25s;
    appearance: none;
    border-radius: 0;
}

.cf-input:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(181, 148, 16, .08);
}

.cf-input.cf-error {
    border-color: #c0392b;
    background: #fff5f5;
}

.cf-select-wrap {
    position: relative;
}

.cf-select {
    cursor: pointer;
    padding-right: 38px;
}

.cf-select-icon {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: .6rem;
    pointer-events: none;
}

.cf-textarea {
    resize: vertical;
    min-height: 100px;
}

.cf-consent {
    margin-bottom: 18px;
}

.cf-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.6;
}

.cf-checkbox {
    display: none;
}

.cf-checkmark {
    width: 17px;
    height: 17px;
    border: 1.5px solid var(--border);
    background: #faf9f7;
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
}

.cf-checkbox:checked+.cf-checkmark {
    background: var(--gold);
    border-color: var(--gold);
}

.cf-checkbox:checked+.cf-checkmark::after {
    content: "";
    width: 4px;
    height: 7px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
}

.cf-submit {
    width: 100%;
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 16px 28px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: .86rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: color .25s;
}

.cf-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--dark);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease-out-expo);
}

.cf-submit:hover:not(:disabled)::before {
    transform: scaleX(1);
}

.cf-submit:hover:not(:disabled) {
    color: #fff;
}

.cf-submit span,
.cf-submit i {
    position: relative;
    z-index: 1;
}

.cf-submit:disabled {
    opacity: .7;
    cursor: not-allowed;
}

.cf-submit-loading {
    display: none;
    align-items: center;
    gap: 9px;
}

.cf-success {
    display: none;
    align-items: center;
    gap: 13px;
    background: rgba(39, 174, 96, .07);
    border: 1px solid rgba(39, 174, 96, .22);
    border-left: 3px solid #27ae60;
    padding: 14px 18px;
    margin-top: 14px;
    animation: fadeSlideUp .5s both;
}

.cf-success i {
    color: #27ae60;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cf-success strong {
    display: block;
    font-size: .88rem;
    color: var(--text);
}

.cf-success span {
    font-size: .8rem;
    color: var(--muted);
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */

footer {
    background: var(--dark2);
    padding: 96px 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(181, 148, 16, .03), transparent 70%);
    pointer-events: none;
}

.footer-logo img {
    height: 150px;
    transition: filter .3s;
}

.footer-logo:hover img {
    filter: brightness(1.1);
}

.footer-tagline {
    font-size: 16px;
    line-height: 1.82;
    color: rgba(255, 255, 255, .38);
    margin-top: 18px;
    max-width: 290px;
}

.footer-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
    display: block;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 11px;
}

footer ul li a {
    color: rgba(255, 255, 255, .42);
    text-decoration: none;
      font-size: 16px;

    transition: color .25s, padding-left .25s;
    display: block;
}

footer ul li a:hover {
    color: var(--gold2);
    padding-left: 6px;
}

.fcon {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 16px;
    color: rgba(255, 255, 255, .42);
}

.fcon i {
    color: var(--gold);
    margin-top: 2px;
    width: 14px;
    flex-shrink: 0;
}

.fcon a {
    color: rgba(255, 255, 255, .42);
    text-decoration: none;
    transition: color .25s;
}

.fcon a:hover {
    color: var(--gold2);
}

.fsoc {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

.fsoc a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, .05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .38);
    text-decoration: none;
    font-size: .85rem;
    transition: all .3s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.fsoc a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scale(0);
    border-radius: 50%;
    transition: transform .3s var(--ease-out-expo);
}

.fsoc a:hover::before {
    transform: scale(2.5);
    border-radius: 0;
}

.fsoc a:hover {
    color: #fff;
    transform: translateY(-3px);
}

.fsoc a i {
    position: relative;
    z-index: 1;
}

.foot-bot {
    border-top: 1px solid rgba(255, 255, 255, .06);
    margin-top: 72px;
    padding: 22px 0;
}

.foot-bot p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .2);
    margin: 0;
}

/* ════════════════════════════════
   TEXT SELECTION
════════════════════════════════ */

::selection {
    background: rgba(181, 148, 16, .22);
    color: var(--text);
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */



/* ── GREEN SECTION BREAK ── */
.green-break {
    background: rgba(34, 85, 45, 0.82);
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.green-break-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.green-break-item i {
    color: rgba(255, 255, 255, .80);
    font-size: 1.1rem;
}

.green-break-sep {
    color: rgba(255, 255, 255, .35);
    font-size: .65rem;
    padding: 0 4px;
}

@media (max-width: 991px) {
    .hero-right {
        display: none;
    }
    .sg {
        grid-template-columns: 1fr 1fr;
    }
    .sg-item.tall {
        grid-row: auto;
    }
    .sg-item.tall img {
        min-height: 340px;
    }
    .why-sec::after {
        display: none;
    }
    .cta-box {
        padding: 56px 44px;
    }
    .why-cards {
        grid-template-columns: 1fr 1fr;
    }
    .nav-links {
        display: none;
    }
    .nav-cta {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }
    /*.navbar-inner {*/
    /*    height: 64px;*/
    /*}*/
    .brand {
        padding: 0 16px 0 0;
    }
    .calc-wrapper {
        grid-template-columns: 1fr;
    }
    .calc-result-panel {
        position: static;
    }
    .contact-row {
        grid-template-columns: 1fr;
    }
    .contact-info-col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }
    .ts-slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 767px) {
    .sg {
        grid-template-columns: 1fr;
    }
    .hero-content {
        padding: 45px 0 64px;
    }
    .hero-stats-row {
        flex-direction: column;
        gap: 22px;
    }
    .hstat {
        border: none;
        padding: 0;
        margin: 0;
    }
    .sbl:not(:last-child)::after {
        display: none;
    }
    .cta-box {
        padding: 44px 28px;
    }
    .why-cards {
        grid-template-columns: 1fr;
    }
    .why-photo {
        height: 320px;
    }
    .ig-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .calc-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .calc-scope-grid {
        grid-template-columns: 1fr;
    }
    .calc-addon-grid {
        grid-template-columns: 1fr;
    }
    .cf-row {
        grid-template-columns: 1fr;
    }
    .contact-info-inner,
    .contact-form-inner {
        padding: 36px 24px;
    }
    .ts-slide {
        flex: 0 0 100%;
        padding: 0 6px;
    }
    .ts-header {
        gap: 16px;
    }
    .ts-counter {
        display: none;
    }
    .mission-watermark {
        font-size: 6rem;
    }
    .services-header::before {
        font-size: 5rem;
    }
}
.top-badges {
  display: flex;
  justify-content: start;
  gap: 20px;
 margin: 24px 0px 30px;
}

/* Each item */
.badge-item {
     display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.12);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .5);
}

/* SVG icon */
.badge-item .icon {
  width: 20px;
  height: 20px;
  fill: #d4ae1a;
}

/* Hover Effect */
.badge-item:hover {
 background: #497352;
 color: #ffffff;

  transform: translateY(-3px);
}

.badge-item:hover .icon {
  fill: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .top-badges {
    flex-direction: column;
    align-items: center;
  }
}

/*about-us*/
    /* ABOUT PAGE SPECIFIC */
        .about-hero { background: var(--dark); color: #fff; padding: 120px 0 80px; position: relative; overflow: hidden; }
        .about-hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('img/9-web-1920.jpg') center/cover no-repeat; opacity: 0.2; }
        .about-hero-content { position: relative; z-index: 2; text-align: center; }
        .about-hero h1 { font-size: 4.5rem; margin-bottom: 20px; }
        .about-hero p { font-size: 1.2rem; color: var(--gold3); letter-spacing: 2px; text-transform: uppercase; }

        .about-intro { padding: 100px 0; background: var(--cream); }
        .about-intro-img { border: 15px solid #fff; box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-radius: 4px; }
        .about-intro h2 { font-size: 3.5rem; color: var(--dark); margin-bottom: 30px; }
        .about-intro p { font-size: 1.1rem; line-height: 1.8; color: var(--muted); margin-bottom: 25px; }
        .gold-divider { width: 80px; height: 4px; background: var(--gold); margin-bottom: 30px; }

        .team-section { padding: 100px 0; }
        .team-card { background: #fff; border: 1px solid var(--border); transition: 0.3s; height: 100%; box-shadow 0.4s; position: relative; overflow: hidden; padding: 40px; text-align: center; }
        .team-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.08); }
        .team-card h3 { font-size: 2.5rem; margin-bottom: 10px; color: var(--dark); }
        .team-card .role { color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; display: block; }
        .team-card p { color: var(--muted); line-height: 1.7; }

        .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 60px; }
        .value-item { padding: 40px; background: var(--dark); color: #fff; border-radius: 4px; transition: background 0.3s; }
        .value-item:hover { background: var(--gold); }
        .value-item i { font-size: 2.5rem; color: var(--gold3); margin-bottom: 20px; display: block; }
        .value-item:hover i { color: #fff; }
        .value-item h4 { font-size: 1.8rem; margin-bottom: 15px; }
        
        /*contact-us*/
        
           /* CONTACT PAGE SPECIFIC */
        .contact-hero { background: var(--dark); color: #fff; padding: 120px 0 80px; position: relative; overflow: hidden; }
        .contact-hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('img/9-web-1920.jpg') center/cover no-repeat; opacity: 0.2; }
        .contact-hero-content { position: relative; z-index: 2; text-align: center; }
        .contact-hero h1 { font-size: 4.5rem; margin-bottom: 20px; }
        .contact-hero p { font-size: 1.2rem; color: var(--gold3); letter-spacing: 2px; text-transform: uppercase; }

        .contact-section { padding: 100px 0; background: var(--cream); }
        .contact-info-card { background: var(--dark); color: #fff; padding: 60px; border-radius: 4px; height: 100%; }
        .contact-info-card h2 { font-size: 3rem; margin-bottom: 30px; color: var(--gold); }
        .contact-info-card p { color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 40px; }
        .info-item { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }
        .info-item i { font-size: 1.5rem; color: var(--gold); width: 30px; }
        .info-item div span { display: block; font-size: 0.8rem; text-transform: uppercase; color: var(--gold3); letter-spacing: 1px; }
        .info-item div strong { font-size: 1.2rem; font-family: 'Barlow', sans-serif; }

        .contact-form-wrap { background: #fff; padding: 60px; box-shadow: 0 30px 60px rgba(0,0,0,0.05); border-radius: 4px; }
        .form-group { margin-bottom: 25px; }
        .form-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--dark); margin-bottom: 10px; display: block; }
        .form-control { border: 1px solid var(--border); padding: 15px 20px; border-radius: 0; font-family: 'Poppins', sans-serif; transition: border-color 0.3s; }
        .form-control:focus { border-color: var(--gold); box-shadow: none; outline: none; }
        .btn-submit { background: var(--gold); color: #fff; border: none; padding: 18px 40px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; width: 100%; transition: background 0.3s; margin-top: 20px; }
        .btn-submit:hover { background: var(--dark); }
        
        /*resources*/
        
        /* RESOURCES PAGE SPECIFIC */
        .res-hero { background: var(--dark); color: #fff; padding: 120px 0 80px; position: relative; overflow: hidden; }
        .res-hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('img/9-web-1920.jpg') center/cover no-repeat; opacity: 0.2; }
        .res-hero-content { position: relative; z-index: 2; text-align: center; }
        .res-hero h1 { font-size: 4.5rem; margin-bottom: 20px; }
        .res-hero p { font-size: 1.2rem; color: var(--gold3); letter-spacing: 2px; text-transform: uppercase; }

        .resources-section { padding: 100px 0; background: var(--cream); }
        .resource-card { background: #fff; border-radius: 4px; padding: 40px; box-shadow: 0 15px 30px rgba(0,0,0,0.05); transition: transform 0.3s; height: 100%; display: flex; flex-direction: column; align-items: flex-start; border: 1px solid var(--border); }
        .resource-card:hover { transform: translateY(-5px); }
        .resource-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 25px; }
        .resource-card h3 { font-size: 2rem; margin-bottom: 15px; color: var(--dark); }
        .resource-card p { color: var(--muted); margin-bottom: 25px; flex-grow: 1; }
        .btn-download { display: inline-flex; align-items: center; gap: 10px; color: var(--gold); text-decoration: none; font-weight: 700; text-transform: uppercase; font-family: 'Barlow Condensed', sans-serif; letter-spacing: 1px; }
        .btn-download:hover { color: var(--dark); }

        .faq-grid { padding: 100px 0; }
        .faq-item { margin-bottom: 30px; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
        .faq-question { font-size: 1.8rem; font-family: 'Cormorant Garamond', serif; font-weight: 700; color: var(--dark); margin-bottom: 15px; display: block; }
        .faq-answer { color: var(--muted); line-height: 1.8; font-size: 1.1rem; }
          .resource-card a.btn-download i {
    margin-bottom: 0px;
    font-size: 18px;
}

/*portfolio*/
   /* PORTFOLIO PAGE SPECIFIC */
        .port-hero { background: var(--dark); color: #fff; padding: 120px 0 80px; position: relative; overflow: hidden; }
        .port-hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('img/9-web-1920.jpg') center/cover no-repeat; opacity: 0.2; }
        .port-hero-content { position: relative; z-index: 2; text-align: center; }
        .port-hero h1 { font-size: 4.5rem; margin-bottom: 20px; }
        .port-hero p { font-size: 1.2rem; color: var(--gold3); letter-spacing: 2px; text-transform: uppercase; }

        .portfolio-grid { padding: 100px 0; background: var(--cream); }
        .port-card { position: relative; overflow: hidden; border-radius: 4px; margin-bottom: 30px; cursor: pointer; }
        .port-card img { width: 100%; height: 400px; object-fit: cover; transition: transform 0.6s var(--ease-out-expo); }
        .port-card:hover img { transform: scale(1.1); }
        .port-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%); opacity: 0; transition: opacity 0.4s; display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; }
        .port-card:hover .port-overlay { opacity: 1; }
        .port-overlay h3 { color: var(--gold); font-size: 2rem; margin-bottom: 5px; }
        .port-overlay span { color: #fff; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

        .port-filter { display: flex; justify-content: center; gap: 10px; margin-bottom: 50px; flex-wrap: wrap; }
        .filter-btn { background: transparent; border: 1px solid var(--border); padding: 10px 15px; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); transition: all 0.3s; font-size: 13px; }
        .filter-btn:hover, .filter-btn.active { background: var(--gold); color: #fff; border-color: var(--gold); }
        
        .before-after-section {
  background: #0a0a0a;
  padding: 80px 0;
}

 .before-after-section .ba-title {
  color: #d4ae1a;
  font-size: 60px;
  letter-spacing: 5px;
  margin-bottom: 60px;
}

/* WRAPPER */
 .before-after-section .ba-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

/* IMAGES */
 .before-after-section .ba-img {
  width: 100%;
  display: block;
}

 .before-after-section .ba-img.after {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  overflow: hidden;
  height: 100%;
    object-fit: cover;
}

/* LABELS */
 .before-after-section .ba-label {
  position: absolute;
  top: 20px;
  padding: 6px 12px;
  font-size: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  letter-spacing: 1px;
}

 .before-after-section .before-text {
  left: 20px;
}

 .before-after-section .after-text {
  right: 20px;
}

/* SLIDER LINE */
 .before-after-section .ba-slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #fff;
  cursor: ew-resize;
}

/* CIRCLE */
 .before-after-section .ba-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
}

/* RESPONSIVE */
@media(max-width:768px){
  .before-after-section  .ba-title {
    font-size: 40px;
  }
  .mission-logo-wrap .mb-4.text-end {
    text-align: left !important;
}
.cta-sec {
  
    padding: 60px 0px !important;
   
}
}


/*consulting*/
/* CONSULTING PAGE SPECIFIC */
        .service-hero { background: var(--dark); color: #fff; padding: 120px 0 80px; position: relative; overflow: hidden; }
        .service-hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('img/9-web-1920.jpg') center/cover no-repeat; opacity: 0.2; }
        .service-hero-content { position: relative; z-index: 2; text-align: center; }
        .service-hero h1 { font-size: 4.5rem; margin-bottom: 20px; }
        .service-hero p { font-size: 1.2rem; color: var(--gold3); letter-spacing: 2px; text-transform: uppercase; }

        .service-intro { padding: 100px 0; background: var(--cream); }
        .service-intro h2 { font-size: 3.5rem; margin-bottom: 30px; }
        .service-intro p { font-size: 1.1rem; line-height: 1.8; color: var(--muted); }

        .feature-grid { padding: 100px 0; }
        .feature-card { padding: 40px; background: #fff; border: 1px solid var(--border); border-radius: 4px; transition: all 0.4s; height: 100%; }
        .feature-card:hover { border-color: var(--gold); transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
        .feature-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 25px; display: block; }
        .feature-card h3 { font-size: 2rem; margin-bottom: 15px; }
        .feature-card p { color: var(--muted); }

        .cta-banner { background: var(--dark); color: #fff; padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
        .cta-banner h2 { font-size: 3rem; margin-bottom: 30px; }
        .btn-gold { background: var(--gold); color: #fff;  padding: 15px 40px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; text-decoration: none; transition: background 0.3s; display: inline-block; }
        .btn-gold:hover { background: var(--gold2); color: #fff; }
        
        /*remodeling*/

      /* REMODELING PAGE SPECIFIC */
        .remod-hero { background: var(--dark); color: #fff; padding: 120px 0 80px; position: relative; overflow: hidden; }
        .remod-hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('img/9-web-1920.jpg') center/cover no-repeat; opacity: 0.2; }
        .remod-hero-content { position: relative; z-index: 2; text-align: center; }
        .remod-hero h1 { font-size: 4.5rem; margin-bottom: 20px; }
        .remod-hero p { font-size: 1.2rem; color: var(--gold3); letter-spacing: 2px; text-transform: uppercase; }

        .remod-intro { padding: 100px 0; background: var(--cream); }
        .remod-intro h2 { font-size: 3.5rem; margin-bottom: 30px; }
        .remod-intro p { font-size: 1.1rem; line-height: 1.8; color: var(--muted); }

        .services-list { padding: 100px 0; }
        .service-item { display: flex; align-items: flex-start; gap: 30px; margin-bottom: 50px; }
        .service-icon { background: var(--dark); color: var(--gold); width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 2rem; flex-shrink: 0; transition: all 0.3s; }
        .service-item:hover .service-icon { background: var(--gold); color: #fff; transform: rotateY(180deg); }
        .service-text h3 { font-size: 2.2rem; margin-bottom: 15px; }
        .service-text p { color: var(--muted); font-size: 1.1rem; }

        .process-section { background: var(--dark); color: #fff; padding: 100px 0; }
        .process-step { text-align: center; padding: 30px; position: relative; }
        .step-num { font-size: 5rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; color: rgba(181, 148, 16, 0.2); position: absolute; top: 0; left: 50%; transform: translateX(-50%); z-index: 1; }
        .step-content { position: relative; z-index: 2; padding-top: 40px; }
        .step-content h4 { font-size: 2rem; color: var(--gold); margin-bottom: 20px; }
        .step-content p { color: rgba(255,255,255,0.7); }

    /*inspection*/
    
        /* INSPECTION PAGE SPECIFIC */
        .insp-hero { background: var(--dark); color: #fff; padding: 120px 0 80px; position: relative; overflow: hidden; }
        .insp-hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('img/9-web-1920.jpg') center/cover no-repeat; opacity: 0.2; }
        .insp-hero-content { position: relative; z-index: 2; text-align: center; }
        .insp-hero h1 { font-size: 4.5rem; margin-bottom: 20px; }
        .insp-hero p { font-size: 1.2rem; color: var(--gold3); letter-spacing: 2px; text-transform: uppercase; }

        .insp-intro { padding: 100px 0; background: var(--cream); }
        .insp-intro h2 { font-size: 3.5rem; margin-bottom: 30px; }
        .insp-intro p { font-size: 1.1rem; line-height: 1.8; color: var(--muted); }

        .insp-details { padding: 100px 0; }
        .insp-card { background: #fff; border: 1px solid var(--border); padding: 40px; border-radius: 4px; transition: all 0.3s; height: 100%; }
        .insp-card:hover { border-color: var(--gold); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
        .insp-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 25px; display: block; }
        .insp-card h3 { font-size: 2rem; margin-bottom: 15px; }
        .insp-card ul { list-style: none; padding: 0; }
        .insp-card ul li { margin-bottom: 10px; color: var(--muted); display: flex; align-items: center; gap: 10px; }
        .insp-card ul li i { font-size: 1rem; color: var(--gold); margin-bottom: 0; }

        .report-banner { background: var(--dark); color: #fff; padding: 100px 0; }
        .report-banner h2 { font-size: 3rem; margin-bottom: 30px; }
        .report-banner p { font-size: 1.2rem; color: rgba(255,255,255,0.7); max-width: 800px; margin: 0 auto 40px; }
        .team-card img {
   width: 100%;
    margin: 0px 0px 30px 0px;
}
.team-card img {
  
    margin: 0px 0px 30px 0px;
    border: 2px solid #4a7453;
    border-radius: 12px;
}
.faq-sec .faq-list .faq-item button.faq-question {
    display: flex;
}
.faq-sec .faq-list .faq-item {
    padding-bottom: 0px;
}
.faq-sec .faq-list .faq-item button.faq-question {
    font-size: 18px;
}
.phone-box {
    display: flex;
    align-items: center;
  
    padding: 20px 0px;
    gap: 15px;
}

.phone-icon {
    color: #b59410; /* yellow */
}

.phone-icon svg {
    width: 60px;
    height: 60px;
}

.phone-text {
    font-size: 36px;
    font-weight: 700;
    color: #b59410; /* same yellow */
    letter-spacing: 1px;
}
.before-after-section .ba-img {
    height: 300px;
    object-fit: cover;
}
@media(max-width:1500px)
{
    .navbar>.container-fluid
    {
     max-width:1450px   
    }
}
.popup-overlay{
position:fixed;
inset:0;
background:rgba(0,0,0,.55);
display:flex;
justify-content:center;
align-items:center;
opacity:0;
visibility:hidden;
transition:.35s ease;
z-index:999999;
padding:20px;
}

.popup-overlay.show{
opacity:1;
visibility:visible;
}

.popup-box{
background:#f8f4ed;
max-width:620px;
width:100%;
padding:70px 55px 55px;
border-radius:30px;
text-align:center;
position:relative;
transform:translateY(40px) scale(.92);
transition:.4s ease;
box-shadow:0 25px 70px rgba(0,0,0,.25);
}

.popup-overlay.show .popup-box{
transform:none;
}

.popup-badge{
width:90px;
height:90px;
border-radius:50%;
margin:0 auto 28px;
display:flex;
align-items:center;
justify-content:center;
font-size:34px;
background:linear-gradient(135deg,#b59410,#b59410);
color:#fff;
}

.popup-close{
position:absolute;
top:18px;
right:24px;
border:none;
background:none;
font-size:42px;
cursor:pointer;
line-height:1;
}

.popup-box h2{
font-size:54px;
line-height:1.15;
margin-bottom:22px;
font-family:serif;
color:#1f1f1f;
}

.popup-box p{
font-size:22px;
line-height:1.7;
color:#555;
margin-bottom:35px;
}

.popup-btn{
display:inline-block;
background:#b38d57;
color:#fff;
padding:16px 42px;
border-radius:60px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.popup-btn:hover{
background:#111;
color:#fff;
transform:translateY(-3px);
}

/* mobile */
@media(max-width:768px){

.popup-box{
padding:50px 28px 40px;
max-height:90vh;
overflow:auto;
}

.popup-box h2{
font-size:36px;
}

.popup-box p{
font-size:18px;
}

}
.featured-credit{
    padding:70px 20px;
    background:#f7f5ef;
}

.credit-box{
   
    text-align:center;
    background:#fff;
    padding:50px 40px;
    border:1px solid #ddd5c8;
    box-shadow:0 8px 30px rgba(0,0,0,0.05);
    border-radius:8px;
    position:relative;
}

.credit-box:before{
    content:"";
    width:70px;
    height:2px;
    background:#8a7b5e;
    display:block;
    margin:0 auto 25px;
}

.credit-tag{
    display:inline-block;
    padding:10px 22px;
    background:#5f6f55;
    color:#fff;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    border-radius:30px;
    margin-bottom:25px;
}

.credit-box h4{
    font-size:32px;
    line-height:1.5;
    color:#222;
    font-weight:500;
    margin-bottom:22px;
}

.credit-box em{
    font-style:italic;
}

.credit-box p{
    font-size:18px;
    color:#555;
    line-height:1.8;
    margin:0;
}

.credit-box p span{
    margin:0 18px;
    color:#b39c74;
}

@media(max-width:768px){

.credit-box{
padding:35px 25px;
}

.credit-box h4{
font-size:25px;
}

.credit-box p{
font-size:16px;
}

.credit-box p span{
display:block;
margin:12px 0;
}
}
/* interior-page */
/*=============================================
    Avila Interior Hero Start
=============================================*/

.avila-interior-hero{
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    background: linear-gradient(135deg,#fdfcf8 0%,#ffffff 45%,#f7f5ef 100%);
    z-index: 1;
}

/* Decorative Background Shapes */

.avila-interior-hero::before{
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    background: rgba(181,148,16,.08);
    border-radius: 50%;
    top: -220px;
    right: -180px;
    z-index: -1;
}

.avila-interior-hero::after{
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border: 2px dashed rgba(181,148,16,.20);
    border-radius: 50%;
    left: -120px;
    bottom: -100px;
    z-index: -1;
}

/* Small Label */

.avila-interior-badge{
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #b59410;
}

.avila-interior-badge::before{
    content: "";
    width: 55px;
    height: 2px;
    background: #b59410;
}

.avila-interior-badge::after{
    content: "";
    width: 8px;
    height: 8px;
    background: #b59410;
    border-radius: 50%;
}

/* Main Heading */

.avila-interior-title{

    font-size: 62px;
    line-height: 1.15;
    font-weight: 700;
    color: #22552d;
    margin-bottom: 28px;
    max-width: 650px;

}

/* Description */

.avila-interior-text{

    font-size: 18px;
    line-height: 34px;
    color: #666;
    max-width: 600px;
    margin-bottom: 45px;

}

/* Button */

.avila-interior-btn{

    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 38px;
    background: #22552d;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .5px;
    position: relative;
    overflow: hidden;
    transition: .45s ease;

}

.avila-interior-btn i{

    margin-left: 10px;
    transition: .4s;

}

.avila-interior-btn::before{

    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #b59410;
    transition: .45s;

}

.avila-interior-btn span{

    position: relative;
    z-index: 2;

}

.avila-interior-btn i{

    position: relative;
    z-index: 2;

}

.avila-interior-btn:hover{

    color: #fff;

}

.avila-interior-btn:hover::before{

    left: 0;

}

.avila-interior-btn:hover i{

    transform: translateX(6px);

}

/* Image Wrapper */

.avila-interior-image{

    position: relative;
    padding: 18px;
    background: #fff;
    box-shadow: 0 30px 70px rgba(0,0,0,.12);

}

/* Gold Border */

.avila-interior-image::before{

    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border-top: 6px solid #b59410;
    border-left: 6px solid #b59410;
    top: -15px;
    left: -15px;

}

.avila-interior-image::after{

    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border-right: 6px solid #22552d;
    border-bottom: 6px solid #22552d;
    right: -15px;
    bottom: -15px;

}

.avila-interior-image img{

    width: 100%;
    display: block;
    transition: .6s;
}

.avila-interior-image:hover img{

    transform: scale(1.05);

}

/* Floating Badge */

.avila-interior-image .avila-floating-box{

    position: absolute;
    bottom: 30px;
    left: -45px;
    background: #fff;
    padding: 18px 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
    border-left: 4px solid #b59410;

}

/* Responsive */

@media(max-width:991px){

.avila-interior-title{

    font-size:48px;

}

.avila-interior-image{

    margin-top:50px;

}

}

@media(max-width:767px){

.avila-interior-hero{

    padding:90px 0;

}

.avila-interior-title{

    font-size:36px;

}

.avila-interior-text{

    font-size:16px;
    line-height:30px;

}

.avila-interior-btn{

    padding:15px 28px;

}

.avila-interior-image::before,
.avila-interior-image::after{

    display:none;

}

}
/*=============================================
    Why Work With Designer Start
=============================================*/

.avila-designer-benefits{
    position: relative;
    padding: 130px 0;
    background: #ffffff;
/*     overflow: hidden; */
    z-index: 1;
}

/* Left Background Shape */

.avila-designer-benefits::before{
    content: "";
    position: absolute;
    width: 35%;
    height: 100%;
    left: 0;
    top: 0;
    background: #f8f6f1;
    z-index: -1;
}

/* Gold Circle */

.avila-designer-benefits::after{
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border: 2px dashed rgba(181,148,16,.18);
    border-radius: 50%;
    right: -120px;
    top: 80px;
    z-index: -1;
}

/*==================================
 Image
==================================*/

.avila-benefits-image{
    position: relative;
    overflow: hidden;
    padding: 18px;
    background: #fff;
    box-shadow: 0 30px 70px rgba(0,0,0,.10);
}

/* Top Gold Border */

.avila-benefits-image::before{

    content:"";
    position:absolute;
    width:170px;
    height:170px;
    top:-15px;
    left:-15px;

    border-top:6px solid #b59410;
    border-left:6px solid #b59410;

}

/* Bottom Green Border */

.avila-benefits-image::after{

    content:"";
    position:absolute;
    width:170px;
    height:170px;

    right:-15px;
    bottom:-15px;

    border-right:6px solid #22552d;
    border-bottom:6px solid #22552d;

}

.avila-benefits-image img{

    width:100%;
    transition:.6s;

}

.avila-benefits-image:hover img{

    transform:scale(1.08);

}

/* Floating Experience Box */

.avila-benefits-image .avila-experience-box{

    position:absolute;

    bottom:35px;
    right:-35px;

    background:#22552d;

    color:#fff;

    padding:22px 28px;

    min-width:210px;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

    border-left:5px solid #b59410;

}

.avila-benefits-image .avila-experience-box h3{

    font-size:34px;
    color:#fff;
    margin-bottom:5px;

}

.avila-benefits-image .avila-experience-box span{

    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;

}

/*==================================
 Right Content
==================================*/

.avila-section-subtitle{

    display:inline-flex;
    align-items:center;

    gap:15px;

    color:#b59410;

    font-size:14px;

    text-transform:uppercase;

    font-weight:700;

    letter-spacing:3px;

}

.avila-section-subtitle::before{

    content:"";

    width:55px;
    height:2px;

    background:#b59410;

}

.avila-section-title{

    font-size:48px;

    color:#22552d;

    line-height:1.2;

    margin-top:20px;

    margin-bottom:25px;

    max-width:600px;

}

.avila-section-text{

    font-size:18px;

    line-height:34px;

    color:#666;

    max-width:620px;

    margin-bottom:50px;

}

/* Decorative Line */

.avila-section-title{

    position:relative;

}

.avila-section-title::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-18px;

    width:90px;
    height:4px;

    background:#b59410;

}

/*==================================
 Background Decorative Shape
==================================*/

.avila-benefits-shape{

    position:absolute;

    width:130px;
    height:130px;

    border-radius:50%;

    background:rgba(181,148,16,.08);

    right:120px;

    bottom:40px;

}

/*==================================
 Responsive
==================================*/

@media(max-width:991px){

.avila-designer-benefits{

    padding:90px 0;

}

.avila-designer-benefits::before{

    width:100%;
    height:260px;

}

.avila-benefits-image{

    margin-bottom:60px;

}

.avila-section-title{

    font-size:38px;

}

.avila-benefits-image .avila-experience-box{

    right:20px;

}

}

@media(max-width:767px){

.avila-section-title{

    font-size:30px;

}

.avila-section-text{

    font-size:16px;

    line-height:30px;

}

.avila-benefits-image::before,

.avila-benefits-image::after{

    display:none;

}

.avila-benefits-image .avila-experience-box{

    position:relative;

    right:0;

    bottom:0;

    margin-top:20px;

}

}
/*=============================================
        Benefit Cards Start
=============================================*/

.avila-benefit-card{
    position: relative;
    background: #ffffff;
    padding: 35px 30px;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.06);
    transition: all .45s ease;
    z-index: 1;
}

/* Top Gold Line */

.avila-benefit-card::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: #b59410;
    transform: scaleX(0);
    transform-origin: left;
    transition: .45s;
}

/* Background Fill */

.avila-benefit-card::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: #22552d;
    transition: .45s;
    z-index: -1;
}

/* Hover */

.avila-benefit-card:hover{

    transform: translateY(-12px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.avila-benefit-card:hover::before{

    transform: scaleX(1);

}

.avila-benefit-card:hover::after{

    height:100%;

}

/*==================================
Icon
==================================*/

.avila-benefit-icon{

    width:72px;
    height:72px;

    border-radius:50%;

    background:#f8f6f1;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

    transition:.45s;

    position:relative;

}

.avila-benefit-icon::before{

    content:"";

    position:absolute;

    inset:6px;

    border:1px dashed rgba(181,148,16,.35);

    border-radius:50%;

    transition:.45s;

}

.avila-benefit-icon i{

    font-size:28px;

    color:#b59410;

    transition:.45s;

}

.avila-benefit-card:hover .avila-benefit-icon{

    background:#b59410;

    transform:rotate(8deg);

}

.avila-benefit-card:hover .avila-benefit-icon::before{

    border-color:#fff;

}

.avila-benefit-card:hover .avila-benefit-icon i{

    color:#fff;

}

/*==================================
Title
==================================*/

.avila-benefit-card h5{

    font-size:22px;

       line-height: 1.3;

    color:#22552d;

    margin:0;

    transition:.4s;

}

.avila-benefit-card:hover h5{

    color:#ffffff;

}

/*==================================
Arrow
==================================*/

.avila-benefit-arrow{

    margin-top:30px;

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#f3f3f3;

    transition:.4s;

}

.avila-benefit-arrow i{

    color:#22552d;

    transition:.4s;

}

.avila-benefit-card:hover .avila-benefit-arrow{

    background:#b59410;

}

.avila-benefit-card:hover .avila-benefit-arrow i{

    color:#fff;

    transform:translateX(4px);

}

/*==================================
Watermark Number
==================================*/

.avila-benefit-number{

    position:absolute;

    right:20px;

    top:20px;

    font-size:72px;

    font-weight:700;

    color:rgba(181,148,16,.08);

    line-height:1;

    transition:.4s;

}

.avila-benefit-card:hover .avila-benefit-number{

    color:rgba(255,255,255,.08);

}

/*==================================
Responsive
==================================*/

@media(max-width:991px){

.avila-benefit-card{

    padding:30px 25px;

}

}

@media(max-width:767px){

.avila-benefit-card{

    padding:25px 20px;

}

.avila-benefit-card h5{

    font-size:20px;

}

}
/*=============================================
        Featured Designer Cards Start
=============================================*/

.avila-designers-section{
    position: relative;
    padding: 130px 0;
    background: #f9f8f4;
    overflow: hidden;
    z-index: 1;
}

.avila-designers-section::before{
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(181,148,16,.05);
    top: -180px;
    right: -150px;
}

.avila-designers-section::after{
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border: 2px dashed rgba(181,148,16,.15);
    border-radius: 50%;
    left: -120px;
    bottom: -120px;
}

/*=============================
Card
=============================*/

.avila-designer-card{

    position: relative;

    background:#fff;

    overflow:hidden;

    transition:.45s;

    border:1px solid rgba(0,0,0,.06);

    box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.avila-designer-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 80px rgba(0,0,0,.15);

}

/* Gold Top Line */

.avila-designer-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:5px;

    background:#b59410;

    transform:scaleX(0);

    transition:.45s;

}

.avila-designer-card:hover::before{

    transform:scaleX(1);

}

/*=============================
Image
=============================*/

.avila-designer-image{

    position:relative;

    overflow:hidden;

}

.avila-designer-image img {
    width: 100%;
    transition: .6s;
        height: 500px;
    object-fit: cover;
    background: #4a7453;
}
.avila-designer-card {
  
    height: 100%;
}
.avila-designer-card:hover img{

    transform:scale(1.08);

}

/* Overlay */

.avila-designer-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
        rgba(34,85,45,.75),
        transparent);

    opacity:0;

    transition:.45s;

}

.avila-designer-card:hover .avila-designer-image::after{

    opacity:1;

}

/*=============================
Featured Badge
=============================*/

.avila-designer-tag{

    position:absolute;

    top:25px;

    left:25px;

    background:#b59410;

    color:#fff;

    font-size:13px;

    font-weight:600;

    letter-spacing:1px;

    padding:10px 20px;

    z-index:5;

}

/*=============================
Content
=============================*/

.avila-designer-content{

    padding:40px;

    position:relative;

}

.avila-designer-content h3{

    font-size:30px;

    color:#22552d;

    margin-bottom:12px;

    transition:.35s;

}

.avila-designer-content h5{

    font-size:22px;

    color:#b59410;

    margin-bottom:10px;

}

.avila-designer-role{

    display:inline-block;

    color:#666;

    font-size:14px;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:25px;

}

.avila-designer-content p{

    color:#666;

    line-height:32px;

    margin-bottom:30px;

}

/*=============================
Button
=============================*/

.avila-designer-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    color:#22552d;

    font-weight:700;

    position:relative;

    transition:.35s;

}

.avila-designer-btn::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-5px;

    width:0;

    height:2px;

    background:#b59410;

    transition:.35s;

}

.avila-designer-btn:hover{

    color:#b59410;

}

.avila-designer-btn:hover::after{

    width:100%;

}

.avila-designer-btn i{

    transition:.35s;

}

.avila-designer-btn:hover i{

    transform:translateX(5px);

}

/*=============================
Floating Decorative Circle
=============================*/

.avila-designer-card .shape-circle{

    position:absolute;

    width:120px;

    height:120px;

    border-radius:50%;

    background:rgba(181,148,16,.06);

    right:-50px;

    bottom:-50px;

}

/*=============================
Responsive
=============================*/

@media(max-width:991px){

.avila-designers-section{

    padding:90px 0;

}

.avila-designer-content{

    padding:30px;

}

.avila-designer-content h3{

    font-size:26px;

}

}

@media(max-width:767px){

.avila-designer-content{

    padding:25px;

}

.avila-designer-content h3{

    font-size:22px;

}

.avila-designer-content h5{

    font-size:18px;

}

}
/*=============================================
        Design Highlight Section Start
=============================================*/

.avila-highlight-section{
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    background: linear-gradient(135deg,#22552d 0%,#173a20 100%);
    z-index: 1;
}

/* Decorative Shape */

.avila-highlight-section::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

    top:-220px;
    right:-180px;

}

.avila-highlight-section::after{

    content:"";

    position:absolute;

    width:260px;
    height:260px;

    border:2px dashed rgba(255,255,255,.08);

    border-radius:50%;

    left:-100px;
    bottom:-120px;

}

/*=============================
Content Box
=============================*/

.avila-highlight-box{

    position:relative;

    background:#fff;

    padding:70px;

    box-shadow:0 30px 80px rgba(0,0,0,.18);

    border-left:8px solid #b59410;

    overflow:hidden;

}

/* Gold Shape */

.avila-highlight-box::before{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    background:rgba(181,148,16,.08);

    right:-70px;
    top:-70px;

}

/* Quote */

.avila-highlight-icon{

    width:90px;
    height:90px;

    border-radius:50%;

    background:#b59410;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:35px;

}

.avila-highlight-icon i{

    color:#fff;

    font-size:34px;

}

/* Text */

.avila-highlight-box p{

    font-size:18px;

    line-height:1.8;

    color:#22552d;

    margin:0;

    font-weight:500;

}

/* Responsive */

@media(max-width:991px){

.avila-highlight-box{

    padding:45px;

}

.avila-highlight-box p{

    font-size:22px;

}

}

@media(max-width:767px){

.avila-highlight-section{

    padding:90px 0;

}

.avila-highlight-box{

    padding:30px;

}

.avila-highlight-box p{

    font-size:18px;

    line-height:1.7;

}

}
/*=============================================
        Common Section Heading
=============================================*/

.avila-section-subtitle{

    display:inline-flex;

    align-items:center;

    position:relative;

    color:#b59410;

    font-size:15px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:3px;

    margin-bottom:25px;

}

.avila-section-subtitle::before{

    content:"";

    width:55px;

    height:2px;

    background:#b59410;

    margin-right:15px;

}

.avila-section-subtitle::after{

    content:"";

    width:8px;

    height:8px;

    border-radius:50%;

    background:#b59410;

    margin-left:15px;

}

.avila-section-title{

    position:relative;

    font-size:54px;

    color:#22552d;

    line-height:1.15;

    margin-bottom:35px;

}

.avila-section-title::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-18px;

    width:90px;

    height:4px;

    background:#b59410;

}

.text-center .avila-section-title::after{

    left:50%;

    transform:translateX(-50%);

}

.avila-section-text{

    font-size:18px;

    line-height:34px;

    color:#666;

    max-width:760px;

}

@media(max-width:767px){

.avila-section-title{

    font-size:34px;

}

.avila-section-text{

    font-size:16px;

    line-height:30px;

}
.ns-logo img {
    height: 70px;
    object-fit: cover;
}
}
.avila-section-text {
   
    margin: auto;
}
.avila-designers-section h2.avila-section-title {
    max-width: 100%;
}

.ns-logo img {
    height: 110px !important;
    object-fit: cover;
}
.avila-benefits-image {
    position: sticky;
    top: 100px;
}
@media(max-width:768px)
{
	.port-hero h1 {
    font-size: 2.5rem !important;
    margin-bottom: 20px;
}
.page-template-front-page	.mission {
    background: var(--cream);
    padding: 120px 0px 0px;
    position: relative;
    /* overflow: hidden; */
}
.page-template-front-page	.sg {
    max-width: 90%;
    margin: auto;
}
.about-intro .avila-img {
   
    margin-bottom: 50px !important;
}
	.contact-form-wrap {
    padding: 60px 30px;  
}
.contact-hero h1 {
    font-size: 2.5rem !important;
   
}
	.remod-hero h1{
	font-size: 2.5rem !important;	
	}
	.service-hero h1{
		    font-size: 2.5rem !important;
   
	}
	.res-hero h1{
	font-size: 2.5rem !important;	
	}
	.avila-designer-benefits
	{
		overflow:hidden;
	}
	.hero-line-a
	{
		display:none;
	}
	.hero-line-b
	{
		display:none;
	}
	.phone-text {
    font-size: 24px;
   
}
.phone-icon svg {
    width: 40px;
    height: 40px;
}
	.about-hero h1{
	font-size: 2.5rem !important;	
	}
	.mission-watermark { 
    top: 10px;
    left: 10px;    
}
	.sg-body {
    padding: 60px 20px 40px !important;
}
	.navbar{
		overflow:hidden;
	}
	 .page-template-interior-design-partners   .avila-interior-image {
        margin-top: 0px;
    }
	.ts-header {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}
	.avila-designer-benefits .row.gy-5 {
    flex-direction: column-reverse;
}
}
.mission-logo-wrap {
    overflow: hidden;
}
.featured-credit {
    padding: 50px 20px;
   
}
.tslider-dot {
  
    width: 10px;
    height: 6px;
    
    background: rgb(74 116 83);
   
}
.tslider-dot-active {
    width: 22px;
    background: var(--gold) !important;
}
.hero-line-a
	{
		display:none;
	}
	.hero-line-b
	{
		display:none;
	}