:root {
    --color-gold: #d29750;
    --color-gold-hover: #e5ab60;
    --color-white: #FFF;
    --color-dark-green: #132622;
    --color-muted: #8c9c98;
    --color-border: rgba(255, 255, 255, 0.1);
    --color-light-bg: #F5F2EB;
    --font-serif: "editors", "Cormorant Garamond", serif;
    --font-sans: "Plus Jakarta Sans", sans-serif;
}

.text-start {
    text-align: left !important;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;

}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
    outline: none;
    color: #7a7a7a;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    color: #2e2e2e;
    background-color: #fff;
    font-weight: 500;
}

::selection {
    color: #fff;
    background-color: #024071;
}

::-moz-selection {
    color: #fff;
    background-color: #024071;
}

.cus-flex {
    align-items: center;
    justify-content: center;
}

button {
    border: none;
    box-shadow: none;
}

/* #Primary
================================================== */

@font-face {
    font-family: editors-bold;
    src: url(/font/EditorsNote-Bold.ttf);
}
@font-face {
    font-family: editors-medium;
    src: url(/font/EditorsNote-Medium.ttf);
}
@font-face {
    font-family: editors;
    src: url(/font/EditorsNote-Regular.ttf);
}
@font-face {
    font-family: editors-semibold;
    src: url(/font/EditorsNote-Semibold.ttf);
}
@font-face {
    font-family: editors-medium-italic;
    src: url(/font/EditorsNote-MediumItalic.ttf);
}
@font-face {
    font-family: editors-italic;
    src: url(/font/EditorsNote-Italic.ttf);
}



/* Base Body Locking when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Transparent Header floating above content */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 48px;
    background: #132622;
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

/* --- SCROLLED STICKY HEADER --- */
.site-header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #132622 !important;
    padding: 12px 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

/*.site-header.scrolled .menu-btn-text {
    color: var(--color-dark-green);
}

.site-header.scrolled .hamburger-icon span {
    background-color: var(--color-dark-green);
}

 Hover transitions when scrolled 
.site-header.scrolled .menu-toggle-btn:hover .menu-btn-text {
    color: var(--color-gold);
}

.site-header.scrolled .menu-toggle-btn:hover .hamburger-icon span {
    background-color: var(--color-gold);
}*/

@media (max-width: 991px) {
    .site-header.scrolled {
        padding: 15px 40px;
    }
}

@media (max-width: 767px) {
    .site-header.scrolled {
        padding: 12px 20px;
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo style */
.site-logo {
    color: #D8A259;
    font-family: editors;
    font-size: 56px;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.site-logo:hover {
    color: var(--color-gold-hover);
    text-decoration: none;
}

/* Menu Toggle Button (closed state) */
.menu-toggle-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-white);
    padding: 8px 0;
    outline: none;
    transition: color 0.3s ease;
}

.menu-toggle-btn:focus, .menu-toggle-btn:active {
    outline: none;
    box-shadow: none;
}

.menu-btn-text {
    color: #FFF;
    font-family:editors;
    font-size: 32px;
    font-weight: 400;
    line-height: normal;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 9px;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: #fff;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.menu-toggle-btn:hover .menu-btn-text {
    color: #D8A259;
}

.menu-toggle-btn:hover .hamburger-icon span {
    background-color: #D8A259;
}

/* Fullscreen Menu Overlay (open state background) */
.fullscreen-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #132622;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
        transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.fullscreen-menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Header inside the overlay drawer */
.overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    flex-shrink: 0;
}

.overlay-header .site-logo {
    color: var(--color-white);
}

.overlay-header .site-logo:hover {
    color: var(--color-gold);
}

/* Close Button */
.menu-close-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-white);
    padding: 8px 0;
    outline: none;
}

.menu-close-btn:focus, .menu-close-btn:active {
    outline: none;
    box-shadow: none;
}

.close-btn-text {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.close-icon {
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease;
}

.menu-close-btn:hover .close-btn-text {
    color: var(--color-gold);
}

.menu-close-btn:hover .close-icon {
    color: var(--color-gold);
    transform: rotate(90deg);
}

/* Content Area inside fullscreen menu overlay */
.overlay-content-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
    overflow-y: auto;
    padding: 20px 60px 60px 60px;
}

.overlay-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Grid Layout */
.menu-left-col {
    padding-right: 80px;
}

.menu-right-col {
    padding-left: 80px;
    border-left: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 380px;
}

/* Navigation Links */
.overlay-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.overlay-nav-links .nav-item {
    margin: 0;
    padding: 0;
}

.overlay-nav-links .nav-item a {
    color: #FFF;
    font-family: editors;
    font-size: 48px;
    font-weight: 400;
    display: inline-block;
    position: relative;
    padding: 2px 0;
    line-height: 1.2;
    transform-origin: left center;
}

/* Underline for the active menu item */
.overlay-nav-links .nav-item.active a {
    color: #E5B36D;
}

.overlay-nav-links .nav-item.active a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 1.5px;
    background-color: #E5B36D;
}

/* Hover Zoom & Slide transition */
.overlay-nav-links .nav-item a:hover {
    color: #E5B36D;
    transform: translateX(10px);
    text-decoration: none;
}

/* Contact Info Styling */
.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 45px;
}

.info-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-value {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.info-value:hover {
    color: var(--color-gold);
    text-decoration: none;
}

/* Social Icons Styling */
.socials-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}

.socials-label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: var(--color-white);
    border-radius: 50%;
    color: var(--color-dark-green);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
        background-color 0.3s ease, 
        color 0.3s ease;
}

.social-icon-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.social-icon-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-4px);
}

.social-icon-btn:hover svg {
    transform: scale(1.1);
}

/* Footer links stacked at bottom */
.footer-links-block {
    margin-top: auto;
}

.links-row {
    display: flex;
    gap: 25px;
    margin-bottom: 15px;
}

.footer-link {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-white);
    opacity: 0.7;
    text-decoration: none;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
    color: var(--color-gold);
    text-decoration: none;
}

.copyright-text {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-muted);
    margin: 0;
}

/* --- HERO SECTION --- */
.hero-section {
    background: url(/images/home-slider.png)no-repeat;
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 0 0 60px 0;
    z-index: 10;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 3;
}

.hero-container-content {
    position: relative;
    z-index: 4;
}

.hero-content {
    max-width: 1000px;
    width: 100%;
}

.hero-title {
    color: #FFF;
    font-family: editors;
    font-size: 54px;
    font-weight: 400;
    line-height: 68px; 
    margin-bottom: 36px;
}

.hero-title .italic-serif {
    font-family: editors-italic;
}

.hero-discover-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: var(--color-gold);
    color: var(--color-dark-green);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px 38px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border: none;
}

