:root {
    --forest: #1F3527;
    --evergreen: #2E4A35;
    --moss: #4E6B47;
    --olive: #6F7F4F;
    --gold: #B68C3A;
    --gold-h: #C89E40;
    --gold-soft: #C9A24D;
    --gold-glow: rgba(182, 140, 58, .15);
    --cream: #F4F1EA;
    --beige: #E7E1D6;
    --sand: #D8CFC2;
    --white: #FDFCFA;
    --charcoal: #2B2B2B;
    --text: #5A5A5A;
    --text-lt: #8A8A8A;
    --divider: #E3E0D8;
    --f-head: 'Playfair Display', Georgia, serif;
    --f-body: 'Source Sans 3', 'Segoe UI', sans-serif;
    --sh-sm: 0 2px 8px rgba(31, 53, 39, .05);
    --sh-md: 0 6px 28px rgba(31, 53, 39, .09);
    --sh-lg: 0 16px 48px rgba(31, 53, 39, .13);
    --sh-gold: 0 4px 20px rgba(182, 140, 58, .22);
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 16px;
    --r-xl: 24px;
    --ease: cubic-bezier(.25, .46, .45, .94);
    --t: .35s;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased
}

body {
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden
}

::selection {
    background: var(--gold);
    color: #fff
}

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

a {
    color: var(--evergreen);
    text-decoration: none;
    transition: color .25s var(--ease)
}

a:hover {
    color: var(--gold)
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--f-head);
    color: var(--charcoal);
    font-weight: 600;
    line-height: 1.15
}

.eb-label {
    display: inline-block;
    font-family: var(--f-body);
    font-size: clamp(10px, 1.2vw, 12px);
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px
}

.eb-title {
    font-family: var(--f-head);
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.12;
    margin-bottom: 18px
}

.eb-title span {
    color: var(--gold)
}

.eb-desc {
    font-size: clamp(15px, 1.6vw, 17px);
    color: var(--text);
    line-height: 1.8;
    max-width: 700px
}

.eb-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--r-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--t) var(--ease);
    text-decoration: none
}

.eb-btn i {
    font-size: 11px;
    transition: transform var(--t)
}

.eb-btn:hover i {
    transform: translateX(4px)
}

.eb-btn--gold {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    box-shadow: var(--sh-gold)
}

.eb-btn--gold:hover {
    background: var(--gold-h);
    border-color: var(--gold-h);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(182, 140, 58, .30)
}

.eb-btn--outline-light {
    background: transparent;
    color: var(--cream);
    border-color: rgba(244, 241, 234, .25)
}

.eb-btn--outline-light:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff
}

/* TOPBAR */
.eb-topbar {
    background: var(--forest);
    padding: 10px 0;
    font-size: 13px;
    color: rgba(244, 241, 234, .55);
    position: relative;
    z-index: 1060
}

.eb-topbar a {
    color: rgba(244, 241, 234, .55);
    transition: color .25s
}

.eb-topbar a:hover {
    color: var(--gold)
}

.eb-topbar__icon {
    color: var(--gold);
    margin-right: 6px;
    font-size: 13px
}

.eb-topbar__sep {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, .10);
    display: inline-block;
    vertical-align: middle;
    margin: 0 14px
}

.eb-topbar__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(244, 241, 234, .40);
    font-size: 12px;
    margin-left: 5px;
    transition: all .25s var(--ease)
}

.eb-topbar__social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff
}

.eb-tip {
    position: relative;
    display: inline;
    cursor: default;
    color: var(--gold-soft);
    border-bottom: 1px dashed rgba(201, 162, 77, .30)
}

.eb-tip__box {
    position: absolute;
    left: -10px;
    top: calc(100% + 10px);
    min-width: 220px;
    background: var(--evergreen);
    color: rgba(244, 241, 234, .90);
    padding: 14px 18px;
    border-radius: var(--r-sm);
    font-size: 13px;
    line-height: 1.5;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all .25s var(--ease);
    z-index: 1080;
    pointer-events: none;
    box-shadow: var(--sh-md)
}

.eb-tip__box::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--evergreen)
}

.eb-tip:hover .eb-tip__box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

@media(max-width:767.98px) {
    .eb-topbar__row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px
    }

    .eb-topbar__info {
        display: flex;
        /* flex-direction: column; */
        align-items: center;
        gap: 4px
    }

    .eb-topbar__sep {
        display: none
    }

    .eb-topbar__social {
        margin-top: 4px
    }
}

/* HEADER */
.eb-header {
    background: var(--cream);
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: box-shadow .4s, background .4s
}

.eb-header.scrolled {
    box-shadow: 0 2px 20px rgba(31, 53, 39, .10);
    background: rgba(244, 241, 234, .97);
    backdrop-filter: blur(10px)
}

.eb-header .navbar {
    padding: 14px 0
}

.eb-header .navbar-brand img {
    height: 65px;
    width: auto;
    transition: height .3s
}

.eb-header.scrolled .navbar-brand img {
    height: 50px
}

.eb-header .nav-link {
    font-family: var(--f-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal);
    padding: 10px 16px !important;
    transition: color .25s
}

.eb-header .nav-link:hover,
.eb-header .nav-link.active {
    color: var(--gold)
}

.eb-header .dropdown-menu {
    background: var(--white);
    border: none;
    border-top: 3px solid var(--gold);
    border-radius: 0 0 var(--r-md) var(--r-md);
    box-shadow: var(--sh-lg);
    padding: 8px 0;
    min-width: 240px
}

