:root {
    --site-header-height: 86px;
    --site-header-compact-height: 62px;
    --site-text: #101828;
    --site-muted: #475467;
    --site-border: rgba(16, 24, 40, .10);
    --home-nav-emerald: #0b3d31;
    --home-nav-emerald-deep: #05241d;
    --home-nav-gold: #d7ad2f;
    --home-nav-gold-light: #f1cf58;
}

body:has(.home-banner-section),
body.header-scrolled:has(.home-banner-section),
body:has(.home-banner-section):has(.site-header.is-scrolled) {
    padding-top: 0;
}

body:has(.home-banner-section) .site-header {
    background: linear-gradient(180deg, rgba(5, 24, 20, .82), rgba(5, 24, 20, .18)) !important;
    border-bottom: 1px solid rgba(215, 173, 47, .12);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

body:has(.home-banner-section) .site-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 34px;
    height: 4px;
    background: var(--home-nav-gold);
}

body:has(.home-banner-section) .site-header.is-scrolled {
    background: var(--home-nav-emerald);
    border-bottom-color: rgba(215, 173, 47, .18);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .20);
    backdrop-filter: blur(14px);
}

body:has(.home-banner-section) .header-inner,
body:has(.home-banner-section) .site-header.is-scrolled .header-inner {
    min-height: var(--site-header-height);
}

body:has(.home-banner-section) .site-header .brand-logo,
body:has(.home-banner-section) .site-header.is-scrolled .brand-logo {
    max-width: 250px;
    height: 64px;
}

body:has(.home-banner-section) .site-header .brand-mark,
body:has(.home-banner-section) .site-header.is-scrolled .brand-mark {
    width: 48px;
    height: 48px;
    color: #ffffff;
    background: var(--home-nav-gold);
    border-radius: 8px;
    font-size: 19px;
}

body:has(.home-banner-section) .nav-link,
body:has(.home-banner-section) .nav-dropdown-toggle,
body:has(.home-banner-section) .site-header.is-scrolled .nav-link,
body:has(.home-banner-section) .site-header.is-scrolled .nav-dropdown-toggle {
    min-height: 40px;
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
    font-weight: 600;
}

body:has(.home-banner-section) .nav-link:hover,
body:has(.home-banner-section) .nav-link.active,
body:has(.home-banner-section) .nav-dropdown-toggle.active,
body:has(.home-banner-section) .nav-dropdown:hover .nav-dropdown-toggle,
body:has(.home-banner-section) .nav-dropdown.is-hovered .nav-dropdown-toggle {
    color: var(--home-nav-gold-light);
}

body:has(.home-banner-section) .nav-link.active,
body:has(.home-banner-section) .nav-dropdown-toggle.active {
    position: relative;
}

body:has(.home-banner-section) .nav-link.active::after,
body:has(.home-banner-section) .nav-dropdown-toggle.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    background: var(--home-nav-gold);
}

body:has(.home-banner-section) .header-contact-btn,
body:has(.home-banner-section) .site-header.is-scrolled .header-contact-btn {
    min-height: 38px;
    padding: 10px 16px;
    color: var(--home-nav-emerald-deep);
    background: linear-gradient(135deg, var(--home-nav-gold-light), #bd9414);
    border-color: transparent;
    border-radius: 999px;
    font-size: 15px;

    box-shadow: 0 18px 34px rgba(215, 173, 47, .28);
}

body:has(.home-banner-section) .header-contact-btn i {
    color:#00552f;
}

@media (max-width: 900px) {
    body:has(.home-banner-section) {
        --site-header-height: 72px;
    }

    body:has(.home-banner-section) .site-header .brand-logo,
    body:has(.home-banner-section) .site-header.is-scrolled .brand-logo {
        max-width: 150px;
        height: 46px;
    }

    body:has(.home-banner-section) .site-header .brand-mark,
    body:has(.home-banner-section) .site-header.is-scrolled .brand-mark {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    body:has(.home-banner-section) .main-nav {
        top: var(--site-header-height);
        background: var(--home-nav-emerald);
        border-color: rgba(215, 173, 47, .20);
    }

    body:has(.home-banner-section) .main-nav.open {
        opacity: 1;
    }

    body:has(.home-banner-section) .header-contact-btn,
    body:has(.home-banner-section) .site-header.is-scrolled .header-contact-btn {
        width: 42px;
        min-height: 42px;
        padding: 0;
    }
}

* {
    box-sizing: border-box;
}

.container-fluid {
    max-width: 1400px;
    margin-inline: auto;
}

html {
    scroll-padding-top: var(--site-header-height);
    overflow-x: hidden;
}

body {
    padding-top: var(--site-header-height);
    color: var(--site-text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

body.header-scrolled,
body:has(.site-header.is-scrolled) {
    padding-top: var(--site-header-compact-height);
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -340px;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    overflow-y: auto;
    transition: .35s ease;
    box-shadow: 0 15px 60px rgba(0, 0, 0, .15);
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    left: 0;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 9998;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-logo img {
    height: 26px;
}

.sidebar-close {
    border: none;
    background: none;
    cursor: pointer;
}

.mobile-menu {
    padding: 10px 0;
}

.mobile-menu>a,
.mobile-dropdown-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 22px;
    color: #222;
    border: none;
    background: none;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #f3f3f3;
    cursor: pointer;
}

.mobile-dropdown-content {
    display: none;
    background: #fafafa;
}

.mobile-dropdown.active .mobile-dropdown-content {
    display: block;
}

.mobile-dropdown.active .material-symbols-outlined {
    transform: rotate(180deg);
}

.mobile-dropdown-content a {
    display: block;
    padding: 13px 40px;
    color: #555;
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid #eee;
}

.mobile-dropdown-content a:hover {
    color: #0d6efd;
}

.view-all {
    font-weight: 600;
    color: #0d6efd !important;
}

.mobile-contact {
    margin-top: auto;
    padding: 20px;
    border-top: 1px solid #eee;
}

.mobile-contact a {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
}

@media(min-width:992px) {

    .mobile-sidebar,
    .mobile-overlay {
        display: none;
    }

}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid var(--site-border);
    box-shadow: 0 8px 24px rgba(16, 24, 40, .06);
    transition: box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
    border-color: rgba(236, 30, 36, .16);
    box-shadow: 0 8px 22px rgba(16, 24, 40, .10);
}

.header-inner {
    min-height: var(--site-header-height);
    display: grid;
    grid-template-columns: minmax(180px, .8fr) minmax(360px, 1.2fr) auto;
    align-items: center;
    gap: clamp(14px, 2vw, 28px);
    padding-inline: clamp(14px, 3vw, 44px);
    transition: min-height .25s ease;
}

.site-header.is-scrolled .header-inner {
    min-height: var(--site-header-compact-height);
}

.site-header .brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    color: var(--site-text);
    text-decoration: none;
}

.site-header .brand-logo {
    width: auto;
    max-width: 390px;
    height: 64px;
    object-fit: contain;
    transition: height .25s ease, max-width .25s ease;
}

.site-header.is-scrolled .brand-logo {
    max-width: 230px;
    height: 42px;
}

.site-header .brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 800;
    transition: width .25s ease, height .25s ease, font-size .25s ease;
}

.site-header.is-scrolled .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 15px;
}