.hero-discover-btn:hover {
    background-color: var(--color-white);
    color: var(--color-dark-green);
    transform: translateY(-2px);
    text-decoration: none;
}

.hero-discover-btn .arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.hero-discover-btn:hover .arrow {
    transform: translateX(6px);
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 991px) {
    .site-header, .overlay-header {
        padding: 30px 40px;
    }

    .overlay-content-wrapper {
        padding: 20px 40px 60px 40px;
    }

    .menu-left-col {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .menu-right-col {
        padding-left: 0;
        border-left: none;
        min-height: auto;
    }

    .hero-section {
        padding: 0 40px 100px 40px;
    }

    .hero-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 767px) {
    .site-header, .overlay-header {
        padding: 24px 20px;
    }
    .menu-btn-text{
        display: none;
    }

    .site-logo {
        font-size: 2rem;
    }
    .site-logo img{
        height: 44px;
    }
    .overlay-content-wrapper {
        padding: 20px 20px 50px 20px;
    }

    .overlay-nav-links .nav-item a {
        font-size: 1.8rem;
    }
    .overlay-nav-links {
        gap: 10px;
    }
    .socials-block {
        margin-bottom: 25px;
    }
    .contact-info-block {
        margin-bottom: 20px;
    }
    .info-value {
        font-size: 1.25rem;
    }

    .hero-section {
        padding: 0 20px 80px 20px;
        height: 90vh;
    }

    .hero-title {
        font-size: 2.3rem;
        margin-bottom: 25px;
        line-height: 42px;
    }

    .hero-discover-btn {
        padding: 15px 30px;
        font-size: 0.75rem;
    }

    .links-row {
        gap: 15px;
    }
}

/* --- PAGINATION & INNER HERO --- */
.inner-hero-section {
    background-color: var(--color-dark-green);
    border-bottom: 1px solid var(--color-border);
    padding: 180px 0 80px 0;
    position: relative;
}
.inner-hero-subtitle {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}
.inner-hero-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--color-white);
    font-weight: 300;
}

/* --- PREMIUM FORM CONTROLS --- */
.premium-form .form-group-custom {
    position: relative;
    margin-bottom: 25px;
    transition: border-color 0.3s ease;
}
.premium-form .form-group-custom:focus-within {
    border-color: var(--color-gold);
}
.premium-form .form-control-custom {
    width: 100%;
    border: 1px solid #D2D9E0;
    background: #FFF;
    outline: none;
    color: #2e2e2e;
    font-size: 1rem;
    padding: 14px 16px;
    transition: all 0.3s ease;
}
.premium-form textarea.form-control-custom {
    resize: none;
}
.premium-form .form-group-custom label {
    position: absolute;
    left: 0;
    top: 10px;
    color: #7a7a7a;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    pointer-events: none;
    transition: all 0.3s ease;
}
/* Floating label logic */
.premium-form .form-control-custom:focus + label,
.premium-form .form-control-custom:not(:placeholder-shown) + label {
    top: -12px;
    font-size: 0.75rem;
    color: var(--color-gold);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.submit-btn-premium {
    background-color: #132622;
    color: #D8A259;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px 28px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.submit-btn-premium:hover {
    background-color: #D8A259;
    color: #132622;
    transform: translateY(-2px);
}
.submit-btn-premium .arrow {
    transition: transform 0.3s ease;
}
.submit-btn-premium:hover .arrow {
    transform: translateX(4px);
}

/* --- CONTACT MAP SECTION --- */
.contact-map-section {
    position: relative;
    padding-top: 100px; /* Header spacing */
}
.styled-map {
    filter: grayscale(100%) sepia(30%) contrast(90%);
    display: block;
    height: 480px;
}
.contact-details-section {
    background-color: var(--color-light-bg);
}
.section-subtitle {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 8px;
}
.page-section-title {
    color: #0E0F10;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 56px; /* 127.273% */
    letter-spacing: -0.88px;
    margin-bottom: 20px;
}
.section-desc {
    color: #44504D;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: -0.32px;
}
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.contact-info-item .info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(216, 162, 89, 0.1);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-item .info-icon svg {
    width: 18px;
    height: 18px;
}
.contact-info-item .info-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.contact-info-item .info-title {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-dark-green);
    letter-spacing: 1px;
}
.contact-info-item .info-detail,
.contact-info-item .info-link {
    font-size: 0.95rem;
    color: #5c6c68;
    line-height: 1.5;
    transition: color 0.3s ease;
}
.contact-info-item .info-link:hover {
    color: var(--color-gold);
}

/* --- TEAM GRID SECTION --- */
.team-grid-section {
    background: #FBF5EC;
}
.team-grid-section .team-box{
    margin-bottom: 34px;
}
.team-grid-section .team-box .img-box{
    background-color: #fff;
    padding: 8px;
    margin-bottom: 14px;
}
.team-grid-section .team-box h2{
    color: #132622;
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 8px;
}
.team-grid-section .team-box p{
    color: #44504D;
    font-size: 16px;
    font-weight: 400;
}