.eb-header .dropdown-item {
    font-family: var(--f-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    padding: 10px 22px;
    transition: all .25s;
    border-bottom: 1px solid var(--divider)
}

.eb-header .dropdown-item:last-child {
    border-bottom: none
}

.eb-header .dropdown-item:hover {
    color: var(--gold);
    background: rgba(182, 140, 58, .04);
    padding-left: 28px
}

.eb-header__cta {
    background: var(--gold);
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: var(--r-sm);
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: all var(--t) var(--ease) !important;
    margin-left: 8px;
    box-shadow: var(--sh-gold)
}

.eb-header__cta:hover {
    background: var(--gold-h) !important;
    color: #fff !important;
    transform: translateY(-1px)
}

.eb-header .navbar-toggler {
    border: 2px solid var(--divider);
    padding: 6px 10px;
    border-radius: var(--r-sm)
}

.eb-header .navbar-toggler:focus {
    box-shadow: 0 0 0 3px var(--gold-glow)
}

.eb-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232B2B2B' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

@media(max-width:991.98px) {
    .eb-header .navbar-collapse {
        background: var(--forest);
        padding: 20px;
        border-radius: var(--r-md);
        margin-top: 12px
    }

    .eb-header .nav-link {
        color: var(--cream) !important;
        padding: 12px 16px !important;
        border-bottom: 1px solid rgba(255, 255, 255, .06)
    }

    .eb-header .nav-link:hover,
    .eb-header .nav-link.active {
        color: var(--gold) !important;
        background: var(--evergreen);
        border-radius: var(--r-sm)
    }

    .eb-header .dropdown-menu {
        background: var(--evergreen);
        border-top: none;
        box-shadow: none
    }

    .eb-header .dropdown-item {
        color: rgba(244, 241, 234, .75);
        border-bottom-color: rgba(255, 255, 255, .06)
    }

    .eb-header .dropdown-item:hover {
        color: var(--gold);
        background: rgba(255, 255, 255, .04)
    }

    .eb-header__cta {
        margin-left: 0;
        margin-top: 8px;
        display: block;
        text-align: center
    }
}

/* HERO */
.eb-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000
}

.eb-hero__vw {
    position: relative;
    width: 100%;
    padding-top: 56.25%
}

.eb-hero__vw video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain
}

@media(min-width:768px) {
    .eb-hero {
        max-height: 100vh
    }
}

@media(max-width:767.98px) {
    .eb-hero__vw {
        padding-top: 0
    }

    .eb-hero__vw video {
        position: relative;
        width: 100%;
        height: auto
    }
}

/* SERVICES */
.eb-services {
    padding: 90px 0 70px;
    background: var(--white)
}

.eb-services__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px
}

.eb-services__wrap {
    position: relative;
    padding: 0 60px
}

.eb-svc {
    background: var(--cream);
    border-radius: var(--r-xl);
    overflow: hidden;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
    border: 1px solid var(--divider)
}

.eb-svc:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: transparent
}

.eb-svc__header {
    background: var(--forest);
    padding: 34px 24px 28px;
    position: relative;
    overflow: hidden;
    transition: background var(--t)
}

.eb-svc:hover .eb-svc__header {
    background: var(--evergreen)
}

.eb-svc__header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(111, 127, 79, .15) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(78, 107, 71, .12) 0%, transparent 50%), repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(255, 255, 255, .008) 3px, rgba(255, 255, 255, .008) 6px);
    pointer-events: none
}

.eb-svc__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(182, 140, 58, .15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
    border: 2px solid rgba(182, 140, 58, .20)
}

.eb-svc__title {
    font-family: var(--f-head);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 500;
    color: var(--cream);
    margin: 0;
    position: relative;
    z-index: 1
}

.eb-svc__body {
    padding: 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 250px;
}

.eb-svc__text {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.75;
    color: var(--text);
    flex: 1;
    margin-bottom: 24px
}

.eb-svc__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    transition: all .25s;
    justify-content: center
}

.eb-svc__link i {
    font-size: 11px;
    transition: transform .25s
}

.eb-svc__link:hover {
    color: var(--gold-h)
}

.eb-svc__link:hover i {
    transform: translateX(4px)
}

.eb-services__wrap .swiper-button-next,
.eb-services__wrap .swiper-button-prev {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    box-shadow: var(--sh-gold);
    transition: all .3s var(--ease);
    top: 50%
}

.eb-services__wrap .swiper-button-prev {
    left: 0
}

.eb-services__wrap .swiper-button-next {
    right: 0
}

.eb-services__wrap .swiper-button-next::after,
.eb-services__wrap .swiper-button-prev::after {
    font-size: 15px;
    font-weight: 700
}

.eb-services__wrap .swiper-button-next:hover,
.eb-services__wrap .swiper-button-prev:hover {
    background: var(--gold-h);
    transform: scale(1.08)
}

.eb-services__swiper {
    overflow: hidden
}

@media(max-width:767.98px) {
    .eb-services__wrap {
        padding: 0 40px
    }

    .eb-services__wrap .swiper-button-next,
    .eb-services__wrap .swiper-button-prev {
        width: 36px;
        height: 36px
    }

    .eb-services__wrap .swiper-button-next::after,
    .eb-services__wrap .swiper-button-prev::after {
        font-size: 12px
    }
}

/* TRUST */
.eb-trust {
    background: var(--forest);
    padding: 60px 0;
    position: relative;
    overflow: hidden
}

.eb-trust::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(46, 74, 53, .3) 0%, transparent 50%, rgba(31, 53, 39, .4) 100%);
    pointer-events: none
}

.eb-trust__item {
    text-align: center;
    position: relative;
    z-index: 1
}

.eb-trust__num {
    font-family: var(--f-head);
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px
}

.eb-trust__lbl {
    font-family: var(--f-body);
    font-size: clamp(10px, 1.2vw, 12px);
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(244, 241, 234, .45)
}

/* ABOUT PARALLAX */
.eb-about {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1558904541-efa843a96f01?w=1600&q=80') center/cover no-repeat fixed
}

.eb-about__ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31, 53, 39, .93) 0%, rgba(46, 74, 53, .88) 50%, rgba(31, 53, 39, .92) 100%)
}

.eb-about__in {
    position: relative;
    z-index: 2;
    padding: 100px 0
}

.eb-about__in .eb-title {
    color: var(--cream)
}