.main-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 1.6vw, 24px);
}

.nav-link,
.nav-dropdown-toggle {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 0;
    color: var(--site-muted);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: color .2s ease;
}

.site-header.is-scrolled .nav-link,
.site-header.is-scrolled .nav-dropdown-toggle {
    min-height: 30px;
    font-size: 13px;
}

.nav-link:hover,
.nav-link.active,
.nav-dropdown-toggle.active,
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.is-hovered .nav-dropdown-toggle {
    color: var(--site-red);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle .material-symbols-outlined {
    font-size: 18px;
    line-height: 1;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    width: min(560px, calc(100vw - 36px));
    padding: 12px;
    display: grid;
    gap: 6px;
    visibility: hidden;
    opacity: 0;
    transform: translate(-50%, 8px);
    background: #ffffff;
    border: 1px solid rgba(236, 30, 36, .14);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(16, 24, 40, .14);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-hovered .nav-dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

.solution-category {
    position: relative;
}

.nav-mega-menu {
    grid-template-columns: minmax(170px, .72fr) minmax(0, 1fr);
    gap: 12px;
    min-width: 500px;
    max-width: 600px;
}

.nav-mega-intro {
    padding: 14px;
    background: #fff7f7;
    border: 1px solid rgba(236, 30, 36, .10);
    border-radius: 8px;
}

.nav-mega-intro strong {
    display: block;
    margin-bottom: 12px;
    color: #06254b;
    font-size: 13px;
    font-weight: 900;
}

.nav-mega-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.nav-mega-tags a {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    color: var(--site-red);
    background: #ffffff;
    border: 1px solid rgba(236, 30, 36, .14);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 850;
    line-height: 1.2;
    text-decoration: none;
}

.nav-mega-list {
    display: grid;
    gap: 5px;
}

.nav-mega-list a {
    display: grid;
    gap: 4px;
    padding: 10px 12px;
    color: var(--site-text);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.25;
    text-decoration: none;
}

.nav-mega-list a:hover,
.nav-mega-tags a:hover {
    color: var(--site-red);
    background: #fff0f1;
}

.nav-mega-list small {
    color: #667085;
    font-size: 11px;
    font-weight: 700;
}

.nav-simple-menu {
    left: 0;
    width: 250px;
    transform: translateY(8px);
}

.nav-dropdown:hover .nav-simple-menu,
.nav-dropdown.is-hovered .nav-simple-menu {
    transform: translateY(0);
}

.nav-simple-menu a {
    display: grid;
    gap: 4px;
    padding: 11px 12px;
    color: var(--site-text);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.25;
    text-decoration: none;
}

.nav-simple-menu a:hover {
    color: var(--site-red);
    background: #fff0f1;
}

.nav-simple-menu small {
    color: #667085;
    font-size: 11px;
    font-weight: 700;
}

.solution-category-link,
.solution-submenu a,
.dropdown-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    color: var(--site-text);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.solution-category-link:hover,
.solution-submenu a:hover,
.dropdown-all:hover {
    color: var(--site-red);
    background: #fff0f1;
}

.solution-submenu {
    display: grid;
    gap: 4px;
    padding-left: 12px;
}

.dropdown-all {
    grid-column: 1 / -1;
    margin-top: 4px;
    color: var(--site-red);
    background: #fff7f7;
}

.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
}

.header-contact-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 16px;
    color: #ffffff;
    background: var(--site-red);
    border: 1px solid var(--site-red);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: min-height .25s ease, padding .25s ease, transform .2s ease, background .2s ease;
}

.site-header.is-scrolled .header-contact-btn {
    min-height: 34px;
    padding: 7px 12px;
    font-size: 13px;
}

.header-contact-btn:hover {
    color: #ffffff;
    background: #c9181e;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    place-items: center;
    justify-self: end;
    color: var(--site-red);
    background: #ffffff;
    border: 1px solid rgba(236, 30, 36, .20);
    border-radius: 6px;
}

.menu-toggle .material-symbols-outlined {
    font-size: 24px;
}

.inner-breadcrumb {
    position: relative;
    min-height: clamp(260px, 34vw, 420px);
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background-color: #101828;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.inner-breadcrumb::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: inherit;
    transform: scale(1.04);
}

.inner-breadcrumb-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(16, 24, 40, .88) 0%, rgba(16, 24, 40, .68) 48%, rgba(236, 30, 36, .42) 100%),
        linear-gradient(180deg, rgba(16, 24, 40, .24), rgba(16, 24, 40, .72));
}

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

.inner-breadcrumb-content {
    max-width: 850px;
    padding: 70px 0;
    color: #ffffff;
}

.inner-breadcrumb-content h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(40px, 6vw, 78px);
    font-weight: 900;
    line-height: 1.02;
    text-transform: capitalize;
}

.inner-breadcrumb-content nav {
    width: fit-content;
    max-width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    padding: 10px 16px;
    color: rgba(255, 255, 255, .86);
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    backdrop-filter: blur(12px);
}

.inner-breadcrumb-content nav a,
.inner-breadcrumb-content nav span {
    color: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    text-decoration: none;
}

.inner-breadcrumb-content nav a:hover {
    color: #ffffff;
}

.inner-breadcrumb-content nav i {
    color: rgba(255, 255, 255, .74);
    font-size: 16px;
}