/* --- BLOGS LIST SECTION --- */
.blog-grid-section {
    background-color: var(--color-light-bg);
}
.blog-card {
    background-color: #FFF;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(19, 38, 34, 0.05);
}
.blog-card-img-wrapper {
    position: relative;
    width: 100%;
    background-color: var(--color-dark-green);
    overflow: hidden;
}
.blog-img-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-img-placeholder {
    transform: scale(1.05);
}
.b-img-1 { background-image: linear-gradient(45deg, #132622, #D8A259); }
.b-img-2 { background-image: linear-gradient(45deg, #132622, #8c9c98); }
.b-img-3 { background-image: linear-gradient(45deg, #132622, #E5B36D); }

.blog-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: var(--color-gold);
    color: var(--color-dark-green);
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
}
.blog-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-date {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}
.blog-card-title {
    font-size: 1.45rem;
    line-height: 1.3;
    margin-bottom: 15px;
}
.blog-card-title a {
    color: var(--color-dark-green);
    transition: color 0.3s ease;
}
.blog-card-title a:hover {
    color: var(--color-gold);
}
.blog-page-card-excerpt {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4a5a56;
    margin-bottom: 20px;
}

/* --- NEW BLOG DETAIL PAGE STYLES --- */
.blog-details-title-serif {
    color: #132622;
    font-family: editors;
    font-size: 44px;
    font-weight: 400;
    line-height: 56px; /* 127.273% */
    text-align: center;
    max-width: 900px;
    margin: 0 auto 15px;
}
.blog-details-date-sub {
    color: #44504D;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin-bottom: 40px;
}
.blog-details-img-wrapper {
    width: 100%;
    overflow: hidden;
    background-color: #fff;
    padding: 8px;
    margin-bottom: 40px;
}

.blog-article-body p {
    color: #44504D;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; 
    margin-bottom: 20px;
}
.blog-article-body h2,
.blog-article-body h3 {
    color: #132622;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 14px;
}
.blog-article-body ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 30px;
}
.blog-article-body li {
    color: #44504D;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; 
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .blog-details-title-serif {
        font-size: 1.85rem;
        line-height: 36px;
    }
    .blog-article-body p {
        font-size: 0.95rem;
        line-height: 1.65;
    }
}
.blog-card-excerpt {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #5c6c68;
    margin-bottom: 25px;
}
.blog-read-more-btn {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.blog-read-more-btn:hover {
    color: var(--color-dark-green);
}
.blog-read-more-btn .arrow {
    transition: transform 0.3s ease;
}
.blog-read-more-btn:hover .arrow {
    transform: translateX(4px);
}

/* --- BLOG DETAILS SECTION --- */
.blog-details-hero {
    background-color: var(--color-dark-green);
    border-bottom: 1px solid var(--color-border);
    padding: 180px 0 100px 0;
}
.blog-details-meta {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.blog-details-title {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    color: var(--color-white);
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.2;
}
.blog-content-section {
    background-color: var(--color-light-bg);
}
.premium-article {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2e2e2e;
}
.lead-paragraph {
    font-size: 1.25rem;
    line-height: 1.7;
    font-weight: 500;
    color: var(--color-dark-green);
}
.article-banner-wrapper {
    position: relative;
    width: 100%;
}
.article-image-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background-image: linear-gradient(135deg, #132622, #E5B36D);
    background-size: cover;
    background-position: center;
}
.image-caption {
    font-size: 0.8rem;
    color: var(--color-muted);
    font-style: italic;
    margin-top: 10px;
    display: block;
    text-align: center;
}
.article-subheading {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-dark-green);
    margin-top: 45px;
    margin-bottom: 20px;
}
.premium-blockquote {
    border-left: 3px solid var(--color-gold);
    padding-left: 30px;
    margin: 40px 0;
}
.premium-blockquote p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--color-dark-green);
    line-height: 1.4;
    margin-bottom: 10px;
}
.premium-blockquote cite {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-muted);
}
.share-title {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-dark-green);
}
.share-icons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}
.share-icons a {
    color: var(--color-gold);
    transition: color 0.3s ease;
}
.share-icons a:hover {
    color: var(--color-dark-green);
}
.related-posts-section {
    border-top: 1px solid rgba(0,0,0,0.06);
}
.related-section-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-dark-green);
}
.blog-card-sm .blog-card-title {
    font-size: 1.25rem;
}

/* --- OUR MENU SECTION --- */
.menu-listing-section {
    background-color: var(--color-light-bg);
}
.menu-tabs-wrapper {
    display: inline-flex;
    background-color: rgba(19, 38, 34, 0.05);
    padding: 6px;
    border-radius: 40px;
}
.menu-tab-btn {
    border: none;
    background: transparent;
    outline: none;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-dark-green);
    padding: 10px 24px;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.menu-tab-btn:hover {
    color: var(--color-gold);
}
.menu-tab-btn.active {
    background-color: var(--color-dark-green);
    color: var(--color-white);
}
.menu-tab-content {
    display: none;
}
.menu-tab-content.active {
    display: block;
    animation: fadeIn 0.6s ease;
}
.menu-item-card {
    background-color: #FFF;
    border: 1px solid rgba(0,0,0,0.03);
    padding: 35px;
    height: 100%;
    transition: transform 0.3s ease;
}
.menu-item-card:hover {
    transform: translateY(-4px);
}
.item-name-price {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}
.item-name {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--color-dark-green);
}
.item-price {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-gold);
    font-weight: 600;
}
.item-description {
    font-size: 0.95rem;
    color: #5c6c68;
    line-height: 1.5;
}