.eb-about__sub {
    font-family: var(--f-body);
    font-size: clamp(16px, 1.8vw, 19px);
    font-weight: 400;
    color: var(--gold-soft);
    line-height: 1.65;
    margin-bottom: 18px
}

.eb-about__txt {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.85;
    color: rgba(244, 241, 234, .62);
    margin-bottom: 32px;
    max-width: 540px
}

.eb-about__vis {
    position: relative;
    display: flex;
    justify-content: center
}

.eb-about__frame {
    position: relative;
    display: inline-block;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-lg)
}

.eb-about__frame img {
    border-radius: var(--r-xl);
    width: 100%;
    max-width: 460px
}

.eb-about__frame::after {
    content: '';
    position: absolute;
    inset: 8px;
    border: 2px solid rgba(182, 140, 58, .35);
    border-radius: calc(var(--r-xl) - 4px);
    pointer-events: none
}

.eb-about__badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--gold);
    color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sh-gold);
    z-index: 3;
    border: 4px solid rgba(31, 53, 39, .6)
}

.eb-about__badge-n {
    font-family: var(--f-head);
    font-size: 32px;
    font-weight: 700;
    line-height: 1
}

.eb-about__badge-t {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase
}

.eb-about__stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.eb-about__stat-n {
    font-family: var(--f-head);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--gold);
    line-height: 1
}

.eb-about__stat-l {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: rgba(244, 241, 234, .40);
    margin-top: 4px
}

@media(max-width:991.98px) {
    .eb-about {
        min-height: auto;
        background-attachment: scroll
    }

    .eb-about__in {
        padding: 70px 0
    }

    .eb-about__stats {
        gap: 24px;
        flex-wrap: wrap
    }

    .eb-about__vis {
        margin-top: 50px
    }

    .eb-about__badge {
        width: 80px;
        height: 80px;
        top: -10px;
        right: -10px
    }

    .eb-about__badge-n {
        font-size: 26px
    }
}

/* WORK PROCESS */
.eb-process {
    padding: 90px 0 80px;
    background: var(--cream)
}

.eb-process__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px
}

.eb-steps {
    position: relative;
    counter-reset: step
}

.eb-steps::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--divider) 10%, var(--divider) 90%, transparent);
    z-index: 0
}

.eb-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 10px
}

.eb-step__num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--gold);
    color: var(--gold);
    font-family: var(--f-head);
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(182, 140, 58, .12);
    transition: all .4s var(--ease)
}

.eb-step:hover .eb-step__num {
    background: var(--gold);
    color: #fff;
    box-shadow: var(--sh-gold);
    transform: scale(1.1)
}

.eb-step__card {
    background: var(--white);
    border: 1px solid var(--divider);
    border-radius: var(--r-lg);
    padding: 28px 20px 24px;
    transition: all .5s var(--ease);
    min-height: 270px;
    display: flex;
    flex-direction: column
}

.eb-step:hover .eb-step__card {
    box-shadow: var(--sh-md);
    border-color: var(--gold);
    transform: translateY(-4px)
}

.eb-step__icon {
    font-size: 28px;
    color: var(--moss);
    margin-bottom: 14px;
    transition: color .3s
}

.eb-step:hover .eb-step__icon {
    color: var(--gold)
}

.eb-step__title {
    font-family: var(--f-head);
    font-size: clamp(16px, 1.8vw, 19px);
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 10px
}

.eb-step__text {
    font-size: clamp(13px, 1.4vw, 14px);
    line-height: 1.7;
    color: var(--text);
    margin: 0;
    flex: 1
}

@media(max-width:991.98px) {
    .eb-steps::before {
        display: none
    }
}

@media(max-width:575.98px) {
    .eb-step__card {
        min-height: auto
    }
}

/* TESTIMONIALS */
.eb-test {
    padding: 90px 0;
    background: var(--beige)
}

.eb-test__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 16px
}

.eb-test__sub {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px
}

.eb-tc {
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 40px 30px 34px;
    box-shadow: var(--sh-sm);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--divider);
    transition: all .5s var(--ease)
}

.eb-tc:hover {
    box-shadow: var(--sh-md);
    border-color: transparent
}

.eb-tc__stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 3px
}

.eb-tc__text {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.85;
    color: var(--text);
    font-style: italic;
    flex: 1;
    margin-bottom: 24px;
    min-height: 130px;
}

.eb-tc__div {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 18px;
    border-radius: 2px
}

.eb-tc__name {
    font-family: var(--f-head);
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 2px
}

.eb-tc__loc {
    font-size: 13px;
    color: var(--gold);
    font-weight: 500
}

.eb-test .swiper {
    padding-bottom: 60px
}

.eb-test .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--sand);
    opacity: 1;
    transition: all .3s
}

.eb-test .swiper-pagination-bullet-active {
    background: var(--gold);
    transform: scale(1.3)
}

/* CTA */
.eb-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(160deg, var(--forest) 0%, var(--evergreen) 100%);
    position: relative;
    overflow: hidden
}

.eb-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 80%, rgba(182, 140, 58, .06) 0%, transparent 60%);
    pointer-events: none
}

.eb-cta__title {
    font-family: var(--f-head);
    font-size: clamp(24px, 3.8vw, 46px);
    font-weight: 600;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 16px;
    position: relative;
    z-index: 1
}

.eb-cta__text {
    font-size: clamp(14px, 1.6vw, 17px);
    color: rgba(244, 241, 234, .55);
    max-width: 560px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1
}

.eb-cta__btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1
}

/* FOOTER */
.eb-footer {
    background: linear-gradient(180deg, var(--forest) 0%, #172a1e 100%);
    padding: 70px 0 0
}

.eb-footer__brand-text {
    font-size: clamp(13px, 1.4vw, 15px);
    line-height: 1.75;
    color: rgba(244, 241, 234, .38);
    margin-bottom: 22px
}

.eb-footer__title {
    font-family: var(--f-head);
    font-size: 18px;
    font-weight: 500;
    color: var(--cream);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    margin-bottom: 22px;
    display: inline-block
}

.eb-footer__links {
    list-style: none;
    padding: 0;
    margin: 0
}

.eb-footer__links li {
    margin-bottom: 10px
}

.eb-footer__links a {
    font-size: 14px;
    color: rgba(244, 241, 234, .42);
    transition: color .25s, padding-left .25s;
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.eb-footer__links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .3s var(--ease);
    display: inline-block
}

.eb-footer__links a:hover {
    color: var(--gold);
    padding-left: 4px
}

.eb-footer__links a:hover::before {
    width: 12px
}

.eb-footer__rm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 3px;
    transition: all .25s
}