@media (max-width: 1040px) {
    .header-inner {
        grid-template-columns: minmax(150px, .65fr) minmax(320px, 1fr) auto;
        gap: 14px;
    }

    .site-header .brand-logo {
        max-width: 170px;
        height: 54px;
    }

    .site-header.is-scrolled .brand-logo {
        max-width: 124px;
        height: 38px;
    }

    .main-nav {
        gap: 14px;
    }
}

@media (max-width: 900px) {
    :root {
        --site-header-height: 72px;
        --site-header-compact-height: 60px;
    }

    .header-inner {
        grid-template-columns: 1fr auto auto;
        gap: 10px;
        padding-inline: 12px;
    }

    .site-header .brand-logo {
        max-width: 142px;
        height: 46px;
    }

    .site-header.is-scrolled .brand-logo {
        max-width: 112px;
        height: 34px;
    }

    .menu-toggle {
        display: grid;
    }

    .main-nav {
        position: fixed;
        top: var(--site-header-height);
        left: 12px;
        right: 12px;
        max-height: calc(100vh - var(--site-header-height) - 18px);
        padding: 12px;
        display: grid;
        justify-content: stretch;
        gap: 4px;
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-8px);
        background: #ffffff;
        border: 1px solid rgba(236, 30, 36, .14);
        border-radius: 8px;
        box-shadow: 0 18px 45px rgba(16, 24, 40, .16);
        transition: opacity .18s ease, transform .18s ease, visibility .18s ease, top .25s ease;
    }

    .site-header.is-scrolled .main-nav {
        top: var(--site-header-compact-height);
    }

    .main-nav.open {
        visibility: visible;
        opacity: 0;
        transform: translateY(0);
    }

    .nav-link,
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        min-height: 40px;
        padding: 10px 12px;
        font-size: 14px;
    }

    .nav-dropdown-menu {
        position: static;
        width: 100%;
        min-width: 0;
        max-width: none;
        margin-top: 4px;
        display: none;
        visibility: visible;
        opacity: 1;
        transform: none;
        box-shadow: none;
        border-radius: 6px;
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        display: grid;
    }

    .nav-dropdown.is-open .nav-dropdown-toggle .material-symbols-outlined {
        transform: rotate(180deg);
    }

    .nav-simple-menu {
        width: 100%;
    }

    .nav-mega-menu {
        grid-template-columns: 1fr;
    }

    .header-contact-btn span {
        display: none;
    }

    .site-header.is-scrolled .header-contact-btn {
        width: 36px;
        min-height: 36px;
        padding: 0;
    }
}

@media (max-width: 520px) {
    .site-header .brand-logo {
        max-width: 122px;
        height: 42px;
    }

    .site-header.is-scrolled .brand-logo {
        max-width: 96px;
        height: 32px;
    }

    .inner-breadcrumb {
        min-height: 250px;
    }

    .inner-breadcrumb-content {
        padding: 54px 0;
    }

    .inner-breadcrumb-content h1 {
        font-size: 38px;
    }

    .inner-breadcrumb-content nav {
        margin-top: 18px;
        padding: 9px 12px;
    }
    .faq-section{
        padding: 30px 0px;
    }
}

/*==================================
Hero Section
==================================*/

.hero-section{
    position:relative;
    min-height:auto;
    overflow:hidden;
    background:#061f19;
      height:100vh;
}

.custom-hero-carousel{
    display:block !important;
    position:relative;
    min-height:100vh;
    overflow:hidden;
}

.custom-hero-carousel .hero-slide{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .9s ease, visibility .9s ease;
}

.custom-hero-carousel .hero-slide.is-active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    z-index:2;
}

.hero-slider,
.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item,
.hero-slide{
    min-height:100vh;
}

.hero-slider,
.hero-slider .owl-stage-outer,
.hero-slider .owl-item{
    overflow:hidden !important;
}

.hero-slide{
    position:relative;
  height:100vh;
    overflow:hidden;
    isolation:isolate;
}

.hero-bg{
    position:absolute;
    inset:0;
      height:100vh;
    background-size:cover;
    background-position:center;
    transform:scale(1.02);
    transition:transform 6.5s ease;
    will-change:transform;
    z-index:-2;
}

.hero-slider .owl-item.active .hero-bg{
    transform:scale(1.16);
}

.custom-hero-carousel .hero-slide.is-active .hero-bg{
    transform:scale(1.16);
}

.hero-overlay{
      height:100vh;
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 50% 46%, rgba(255,255,255,.10), transparent 32%),
        linear-gradient(90deg, rgba(1, 24, 18, 0.628), rgba(8, 38, 30, 0.483) 50%, rgba(1, 24, 18, 0.651)),
        linear-gradient(180deg, rgba(3, 18, 15, .78), rgba(3, 32, 25, .82));
    z-index:-1;
}

.hero-content{
    position:relative;
    z-index:10;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    height:100vh;
    padding:calc(var(--site-header-height) + 46px) 16px 96px;
    text-align:center;
    color:#fff;
    max-width:1080px;
    margin:auto;
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 26px;
    border:1px solid rgba(216,175,55,.5);
    color:#d8af37;
    border-radius:50px;
    letter-spacing:5px;

    text-transform:uppercase;
    font-size:12px;
    font-weight:600;
    margin-bottom:32px;
    backdrop-filter:blur(10px);
    background:rgba(216,175,55,.08);
}

.hero-content h1{
    font-size:54px;
    font-family:"Cormorant Garamond",serif;
    line-height:1.05;
    font-weight:500;
    margin:0 0 24px;
    max-width:1120px;
    color:#fff;
}

.hero-content h1 span{
    display:block;
    color:#d8af37;
    font-style:italic;
    font-weight:400;
    margin-top:8px;
}

.hero-content p{
    font-size:18px;
    color:rgba(255,255,255,.78);
    line-height:1.7;
    max-width:780px;
    margin:0 auto;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
    margin-top:42px;
}