/* --- MEDIA GALLERY SECTION --- */
.media-gallery-section {
    background-color: var(--color-light-bg);
}
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.filter-btn {
    border: 1px solid rgba(19, 38, 34, 0.15);
    background: transparent;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-dark-green);
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
    background-color: var(--color-dark-green);
    color: var(--color-white);
    border-color: var(--color-dark-green);
}
.gallery-card {
    background-color: #FFF;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}
.gallery-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}
.gallery-img-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.g-img-1 { background-image: linear-gradient(135deg, #132622, #D8A259); }
.g-img-2 { background-image: linear-gradient(135deg, #132622, #8c9c98); }
.g-img-3 { background-image: linear-gradient(135deg, #132622, #E5B36D); }
.g-img-4 { background-image: linear-gradient(135deg, #D8A259, #8c9c98); }
.g-img-5 { background-image: linear-gradient(135deg, #132622, #D8A259 60%); }
.g-img-6 { background-image: linear-gradient(135deg, #8c9c98, #E5B36D); }

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(19, 38, 34, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-card:hover .gallery-overlay {
    opacity: 1;
}
.gallery-card:hover .gallery-img-placeholder {
    transform: scale(1.06);
}
.gallery-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--color-white);
}

/* --- SERVICES LIST PAGE --- */
.services-list-section {
    background-color: var(--color-light-bg);
}
.service-detail-card {
    background-color: #FFF;
    border: 1px solid rgba(0,0,0,0.04);
    padding: 50px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.service-detail-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(19, 38, 34, 0.04);
}
.service-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}
.service-icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(216, 162, 89, 0.1);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.service-icon-box svg {
    width: 24px;
    height: 24px;
}

.service-card-desc {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #5c6c68;
    margin-bottom: 24px;
}
.service-card-bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding-left: 0;
}
.service-card-bullets li {
    font-size: 0.95rem;
    color: #2e2e2e;
    position: relative;
    padding-left: 20px;
}
.service-card-bullets li::before {
    content: '\2014';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

/* --- PORTFOLIO --- */
.portfolio-grid-section {
    background-color: var(--color-light-bg);
}
.portfolio-card {
    background-color: #FFF;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}
.portfolio-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background-color: var(--color-dark-green);
    overflow: hidden;
}
.portfolio-img-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-img-1 { background-image: linear-gradient(135deg, #132622, #D8A259 80%); }
.p-img-2 { background-image: linear-gradient(135deg, #132622, #8c9c98); }
.p-img-3 { background-image: linear-gradient(135deg, #132622, #E5B36D); }
.p-img-4 { background-image: linear-gradient(135deg, #D8A259, #8c9c98); }
.p-img-5 { background-image: linear-gradient(135deg, #132622, #D8A259); }
.p-img-6 { background-image: linear-gradient(135deg, #8c9c98, #E5B36D); }

.portfolio-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(19, 38, 34, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.portfolio-card:hover .portfolio-info-overlay {
    opacity: 1;
}
.portfolio-card:hover .portfolio-img-placeholder {
    transform: scale(1.05);
}
.property-location {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}
.property-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 25px;
}
.property-link-btn {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 1px;
}
.property-link-btn:hover {
    color: var(--color-white);
}

/* --- PRODUCT DETAILS PAGE --- */
.product-hero-section {
    background-color: var(--color-dark-green);
    border-bottom: 1px solid var(--color-border);
    padding: 180px 0 60px 0;
}
.product-category-label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
}
.product-location {
    color: #8c9c98;
    font-size: 0.95rem;
}
.product-details-container {
    background-color: var(--color-light-bg);
}
.gallery-primary-img {
    background-color: var(--color-dark-green);
    width: 100%;
    aspect-ratio: 16/9;
}
.gallery-main-placeholder {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, #132622, #D8A259);
    background-size: cover;
}
.gallery-thumb-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    background-color: var(--color-dark-green);
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}
.th-1 { background-image: linear-gradient(45deg, #132622, #D8A259); }
.th-2 { background-image: linear-gradient(45deg, #132622, #8c9c98); }
.th-3 { background-image: linear-gradient(45deg, #132622, #E5B36D); }
.gallery-thumb-placeholder.active {
    border-color: var(--color-gold);
}
.block-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-dark-green);
    border-bottom: 1.5px solid rgba(19, 38, 34, 0.08);
    padding-bottom: 12px;
    margin-bottom: 20px;
}
.block-text {
    font-size: 1.02rem;
    line-height: 1.6;
    color: #4a5a56;
}
.spec-card {
    background-color: #FFF;
    border: 1px solid rgba(0,0,0,0.03);
    padding: 24px;
}
.spec-label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}
.spec-value {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-dark-green);
}
.amenity-item {
    background-color: #FFF;
    border: 1px solid rgba(0,0,0,0.03);
    padding: 16px;
    display: flex;
    align-items: center;
    color: var(--color-dark-green);
    font-size: 0.92rem;
}
.amenity-item svg {
    color: var(--color-gold);
}
.booking-sidebar-card {
    background-color: #FFF;
    border: 1.5px solid var(--color-dark-green);
    padding: 40px;
}
.booking-card-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-dark-green);
    margin-bottom: 6px;
}
.booking-card-sub {
    font-size: 0.85rem;
    line-height: 1.4;
}
.card-sticky {
    position: sticky;
    top: 120px;
}

/* --- FEEDBACK PAGE --- */
.feedback-video-section {
    background-color: var(--color-light-bg);
}
.premium-video-card {
    background-color: var(--color-dark-green);
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    box-shadow: 0 20px 50px rgba(19, 38, 34, 0.15);
}
.video-preview-placeholder {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(19, 38, 34, 0.95), rgba(229, 179, 109, 0.1)), url(/images/home-slider.png);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.play-btn-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--color-gold);
    color: var(--color-dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(216, 162, 89, 0.4);
    padding-left: 6px; /* Offset for triangle */
}
.video-preview-placeholder:hover .play-btn-circle {
    background-color: var(--color-white);
    transform: scale(1.08);
}
.video-label-overlay {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 25px;
}
.testimonial-card-premium {
    background-color: #FFF;
    border: 1px solid rgba(0,0,0,0.04);
    padding: 50px;
    position: relative;
    height: 100%;
}
.quote-icon {
    font-family: var(--font-serif);
    font-size: 5rem;
    line-height: 1;
    color: rgba(216, 162, 89, 0.15);
    position: absolute;
    top: 20px;
    left: 40px;
    pointer-events: none;
}
.testimonial-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.35rem;
    color: var(--color-dark-green);
    line-height: 1.5;
    position: relative;
    z-index: 2;
}
.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}
.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: var(--color-dark-green);
}
.r-avatar-1 { background-image: linear-gradient(135deg, #132622, #D8A259); }
.r-avatar-2 { background-image: linear-gradient(135deg, #132622, #8c9c98); }

.reviewer-info-text {
    display: flex;
    flex-direction: column;
}
.reviewer-name {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-dark-green);
}
.reviewer-property {
    font-size: 0.8rem;
    color: var(--color-muted);
}

/* --- REUSABLE FOOTER STYLES --- */
.site-footer {
    background-color: #132622;
    padding: 80px 0 0;
    text-align: center;
}
.footer-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-logo {
    color: var(--color-gold);
    font-family: editors;
    font-size: 48px;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: -0.5px;
    display: inline-block;
    margin-bottom: 30px;
}
.footer-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 auto 35px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}
.footer-nav-links a {
    color: var(--color-white);
    opacity: 0.7;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s ease, color 0.3s ease;
}
.footer-nav-links a:hover {
    opacity: 1;
    color: var(--color-gold);
}
.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}
.footer-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    border-radius: 50%;
    color: var(--color-dark-green);
    transition: all 0.3s ease;
}
.footer-social-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}
.footer-social-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-3px);
}
.footer-copyright {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: #5c6c68;
    margin: 0;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- REDESIGNED HOME PAGES & FOOTER --- */
.stats-bar-section {
    background-color: #FFF;
    padding: 56px 0;
}
.stat-counter-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.stat-number {
    color: #132622;
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    line-height: 56px;
    letter-spacing: -0.96px;
}
.stat-label {
    color: #44504D;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.32px;
}

.home-about-section {
    background-color: #FBF5EC;
    padding: 120px 0;
}
.about-header-row{
    border-bottom: 1px solid rgba(229, 179, 109, 0.40);
    padding-bottom: 16px;
    margin-bottom: 34px;

}
.about-title-right{
    color: #132622;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.32px;
}
.about-heading-serif{
    color: #132622;
    font-family: editors;
    font-size: 40px;
    font-weight: 400;
    line-height: 56px;
    max-width: 900px;
}
.about-side-desc{
    color: #44504D;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px; /* 150% */
    letter-spacing: -0.32px;
}
.about-read-more-btn {
    background-color: #132622;
    color: #D8A259;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    width: max-content;
}
.about-read-more-btn:hover {
    background-color: #D8A259;
    color: #132622!important;
}
.about-read-more-btn .arrow {
    color: #D8A259;
    transition: transform 0.3s ease, color 0.3s ease;
}
.about-read-more-btn:hover .arrow {
    color: #132622 !important;
    transform: translateX(5px);
}










.home-portfolio-section {
    background-color: #FBF5EC;
    padding: 0px 0 120px;
}
.portfolio-item-card {
    background-color: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.portfolio-item-card:hover {
    transform: translateY(-6px);
}
.portfolio-img-container {
    width: 100%;
    overflow: hidden;
    background-color: var(--color-dark-green);
    position: relative;
    border-radius: 4px;
}
.portfolio-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--color-dark-green);
    color: var(--color-gold);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    z-index: 10;
    border: 1px solid rgba(216, 162, 89, 0.25);
}
.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.portfolio-item-card:hover .portfolio-img {
    transform: scale(1.04);
}
.portfolio-info-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.portfolio-card-location {
    color: #44504D;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.28px;
    display: block;
    margin-top: 4px;
}
.portfolio-card-location span{
    color: #132622;
}
.portfolio-card-title {
    color: #132622;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px; /* 120% */
    letter-spacing: -0.4px;
    margin: 0;
}
.portfolio-card-title a {
    color: #132622;
    transition: color 0.3s ease;
}
.portfolio-arrow-btn-filled {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-dark-green);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.portfolio-arrow-btn-filled:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    transform: scale(1.05);
}
.portfolio-arrow-btn-filled svg {
    transition: transform 0.3s ease;
}
.portfolio-arrow-btn-filled:hover svg {
    transform: translateX(3px);
}
.portfolio-arrow-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 50px;
    border: 1px solid #132622;
    background-color: transparent;
    color: var(--color-dark-green);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.4px;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    flex-shrink: 0;
}
.portfolio-arrow-btn-outline > span {
    display: inline-block;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease;
}
.portfolio-btn-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    overflow: hidden;
    flex-shrink: 0;
}
.portfolio-btn-icon svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    stroke: currentColor;
}
.portfolio-btn-icon .arrow-primary {
    transform: translate(-50%, -50%);
    opacity: 1;
}
.portfolio-btn-icon .arrow-secondary {
    transform: translate(calc(-50% - 13px), calc(-50% + 13px));
    opacity: 0;
}
.portfolio-arrow-btn-outline:hover {
    border-color: #132622;
    background-color: #132622;
    color: #d29750;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(19, 38, 34, 0.15);
}
.portfolio-arrow-btn-outline:hover > span {
    transform: translateX(-2px);
    color: #d29750;
}
.portfolio-arrow-btn-outline:hover .portfolio-btn-icon .arrow-primary {
    transform: translate(calc(-50% + 13px), calc(-50% - 13px));
    opacity: 0;
}
.portfolio-arrow-btn-outline:hover .portfolio-btn-icon .arrow-secondary {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.portfolio-see-all-btn {
    background-color: var(--color-dark-green);
    color: var(--color-gold) !important;
    border: none;
    padding: 16px 36px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}
.portfolio-see-all-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-dark-green) !important;
}
.portfolio-see-all-btn .arrow {
    color: var(--color-gold);
    transition: transform 0.3s ease, color 0.3s ease;
}
.portfolio-see-all-btn:hover .arrow {
    color: var(--color-dark-green) !important;
    transform: translateX(5px);
}

.view-brochure-link {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
    display: inline-block;
}
.view-brochure-link:hover {
    color: var(--color-dark-green);
}

/* Services Split layout */
.home-services-section {
    background-color: #FBF5EC;
    padding-bottom: 20px;
}
.sticky-services-col {
    position: relative;
    align-self: stretch;
}
.sticky-column-content {
    position: sticky;
    top: 120px;
}
.service-stacked-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 35px;
    background-color: var(--color-white);
    border-bottom: 1.5px solid rgba(19, 38, 34, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.service-stacked-card {
    background-color: var(--color-white);
    border: 1px solid rgba(19, 38, 34, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 32px;
}
.service-stacked-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(19, 38, 34, 0.05);
}
.service-card-img-wrapper {
    width: 100%;
    /*aspect-ratio: 16/9;*/
    overflow: hidden;
    background-color: var(--color-dark-green);
    position: relative;
}
.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.service-stacked-card:hover .service-card-img {
    transform: scale(1.03);
}
.service-card-text-block {
    padding: 25px;
}
.service-card-title {
    color: #132622;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px; /* 120% */
    letter-spacing: -0.4px;
    margin-bottom: 10px;
}
.service-card-desc {
    color: #44504D;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px; /* 150% */
    letter-spacing: -0.32px;
    margin: 0;
}


/* Partner Logo strip */
.partners-strip-section {
    background: #FFF;
    padding: 120px 0;
}
.partners-strip-section .heading-title h6 {
    padding-bottom: 38px;
    color: #132622;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 27px; /* 135% */
    letter-spacing: -0.4px;
}
.partners-strip-section .heading-title h6 span {
    font-weight: 700;
}
.partners-strip-section .partner-logos-container img{
    padding: 0 24px;
}


.home-contact-section {
    background-color: #fff;
}


.site-footer {
    background-color: var(--color-dark-green);
    padding: 80px 0 0 0;
    color: var(--color-white);
}


.footer-contact-link {
    color: #FFF;
    font-size: 22px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.64px;
}
.footer-contact-link:hover {
    color: #D8A259;
}
.site-footer .dash{
    border-bottom: 1px solid #233D38;
    max-width: 300px;
    margin: 0 auto;
}
.footer-address-text {
    color: rgba(255, 255, 255, 0.80);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.32px;
    margin: 0;
}
.footer-address-text .address-label {
    color: #D8A259;
}


.footer-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-menu-links a {
    opacity: 0.8;
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.32px;
    padding: 0 20px;
}
.footer-menu-links a:hover {
    color: #D8A259 !important;
}

.social-circle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #1e3631; /* Lighter dark green circle */
    color: var(--color-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-circle-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-dark-green);
    transform: scale(1.08);
}

.footer-giant-logo-container {
    text-align: center;
    margin-top: 40px;
    overflow: hidden;
    line-height: 0.9;
    border-bottom: none;
    opacity: 0.2;
}
.footer-giant-logo {
    font-family: editors, var(--font-serif);
    font-size: 11.5rem; /* Massive size */
    color: var(--color-gold);
    font-weight: 400;
    letter-spacing: -2px;
    display: inline-block;
    text-decoration: none;
    line-height: 0.9;
    margin-bottom: -15px; /* Pull it slightly downwards to sit flush */
    transition: transform 0.5s ease;
}
.footer-giant-logo:hover {
    transform: scale(1.02);
}

@media (max-width: 767px) {
    .footer-contacts-row {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .footer-giant-logo {
        font-size: 5rem;
    }
    .footer-menu-links {
        gap: 15px !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .footer-giant-logo {
        font-size: 8rem;
    }
}

/* Section padding utility */
.py-6 {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Responsive adjustments for new pages */
@media (max-width: 991px) {
    .py-6 {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .about-heading {
        font-size: 2.2rem;
    }
    .sticky-column-content {
        position: relative;
        top: 0;
    }
    .footer-giant-logo {
        font-size: 6.5rem;
    }
}

@media (max-width: 767px) {
    .py-6 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .stat-number {
        font-size: 2.2rem;
    }
    .about-heading {
        font-size: 1.7rem;
    }
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
    .footer-giant-logo {
        font-size: 4.2rem;
    }
}
/* --- REDESIGNED ABOUT US SECTION --- */
/*    .about-header-row {
        width: 100%;
    }
    .about-diamonds-left {
        display: flex;
        gap: 8px;
        align-items: center;
    }
    .about-diamonds-left .diamond-dot {
        width: 8px;
        height: 8px;
        background-color: var(--color-gold);
        transform: rotate(45deg);
        display: inline-block;
    }
    .about-title-right {
        font-family: var(--font-sans);
        font-size: 0.72rem;
        font-weight: 700;
        color: var(--color-dark-green);
        text-transform: uppercase;
        letter-spacing: 2.5px;
    }
    .about-divider {
        border: 0;
        border-top: 1px solid rgba(19, 38, 34, 0.08);
        opacity: 1;
        margin: 0;
    }
    .about-heading-serif {
        font-family: var(--font-serif);
        font-size: 2.6rem;
        font-weight: 300;
        color: var(--color-dark-green);
        line-height: 1.35;
        letter-spacing: -0.5px;
        text-align: left;
    }
    .about-side-desc {
        font-family: var(--font-sans);
        font-size: 1.02rem;
        line-height: 1.65;
        color: #4a5a56;
        margin: 0;
    }
    @media (min-width: 992px) {
        .about-side-desc {
            max-width: 255px;
        }
    }
    .about-logo-card {
        background-color: var(--color-dark-green);
        border: 1px solid rgba(255, 255, 255, 0.06);
        padding: 50px 30px;
        max-width: 320px;
        margin: 0 auto;
        box-shadow: 0 20px 50px rgba(19, 38, 34, 0.15);
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .about-logo-card::before {
        content: '';
        position: absolute;
        top: 12px;
        right: 12px;
        bottom: 12px;
        left: 12px;
        border: 1px solid var(--color-gold);
        pointer-events: none;
        opacity: 0.25;
    }
    .logo-svg-wrapper svg {
        display: block;
        margin: 0 auto;
    }
    .about-card-brand-title {
        font-family: editors;
        font-size: 1.85rem;
        color: var(--color-gold);
        letter-spacing: 2px;
        margin-bottom: 12px;
    }
    .about-card-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 70%;
        gap: 15px;
    }
    .card-divider-line {
        height: 1px;
        background-color: var(--color-gold);
        opacity: 0.3;
        flex-grow: 1;
    }
    .card-divider-diamond {
        color: var(--color-gold);
        font-size: 0.65rem;
        line-height: 1;
    }

    .about-read-more-btn {
        background-color: var(--color-dark-green);
        color: var(--color-gold) !important;
        border: none;
        padding: 12px 24px;
        font-family: var(--font-sans);
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
        cursor: pointer;
        text-decoration: none;
    }
    .about-read-more-btn:hover {
        background-color: var(--color-gold);
        color: var(--color-dark-green) !important;
    }
    .about-read-more-btn .arrow {
        color: var(--color-gold);
        transition: transform 0.3s ease, color 0.3s ease;
    }
    .about-read-more-btn:hover .arrow {
        color: var(--color-dark-green) !important;
        transform: translateX(5px);
    }*/

/* Responsive adjustments for columns */
@media (min-width: 992px) {
    .about-columns-container {
        display: flex;
        /*align-items: stretch !important;*/
    }
    .about-left-col {
        display: flex !important;
        flex-direction: column;
        justify-content: flex-start;
    }
    .about-center-col {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
    }
    .about-right-col {
        display: flex !important;
        flex-direction: column;
        justify-content: flex-end;
    }
}
@media (max-width: 991px) {
    .about-heading-serif {
        font-size: 2.1rem;
        line-height: 34px;
    }
    .about-left-col, .about-right-col {
        /*text-align: center !important;*/
    }
    .about-right-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 767px) {
    .about-heading-serif {
        font-size: 1.6rem;
        line-height: 32px;
    }
    .partners-strip-section .partner-logos-container img{
        padding: 12px 18px;
    }
}

/* --- NEW MEDIA AND AWARDS SECTION --- */
.home-media-section {
    background-color: #FBF5EC;
    padding: 100px 0;
}
.media-card {
    background-color: #fff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
}
.media-card-img-wrapper {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.media-card-body {
    padding: 20px;
}
.media-card-title {
    color: #132622;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px; /* 150% */
    letter-spacing: -0.4px;
    padding-bottom: 10px;
}
.media-card-date {
    color: #44504D;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
    letter-spacing: -0.28px;
    display: block;
}

/* Custom Navigation Arrows for Carousel */
.carousel-nav-btn {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 1px solid rgba(19, 38, 34, 0.1);
    color: var(--color-dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.carousel-nav-btn:hover {
    background-color: var(--color-dark-green);
    color: var(--color-white);
    border-color: var(--color-dark-green);
    box-shadow: 0 6px 20px rgba(19, 38, 34, 0.15);
}
.carousel-nav-btn.prev-btn {
    left: -25px;
}
.carousel-nav-btn.next-btn {
    right: -25px;
}

.home-blogs-section{
    padding: 120px 0;
    background: #FBF5EC;
}
.blog-card-horizontal {
    display: flex;
    background-color: var(--color-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(19, 38, 34, 0.02);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.blog-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(19, 38, 34, 0.05);
}
.blog-card-horizontal .blog-card-img-wrapper {
    width: 50%;
    overflow: hidden;
    position: relative;
}
.blog-card-horizontal .blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.blog-card-horizontal:hover .blog-img {
    transform: scale(1.04);
}
.blog-card-horizontal .blog-card-content {
    width: 50%;
    padding: 24px;
    display: flex;
    flex-direction: column;
}
.blog-card-horizontal .blog-card-title {
    color: #132622;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 150% */
    letter-spacing: -0.4px;
    margin: 0 0 10px 0;
}
.blog-card-horizontal .blog-card-date {
    color: #44504D;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
    letter-spacing: -0.28px;
    margin-bottom: 40px;
}
.blog-card-horizontal .blog-read-more-btn-outline {
    border: 1px solid #D8A259;
    color: #D8A259 !important;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 12px 24px;
    display: inline-block;
    width: fit-content;
    border-radius: 2px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.blog-card-horizontal .blog-read-more-btn-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-white) !important;
    border-color: var(--color-gold);
    box-shadow: 0 4px 12px rgba(216, 162, 89, 0.2);
}

@media (max-width: 991px) {
    .blog-card-horizontal {
        flex-direction: column;
        height: auto;
    }
    .blog-card-horizontal .blog-card-img-wrapper {
        width: 100%;
        aspect-ratio: 16/10;
    }
    .blog-card-horizontal .blog-card-content {
        width: 100%;
        padding: 20px;
    }
}

/* --- NEW CONTACT PAGE STYLES --- */
.hero-banner {
    background-color: #132622;
    padding: 160px 0 0px;
    height: 420px;
    position: relative;
    overflow: hidden;
}
.inner-hero-content {
    position: relative;
    z-index: 5;
}
.inner-hero-title {
    color: #FFF;
    font-family: editors;
    font-size: 64px;
    font-weight: 400;
    line-height: 80px;
    padding-bottom: 8px;
}
.inner-hero-breadcrumb {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}
.inner-hero-breadcrumb a {
    color: #fff;
    transition: color 0.3s ease;
    text-decoration: none;
}
.inner-hero-breadcrumb a:hover {
    color: #D8A259;
}
.inner-hero-breadcrumb .sep {
    margin: 0 8px;
}
.inner-hero-breadcrumb .active {
    color: #D8A259;
}

/* Arch Logo centered at bottom */
.banner-arch-logo {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 55%); /* Show top arch */
    width: 220px;
    height: 110px;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}
.banner-arch-logo img {
    width: 220px;
    height: auto;
    display: block;
    margin-top: -10px;
}

/* Info Cards & Map Section */
.contact-info-section {
    background-color: #FBF5EC;
}
.contact-mini-card {
    background-color: #fff;
    border: 1px solid #FEF3E4;
    padding: 24px 30px;
}
.contact-mini-card .icon-box {
    margin-right: 20px;
}
.contact-mini-card .card-details {
    display: flex;
    flex-direction: column;
}
.contact-mini-card .card-label {
    color: #44504D;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 6px;
}
.contact-mini-card .card-value {
    color: #132622;
    font-size: 22px;
    font-weight: 500;
}

.contact-map-wrapper {
    border: 1px solid #FEF3E4;
    background: #FFF;
    padding: 16px;
}
/* Form Section */
.contact-form-section {
    background-color: #fff;
}
.form-section-title {
    color: #0E0F10;
    text-align: center;
    font-size: 44px;
    font-weight: 700;
    line-height: 56px; /* 127.273% */
    letter-spacing: -0.88px;
    margin-bottom: 12px;
}
.form-section-desc {
    color: #44504D;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: -0.32px;
    max-width: 920px;
    margin: 0 auto;
}

.contact-premium-form .form-input-custom {
    width: 100%;
    border: 1px solid #D2D9E0;
    background: #FFF;
    padding: 16px 20px;
    font-size: 16px;
    color: #132622;
    transition: all 0.3s ease;
    outline: none;
    margin-bottom: 20px;
}
.contact-premium-form .form-input-custom::placeholder {
    color: #132622;
}
.contact-premium-form .form-input-custom:focus {
    border-color: var(--color-gold);
    background-color: #fff;
}
.contact-premium-form textarea.form-input-custom {
    resize: none;
}

@media (max-width: 767px) {
    .contact-hero-banner .inner-hero-title {
        font-size: 2.5rem;
    }
    .form-section-title {
        font-size: 2.1rem;
    }
    .contact-mini-card {
        padding: 20px;
    }
    .contact-mini-card .card-value {
        font-size: 0.95rem;
    }
}

/* --- NEW BLOG PAGE GRID STYLES --- */
.blog-page-card {
    margin-bottom: 40px;
}

.blog-page-card-img {
    background-color: #fff;
    padding: 8px;
    width: 100%;
}
.blog-page-card-title {
    color: #132622;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px; /* 150% */
    margin: 15px 0 10px;
}
.blog-page-card-excerpt {
    color: #44504D;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin-bottom: 20px;
}
.blog-read-more-btn-outline{
    border: 1px solid #D8A259;
    background: #FFF;
    color: #D8A259;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    padding: 8px 16px;
    width: max-content;
}
.blog-read-more-btn-outline:hover{
    border: 1px solid #132622;
    background-color: #132622;
    color: #fff;
}

/* --- NEW MEDIA PAGE STYLES --- */
.media-listing-section{
    background: #FBF5EC;
}
.media-row-card {
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.media-row-content {
    padding: 40px 28px;
    height: 100%;
    position: relative;
}

.media-row-title {
    color: #132622;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 12px;
}
.media-row-date {
    color: #44504D;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    display: block;
    margin-bottom: 25px;
}
.media-read-more-btn-outline {
    position: absolute;
    bottom: 40px;
    border: 1px solid #D8A259;
    color: #D8A259 !important;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 12px 24px;
    display: inline-block;
    width: fit-content;
    border-radius: 2px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.media-read-more-btn-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-white) !important;
    border-color: var(--color-gold);
    box-shadow: 0 4px 12px rgba(216, 162, 89, 0.2);
}

@media (max-width: 767px) {
    .media-row-content {
        padding: 30px 20px;
    }
    .media-row-title {
        font-size: 1.1rem;
    }
    .media-row-img {
        min-height: 220px;
    }
}

/* --- SERVICES PAGE CUSTOM STYLES --- */
.services-listing-section {
    background-color: #FBF5EC;
    padding: 80px 0;
}

.service-page-card {
    background-color: #fff;
    margin-bottom: 36px;
}

.service-page-card-body {
    padding: 24px;
}

.service-page-card-title {
    color: #132622;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px; /* 120% */
    letter-spacing: -0.4px;
    padding-bottom: 6px;
}

.service-page-card:hover .service-page-card-title {
    color: #D8A259;
}

.service-page-card-desc {
    color: #44504D;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px; 
    margin: 0;
    height: 90px;
}

@media (max-width: 767px) {
    .services-listing-section {
        padding: 50px 0;
    }
    .service-page-card-body {
        padding: 25px 20px;
    }
    .service-page-card-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    .service-page-card-desc {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* --- PORTFOLIO PAGE CUSTOM STYLES --- */
.portfolio-listing-section {
    background-color: var(--color-light-bg);
    padding: 80px 0;
}

.portfolio-main-heading {
    color: var(--color-dark-green);
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.portfolio-row-card {
    background-color: var(--color-white);
    border: 1px solid rgba(216, 162, 89, 0.08);
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease;
}

.portfolio-row-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background-color: var(--color-dark-green);
    color: var(--color-gold);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 18px;
    z-index: 10;
}

.portfolio-row-footer {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.portfolio-row-info-left {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.portfolio-row-title {
    color: #132622;
    font-size: 24px;
    font-weight: 500;
    line-height: 24px; 
    margin-bottom: 6px;
}

.portfolio-row-card:hover .portfolio-row-title {
    color: #D8A259;
}

.portfolio-row-location {
    color: #44504D;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}
.portfolio-row-location span {
    color: #132622;
}
.portfolio-row-arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(19, 38, 34, 0.15);
    background-color: var(--color-white);
    color: var(--color-dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.portfolio-row-card:hover .portfolio-row-arrow-btn {
    background-color: var(--color-dark-green);
    color: var(--color-white);
    border-color: var(--color-dark-green);
}

@media (max-width: 767px) {
    .portfolio-listing-section {
        padding: 50px 0;
    }
    .portfolio-main-heading {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .portfolio-row-img-wrapper {
        aspect-ratio: 16/9;
    }
    .portfolio-row-footer {
        padding: 20px;
    }
    .portfolio-row-title {
        font-size: 18px;
    }
    .portfolio-row-location {
        font-size: 13px;
    }
    .portfolio-row-arrow-btn {
        width: 40px;
        height: 40px;
    }
    .portfolio-row-badge {
        top: 15px;
        left: 15px;
        padding: 8px 12px;
        font-size: 0.6rem;
    }
}

/* --- PRODUCT PAGE CUSTOM STYLES --- */
.product-details-section {
    background-color: #FBF5EC;
    padding: 80px 0;
}

.product-badge {
    background-color: #132622;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    padding: 10px 20px;
    display: inline-block;
}

.product-name-title {
    color: #132622;
    text-align: center;
    font-family: editors;
    font-size: 44px;
    font-weight: 400;
    line-height: 56px;
}

.product-name-location {
    color: #44504D;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.product-main-img-wrapper {
    width: 100%;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(216, 162, 89, 0.08);
}

.product-info-text {
    color: #44504D;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.product-info-subtitle {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.48px;
}

.product-bullets-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 30px;
}

.product-bullets-list li {
    position: relative;
    margin-bottom: 12px;
    color: #44504D;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

@media (max-width: 767px) {
    .product-details-section {
        padding: 50px 0;
    }
    .product-name-title {
        font-size: 28px;
    }
    .product-name-location {
        font-size: 14px;
    }
    .product-info-text {
        font-size: 15px;
        line-height: 1.6;
    }
    .product-info-subtitle {
        font-size: 20px;
    }
    .product-bullets-list li {
        font-size: 14px;
        padding-left: 20px;
        margin-bottom: 8px;
    }
    .product-bullets-list li::before {
        font-size: 18px;
        top: -1px;
    }
}

/* --- ABOUT US PAGE CUSTOM STYLES --- */
.about-listing-section {
    background-color: #FBF5EC;
    padding: 80px 0;
}

.about-page-welcome-title {
    color: #132622;
    font-family: editors;
    font-size: 44px;
    font-weight: 400;
    line-height: 56px;
}

.about-page-welcome-desc p {
    color: #6E7E7B;
    font-size: 18px;
    font-weight: 400;
    line-height: 37px;
}
.about-page-welcome-desc p strong{
    color: #132622;
    font-size: 24px;
    font-weight: 700;
    line-height: 37px; /* 154.167% */
}
.about-page-welcome-desc p span{
    font-weight: 700;
}
.about-page-welcome-desc p.lead-paragraph {
    font-size: 20px;
    line-height: 1.6;
}

.about-page-box {
    background-color: var(--color-white);
    border: 1px solid rgba(216, 162, 89, 0.08);
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease;
}

.about-page-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(19, 38, 34, 0.08);
    border-color: rgba(216, 162, 89, 0.25);
}

.about-page-box .img-box {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.about-page-box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-page-box:hover .img-box img {
    transform: scale(1.04);
}

.about-page-box .content-box {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.about-page-box .box-title {
    color: #132622;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px; 
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.about-page-box .box-desc {
    color: #132622;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin: 0;
}

.about-mission-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 30px;
}

.about-mission-list li {
    color: #132622;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
}



.about-video-frame-container {
    position: relative;
    width: 100%;
    aspect-ratio: 21/9;
    overflow: hidden;
    background-color: #E6DFD5;
}

.about-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.about-slide.active {
    opacity: 1;
    z-index: 2;
}

.leader-img-wrapper {
    width: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(216, 162, 89, 0.08);
}

.leadership-title {
    color: #132622;
    font-family: editors;
    font-size: 44px;
    font-weight: 400;
    line-height: 56px; 
}

.leadership-content-desc p {
    color: #132622;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
}
.leadership-content-desc p strong{
    font-weight: 700;
}
.leader-signature-block {
    text-align: left;
}

.founder-signature {
    font-family: 'Cormorant Garamond', 'editors', Georgia, serif;
    font-size: 40px;
    font-weight: 400;
    font-style: italic;
    color: var(--color-dark-green);
    opacity: 0.8;
    letter-spacing: 1px;
}

.founder-name {
    color: #132622;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px; /* 120% */
    margin: 0;
}

.founder-title {
    color: #44504D;
    font-size: 14px;
    font-style: italic;
    font-weight: 500;
    line-height: 24px;
}

@media (max-width: 991px) {
    .about-video-frame-container {
        aspect-ratio: 16/9;
    }
    .video-placeholder-inner {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .about-listing-section {
        padding: 50px 0;
    }
    .about-page-welcome-title {
        font-size: 28px;
        line-height: 34px;
    }
    .about-page-welcome-desc p {
        font-size: 15px;
        line-height: 28px;
    }
    .about-page-welcome-desc p.lead-paragraph {
        font-size: 17px;
    }
    .about-page-box .content-box {
        padding: 25px 20px;
    }
    .about-page-box .box-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .about-page-box .box-desc, .about-mission-list li {
        font-size: 14px;
    }
    .leadership-title {
        font-size: 26px;
    }
    .leadership-content-desc p {
        font-size: 14px;
        line-height: 1.6;
    }
    .founder-signature {
        font-size: 32px;
    }
    .founder-name {
        font-size: 18px;
    }
    .founder-title {
        font-size: 12px;
    }
    .inner-hero-title{
        line-height: 54px;
        font-size: 44px;
    }
}

/* --- PORTFOLIO CAROUSEL --- */
.portfolio-carousel-item img {
    display: block;
    width: 100%;
    height: auto;
}

.portfolio-row-badge {
    z-index: 15;
}

.portfolio-carousel .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 15;
    margin-top: 0 !important;
}

.portfolio-carousel .owl-dot span {
    width: 25px !important;
    height: 2.5px !important;
    border-radius: 0 !important;
    background: rgba(210, 151, 80, 0.6) !important;
    margin: 0 !important;
    transition: background-color 0.3s ease, width 0.3s ease;
}

.portfolio-carousel .owl-dot.active span {
    background: #ffffff !important;
    width: 35px !important;
}