.eb-footer__rm:hover {
    color: var(--cream);
    border-bottom-color: var(--cream)
}

.eb-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .08);
    color: rgba(244, 241, 234, .35);
    font-size: 14px;
    margin-right: 8px;
    transition: all .25s
}

.eb-footer__social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff
}

.eb-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .05);
    margin-top: 50px;
    padding: 18px 0
}

.eb-footer__copy {
    font-size: 13px;
    color: rgba(244, 241, 234, .25);
    text-align: center
}

.eb-footer__copy a {
    color: var(--gold)
}

.eb-footer__copy a:hover {
    color: var(--cream)
}

/* FLOAT CTA */
.eb-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1040;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 6px 24px rgba(182, 140, 58, .30);
    font-size: 20px;
    transition: all var(--t) var(--ease);
    text-decoration: none
}

.eb-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 36px rgba(182, 140, 58, .42);
    background: var(--gold-h);
    color: #fff
}

.eb-float::before {
    content: '';
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    opacity: 0;
    animation: fp 2.5s ease-out infinite
}

@keyframes fp {
    0% {
        transform: scale(.85);
        opacity: .5
    }

    70%,
    100% {
        transform: scale(1.18);
        opacity: 0
    }
}

@media(max-width:767.98px) {
    .eb-float {
        bottom: 18px;
        right: 18px;
        width: 50px;
        height: 50px;
        font-size: 18px
    }
}

/* SCROLL TOP */
.eb-stt {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 1040;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--forest);
    color: var(--cream);
    border-radius: 50%;
    font-size: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--t) var(--ease);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, .08)
}

.eb-stt.vis {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.eb-stt:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold)
}

@media(max-width:767.98px) {
    .eb-stt {
        bottom: 18px;
        left: 18px;
        width: 38px;
        height: 38px;
        font-size: 13px
    }
}


/* ══════════════════════════════════════════════════════════
   ABOUT US PAGE
   ══════════════════════════════════════════════════════════ */

/* ── Page Hero ───────────────────────────────────────────── */
.eb-page-hero{
    position:relative;min-height:380px;
    display:flex;align-items:center;justify-content:center;
    background:center/cover no-repeat;
    padding:120px 0 60px;
}
.eb-page-hero__overlay{
    position:absolute;inset:0;
    background:linear-gradient(180deg,rgba(31,53,39,.88) 0%,rgba(31,53,39,.75) 100%);
}
.eb-page-hero__title{
    font-family:var(--f-head);
    font-size:clamp(30px,5vw,52px);
    font-weight:700;color:var(--cream);
    margin-bottom:16px;
}
.eb-breadcrumb{
    list-style:none;display:flex;justify-content:center;
    gap:8px;padding:0;margin:0;
    font-family:var(--f-body);font-size:14px;
}
.eb-breadcrumb li{color:rgba(244,241,234,.45)}
.eb-breadcrumb li a{color:var(--gold);transition:color .25s}
.eb-breadcrumb li a:hover{color:var(--cream)}
.eb-breadcrumb li+li::before{
    content:'/';margin-right:8px;color:rgba(244,241,234,.25);
}
.eb-breadcrumb li.active{color:rgba(244,241,234,.65)}

@media(max-width:767.98px){
    .eb-page-hero{min-height:280px;padding:100px 0 50px}
}

/* ── About Intro ─────────────────────────────────────────── */
.eb-about-intro{
    padding:100px 0 90px;
    background:var(--white);
}
.eb-about-intro__img-wrap{
    position:relative;
    padding:16px;
}
.eb-about-intro__img-main{
    border-radius:var(--r-xl);
    box-shadow:var(--sh-lg);
    width:100%;
    position:relative;
    z-index:1;
}
/* Gold accent frame behind image */
.eb-about-intro__accent{
    position:absolute;
    top:0;left:0;
    width:60%;height:60%;
    border:3px solid var(--gold);
    border-radius:var(--r-xl);
    opacity:.25;
    z-index:0;
    transform:translate(-12px,-12px);
}

.eb-about-intro__lead{
    font-family:var(--f-body);
    font-size:clamp(17px,1.9vw,20px);
    font-weight:500;color:var(--charcoal);
    line-height:1.65;margin-bottom:18px;
}
.eb-about-intro__text{
    font-size:clamp(14px,1.5vw,16px);
    line-height:1.85;color:var(--text);
    margin-bottom:16px;
}

.eb-about-intro__signature{
    display:flex;align-items:center;gap:14px;
    margin-top:32px;padding-top:28px;
    border-top:1px solid var(--divider);
}
.eb-about-intro__sig-line{
    width:40px;height:3px;
    background:var(--gold);border-radius:3px;
    flex-shrink:0;
}
.eb-about-intro__signature span{
    font-family:var(--f-body);
    font-size:13px;font-weight:600;
    letter-spacing:.06em;text-transform:uppercase;
    color:var(--gold);
}

@media(max-width:991.98px){
    .eb-about-intro{padding:70px 0 60px}
    .eb-about-intro__img-wrap{padding:10px;margin-bottom:20px}
}

/* ── Mission / Vision / Values ───────────────────────────── */
.eb-statement{
    padding:90px 0;
    background:var(--cream);
}