.btn-gold{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:56px;
    min-width:220px;
    padding:10px 36px;
    border:1px solid transparent;
    border-radius:999px;
    background:linear-gradient(135deg, #f0cc54, #c99c18);
    color:#08261f;
    font-size:17px;
    text-decoration:none;
    box-shadow:0 18px 32px rgba(216,175,55,.22);
    transition:.4s;
}

.btn-gold:hover{
    background:#fff;
    color:#08261f;
}

.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:64px;
    min-width:220px;
    padding:17px 36px;
    border:1px solid #d8af37;
    color:#fff;
    border-radius:999px;
    font-size:17px;
    font-weight:500;
    text-decoration:none;
    background:rgba(255,255,255,.03);
    backdrop-filter:blur(6px);
    transition:.4s;
}

.btn-outline:hover{
    background:#d8af37;
    color:#08261f;
}

.hero-custom-dots{
    position:absolute;
    left:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    transform:translateX(-50%);
    bottom:72px;
    z-index:5;
}

.hero-custom-dot{
    display:block;
    width:20px;
    height:7px;
    padding:0;
    border:0;
    background:#fff;
    border-radius:999px;
    opacity:.38;
    cursor:pointer;
    transition:.4s;
}

.hero-custom-dot.is-active{
    width:50px;
    background:#d8af37;
    opacity:1;
}

/*==================================
About Section
==================================*/

.home-about-section {
    position: relative;
    overflow: hidden;
    padding:30px 0px;
    background: #fbfaf7;
}

.home-about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 18%, rgba(216, 175, 55, .10), transparent 26%),
        radial-gradient(circle at 90% 12%, rgba(12, 65, 51, .06), transparent 24%);
    pointer-events: none;
}

.home-about-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(420px, .92fr) minmax(0, 1fr);
    align-items: center !important;
    gap: 72px;
    padding-inline: clamp(24px, 5vw, 86px);
}

.home-about-media {
    position: relative;
    min-height: 680px;
}

.home-about-main-image {
    position: absolute;
    inset: 34px 58px 32px 34px;
    overflow: hidden;
    border: 1px solid rgba(216, 175, 55, .68);
    border-radius: 8px 28px 8px 28px;
    background: #08261f;
    box-shadow: 0 32px 70px rgba(7, 31, 25, .16);
}

.home-about-main-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(1, 20, 16, .76), rgba(1, 20, 16, .18) 54%, rgba(251, 250, 247, .32)),
        linear-gradient(180deg, rgba(216, 175, 55, .24), transparent 34%, rgba(2, 20, 16, .42));
}

.home-about-main-image img,
.home-about-small-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.home-about-small-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(310px, 44%);
    aspect-ratio: 1.04;
    overflow: hidden;
    border: 5px solid #fbfaf7;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 22px 46px rgba(6, 31, 25, .20);
}

.home-about-experience {
    position: absolute;
    top: 0;
    left: 0;
    width: 168px;
    height: 168px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, .78);
    background: #0a4739;
    border: 1px solid rgba(216, 175, 55, .70);
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 20px 44px rgba(8, 48, 38, .18);
    z-index: 2;
}

.home-about-experience strong {
    display: block;
    color: #d8af37;
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    font-weight: 600;
    line-height: .9;
}

.home-about-experience span {
    max-width: 88px;
    display: block;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 5px;
    line-height: 1.5;
    text-transform: uppercase;
}


.home-about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
    color: #d8af37;
    font-family: "Cormorant Garamond", serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 9px;
    text-transform: uppercase;
}

.home-about-kicker::before,
.home-about-kicker::after {
    content: "";
    width: 64px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(216, 175, 55, .7));
}

.home-about-kicker::after {
    background: linear-gradient(90deg, rgba(216, 175, 55, .7), transparent);
}

.home-about-content h2 {
    margin: 0 0 28px;
    color: #0b3d31;
    font-family: "Cormorant Garamond", serif;
    font-size: 46px;
    font-weight: 500;
    line-height: .98;
}

.home-about-content h2 em {
    color: #d8af37;
    font-style: italic;
    font-weight: 500;
}

.home-about-content p {
    margin: 0 0 22px;
    color: rgba(27, 67, 57, .72);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
}

.home-about-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 54px;
}

.home-about-stats article {
    min-height: 100px;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 14px 10px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(216, 175, 55, .24);
    border-radius: 10px;
    box-shadow: 0 18px 44px rgba(8, 48, 38, .06);
}

.home-about-stat-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    display: grid;
    place-items: center;
    color: #d8af37;
    background: #064436;
    border-radius: 50%;
    font-size: 29px;
}

.home-about-stats strong {
    display: block;
    color: #0b3d31;
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}

.home-about-stats article span:not(.home-about-stat-icon) {
    display: block;
    margin-top: 7px;
    color: rgba(35, 72, 64, .55);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.35;
    text-transform: uppercase;
}

@media (max-width: 1100px) {
    .home-about-wrap {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .home-about-media {
        min-height: 620px;
    }

    .home-about-content {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .home-about-section {
        padding: 64px 0 76px;
    }

    .home-about-wrap {
        padding-inline: 18px;
        gap: 34px;
    }

    .home-about-media {
        min-height: 470px;
    }

    .home-about-main-image {
        inset: 44px 12px 64px 12px;
        border-radius: 8px 22px 8px 22px;
    }

    .home-about-small-image {
        width: 48%;
        right: 6px;
        border-radius: 18px;
    }

    .home-about-experience {
        width: 124px;
        height: 124px;
    }

    .home-about-experience strong {
        font-size: 31px;
    }

    .home-about-experience span {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .home-about-kicker {
        gap: 10px;
        margin-bottom: 20px;
        font-size: 14px;
        letter-spacing: 6px;
    }

    .home-about-kicker::before,
    .home-about-kicker::after {
        width: 38px;
    }

    .home-about-content h2 {
        font-size: 43px;
    }

    .home-about-content p {
        font-size: 16px;
    }

    .home-about-stats {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 34px;
    }

    .home-about-stats article {
        min-height: 96px;
        padding: 18px 20px;
        border-radius: 16px;
    }
    .hero-overlay{
        height: auto !important;
    }
}

/*==================================
Events Section
==================================*/

.home-moments-section {
    position: relative;
    overflow: hidden;
    padding: 40px 0px;
    background: white;

}



.home-moments-head {
    margin: 0 auto 64px;
    text-align: center;
}



.home-moments-head h2 {
    margin: 0;
    color: #0b3d31;
    font-family: "Cormorant Garamond", serif;
    font-size: 56px;
    font-weight: 500;
    line-height: 1;
}

.home-moments-head h2 em {
    color: #d8af37;
    font-style: italic;
    font-weight: 500;
}

.home-moments-list {
    display: grid;
    gap: 20px;
}

.home-moment-row {
    display: grid;
    grid-template-columns: minmax(360px, .93fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(48px, 7vw, 92px);
}

.home-moment-row.is-reverse {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .93fr);
}

.home-moment-row.is-reverse .home-moment-media {
    order: 2;
}

.home-moment-media {
    position: relative;
    min-height: 350px;
    overflow: hidden;
    border-radius: 18px;
    background: #08382e;
    box-shadow: 0 28px 48px rgba(12, 47, 39, .14);
}

.home-moment-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 30, 24, .10), rgba(3, 30, 24, .36));
}

.home-moment-media img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    display: block;
    object-fit: cover;
}

.home-moment-media span {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
    min-width: 42px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d8af37;
    background: rgba(6, 61, 49, .88);
    border: 1px solid rgba(216, 175, 55, .48);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.home-moment-copy {
    max-width: 560px;
}

.home-moment-row.is-reverse .home-moment-copy {
    justify-self: start;
}

.home-moment-copy > span {
    display: block;
    margin-bottom: 16px;
    color: #d8af37;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.home-moment-copy h3 {
    margin: 0 0 22px;
    color: #0b3d31;
    font-family: "Cormorant Garamond", serif;
    font-size: 46px;
    font-weight: 500;
    line-height: 1.05;
}

.home-moment-copy p {
    max-width: 520px;
    margin: 0 0 26px;
    color: rgba(22, 61, 52, .70);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
}

.home-moment-copy a {
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 9px;
    color: #062f27;
    border-bottom: 1px solid #d8af37;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.home-moment-copy a i {
    color: #d8af37;
    font-size: 15px;
    transition: transform .25s ease;
}

.home-moment-copy a:hover i {
    transform: translate(3px, -3px);
}

@media (max-width: 900px) {
    .home-moments-section {
        padding: 68px 0 78px;
    }

    .home-moments-head {
        margin-bottom: 42px;
    }

    .home-moments-head h2 {
        font-size: 42px;
    }

    .home-moments-list {
        gap: 52px;
    }

    .home-moment-row,
    .home-moment-row.is-reverse {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .home-moment-row.is-reverse .home-moment-media {
        order: 0;
    }

    .home-moment-media,
    .home-moment-media img {
        min-height: 260px;
    }

    .home-moment-copy {
        max-width: none;
    }

    .home-moment-copy h3 {
        font-size: 36px;
    }
}

/*==================================
Luxury Services Section
==================================*/

.home-service-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0px;
    background:
        radial-gradient(circle at 50% 0%, rgba(216, 175, 55, .10), transparent 26%),
        linear-gradient(180deg, #0b3d31 0%, #062d25 100%);
}



.home-service-head {
    max-width: 780px;
    margin: 0 auto 70px;
    text-align: center;
}

.home-service-head > span {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 26px;
    color: #d8af37;
    font-family: "Cormorant Garamond", serif;
    font-size: 13px;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.home-service-head > span::before,
.home-service-head > span::after {
    content: "";
    width: 48px;
    height: 1px;
    background: rgba(216, 175, 55, .55);
}

.home-service-head h2 {
    margin: 0;
    color: #fffdf7;
    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    font-weight: 500;
    line-height: .96;
}

.home-service-head h2 em {
    display: block;
    color: #d8af37;
    font-style: italic;
    font-weight: 500;
}

.home-service-head p {
    max-width: 720px;
    margin: 28px auto 0;
    color: rgba(255, 255, 255, .68);
    font-size: 15px;

    line-height: 1.7;
}

.home-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.home-service-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 34px 34px 32px;
    color: #ffffff;
    background: linear-gradient(90deg, #013220, var(--home-nav-emerald));
    border: 1px solid rgba(216, 175, 55, .42);
    border-radius: 20px;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
}

.home-service-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 34px;
    color: #d8af37;
    border: 1px solid rgba(216, 175, 55, .72);
    border-radius: 50%;
    font-size: 27px;
}

.home-service-card h3 {
    margin: 0;
    padding-bottom: 18px;
    color: #fffdf7;
    border-bottom: 1px solid rgba(216, 175, 55, .22);
    font-family: "Cormorant Garamond", serif;
    font-size: 29px;
    font-weight: 500;
    line-height: 1.1;
}

.home-service-card p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .66);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.55;
}

@media (max-width: 1000px) {
    .home-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .home-service-section {
        padding: 72px 0 82px;
    }

    .home-service-head {
        margin-bottom: 42px;
    }

    .home-service-head h2 {
        font-size: 42px;
    }

    .home-service-head p {
        font-size: 15px;
    }

    .home-service-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-service-card {
        min-height: 0;
        padding: 28px 26px;
    }
}


/* Responsive */

@media(max-width:992px){

.hero-content h1{

font-size:60px;

}

.hero-content p{

font-size:18px;

}

}


@media(max-width:768px){

.hero-content{

padding:calc(var(--site-header-height) + 32px) 18px 96px;

}

.hero-content h1{

font-size:42px;

}

.hero-buttons{

flex-direction:column;

width:100%;

}

.btn-gold,
.btn-outline{

width:100%;
text-align:center;
min-width:0;

}

.hero-content p{

font-size:16px;

}

}






.home-achievement-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0px;
    color: #ffffff;
       background:linear-gradient(180deg,#0a4335,#06271f);
}

.home-achievement-section::before {
     content:"";
    position:absolute;
    inset:0;
    background-image:
    radial-gradient(circle at center,
    rgba(255,255,255,.03) 0,
    rgba(255,255,255,.03) 30%,
    transparent 31%);
    background-size:180px 180px;
    opacity:.4;
}

.home-achievement-wrap {
    position: relative;
    z-index: 1;
    padding-inline: clamp(22px, 5vw, 90px);
}

.home-achievement-head {
   text-align: center;
    margin-bottom: clamp(44px, 5vw, 72px);
    margin: auto;
}

.home-achievement-head span {
    
    margin-bottom: 22px;
    color: gold;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .26em;
    text-transform: uppercase;
}