.eb-stmt-card{
    background:var(--white);
    border:1px solid var(--divider);
    border-radius:var(--r-xl);
    padding:40px 30px 36px;
    text-align:center;
    height:100%;
    transition:all .5s var(--ease);
    position:relative;
    overflow:hidden;
}
.eb-stmt-card::before{
    content:'';position:absolute;
    top:0;left:0;right:0;height:4px;
    background:var(--divider);
    transition:background .4s var(--ease);
}
.eb-stmt-card:hover{
    border-color:transparent;
    box-shadow:var(--sh-lg);
    transform:translateY(-6px);
}
.eb-stmt-card:hover::before{
    background:var(--gold);
}

/* Featured card (Vision) */
.eb-stmt-card--featured{
    background:var(--forest);
    border-color:var(--forest);
}
.eb-stmt-card--featured::before{
    background:var(--gold);
}
.eb-stmt-card--featured .eb-stmt-card__title{
    color:var(--cream);
}
.eb-stmt-card--featured .eb-stmt-card__text{
    color:rgba(244,241,234,.60);
}
.eb-stmt-card--featured .eb-stmt-card__icon-wrap{
    background:rgba(182,140,58,.15);
    border-color:rgba(182,140,58,.25);
}
.eb-stmt-card--featured:hover{
    background:var(--evergreen);
}

.eb-stmt-card__icon-wrap{
    width:68px;height:68px;border-radius:50%;
    background:var(--cream);
    border:2px solid var(--divider);
    display:flex;align-items:center;justify-content:center;
    margin:0 auto 22px;
    font-size:26px;color:var(--gold);
    transition:all .4s var(--ease);
}
.eb-stmt-card:hover .eb-stmt-card__icon-wrap{
    background:var(--gold);color:#fff;
    border-color:var(--gold);
    box-shadow:var(--sh-gold);
    transform:scale(1.08);
}

.eb-stmt-card__title{
    font-family:var(--f-head);
    font-size:clamp(20px,2.2vw,24px);
    font-weight:600;color:var(--charcoal);
    margin-bottom:14px;
}
.eb-stmt-card__text{
    font-size:clamp(13px,1.4vw,15px);
    line-height:1.8;color:var(--text);
    margin:0;
}

/* ── Why Choose Us ───────────────────────────────────────── */
.eb-why{
    padding:90px 0 80px;
    background:var(--white);
}

.eb-why-card{
    background:var(--cream);
    border:1px solid var(--divider);
    border-radius:var(--r-lg);
    padding:32px 22px 28px;
    text-align:center;
    height:100%;
    transition:all .5s var(--ease);
    position:relative;
    overflow:hidden;
}
.eb-why-card:hover{
    border-color:transparent;
    box-shadow:var(--sh-md);
    transform:translateY(-5px);
}

.eb-why-card__num{
    font-family:var(--f-head);
    font-size:clamp(40px,4vw,56px);
    font-weight:700;
    color:var(--divider);
    line-height:1;
    margin-bottom:8px;
    transition:color .4s var(--ease);
}
.eb-why-card:hover .eb-why-card__num{
    color:var(--gold-glow);
}

.eb-why-card__icon{
    font-size:28px;color:var(--moss);
    margin-bottom:16px;
    transition:color .3s var(--ease);
}
.eb-why-card:hover .eb-why-card__icon{
    color:var(--gold);
}

.eb-why-card__title{
    font-family:var(--f-head);
    font-size:clamp(16px,1.8vw,19px);
    font-weight:600;color:var(--charcoal);
    margin-bottom:12px;
}
.eb-why-card__text{
    font-size:clamp(13px,1.3vw,14px);
    line-height:1.75;color:var(--text);
    margin:0;
}

@media(max-width:991.98px){
    .eb-why-card__num{font-size:40px}
}

/* ── About CTA Parallax ──────────────────────────────────── */
.eb-about-cta{
    position:relative;
    padding:110px 0;
    background:center/cover no-repeat fixed;
    overflow:hidden;
}
.eb-about-cta__overlay{
    position:absolute;inset:0;
    background:linear-gradient(160deg,rgba(31,53,39,.92) 0%,rgba(46,74,53,.88) 50%,rgba(31,53,39,.93) 100%);
}
.eb-about-cta__title{
    font-family:var(--f-head);
    font-size:clamp(26px,4vw,48px);
    font-weight:700;color:var(--cream);
    line-height:1.12;margin-bottom:18px;
}
.eb-about-cta__text{
    font-size:clamp(14px,1.6vw,17px);
    color:rgba(244,241,234,.55);
    max-width:600px;margin:0 auto 40px;
    line-height:1.75;
}
.eb-about-cta__buttons{
    display:flex;gap:16px;
    justify-content:center;flex-wrap:wrap;
}

@media(max-width:991.98px){
    .eb-about-cta{padding:80px 0;background-attachment:scroll}
}



/* ══════════════════════════════════════════════════════════
   CONTACT US PAGE
   ══════════════════════════════════════════════════════════ */

/* ── Page Hero subtitle ──────────────────────────────────── */
.eb-page-hero__sub{
    font-family:var(--f-body);
    font-size:clamp(14px,1.6vw,17px);
    color:rgba(244,241,234,.50);
    max-width:520px;margin:0 auto 20px;
    line-height:1.7;
}

/* ── Contact Info Cards ──────────────────────────────────── */
.eb-contact-info{
    padding:90px 0 70px;
    background:var(--white);
}
.eb-contact-info__head{
    margin-bottom:50px;
}

.eb-ci-card{
    background:var(--cream);
    border:1px solid var(--divider);
    border-radius:var(--r-xl);
    padding:38px 28px 32px;
    text-align:center;
    height:100%;
    transition:all .5s var(--ease);
    position:relative;
    box-shadow:var(--sh-sm);
}
.eb-ci-card:hover{
    border-color:transparent;
    box-shadow:var(--sh-lg);
    transform:translateY(-6px);
}

/* Featured card */
.eb-ci-card--featured{
    background:var(--forest);
    border-color:var(--forest);
}
.eb-ci-card--featured .eb-ci-card__title{color:var(--cream)}
.eb-ci-card--featured .eb-ci-card__text,
.eb-ci-card--featured .eb-ci-card__text a{color:rgba(244,241,234,.70)}
.eb-ci-card--featured .eb-ci-card__text a:hover{color:var(--gold)}
.eb-ci-card--featured .eb-ci-card__icon{
    background:rgba(182,140,58,.15);
    border-color:rgba(182,140,58,.25);
}
.eb-ci-card--featured .eb-ci-card__badge{
    color:rgba(244,241,234,.40);
    background:rgba(255,255,255,.06);
}
.eb-ci-card--featured:hover{background:var(--evergreen)}

.eb-ci-card__icon{
    width:64px;height:64px;border-radius:50%;
    background:var(--white);border:2px solid var(--divider);
    display:flex;align-items:center;justify-content:center;
    margin:0 auto 20px;font-size:24px;color:var(--gold);
    transition:all .4s var(--ease);
}
.eb-ci-card:hover .eb-ci-card__icon{
    background:var(--gold);color:#fff;
    border-color:var(--gold);box-shadow:var(--sh-gold);
    transform:scale(1.08);
}

.eb-ci-card__title{
    font-family:var(--f-head);
    font-size:clamp(18px,2vw,21px);
    font-weight:600;color:var(--charcoal);
    margin-bottom:8px;
}
.eb-ci-card__text{
    font-size:clamp(14px,1.5vw,16px);
    color:var(--text);margin-bottom:10px;line-height:1.6;
}
.eb-ci-card__text a{color:var(--text);transition:color .25s}
.eb-ci-card__text a:hover{color:var(--gold)}

.eb-ci-card__link{
    display:inline-flex;align-items:center;gap:6px;
    font-size:13px;font-weight:700;letter-spacing:.06em;
    text-transform:uppercase;color:var(--gold);
    transition:all .25s;
}
.eb-ci-card__link i{font-size:11px;transition:transform .25s}
.eb-ci-card__link:hover{color:var(--gold-h)}
.eb-ci-card__link:hover i{transform:translateY(3px)}

.eb-ci-card__badge{
    display:inline-block;
    font-size:12px;font-weight:600;
    letter-spacing:.04em;
    color:var(--text-lt);
    background:var(--white);
    padding:4px 12px;border-radius:20px;
    margin-top:4px;
}

/* ── Contact Form Section ────────────────────────────────── */
.eb-contact-form-section{
    padding:90px 0 100px;
    background:var(--cream);
}

/* Section header */
.eb-cf-header{
    margin-bottom:32px;
}

/* Trust indicators — horizontal bar */
.eb-cf-trust{
    display:flex;justify-content:center;
    gap:36px;flex-wrap:wrap;
    margin-bottom:50px;
}
.eb-cf-trust__item{
    display:flex;align-items:center;gap:10px;
}
.eb-cf-trust__item i{
    width:36px;height:36px;border-radius:50%;
    background:var(--white);color:var(--gold);
    display:flex;align-items:center;justify-content:center;
    font-size:15px;flex-shrink:0;
    border:1px solid var(--divider);
    transition:all .3s var(--ease);
}
.eb-cf-trust__item:hover i{
    background:var(--gold);color:#fff;
    border-color:var(--gold);
}
.eb-cf-trust__item span{
    font-family:var(--f-body);
    font-size:14px;font-weight:600;
    color:var(--charcoal);
}

/* Form card */
.eb-cf-wrap{
    background:var(--white);
    border:1px solid var(--divider);
    border-radius:var(--r-xl);
    padding:44px 40px 36px;
    box-shadow:var(--sh-md);
}

/* Form card header */
.eb-cf-wrap__head{
    display:flex;align-items:flex-start;gap:16px;
    margin-bottom:30px;
    padding-bottom:24px;
    border-bottom:1px solid var(--divider);
}
.eb-cf-wrap__icon{
    width:48px;height:48px;border-radius:50%;
    background:var(--gold-glow);color:var(--gold);
    display:flex;align-items:center;justify-content:center;
    font-size:20px;flex-shrink:0;
    border:2px solid rgba(182,140,58,.18);
}
.eb-cf-wrap__title{
    font-family:var(--f-head);
    font-size:clamp(20px,2.2vw,24px);
    font-weight:600;color:var(--charcoal);
    margin:0 0 4px;
}
.eb-cf-wrap__sub{
    font-size:14px;color:var(--text);
    line-height:1.5;margin:0;
}
.eb-cf-wrap__sub span{color:var(--gold);font-weight:700}

/* Labels & inputs */
.eb-cf-label{
    display:block;
    font-family:var(--f-body);
    font-size:13px;font-weight:700;
    letter-spacing:.04em;
    color:var(--charcoal);
    margin-bottom:6px;
}
.eb-cf-label span{color:var(--gold)}

.eb-cf-input{
    display:block;width:100%;
    font-family:var(--f-body);
    font-size:15px;color:var(--charcoal);
    background:var(--cream);
    border:1px solid var(--divider);
    border-radius:var(--r-sm);
    padding:13px 16px;
    transition:border-color .3s var(--ease),box-shadow .3s var(--ease);
    outline:none;
}
.eb-cf-input::placeholder{color:var(--text-lt);font-size:14px}
.eb-cf-input:focus{
    border-color:var(--gold);
    box-shadow:0 0 0 3px var(--gold-glow);
    background:var(--white);
}

/* Select */
.eb-cf-select{
    appearance:none;
    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%235A5A5A' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat:no-repeat;
    background-position:right 14px center;
    background-size:14px;
    padding-right:40px;
    cursor:pointer;
}
.eb-cf-select option[disabled]{color:var(--text-lt)}

/* Textarea */
.eb-cf-textarea{resize:vertical;min-height:120px}

/* Disclaimer */
.eb-cf-disclaimer{
    font-size:12px;color:var(--text-lt);
    text-align:center;margin-top:18px;margin-bottom:0;
    line-height:1.5;
}