.home-achievement-head h2 {
    max-width: 760px;
    margin: 0;
    color: #ffffff;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0;
}

.home-achievement-head h2 span {
    display: inline;
    margin: 0;
    color: #ff4850;
    font-size: inherit;
    letter-spacing: 0;
}

.home-achievement-head p {
    max-width: 620px;
    margin: 0;
    color: rgba(242, 242, 242, 0.72);
    font-size: 17px;

    line-height: 1.55;
}

.home-achievement-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    background: rgb(254, 254, 254);
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 22px;
}

.home-achievement-card {
    min-height: 200px;
    display: grid;
    align-content: center;
    gap: 18px;
    padding: clamp(26px, 3vw, 48px);
    border-right: 1px solid rgba(255, 255, 255, .16);
}

.home-achievement-card:last-child {
    border-right: 0;
}

.home-achievement-card strong {
    display: block;
    color: #E2B048;
    font-size: 3.4rem;
    font-weight: 900;
    line-height: .9;
}

.home-achievement-card strong span {
    color: #00552f;
}

.home-achievement-card p {
    max-width: 210px;
    margin: 0;
    color: rgba(0, 27, 16, 0.979);
    font-size: clamp(12px, .9vw, 15px);
    font-weight: 900;
    letter-spacing: .28em;
    line-height: 1.45;
    text-transform: uppercase;
}

@media (max-width: 1080px) {
    .home-achievement-head {
        grid-template-columns: 1fr;
    }

    .home-achievement-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-achievement-card:nth-child(3n) {
        border-right: 0;
    }
}

@media (max-width: 720px) {
    .home-achievement-section {
        padding:30px 0;
    }

    .home-achievement-head h2 {
        font-size: 38px;
    }

    .home-achievement-head p {
        font-size: 16px;
    }

    .home-achievement-grid {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .home-achievement-card,
    .home-achievement-card:nth-child(3n) {
        min-height: 150px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .16);
    }

    .home-achievement-card:last-child {
        border-bottom: 0;
    }
}


.why-choose{
    padding:40px 0;
    background:linear-gradient(180deg,#0a4335,#06271f);
    position:relative;
    overflow:hidden;
}

/* Background Pattern */

.why-choose::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
    radial-gradient(circle at center,
    rgba(255,255,255,.03) 0,
    rgba(255,255,255,.03) 30%,
    transparent 31%);
    background-size:180px 180px;
    opacity:.4;
}

.container{
    width:92%;
    max-width:1500px;
    margin:auto;
    position:relative;
    z-index:2;
}

.section-heading{
    text-align:center;
    margin-bottom:70px;
}

.mini-title{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    color:#caa437;
    letter-spacing:6px;
    font-size:14px;
    margin-bottom:20px;
}

.mini-title span{
    width:70px;
    height:1px;
    background:#b68b25;
}

.section-heading h2{
    color:#fff;
    font-family:'Cormorant Garamond',serif;
    font-size:54px;
    line-height:1.02;
    font-weight:500;
}

.section-heading em{
    color:#d7ab35;
    font-style:italic;
    font-weight:500;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:22px;
}

.feature-card{
    background:rgba(11,62,48,.95);
    border:1px solid rgba(201,166,64,.55);
    border-radius:26px;
    padding:26px;
    display:flex;
    align-items:center;
    gap:18px;
    transition:.35s;
}