@media(max-width:991.98px){
    .eb-contact-form-section{padding:70px 0 80px}
    .eb-cf-wrap{padding:30px 24px 28px}
    .eb-cf-trust{gap:20px}
}
@media(max-width:575.98px){
    .eb-cf-wrap__head{flex-direction:column;align-items:center;text-align:center}
    .eb-cf-trust{flex-direction:column;align-items:center;gap:14px}
}

/* ── Contact Map ─────────────────────────────────────────── */
.eb-contact-map{
    width:100%;height:450px;
    position:relative;
}
.eb-contact-map .map-canvas{
    width:100%;height:100%;
}
@media(max-width:767.98px){
    .eb-contact-map{height:320px}
}


/* ══════════════════════════════════════════════════════════
   SERVICE DETAIL PAGE
   ══════════════════════════════════════════════════════════ */

/* ── Service Page Container ──────────────────────────────── */
.eb-svc-page{
    padding:80px 0 90px;
    background:var(--white);
}

/* ── Section Title (reusable inside content) ─────────────── */
.eb-svc-section-title{
    font-family:var(--f-head);
    font-size:clamp(22px,2.5vw,28px);
    font-weight:600;color:var(--charcoal);
    margin-bottom:28px;
    padding-bottom:14px;
    border-bottom:2px solid var(--divider);
    display:inline-block;
}
.eb-svc-section-title span{color:var(--gold)}

/* ── Service Intro ───────────────────────────────────────── */
.eb-svc-intro__img{
    border-radius:var(--r-xl);
    overflow:hidden;
    box-shadow:var(--sh-md);
    margin-bottom:36px;
}
.eb-svc-intro__img img{
    width:100%;display:block;
    transition:transform .6s var(--ease);
}
.eb-svc-intro__img:hover img{transform:scale(1.03)}

.eb-svc-intro__title{
    font-family:var(--f-head);
    font-size:clamp(22px,2.8vw,32px);
    font-weight:600;color:var(--charcoal);
    line-height:1.2;margin-bottom:20px;
}
.eb-svc-intro__title span{color:var(--gold)}

.eb-svc-intro__lead{
    font-family:var(--f-body);
    font-size:clamp(16px,1.7vw,18px);
    font-weight:500;color:var(--charcoal);
    line-height:1.7;margin-bottom:16px;
}
.eb-svc-intro__text{
    font-size:clamp(14px,1.5vw,16px);
    line-height:1.85;color:var(--text);
    margin-bottom:14px;
}

.eb-svc-intro__body{margin-bottom:50px}

/* ── Key Benefits ────────────────────────────────────────── */
.eb-svc-benefits{margin-bottom:50px}

.eb-svc-benefit{
    display:flex;align-items:flex-start;gap:16px;
    background:var(--cream);
    border:1px solid var(--divider);
    border-radius:var(--r-lg);
    padding:22px 20px;
    height:100%;
    transition:all .4s var(--ease);
}
.eb-svc-benefit:hover{
    border-color:transparent;
    box-shadow:var(--sh-md);
    transform:translateY(-3px);
}

.eb-svc-benefit__icon{
    width:48px;height:48px;border-radius:50%;
    background:var(--white);border:2px solid var(--divider);
    display:flex;align-items:center;justify-content:center;
    font-size:20px;color:var(--gold);flex-shrink:0;
    transition:all .3s var(--ease);
}
.eb-svc-benefit:hover .eb-svc-benefit__icon{
    background:var(--gold);color:#fff;
    border-color:var(--gold);box-shadow:var(--sh-gold);
}

.eb-svc-benefit__title{
    font-family:var(--f-head);
    font-size:clamp(15px,1.7vw,17px);
    font-weight:600;color:var(--charcoal);
    margin:0 0 4px;
}
.eb-svc-benefit__text{
    font-size:clamp(13px,1.3vw,14px);
    line-height:1.7;color:var(--text);margin:0;
}

/* ── Project Gallery ─────────────────────────────────────── */
.eb-svc-gallery{margin-bottom:20px}

.eb-svc-gallery__swiper{overflow:hidden;border-radius:var(--r-lg)}
.eb-svc-gallery__swiper .swiper-slide{padding:4px}

.eb-svc-gallery__item{
    position:relative;border-radius:var(--r-md);
    overflow:hidden;cursor:pointer;
}
.eb-svc-gallery__item img{
    width:100%;aspect-ratio:4/3;object-fit:cover;
    display:block;transition:transform .5s var(--ease);
}
.eb-svc-gallery__hover{
    position:absolute;inset:0;
    background:rgba(31,53,39,.50);
    display:flex;align-items:center;justify-content:center;
    opacity:0;transition:opacity .35s var(--ease);
}
.eb-svc-gallery__hover i{
    color:#fff;font-size:28px;
    transform:scale(.7);transition:transform .35s var(--ease);
}
.eb-svc-gallery__item:hover img{transform:scale(1.06)}
.eb-svc-gallery__item:hover .eb-svc-gallery__hover{opacity:1}
.eb-svc-gallery__item:hover .eb-svc-gallery__hover i{transform:scale(1)}

/* Gallery swiper arrows */
.eb-svc-gallery__swiper .swiper-button-next,
.eb-svc-gallery__swiper .swiper-button-prev{
    width:38px;height:38px;border-radius:50%;
    background:var(--gold);color:#fff;
    box-shadow:var(--sh-gold);transition:all .3s;
}
.eb-svc-gallery__swiper .swiper-button-next::after,
.eb-svc-gallery__swiper .swiper-button-prev::after{font-size:13px;font-weight:700}
.eb-svc-gallery__swiper .swiper-button-next:hover,
.eb-svc-gallery__swiper .swiper-button-prev:hover{background:var(--gold-h);transform:scale(1.08)}

/* ── Lightbox ────────────────────────────────────────────── */
.eb-lightbox{
    position:fixed;inset:0;z-index:9999;
    display:flex;align-items:center;justify-content:center;
    opacity:0;visibility:hidden;
    transition:opacity .35s var(--ease),visibility .35s;
}
.eb-lightbox.active{opacity:1;visibility:visible}