.feature-card:hover{
    transform:translateY(-6px);
    border-color:#d8b44a;
    box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.icon{
    width:40px;
    height:40px;
    min-width:40px;
    border-radius:50%;
    background:#d4ac36;
    display:flex;
    justify-content:center;
    align-items:center;
}

.icon i{
    color:#0a4335;
    font-size:17px;
}

.feature-card h4{
    color:#fff;
    font-size:16px;
    line-height:1.45;
    font-weight:400;
}

/* Responsive */

@media(max-width:1300px){

.feature-grid{
grid-template-columns:repeat(3,1fr);
}

.section-heading h2{
font-size:62px;
}

}

@media(max-width:900px){

.feature-grid{
grid-template-columns:repeat(2,1fr);
}

.section-heading h2{
font-size:48px;
}

}

@media(max-width:600px){

.feature-grid{
grid-template-columns:1fr;
}

.section-heading h2{
font-size:38px;
}

.feature-card{
padding:22px;
}

}





.amenities-section{
    padding:40px 0;
    background:white;
}

.container{
    width:92%;
    max-width:1400px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.subtitle{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    color:#c7a542;
    letter-spacing:5px;
    font-size:13px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.subtitle span{
    width:60px;
    height:1px;
    background:#c7a542;
}

.section-title h2{
    font-family:"Cormorant Garamond",serif;
    font-size:46px;
    color:#123f35;
    line-height:1.05;
    font-weight:600;
    margin-bottom:20px;
}

.section-title h2 span{
    color:#d0a72c;
    font-style:italic;
    font-weight:500;
}

.section-title p{
    max-width:760px;
    margin:auto;
    color:#6b7d75;
    font-size:16px;
    line-height:1.7;
}

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

.amenity-card{
    background:#fff;
    border:1px solid #ecdca8;
    border-radius:28px;
    text-align:center;
    padding:25px 25px;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.amenity-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
    border-color:#c9a437;
}

.amenity-card .icon{
    width:50px;
    height:50px;
    margin:auto;
    background:#cda631;
    border-radius:10px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:28px;
    transition:.35s;
}

.icon i{
    font-size:21px;
    color:#123f35;
}

.amenity-card:hover .icon{
    transform:rotate(-8deg) scale(1.08);
}

.amenity-card h4{
    font-family:"Cormorant Garamond",serif;
    font-size:26px;
    color:#123f35;
    font-weight:500;
}

@media(max-width:1200px){

.amenities-grid{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.section-title h2{
font-size:46px;
}

.section-title p{
font-size:18px;
}

.amenities-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.amenities-grid{
grid-template-columns:1fr;
}

.section-title h2{
font-size:38px;
}

.subtitle{
font-size:11px;
}

.amenity-card h4{
font-size:28px;
}

}

.gallery-section{
    background:#083a2d;
    padding:100px 0;
}

.gallery-section .container{
    width:92%;
    max-width:1400px;
    margin:auto;
}

.section-heading{
    text-align:center;
    margin-bottom:40px;
}

.sub-title{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    color:#caa437;
    font-size:13px;
    letter-spacing:6px;
    margin-bottom:18px;
}

.sub-title span{
    width:45px;
    height:1px;
    background:#caa437;
}

.section-heading h2{
    font-family:"Cormorant Garamond",serif;
    font-size:72px;
    color:#fff;
    margin-bottom:20px;
}

.section-heading h2 span{
    color:#d4af37;
    font-style:italic;
}

.gallery-filter{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:50px;
}

.gallery-filter button{
    padding:12px 26px;
    border-radius:50px;
    border:1px solid rgba(212,175,55,.5);
    background:transparent;
    color:#d8d8d8;
    cursor:pointer;
    transition:.3s;
}

.gallery-filter button.active,
.gallery-filter button:hover{
    background:#d4af37;
    color:#083a2d;
}

.gallery-grid{

    column-count:4;
    column-gap:18px;

}

.gallery-item{

    position:relative;
    margin-bottom:18px;
    break-inside:avoid;
    overflow:hidden;
    border-radius:20px;

}

.gallery-item img{

    width:100%;
    display:block;
    border-radius:20px;
    transition:.5s;

}

.gallery-overlay{

    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,.75),
    transparent 60%);

    display:flex;
    align-items:flex-end;
    padding:25px;

    opacity:0;
    transition:.4s;

}

.gallery-overlay h4{

    color:#fff;
    font-size:22px;
    font-family:"Cormorant Garamond",serif;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

@media(max-width:1200px){

.gallery-grid{

column-count:3;

}

}

@media(max-width:768px){

.gallery-grid{

column-count:2;

}

.section-heading h2{

font-size:48px;

}

}

@media(max-width:576px){

.gallery-grid{

column-count:1;

}

.section-heading h2{

font-size:36px;

}

.gallery-filter{

justify-content:flex-start;

}

}

/*==========================
        FAQ SECTION
===========================*/

.faq-section{
    padding:70px 0;
    background:#faf8f3;
    overflow:hidden;
}

.faq-layout{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:70px;
    align-items:start;
}

.faq-sticky{
    position:sticky;
    top:120px;
}

.section-label{
    display:inline-flex;
    align-items:center;
    gap:12px;
    font-size:13px;
    letter-spacing:5px;
    text-transform:uppercase;
    color:#c8a437;
    margin-bottom:20px;
    font-weight:500;
}

.section-label::before,
.section-label::after{
    content:"";
    width:45px;
    height:1px;
    background:#c8a437;
}

.faq-sticky h2{
    font-family:"Cormorant Garamond", serif;
    font-size:56px;
    line-height:1.1;
    color:#0c4033;
    margin-bottom:22px;
    font-weight:600;
}

.faq-sticky p{
    font-size:18px;
    line-height:1.8;
    color:#6d746d;
    margin-bottom:40px;
}

/*==========================
      INFO BOX
===========================*/

.faq-info-box{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:28px;
    border-radius:20px;
    background:#0c4033;
    color:#fff;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.faq-icon{
    width:65px;
    height:65px;
    border-radius:18px;
    background:#d3aa36;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0c4033;
    font-size:28px;
    flex-shrink:0;
}

.faq-info-box h3{
    font-size:24px;
    margin-bottom:8px;
    font-family:"Cormorant Garamond", serif;
}

.faq-info-box p{
    margin:0;
    color:#e7e7e7;
    font-size:15px;
    line-height:1.7;
}

/*==========================
      ACCORDION
===========================*/

.custom-faq .accordion-item{
    border:none;
    border-radius:10px;
    overflow:hidden;
    margin-bottom:18px;
    background:#fff;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
}

.custom-faq .accordion-button{
    background:#fff;
    color:#103d33;
    font-size:17px;
    font-weight:600;
    padding:18px 22px;
    box-shadow:none;
    border:none;
    transition:.3s;
}

.custom-faq .accordion-button:not(.collapsed){
    background:#0c4033;
    color:#fff;
}

.custom-faq .accordion-button:hover{
    background:#0c4033;
    color:#fff;
}

.custom-faq .accordion-button:focus{
    box-shadow:none;
}

.custom-faq .accordion-body{
    padding:30px 32px;
    font-size:17px;
    line-height:1.9;
    color:#6b6b6b;
}

/* Bootstrap Icon */

.custom-faq .accordion-button::after{
    background-image:none;
    content:"+";
    font-size:28px;
    font-weight:300;
    color:#c8a437;
    width:auto;
    height:auto;
    transform:none;
}

.custom-faq .accordion-button:not(.collapsed)::after{
    content:"−";
    color:#d3aa36;
}

/*==========================
        HOVER
===========================*/

.custom-faq .accordion-item:hover{
    transform:translateY(-4px);
    transition:.35s;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

/*==========================
        RESPONSIVE
===========================*/

@media(max-width:1200px){

.faq-layout{
    grid-template-columns:1fr;
    gap:50px;
}

.faq-sticky{
    position:relative;
    top:auto;
}

}

@media(max-width:768px){

.faq-section{
    padding:70px 0;
}

.faq-sticky h2{
    font-size:40px;
}

.faq-sticky p{
    font-size:16px;
}

.custom-faq .accordion-button{
    padding:22px;
    font-size:18px;
}

.custom-faq .accordion-body{
    padding:22px;
    font-size:16px;
}

.faq-info-box{
    padding:22px;
}

}

@media(max-width:576px){

.faq-sticky h2{
    font-size:34px;
}

.faq-icon{
    width:55px;
    height:55px;
    font-size:22px;
}

.faq-info-box{
    flex-direction:column;
}

.custom-faq .accordion-button{
    font-size:17px;
}

}




/* ==========================================================================
   Site Footer Styles (No Variables)
   ========================================================================== */

.site-footer {
    background-color: #082119; /* Deep Forest Green */
    color: #e0e6e3;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    padding: 60px 0 20px 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Grid Container Layout */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    /* Main column takes more space, remaining links spread evenly */
    grid-template-columns: 2.2fr repeat(4, 1.2fr);
    gap: 40px;
}

/* --- Column 1: About Section --- */
.footer-about .footer-brand {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-about .footer-brand img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-about .footer-brand em {
    color: #e2b048; /* Accent Gold */
    font-style: normal;
}

.footer-about p {
    color: #94ab9e;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

/* Contact Info List */
.footer-info {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.footer-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #94ab9e;
}

.footer-info li i {
    color: #e2b048; /* Accent Gold */
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-info li a {
    color: #e0e6e3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-info li a:hover {
    color: #e2b048; /* Accent Gold */
}

.footer-info li small {
    display: block;
    font-size: 0.8rem;
    color: #94ab9e;
    margin-top: 2px;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background-color: #e2b048; /* Accent Gold */
    color: #0C4326; /* Deep Forest Green background contrast */
    transform: translateY(-3px);
    border-color: #e2b048;
}

/* --- Columns 2-5: Link Columns --- */
.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 22px 0;
    position: relative;
    padding-bottom: 8px;
}

/* Decorative bottom line under column headers */
.footer-links h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background-color: #e2b048; /* Accent Gold */
}

.footer-links a {
    color: #94ab9e;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    width: fit-content;
}

.footer-links a:hover {
    color: #e2b048; /* Accent Gold */
    padding-left: 5px; /* Subtle layout movement on hover */
}

/* --- Footer Bottom Section --- */
.footer-bottom {
    max-width: 1200px;
    margin: 50px auto 0 auto;
    padding: 25px 20px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    color: #94ab9e;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}

.footer-bottom div a {
    color: #94ab9e;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom div a:hover {
    color: #e2b048; /* Accent Gold */
}

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

/* Tablet View */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 30px;
    }
}

/* Phablet View */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-about {
        grid-column: span 2;
        margin-bottom: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Mobile View */
@media (max-width: 480px) {
    .site-footer {
        padding: 40px 0 20px 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-about {
        grid-column: span 1;
    }
    
    .footer-links h4 {
        margin-bottom: 15px;
    }
    
    .footer-bottom div {
        justify-content: center;
        width: 100%;
    }
}


/* ==========================================================================
   Home Reviews Section & Owl Carousel Custom Styling (No Variables)
   ========================================================================== */

.home-review-section {
    background-color: #ffffff; /* Premium white background for the block */
    padding: 80px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden;
}

.home-review-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Section Header --- */
.home-review-head {
    text-align: center;
    margin-bottom: 50px;
}

.home-review-head span:first-child {
    color: #e2b048; /* Accent Gold */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.home-review-head h2 {
    color: #0C4326; /* Deep Forest Green */
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
}

.home-review-head h2 span {
    color: #e2b048; /* Decorative gold dot */
    display: inline;
}

/* --- Carousel Layout Padding --- */
.home-review-carousel {
    padding: 15px 0 30px 0;
}

/* --- Individual Review Card --- */
.home-review-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px 35px;
    position: relative;
    box-shadow: 0 10px 35px rgba(12, 67, 38, 0.06); /* Soft green-tinted shadow */
    border: 1px solid rgba(12, 67, 38, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* Matches height across all slider elements */
    box-sizing: border-box;
}

.home-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(12, 67, 38, 0.12);
}

/* Quote Icon Decoration */
.home-review-quote {
    position: absolute;
    top: 30px;
    right: 35px;
    font-size: 2.8rem;
    color: rgba(226, 176, 72, 0.15); /* Faded Gold accent icon */
    line-height: 1;
    pointer-events: none;
}

/* Testimonial Quote Block */
.home-review-card blockquote {
    font-style: italic;
    color: #3d4f43; /* Smooth slate text */
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 25px 0;
    font-weight: 400;
    flex-grow: 1; /* Pushes content down evenly */
}

/* Star Ratings */
.home-review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 25px;
}

.home-review-stars i {
    font-size: 1rem;
    color: #e0e6e3; /* Muted default gray star background */
}

.home-review-stars i.is-active {
    color: #e2b048; /* Bright Active Gold Star */
}

/* Author Profiling Meta */
.home-review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(12, 67, 38, 0.08);
    padding-top: 20px;
}

.home-review-author img {
    width: 50px !important; /* Forces Owl Carousel to obey specific dimension override */
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2b048; /* Gold profile ring frame */
}

.home-review-author div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.home-review-author strong {
    color: #0C4326; /* Deep Forest Green */
    font-size: 1.05rem;
    font-weight: 700;
}

.home-review-author span {
    color: #708577; /* Subtle timestamp / partner meta text */
    font-size: 0.85rem;
    font-weight: 500;
}

/* ==========================================================================
   Owl Carousel Controls Overrides (Arrows & Dots)
   ========================================================================== */

/* Navigation Container positioning */
.home-review-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Individual Navigation Buttons */
.home-review-carousel .owl-nav button.owl-prev,
.home-review-carousel .owl-nav button.owl-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #0C4326 !important; /* Deep Green core background */
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem !important;
    transition: all 0.3s ease;
    border: 1px solid #0C4326 !important;
    cursor: pointer;
}

.home-review-carousel .owl-nav button:hover {
    background: #e2b048 !important; /* Turns Gold on pointer interactions */
    border-color: #e2b048 !important;
    color: #0C4326 !important; /* Shifts text contrast colors */
}

/* Pagination Control Strip */
.home-review-carousel .owl-dots {
    text-align: center;
    margin-top: 25px;
}

.home-review-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: rgba(12, 67, 38, 0.2) !important;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Active slide dot pagination tracker */
.home-review-carousel .owl-dot.active span {
    background: #e2b048 !important; /* Gold active slider node indicator */
    width: 24px; /* Extends dynamically into a sleek modern bar pill style */
    border-radius: 5px;
}

.logo-box{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.logo-box h3{
    color: #CA9739;
    font-size: 39px ;
    font-weight: 800;
    margin: 0px;
    padding: 0px;
}
.logo-box p{
    color: #CA9739;
        margin: 0px;
    padding: 0px;
    font-size: 15px ;
    font-family:"Cormorant Garamond",serif;
   margin-bottom: 0px;

}
/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 768px) {
    .home-review-section {
        padding: 60px 0;
    }

    .home-review-head h2 {
        font-size: 2rem;
    }

    .home-review-card {
        padding: 30px 25px;
    }
    
    .home-review-quote {
        top: 20px;
        right: 25px;
        font-size: 2.2rem;
    }
}