.eb-lightbox__overlay{
    position:absolute;inset:0;
    background:rgba(20,20,20,.92);
    backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);
}

.eb-lightbox__content{
    position:relative;z-index:2;
    max-width:90vw;max-height:85vh;
    display:flex;align-items:center;justify-content:center;
}
.eb-lightbox__img{
    max-width:100%;max-height:85vh;
    border-radius:var(--r-md);
    box-shadow:0 20px 60px rgba(0,0,0,.40);
    object-fit:contain;
    transform:scale(.92);
    transition:transform .4s var(--ease);
}
.eb-lightbox.active .eb-lightbox__img{transform:scale(1)}

.eb-lightbox__close{
    position:absolute;top:20px;right:24px;z-index:3;
    width:48px;height:48px;border-radius:50%;
    background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);
    color:#fff;font-size:20px;cursor:pointer;
    display:flex;align-items:center;justify-content:center;
    transition:all .3s var(--ease);
}
.eb-lightbox__close:hover{background:var(--gold);border-color:var(--gold)}

.eb-lightbox__prev,
.eb-lightbox__next{
    position:absolute;top:50%;transform:translateY(-50%);z-index:3;
    width:52px;height:52px;border-radius:50%;
    background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.10);
    color:#fff;font-size:18px;cursor:pointer;
    display:flex;align-items:center;justify-content:center;
    transition:all .3s var(--ease);
}
.eb-lightbox__prev{left:20px}
.eb-lightbox__next{right:20px}
.eb-lightbox__prev:hover,
.eb-lightbox__next:hover{background:var(--gold);border-color:var(--gold)}

.eb-lightbox__counter{
    position:absolute;bottom:24px;left:50%;transform:translateX(-50%);
    z-index:3;font-family:var(--f-body);
    font-size:13px;font-weight:600;
    color:rgba(255,255,255,.45);
    letter-spacing:.06em;
}

@media(max-width:767.98px){
    .eb-lightbox__prev{left:10px;width:42px;height:42px;font-size:15px}
    .eb-lightbox__next{right:10px;width:42px;height:42px;font-size:15px}
    .eb-lightbox__close{top:14px;right:14px;width:40px;height:40px;font-size:17px}
}

/* ── Sidebar ─────────────────────────────────────────────── */
.eb-sidebar{position:sticky;top:120px}

.eb-sidebar__widget{
    background:var(--cream);
    border:1px solid var(--divider);
    border-radius:var(--r-xl);
    padding:28px 24px;
    margin-bottom:24px;
}

.eb-sidebar__title{
    font-family:var(--f-head);
    font-size:18px;font-weight:600;
    color:var(--charcoal);
    margin-bottom:18px;padding-bottom:12px;
    border-bottom:2px solid var(--gold);
    display:inline-block;
}

.eb-sidebar__nav{list-style:none;padding:0;margin:0}
.eb-sidebar__nav li{margin-bottom:4px}
.eb-sidebar__nav a{
    display:flex;align-items:center;gap:10px;
    font-family:var(--f-body);font-size:15px;font-weight:500;
    color:var(--text);padding:12px 16px;
    border-radius:var(--r-sm);
    transition:all .25s var(--ease);
}
.eb-sidebar__nav a i{
    font-size:10px;color:var(--text-lt);
    transition:all .25s;
}
.eb-sidebar__nav li:hover a,
.eb-sidebar__nav li.active a{
    background:var(--forest);color:var(--cream);
}
.eb-sidebar__nav li:hover a i,
.eb-sidebar__nav li.active a i{color:var(--gold)}

/* CTA Card */
.eb-sidebar__cta{
    background:var(--forest);
    border-radius:var(--r-xl);
    padding:32px 24px;
    text-align:center;
    margin-bottom:24px;
}
.eb-sidebar__cta-icon{
    width:60px;height:60px;border-radius:50%;
    background:rgba(182,140,58,.15);border:2px solid rgba(182,140,58,.20);
    color:var(--gold);font-size:24px;
    display:flex;align-items:center;justify-content:center;
    margin:0 auto 16px;
}
.eb-sidebar__cta-label{
    font-size:14px;color:rgba(244,241,234,.50);
    margin-bottom:4px;
}
.eb-sidebar__cta-phone{
    font-family:var(--f-head);
    font-size:clamp(22px,2.5vw,26px);
    font-weight:700;margin-bottom:4px;
}
.eb-sidebar__cta-phone a{color:var(--gold);transition:color .25s}
.eb-sidebar__cta-phone a:hover{color:var(--cream)}
.eb-sidebar__cta-hrs{
    font-size:12px;font-weight:600;
    letter-spacing:.06em;text-transform:uppercase;
    color:rgba(244,241,234,.35);margin-bottom:20px;
}

/* Trust Box */
.eb-sidebar__trust{
    background:var(--cream);
    border:1px solid var(--divider);
    border-radius:var(--r-xl);
    padding:22px 24px;
}
.eb-sidebar__trust-item{
    display:flex;align-items:center;gap:10px;
    font-family:var(--f-body);
    font-size:14px;font-weight:600;
    color:var(--charcoal);
    padding:10px 0;
    border-bottom:1px solid var(--divider);
}
.eb-sidebar__trust-item:last-child{border-bottom:none}
.eb-sidebar__trust-item i{
    color:var(--gold);font-size:16px;width:20px;text-align:center;
}

@media(max-width:991.98px){
    .eb-sidebar{position:static;margin-top:20px}
}

/* FLOAT CTA */
.eb-float-w {
    position: fixed;
    bottom: 95px;
    right: 30px;
    z-index: 1040;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 6px 24px rgba(182, 140, 58, .30);
    font-size: 20px;
    transition: all var(--t) var(--ease);
    text-decoration: none
}

.eb-float-w:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 36px rgba(182, 140, 58, .42);
    background: var(--gold-h);
    color: #fff
}

.eb-float-w::before {
    content: '';
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    opacity: 0;
    animation: fp 2.5s ease-out infinite
}
