/* ============================================
   Global Styles & Variables
   ============================================ */
:root {
    --primary-green: #6B8E23;
    --dark-green: #275316;
    --light-green: #9ACD32;
    --olive-green: #808000;
    --brown: #3E2723;
    --dark-brown: #2C1810;
    --beige: #F5F5DC;
    --light-beige: #FAF9F6;
    --main-bg: #FFF9F2;
    --gold: #D4AF37;
    --dark-purple: #4B0082;
    --dark-grey: #333333;
    --light-grey: #666666;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Helvetica Neue', sans-serif;
    color: var(--dark-grey);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--main-bg);
}

/* h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Infant', serif;
    font-weight: 600;
} */

/* ============================================
   Global Container Padding - Increased for better layout
   ============================================ */
.container {
    padding-left: 60px;
    padding-right: 60px;
}

@media (max-width: 1400px) {
    .container {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width: 1200px) {
    .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 991px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ============================================
   Header Section
   ============================================ */
.header-section {
    background-color: var(--main-bg);
    padding: 5px 40px;
    position: relative;
    z-index: 100;
    box-shadow: none !important;
    font-family: 'Helvetica Neue', sans-serif;
    width: 100%;
}

@media (max-width: 1400px) {
    .header-section {
        padding: 5px 30px;
    }
}

@media (max-width: 1200px) {
    .header-section {
        padding: 5px 20px;
    }
}

@media (max-width: 992px) {
    .header-section {
        padding: 5px 15px;
    }
}

@media (max-width: 768px) {
    .header-section {
        padding: 5px 10px;
    }
}

@media (max-width: 576px) {
    .header-section {
        padding: 5px 8px;
    }
}

.header-section .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.navbar {
    padding: 0;
}

.navbar .container-fluid {
    padding-left: 0;
    padding-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
}

.navbar .container-fluid > * {
    flex-shrink: 0;
}

.navbar-toggler {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.25rem 0.5rem;
    background-color: transparent;
    flex-shrink: 0;
    margin-left: auto;
    order: 2;
}

@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
    outline: none;
}

.navbar-collapse {
    flex-basis: auto;
    flex-grow: 1;
    align-items: center;
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--main-bg);
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .navbar-collapse:not(.show) {
        display: none;
    }
    
    .navbar-collapse.show {
        display: block;
    }
    
    .navbar .container-fluid {
        position: relative;
    }
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.logo-img {
    height: 80px;
    width: auto;
    margin: 0;
    padding: 0;
    display: block;
}

@media (max-width: 1400px) {
    .logo-img {
        height: 70px;
    }
}

@media (max-width: 1200px) {
    .logo-img {
        height: 60px;
    }
}

@media (max-width: 992px) {
    .logo-img {
        height: 55px;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 50px;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 45px;
    }
}

@media (max-width: 400px) {
    .logo-img {
        height: 40px;
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-grey);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 14px;
    font-weight: 400;
    color: var(--dark-grey);
    letter-spacing: 0.5px;
}

.navbar-nav {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    gap: 0;
}

@media (max-width: 991px) {
    .navbar-nav {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .navbar-nav .nav-link {
        font-size: 16px !important;
        padding: 12px 20px !important;
        text-align: center;
        width: 100%;
    }
}

.navbar-nav .nav-link {
    color: #000000 !important;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 10px !important;
    transition: color 0.3s;
    font-family: 'Helvetica Neue', sans-serif;
    white-space: nowrap;
    margin: 0;
}

@media (max-width: 1400px) {
    .navbar-nav .nav-link {
        font-size: 16px;
        padding: 6px 15px !important;
    }
}

@media (max-width: 1200px) {
    .navbar-nav .nav-link {
        font-size: 15px;
        padding: 5px 12px !important;
    }
}

@media (max-width: 992px) {
    .navbar-nav .nav-link {
        font-size: 14px;
        padding: 5px 10px !important;
    }
}

@media (max-width: 768px) {
    .navbar-nav .nav-link {
        font-size: 13px;
        padding: 4px 8px !important;
    }
}

@media (max-width: 576px) {
    .navbar-nav .nav-link {
        font-size: 12px;
        padding: 4px 6px !important;
    }
}

/* Dropdown Menu Styles */
.navbar-nav .dropdown-menu {
    background-color: #FFFFFF;
    border: 1px solid #E8E4D3;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 160px;
    margin-top: 0;
}

.navbar-nav .dropdown-item {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.navbar-nav .dropdown-header {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #AB8B44;
    letter-spacing: 1px;
    padding: 8px 20px;
    text-transform: uppercase;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
    background-color: #F4EDE0;
    color: #C9A148;
}

.navbar-nav .dropdown-item.active {
    background-color: #F4EDE0;
    color: #C9A148;
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border-top: 5px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

@media (max-width: 991px) {
    .navbar-nav .nav-item.dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .navbar-nav .dropdown-toggle {
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }
    
    .navbar-nav .dropdown-menu {
        position: static !important;
        transform: none !important;
        float: none !important;
        background-color: #F4EDE0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        text-align: center;
        padding: 10px 0;
        width: 100%;
        margin: 5px 0 0 0 !important;
        display: none;
        inset: unset !important;
    }
    
    .navbar-nav .dropdown-menu.show {
        display: block !important;
    }
    
    .navbar-nav .dropdown-menu[data-bs-popper] {
        top: 100% !important;
        left: 0 !important;
        transform: none !important;
        right: 0 !important;
        margin-top: 5px !important;
    }
    
    .navbar-nav .dropdown-header {
        font-size: 10px;
        color: #AB8B44;
        text-align: center;
        padding: 8px 20px;
    }
    
    .navbar-nav .dropdown-item {
        color: #333333;
        padding: 12px 20px;
        font-size: 15px;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .navbar-nav .dropdown-item:hover,
    .navbar-nav .dropdown-item.active {
        background-color: rgba(201, 161, 72, 0.2);
        color: #C9A148;
    }
}

.nav-item .nav-divider {
    width: 1px;
    height: 30px;
    background-color: #CCCCCC;
    margin: 0 20px;
    opacity: 1;
    display: block;
    align-self: center;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .nav-item .nav-divider {
        margin: 0 15px;
        height: 25px;
    }
}

@media (max-width: 992px) {
    .nav-item .nav-divider {
        display: none;
    }
}

/* Hide divider on mobile */
.nav-item > div[style*="height: 50px"] {
    display: block;
}

/* Navbar Phone Number Styles */
.navbar-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #275316;
    transition: color 0.3s ease;
}

.navbar-phone:hover {
    color: #AB8B44;
}

.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #7CB342, #558B2F);
    border-radius: 50%;
    color: #fff;
    flex-shrink: 0;
}

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

.phone-number {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

@media (max-width: 1400px) {
    .phone-icon {
        width: 32px;
        height: 32px;
    }
    
    .phone-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .phone-number {
        font-size: 15px;
    }
    
    .navbar-phone {
        gap: 8px;
    }
}

@media (max-width: 1200px) {
    .phone-icon {
        width: 30px;
        height: 30px;
    }
    
    .phone-icon svg {
        width: 15px;
        height: 15px;
    }
    
    .phone-number {
        font-size: 14px;
    }
    
    .navbar-phone {
        gap: 6px;
    }
}

@media (max-width: 1100px) {
    .phone-number {
        display: none;
    }
    
    .navbar-phone {
        gap: 0;
    }
}

@media (max-width: 991px) {
    .phone-number {
        display: block;
        font-size: 15px;
    }
    
    .phone-icon {
        width: 32px;
        height: 32px;
    }
    
    .phone-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .navbar-phone {
        gap: 10px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .phone-number {
        font-size: 14px;
    }
    
    .phone-icon {
        width: 28px;
        height: 28px;
    }
    
    .phone-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .navbar-phone {
        gap: 8px;
    }
}

@media (max-width: 400px) {
    .phone-number {
        font-size: 13px;
    }
    
    .phone-icon {
        width: 26px;
        height: 26px;
    }
    
    .phone-icon svg {
        width: 13px;
        height: 13px;
    }
}


/* Improve touch interactions on mobile */
@media (max-width: 992px) {
    /* Disable hover flip on touch devices */
    /* Cards container mobile adjustments */
    .cards-container .col-6 {
        height: 50%;
    }
}



.navbar-nav .nav-item {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .navbar-nav .nav-item {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .navbar-nav {
        flex-wrap: nowrap !important;
    }
    
    .navbar-nav .nav-item {
        flex-shrink: 0;
    }
    
    .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
}

@media (max-width: 991px) {
    .navbar-nav .nav-item:last-child {
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
    }
}

.nav-divider-spacer {
    width: 20px;
    display: block;
    flex-shrink: 0;
}

@media (max-width: 1400px) {
    .nav-divider-spacer {
        width: 15px;
    }
}

@media (max-width: 1200px) {
    .nav-divider-spacer {
        width: 12px;
    }
}

@media (max-width: 992px) {
    .nav-divider-spacer {
        width: 10px;
    }
}

@media (max-width: 768px) {
    .nav-divider-spacer {
        width: 8px;
    }
}

@media (max-width: 576px) {
    .nav-divider-spacer {
        width: 6px;
    }
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-green) !important;
}

.header-right {
    gap: 15px;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

@media (max-width: 1400px) {
    .header-right {
        gap: 12px;
    }
}

@media (max-width: 1200px) {
    .header-right {
        gap: 10px;
    }
}

@media (max-width: 992px) {
    .header-right {
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .header-right {
        gap: 6px;
    }
}

@media (max-width: 576px) {
    .header-right {
        gap: 5px;
    }
}

@media (max-width: 991px) {
    .header-right {
        gap: 20px;
        justify-content: center;
        margin: 25px auto 10px;
        padding: 25px 20px 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-divider-spacer {
        display: none;
    }
    
    .navbar-nav .nav-item:last-child {
        justify-content: center;
        width: 100%;
    }
    
    .navbar-phone {
        margin-bottom: 5px;
    }
    
    .enquire-btn-img {
        width: 180px !important;
        max-height: 45px !important;
    }
}

@media (max-width: 768px) {
    .header-right {
        gap: 8px;
        justify-content: center;
        align-items: center;
        margin: 15px auto 0;
        padding: 0;
        width: auto;
        display: flex;
    }
    
    .navbar-nav .nav-item:last-child {
        justify-content: center;
        padding: 0;
        margin: 0;
    }
    
    .enquire-btn-img {
        margin: 0;
        padding: 0;
    }
    
    .navbar-phone {
        margin: 0;
        padding: 0;
    }
}

.enquire-btn-img {
    height: auto;
    max-height: 50px;
    width: 220px;
    cursor: pointer;
    transition: opacity 0.3s;
    margin: 0;
    padding: 0;
    display: block;
}

@media (max-width: 1400px) {
    .enquire-btn-img {
        width: 190px;
        max-height: 45px;
    }
}

@media (max-width: 1200px) {
    .enquire-btn-img {
        width: 170px;
        max-height: 40px;
    }
}

@media (max-width: 992px) {
    .enquire-btn-img {
        width: 150px;
        max-height: 35px;
    }
}

@media (max-width: 768px) {
    .enquire-btn-img {
        width: 130px;
        max-height: 32px;
    }
}

@media (max-width: 576px) {
    .enquire-btn-img {
        width: 110px;
        max-height: 28px;
    }
}

@media (max-width: 400px) {
    .enquire-btn-img {
        width: 95px;
        max-height: 25px;
    }
}


.enquire-btn-img:hover {
    opacity: 0.8;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    width: 100%;
    padding: 0 35px;
}

.hero-wrapper {
    position: relative;
    width: 100%;
    display: block;
}

.hero-background {
    position: relative;
    width: 100%;
    display: block;
}

.hero-bg-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Hero Text Overlay */
.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 12%;
    transform: translateY(-50%);
    max-width: 380px;
    z-index: 10;
}

.hero-overlay-text {
    font-family: 'Cormorant Infant', serif;
    font-size: 22px;
    font-weight: 800;
    font-style: italic;
    color: #5a4a3a;
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

@media (max-width: 1400px) {
    .hero-text-overlay {
        left: 10%;
        max-width: 340px;
    }
    
    .hero-overlay-text {
        font-size: 20px;
    }
}

@media (max-width: 1200px) {
    .hero-text-overlay {
        left: 8%;
        max-width: 300px;
    }
    
    .hero-overlay-text {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .hero-text-overlay {
        left: 5%;
        max-width: 260px;
    }
    
    .hero-overlay-text {
        font-size: 16px;
        line-height: 1.5;
    }
}

@media (max-width: 768px) {
    .hero-text-overlay {
        left: 4%;
        max-width: 220px;
    }
    
    .hero-overlay-text {
        font-size: 14px;
        line-height: 1.4;
    }
}

@media (max-width: 576px) {
    .hero-text-overlay {
        left: 10%;
        max-width: 180px;
        top: 45%;
    }
    
    .hero-overlay-text {
        font-size: 12px;
        line-height: 1.3;
    }
}

@media (max-width: 400px) {
    .hero-overlay-text {
        width: 120px;
        font-size: 8px;
        line-height: 1.3;
    }
}

/* @media (max-width: 400px) {
    .hero-text-overlay {
        display: none;
    }
} */

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 35px;
    padding-right: 35px;
}

@media (max-width: 768px) {
    .hero-content {
        align-items: flex-start;
        padding-top: 20px;
    }
}

@media (max-width: 576px) {
    .hero-content {
        align-items: flex-start;
        padding-top: 15px;
    }
}

.scroll-graphic {
    padding: 55px 30px 50px 170px;
    position: relative;
    z-index: 1;
    max-width: 560px;
    width: auto;
}

@media (max-width: 992px) {
    .scroll-graphic {
        max-width: 100%;
    }
}

.scroll-text {
    font-family: 'Cormorant Infant', serif;
    font-style: italic;
    font-size: 22px;
    color: var(--dark-grey);
    line-height: 1.3;
    margin: 0;
    font-weight: 600;
}

.hero-title {
    font-size: 32px;
    font-weight: 400;
    color: var(--dark-grey);
    margin: 0;
    text-align: right;
    position: relative;
    z-index: 1;
    font-family: 'Inter', sans-serif;
}

/* ============================================
   Gandhi EMPIRE 3X Section
   ============================================ */
.empire-section {
    padding: 45px 0 60px 0;
    background-color: var(--main-bg);
}

.empire-header {
    text-align: center;
    margin-bottom: 45px;
}

.empire-logo-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

/* ============================================
   Common Section Heading Styles
   ============================================ */
.section-main-heading {
    font-family: 'Cormorant Infant', serif;
    font-size: 32px;
    font-weight: 500;
    color: #AB8B44;
    text-transform: uppercase;
    /* letter-spacing: 2px; */
    margin-bottom: 10px;
}

.section-sub-text {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    text-transform: uppercase;
    /* letter-spacing: 1px; */
    margin: 0;
}

.empire-title {
    font-size: 42px;
    font-weight: 300;
    color: var(--light-grey);
    margin-bottom: 15px;
}

.empire-main {
    font-size: 56px;
    font-weight: 700;
    color: var(--dark-grey);
    position: relative;
    display: inline-block;
}

.crown-icon {
    color: var(--gold);
    font-size: 24px;
    margin-left: 10px;
    vertical-align: top;
}

.empire-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-grey);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.empire-description {
    font-size: 14px;
    font-weight: 400;
    color: var(--light-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.empire-content {
    margin-top: 40px;
}

.empire-content > .row {
    margin: 0;
    padding: 0;
    align-items: stretch;
    display: flex;
    gap: 0;
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.empire-content .col-lg-7 {
    padding: 0 !important;
    margin: 0;
    display: flex;
    align-items: stretch;
    height: 100%;
}

.empire-content .col-lg-5 {
    padding: 0 !important;
    margin: 0;
    display: flex;
    align-items: stretch;
    height: 100%;
}

.col-lg-5 > .row {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    position: relative;
}

.empire-content .col-md-6 {
    padding: 0;
    margin: 0;
    display: flex;
    width: 50%;
    height: 50%;
    position: relative;
    z-index: 1;
}


.empire-building-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin: 0;
    display: block;
}

.empire-building-container {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.empire-learn-more-wrapper {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.empire-learn-more-btn {
    height: 40px;
    width: auto;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.empire-learn-more-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.core-values-img.empire-content .col-lg-5 > .row {
    align-items: stretch;
}

/* ============================================
   Flip Container - Entire section flips as one card
   ============================================ */
/* Cards Container - No Flip */
.cards-container {
    padding: 0 !important;
}

.cards-container .row {
    margin: 0;
    height: 100%;
}

.cards-container .col-6 {
    padding: 0;
    height: 50%;
}

/* Feature Card Link */
.feature-card-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    pointer-events: none;
}

.feature-card-link.active {
    pointer-events: auto;
}

.feature-card-link:hover .feature-card {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-card-link:hover .feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

/* New Feature Cards with Separate Icon and Text */
.feature-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.feature-card-purple {
    background: radial-gradient(50% 50% at 50% 50%, #3C2B76 0%, #2D2548 100%);
}

.feature-card-gold {
    background: radial-gradient(50% 50% at 50% 50%, #CDB070 0%, #AB8B44 100%);
}

.feature-card-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.feature-card-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.feature-card-text {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Scroll Animation - Icon appears first, then text */
.animate-on-scroll.animated .feature-card-icon {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.animated .feature-card-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

/* Feature card images */
.feature-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.feature-card-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    padding: 0;
    margin: 0;
    border-radius: 0;
}

.feature-icon {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-text {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   CASA WOOD Section
   ============================================ */
.casa-wood-section {
    background-color: var(--main-bg);
}

.casa-wood-header {
    text-align: center;
    margin-bottom: 40px;
}

.casa-wood-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 25px;
    font-weight: bolder;
    color: #275316;
    text-transform: uppercase;
    /* letter-spacing: 3px; */
    margin-bottom: 8px;
}

.casa-wood-content {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.casa-wood-content .col-lg-5,
.casa-wood-content .col-lg-7 {
    padding: 0 !important;
}

.casa-wood-text-panel {
    background-color: var(--dark-green);
    padding: 50px 40px;
    height: 450px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.casa-wood-text {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 20px;
    transform: skewX(-8deg);
    letter-spacing: 0.3px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.casa-wood-text:last-of-type {
    margin-bottom: 30px;
}

.btn-contact-img {
    max-width: 100px;
    height: auto;
    display: block;
    cursor: pointer;
    transition: opacity 0.3s;
    margin: 0 auto;
}

.btn-contact-img:hover {
    opacity: 0.8;
}

.casa-wood-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

/* ============================================
   Clients, Testimonials & Legacy Section
   ============================================ */
section.clients-testimonials {
    overflow: visible;
}

section.clients-testimonials .container {
    overflow: visible;
}

.clients-testimonials-section {
    margin: 60px 60px;
    background-color: #F3FFD9;
    max-height: 450px;
    overflow: hidden;
    padding: 20px;
    /* padding: 20px 0;
    border-left: 2px solid #85A63D;
    border-right: 2px solid #85A63D;
    border-bottom: 2px solid #85A63D; */
}

.clients-testimonials-section .row {
    max-height: 450px;
    overflow: visible;
}

@media (max-width: 992px) {
    .clients-testimonials-section {
        max-height: none;
        overflow: visible;
    }
    
    .clients-testimonials-section .row {
        max-height: none;
        overflow: visible;
    }
}

.section-divider {
    position: absolute;
    right: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #85A63D;
}

.col-lg-3,
.col-lg-4,
.col-lg-6 {
    position: relative;
}

/* Center CORPORATE CLIENTS section */
.clients-testimonials-section .col-lg-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.clients-testimonials-section .col-lg-3 .section-heading,
.clients-testimonials-section .col-lg-3 .section-subheading {
    text-align: center;
}

.clients-testimonials-section .col-lg-3 .clients-carousel-wrapper {
    margin: 0 auto;
}

/* Add left padding to TESTIMONIALS section */
.clients-testimonials-section .col-lg-6 {
    padding-left: 30px;
}

.clients-testimonials-section .col-lg-6 .testimonial-card {
    padding-left: 0;
}

.col-lg-3:last-child .section-divider,
.col-lg-4:last-child .section-divider,
.col-lg-6:last-child .section-divider {
    display: none;
}

.section-heading {
    font-size: 30px;
    font-weight: 500;
    color: #AB8B44;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-family: 'Cormorant Infant', serif;
    padding-top: 30px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section-subheading {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    text-transform: uppercase;
    font-family: 'Helvetica Neue', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-bottom: 20px;
}

.clients-carousel-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.clients-carousel {
    display: flex;
    flex-direction: column;
    animation: scrollUp 12s linear infinite;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.clients-carousel:hover {
    animation-play-state: paused;
}

.client-logo-item {
    min-height: 80px;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-img {
    max-width: 150px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.5s ease;
}

.client-tagline {
    font-size: 13px;
    color: var(--dark-grey);
    font-style: italic;
    margin: 12px 0 0 0;
    opacity: 0.6;
    transition: opacity 0.8s ease-in-out;
}

.client-logo-item.active .client-tagline {
    opacity: 1;
    color: var(--dark-grey);
}

.testimonial-card {
    /* background-color: var(--main-bg); */
    padding: 30px;
    /* border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05); */
}

.testimonial-slider {
    position: relative;
    min-height: 160px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .testimonial-slider {
        min-height: 200px;
    }
}

@media (max-width: 576px) {
    .testimonial-slider {
        min-height: 240px;
    }
}

.testimonial-content {
    display: none;
    gap: 20px;
    margin-bottom: 20px;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}

.testimonial-content.active {
    display: flex;
    opacity: 1;
    animation: fadeIn 0.5s ease-in-out;
}

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

.testimonial-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(171, 139, 68, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #AB8B44;
    transform: scale(1.2);
}

.testimonial-img {
    /* width: 80px;
    height: 80px;
    border-radius: 50%; */
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-text-wrapper {
    flex: 1;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-text,
.testimonial-name,
.testimonial-position {
    transition: opacity 0.5s ease-in-out;
}

.testimonial-text {
    font-size: 14px;
    color: var(--dark-grey);
    line-height: 1.6;
    margin-bottom: 10px;
    font-style: italic;
    font-family: 'Helvetica Neue', sans-serif;
}

.testimonial-name {
    font-size: 16px;
    font-weight: bolder;
    color: var(--dark-grey);
    margin-bottom: 5px;
}

.testimonial-position {
    font-size: 14px;
    color: var(--light-grey);
    margin: 0;
}

.testimonial-nav {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.testimonial-arrow {
    background-color: #F3FFD9;
    border: 1px solid #8B6F2A;
    color: #8B6F2A;
    width: 35px;
    height:35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

.testimonial-arrow:hover {
    background-color: #F3FFD9;
    border-color: #8B6F2A;
    color: #8B6F2A;
    opacity: 0.8;
}

.legacy-section {
    text-align: center;
    padding: 0;
}

@media (max-width: 992px) {
    .legacy-section {
        padding-top: 0 !important;
    }
    
    .legacy-section.pt-5 {
        padding-top: 0 !important;
    }
}

@media (max-width: 768px) {
    .legacy-section.pt-5 {
        padding-top: 0 !important;
    }
}

@media (max-width: 576px) {
    .legacy-section.pt-5 {
        padding-top: 0 !important;
    }
}

.legacy-img {
    width: 100%;
    max-width:225px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

.legacy-stats {
    margin-top: 20px;
}

.legacy-stats p {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 3px;
    line-height: 1;
    font-family: 'Helvetica Neue', sans-serif;
}

/* ============================================
   Footer Section
   ============================================ */
.footer-section {
    background-image: url('../images/footer-img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 50px 0 15px;
    position: relative;
}

.footer-section > * {
    position: relative;
    z-index: 1;
}

.footer-content {
    margin-bottom: 30px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Cormorant Infant', serif;
}

.footer-company {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.4;
}

.footer-address {
    font-size: 16px;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-contact {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.4;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-section-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255,255,255,0.2);
    margin-top: 10px;
    margin-bottom: 20px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-grey);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.social-icon:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

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

.footer-links li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-links li a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    position: relative;
    padding-left: 12px;
    transition: color 0.3s;
    line-height: 1.5;
}

.footer-links li a::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--white);
    font-size: 13px;
}

.footer-links li a:hover {
    color: var(--primary-green);
}

.footer-form {
    margin-top: 0;
}

.footer-input {
    background-color: transparent;
    /* border: 1px solid rgba(255,255,255,0.3); */
    color: var(--white);
    padding: 10px 12px;
    border-radius: 0;
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.footer-input::placeholder {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.footer-input:focus {
    background-color: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
    outline: none;
}

.footer-textarea {
    resize: vertical;
    min-height: 80px;
    border-radius: 0;
}

.btn-submit-img-wrapper {
    background: transparent;
    border: none;
    padding: 0;
    width: 100%;
    display: block;
    cursor: pointer;
}

.btn-submit-img {
    width: 100%;
    max-width: 50%;
    height: auto;
    display: block;
    transition: opacity 0.3s;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .btn-submit-img {
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .btn-submit-img {
        max-width: 150px;
    }
}

@media (max-width: 400px) {
    .btn-submit-img {
        max-width: 120px;
    }
}

/* ========================= */
/* PROJECT PAGE STYLES */
/* ========================= */

/* Project Hero Section */
.project-hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 100%;
}

.project-hero-title {
    font-family: 'Cormorant Infant', serif;
    font-size: 52px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7), 0 0 10px rgba(0, 0, 0, 0.5);
}

.project-hero-subtitle {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Project Introduction Section */
.project-intro-section {
    background-color: var(--main-bg);
    padding: 0;
}

.project-intro-wrapper {
    position: relative;
}

.project-intro-content {
    background-color: #FAF8F3;
    padding: 40px 0 20px 0;
}

.project-intro-title {
    font-family: 'Cormorant Infant', serif;
    font-size: 52px;
    font-weight: 700;
    color: #AB8B44;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.project-intro-subtitle {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 12px;
}

.project-intro-location {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    color: #AB8B44;
    margin-bottom: 0;
    font-weight: 400;
}

.project-intro-location i {
    color: #AB8B44;
    margin-right: 5px;
    font-size: 14px;
}

.project-main-image-wrapper {
    background-color: var(--main-bg);
    padding: 0 0 0 0;
}

.project-main-image {
    width: 100%;
    height: 550px;
    display: block;
    object-fit: cover;
    border-radius: 0;
}

.project-intro-description {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    color: #333333;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: left;
}

.project-intro-description:last-child {
    margin-bottom: 0;
}

.project-intro-content .col-lg-6:first-child {
    padding-right: 40px;
}

.project-intro-content .col-lg-6:last-child {
    padding-left: 20px;
}

.project-info-bar-wrapper {
    background-color: var(--main-bg);
    padding: 0 0 30px 0;
}

.project-info-bar {
    background-image: url('../images/project-info-bar-wrapper-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 35px 40px;
    width: 100%;
    border-radius: 0;
    position: relative;
}

.project-info-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(45, 37, 72, 0.85);
    z-index: 0;
}

.project-info-bar .row {
    position: relative;
    z-index: 1;
}

.info-bar-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-bar-icon {
    width: 35px;
    height: 35px;
    background-color: #C4A869;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-bar-icon i {
    font-size: 26px;
    color: #FFFFFF;
}

.info-bar-content {
    flex: 1;
}

.download-btn,
.elevating-navbar-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-block;
}

.download-btn img,
.elevating-navbar-btn img {
    display: block;
    height: 45px;
    width: auto;
}

.download-btn:hover,
.elevating-navbar-btn:hover {
    opacity: 0.9;
}

.info-bar-label {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.info-bar-value {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.btn-download-brochure {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #87A055;
    color: #FFFFFF;
    padding: 18px 45px;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
}

.btn-download-brochure:hover {
    background-color: #748a49;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(135, 160, 85, 0.4);
}

.btn-download-brochure i {
    font-size: 16px;
}

.project-logo {
    max-width: 200px;
    height: auto;
    display: block;
}

/* Space Design Section */
.space-design-section {
    background-color: var(--main-bg);
    padding: 0;
    margin: 0;
    width: 100%;
}

.space-design-section .row {
    margin: 0;
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.space-design-carousel-wrapper {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: stretch;
}

.space-design-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
}

.space-design-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.space-design-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.space-design-slide.active {
    opacity: 1;
    z-index: 1;
}

.space-design-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.space-design-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.space-design-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #AB8B44;
    background-color: rgba(255, 255, 255, 0.9);
    color: #AB8B44;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.space-design-arrow:hover {
    background-color: #AB8B44;
    color: #FFFFFF;
    transform: scale(1.1);
}

.space-design-arrow:active {
    transform: scale(0.95);
}

.space-design-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.space-design-indicators {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.space-design-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid #AB8B44;
    cursor: pointer;
    transition: all 0.3s ease;
}

.space-design-indicators .indicator.active {
    background-color: #AB8B44;
    border-color: #AB8B44;
    transform: scale(1.2);
}

.space-design-indicators .indicator:hover {
    background-color: rgba(171, 139, 68, 0.7);
}

.space-design-content-wrapper {
    background-color: #2D2548;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.space-design-content {
    padding: 60px 50px;
    color: #FFFFFF;
}

.space-design-title {
    font-family: 'Cormorant Infant', serif;
    font-size: 38px;
    font-weight: 700;
    color: #C4A869;
    line-height: 1.3;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.space-design-text {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 20px;
}

.space-design-text:last-child {
    margin-bottom: 0;
}

/* Space Design Category Styles */
.space-design-category {
    margin-bottom: 20px;
}

.space-design-category:last-child {
    margin-bottom: 0;
}

.space-design-category-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.space-design-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.space-design-list li {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 5px;
    padding-left: 18px;
    position: relative;
}

.space-design-list li:last-child {
    margin-bottom: 0;
}

.space-design-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
}

/* Responsive Styles for Space Design Section */
@media (max-width: 992px) {
    .space-design-section .row {
        flex-direction: column;
    }
    
    .space-design-carousel-wrapper {
        min-height: 500px;
        order: 1;
    }
    
    .space-design-carousel-container {
        min-height: 500px;
    }
    
    .space-design-carousel {
        min-height: 500px;
    }
    
    .space-design-content-wrapper {
        min-height: auto;
        order: 2;
    }
    
    .space-design-content {
        padding: 50px 40px;
    }
    
    .space-design-title {
        font-size: 32px;
        text-align: center;
    }
    
    .space-design-text {
        text-align: center;
        font-size: 14px;
    }
    
    .space-design-category-title {
        text-align: left;
    }
    
    .space-design-list li {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .space-design-carousel-wrapper {
        min-height: 400px;
    }
    
    .space-design-carousel-container {
        min-height: 400px;
    }
    
    .space-design-carousel {
        min-height: 400px;
    }
    
    .space-design-content {
        padding: 40px 30px;
    }
    
    .space-design-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .space-design-text {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .space-design-category {
        margin-bottom: 18px;
    }
    
    .space-design-category-title {
        font-size: 12px;
    }
    
    .space-design-list li {
        font-size: 11px;
    }
    
    .space-design-arrow {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .space-design-nav {
        bottom: 20px;
    }
    
    .space-design-indicators {
        bottom: 80px;
    }
}

@media (max-width: 576px) {
    .space-design-carousel-wrapper {
        min-height: 350px;
    }
    
    .space-design-carousel-container {
        min-height: 350px;
    }
    
    .space-design-carousel {
        min-height: 350px;
    }
    
    .space-design-content {
        padding: 35px 25px;
    }
    
    .space-design-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .space-design-text {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .space-design-category {
        margin-bottom: 15px;
    }
    
    .space-design-category-title {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .space-design-list li {
        font-size: 10px;
        padding-left: 15px;
    }
    
    .space-design-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .space-design-nav {
        bottom: 15px;
        gap: 10px;
    }
    
    .space-design-indicators {
        bottom: 70px;
    }
    
    .space-design-indicators .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Elevating Every Business Moment Section */
.elevating-business-section {
    background-color: var(--main-bg);
    padding: 0;
    margin: 0;
    width: 100%;
}

.elevating-business-section .row {
    margin: 0;
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.elevating-content-wrapper {
    background-color: #2D2548;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.elevating-content {
    padding: 60px 50px;
    color: #FFFFFF;
}

.elevating-title {
    font-family: 'Cormorant Infant', serif;
    font-size: 38px;
    font-weight: 700;
    color: #C4A869;
    line-height: 1.3;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.elevating-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.elevating-feature-item {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

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

.elevating-feature-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

.feature-text {
    display: block;
}

/* New Elevating Business List Styles */
.elevating-business-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.elevating-business-list li {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.elevating-business-list li:last-child {
    margin-bottom: 0;
}

.elevating-business-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

/* Responsive Styles for Elevating Business List */
@media (max-width: 992px) {
    .elevating-business-list {
        margin-bottom: 35px;
    }
    
    .elevating-business-list li {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .elevating-business-list li {
        font-size: 13px;
        margin-bottom: 8px;
        padding-left: 18px;
    }
}

@media (max-width: 576px) {
    .elevating-business-list {
        margin-bottom: 30px;
    }
    
    .elevating-business-list li {
        font-size: 12px;
        margin-bottom: 6px;
        padding-left: 16px;
    }
    
    .elevating-business-list li::before {
        font-size: 12px;
    }
}

.btn-enquire-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #87A055;
    color: #275316;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #275316;
    position: relative;
    overflow: hidden;
}

.btn-enquire-now::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 15px solid #87A055;
    transition: all 0.3s ease;
}

.btn-enquire-now:hover {
    background-color: #748a49;
    color: #FFFFFF;
    border-color: #275316;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(135, 160, 85, 0.4);
}

.btn-enquire-now:hover::after {
    border-left-color: #748a49;
}

.btn-enquire-now i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-enquire-now:hover i {
    transform: translateX(3px);
}

.elevating-image-wrapper {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.elevating-image {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    display: block;
}

/* Responsive Styles for Elevating Business Section */
@media (max-width: 992px) {
    .elevating-business-section .row {
        flex-direction: column;
    }
    
    .elevating-content-wrapper {
        min-height: auto;
        order: 1;
    }
    
    .elevating-content {
        padding: 50px 40px;
    }
    
    .elevating-title {
        font-size: 32px;
        text-align: center;
        margin-bottom: 35px;
    }
    
    .elevating-features-list {
        margin-bottom: 35px;
    }
    
    .elevating-feature-item {
        text-align: left;
        font-size: 12px;
        font-weight: 400;
    }
    
    .elevating-image-wrapper {
        min-height: 500px;
        order: 2;
    }
    
    .elevating-image {
        min-height: 500px;
    }
    
    .btn-enquire-now {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .elevating-content {
        padding: 40px 30px;
    }
    
    .elevating-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .elevating-feature-item {
        font-size: 12px;
        font-weight: 400;
        margin-bottom: 10px;
        padding-left: 18px;
    }
    
    .elevating-image-wrapper {
        min-height: 400px;
    }
    
    .elevating-image {
        min-height: 400px;
    }
    
    .btn-enquire-now {
        padding: 14px 35px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .elevating-content {
        padding: 35px 25px;
    }
    
    .elevating-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .elevating-features-list {
        margin-bottom: 30px;
    }
    
    .elevating-feature-item {
        font-size: 11px;
        font-weight: 400;
        margin-bottom: 8px;
        padding-left: 16px;
        line-height: 1.6;
    }
    
    .elevating-feature-item::before {
        font-size: 12px;
        font-weight: 400;
    }
    
    .elevating-image-wrapper {
        min-height: 350px;
    }
    
    .elevating-image {
        min-height: 350px;
    }
    
    .btn-enquire-now {
        padding: 12px 30px;
        font-size: 12px;
        gap: 10px;
    }
    
    .btn-enquire-now::after {
        right: -12px;
        border-top-width: 18px;
        border-bottom-width: 18px;
        border-left-width: 12px;
    }
}

/* Image Gallery Section */
.image-gallery-section {
    background-color: var(--main-bg);
    padding: 60px 0;
}

.gallery-section-title {
    font-family: 'Cormorant Infant', serif;
    font-size: 32px;
    font-weight: 600;
    color: #AB8B44;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.gallery-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.gallery-tabs {
    display: flex;
    gap: 15px;
    background-color: transparent;
}

.gallery-tab {
    padding: 12px 40px;
    border: 2px solid #AB8B44;
    background-color: var(--main-bg);
    color: #333333;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.gallery-tab:hover {
    background-color: rgba(171, 139, 68, 0.1);
    color: #AB8B44;
}

.gallery-tab.active {
    background-color: #AB8B44;
    color: #FFFFFF;
    border-color: #AB8B44;
}

.gallery-content {
    min-height: 400px;
}

.gallery-tab-content {
    display: none;
}

.gallery-tab-content.active {
    display: block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 0;
    aspect-ratio: 1;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #FFFFFF;
    font-size: 32px;
}

/* Gallery Date Stamp */
.gallery-date-stamp {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-color: rgba(107, 142, 35, 0.9);
    color: #FFFFFF;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 10px;
    font-weight: 500;
    padding: 8px 16px;
    /* border-radius: 4px; */
    z-index: 5;
    letter-spacing: 0.5px;
}

.gallery-empty {
    text-align: center;
    padding: 80px 20px;
    color: #666666;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 16px;
}

.gallery-button-wrapper {
    margin-top: 50px;
}

.btn-gallery-enquire {
    display: inline-block;
    padding: 16px 50px;
    background-color: #87A055;
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
    position: relative;
    transition: all 0.3s ease;
    clip-path: polygon(15px 0%, 100% 0%, calc(100% - 15px) 100%, 0% 100%);
}

.btn-gallery-enquire:hover {
    background-color: #748a49;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(135, 160, 85, 0.4);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
    animation: fadeIn 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 80px;
    box-sizing: border-box;
}

.lightbox-img {
    max-width: calc(100vw - 200px);
    max-height: calc(100vh - 220px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: #FFFFFF;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 16px;
    text-align: center;
    margin-top: 20px;
    padding: 12px 25px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    flex-shrink: 0;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #FFFFFF;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}

.lightbox-close:hover {
    color: #AB8B44;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: #AB8B44;
    color: #AB8B44;
}

/* Responsive Styles for Image Gallery */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-tab {
        padding: 10px 30px;
        font-size: 13px;
    }
    
    .lightbox-content {
        padding: 60px 70px;
    }
    
    .lightbox-img {
        max-width: calc(100vw - 180px);
        max-height: calc(100vh - 140px);
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .image-gallery-section {
        padding: 40px 0;
    }
    
    .gallery-section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .gallery-tabs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .gallery-tab {
        padding: 10px 25px;
        font-size: 12px;
        flex: 1;
        min-width: 120px;
        border-radius: 8px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .btn-gallery-enquire {
        padding: 14px 40px;
        font-size: 13px;
    }
    
    .lightbox-content {
        padding: 60px 70px;
    }
    
    .lightbox-img {
        max-width: calc(100vw - 180px);
        max-height: calc(100vh - 140px);
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 576px) {
    .gallery-section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .gallery-tabs {
        width: 100%;
        gap: 8px;
    }
    
    .gallery-tab {
        padding: 8px 15px;
        font-size: 11px;
        letter-spacing: 0.5px;
        border-radius: 8px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-empty {
        padding: 60px 20px;
        font-size: 14px;
    }
    
    .btn-gallery-enquire {
        padding: 12px 35px;
        font-size: 12px;
    }
    
    .lightbox-content {
        padding: 50px 60px;
    }
    
    .lightbox-img {
        max-width: calc(100vw - 150px);
        max-height: calc(100vh - 120px);
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
        left: 10px;
    }
    
    .lightbox-next {
        left: auto;
        right: 10px;
    }
    
    .lightbox-close {
        font-size: 35px;
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

/* Project Video Section */
.project-video-section {
    background-color: var(--main-bg);
    padding: 60px 0;
}

.project-video-title {
    font-family: 'Cormorant Infant', serif;
    font-size: 36px;
    font-weight: 600;
    color: #AB8B44;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.project-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 40%; /* Wider aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.project-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .project-video-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .project-video-section {
        padding: 40px 0;
    }
    
    .project-video-wrapper {
        padding-bottom: 56.25%; /* 16:9 aspect ratio for mobile */
    }
}

@media (max-width: 576px) {
    .project-video-wrapper {
        padding-bottom: 56.25%; /* 16:9 aspect ratio for mobile */
    }
}

/* RERA Section */
.rera-section {
    background-color: var(--main-bg);
    /* padding: 60px 0; */
}

.rera-content-wrapper {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.rera-qr-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.rera-qr-img {
    width: 100%;
    max-width: 100px;
    height: auto;
    display: block;
}

.rera-info-wrapper {
    /* padding-left: 40px; */
}

.rera-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.rera-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 0;
}

.rera-info {
    flex: 1;
    padding-top: 0;
}

.rera-number {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 5px;
    line-height: 1.4;
}

.rera-url {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 12px;
    color: #666666;
    margin-bottom: 0;
    line-height: 1.4;
    word-break: break-all;
}

.disclaimer-text {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 9px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 0;
    margin-top: 0;
    text-align: left;
}

.disclaimer-text strong {
    color: #333333;
    font-weight: 600;
}

/* Responsive Styles for RERA Section */
@media (max-width: 992px) {
    .rera-content-wrapper {
        padding: 30px;
    }
    
    .rera-info-wrapper {
        padding-left: 0;
        margin-top: 20px;
    }
    
    .rera-qr-wrapper {
        justify-content: center;
    }
    
    .rera-header {
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
    }
    
    .rera-logo {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .rera-content-wrapper {
        padding: 25px 20px;
    }
    
    .rera-qr-wrapper {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .rera-qr-img {
        max-width: 180px;
    }
    
    .rera-info-wrapper {
        padding-left: 0;
        margin-top: 20px;
    }
    
    .rera-header {
        margin-bottom: 15px;
    }
    
    .rera-logo {
        width: 40px;
        height: 40px;
    }
    
    .rera-number {
        font-size: 15px;
    }
    
    .rera-url {
        font-size: 13px;
    }
    
    .disclaimer-text {
        font-size: 11px;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .rera-content-wrapper {
        padding: 20px 15px;
    }
    
    .rera-qr-img {
        max-width: 150px;
    }
    
    .rera-logo {
        width: 35px;
        height: 35px;
    }
    
    .rera-number {
        font-size: 14px;
    }
    
    .rera-url {
        font-size: 12px;
    }
    
    .disclaimer-text {
        font-size: 10px;
        line-height: 1.6;
    }
}

/* ============================================
   Contact Page Styles
   ============================================ */

/* Contact Hero Section */
.contact-hero-section {
    width: 100%;
    padding: 0;
}

.contact-hero-wrapper {
    position: relative;
    width: 100%;
}

.contact-hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Contact Information Section */
.contact-info-section {
    /* background-color: #F4EDE0; */
    padding: 60px 0;
}

.contact-info-card {
    background-color: #F4EDE0;
    padding: 40px 30px;
    /* border-radius: 8px; */
    /* box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1); */
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #C9A148;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: background-color 0.3s ease;
}

.contact-info-card:hover .contact-icon-wrapper {
    background-color: #C9A148;
}

.contact-icon-wrapper i {
    font-size: 32px;
    color: #FFFFFF;
}

.contact-card-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.contact-card-text {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    color: #333333;
    line-height: 1.7;
    margin-bottom: 0;
}

.contact-card-link {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-card-link:hover {
    color: #C9A148;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #F4EDE0;
}

.contact-form-wrapper {
    background-color: #F4EDE0;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.contact-form-content {
    padding: 60px 50px;
    color: #333333;
    width: 100%;
}

.contact-form-title {
    font-family: 'Cormorant Infant', serif;
    font-size: 38px;
    font-weight: 700;
    color: #C9A148;
    line-height: 1.3;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.contact-form .row {
    margin-left: calc(var(--bs-gutter-x) * -0.5);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    --bs-gutter-x: 1.5rem;
}

.contact-form .row > * {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
}

.contact-textarea {
    resize: vertical;
    min-height: 120px;
    width: 100%;
    box-sizing: border-box;
}

.contact-input {
    background-color: #FFFFFF;
    border: 1px solid #C9A148;
    color: #333333;
    padding: 12px 15px;
    border-radius: 0;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-input::placeholder {
    color: #999999;
}

.contact-input:focus {
    background-color: #FFFFFF;
    border-color: #C9A148;
    color: #333333;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(201, 161, 72, 0.25);
}

.form-check-input {
    background-color: #FFFFFF;
    border: 1px solid #C9A148;
    margin-top: 0.3em;
}

.form-check-input:checked {
    background-color: #C9A148;
    border-color: #C9A148;
}

.form-check-input:focus {
    border-color: #C9A148;
    box-shadow: 0 0 0 0.25rem rgba(201, 161, 72, 0.25);
}

.form-check-label {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 12px;
    color: #333333;
    line-height: 1.6;
    margin-left: 8px;
}

.contact-form-submit {
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-contact-submit {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.btn-contact-submit:hover {
    opacity: 0.8;
}

.btn-submit-img {
    width: auto;
    height: auto;
    max-width: 200px;
    display: block;
}

.contact-form-image-wrapper {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.contact-form-image {
    width: 100%;
    height: 100%;
    min-height: 600px;
    background-color: #F4EDE0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-form-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contact Map Section */
.contact-map-section {
    background-color: #FFFFFF;
    padding: 60px 0;
}

.map-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Responsive Styles for Contact Page */
@media (max-width: 992px) {
    .contact-form-wrapper {
        min-height: auto;
    }
    
    .contact-form-content {
        padding: 50px 40px;
    }
    
    .contact-form-title {
        font-size: 32px;
        text-align: center;
    }
    
    .contact-form-image-wrapper {
        min-height: 500px;
    }
    
    .contact-map-section {
        padding: 50px 0;
    }
    
    .map-wrapper {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .contact-info-section {
        padding: 40px 0;
    }
    
    .contact-info-card {
        padding: 30px 25px;
        margin-bottom: 20px;
    }
    
    .contact-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .contact-icon-wrapper i {
        font-size: 28px;
    }
    
    .contact-card-title {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .contact-card-text,
    .contact-card-link {
        font-size: 13px;
    }
    
    .contact-form-content {
        padding: 40px 30px;
    }
    
    .contact-form-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .contact-input {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .form-check-label {
        font-size: 11px;
    }
    
    .contact-form-image-wrapper {
        min-height: 400px;
    }
    
    .contact-map-section {
        padding: 40px 0;
    }
    
    .map-wrapper {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .contact-info-section {
        padding: 30px 0;
    }
    
    .contact-info-card {
        padding: 25px 20px;
    }
    
    .contact-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .contact-icon-wrapper i {
        font-size: 24px;
    }
    
    .contact-card-title {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .contact-card-text,
    .contact-card-link {
        font-size: 12px;
    }
    
    .contact-form-content {
        padding: 35px 25px;
    }
    
    .contact-form-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .contact-input {
        font-size: 12px;
        padding: 10px;
        margin-bottom: 15px !important;
    }
    
    .contact-textarea {
        min-height: 100px;
    }
    
    .form-check-label {
        font-size: 10px;
    }
    
    .btn-submit-img {
        max-width: 150px;
    }
    
    .contact-form-image-wrapper {
        min-height: 350px;
    }
    
    .contact-map-section {
        padding: 30px 0;
    }
    
    .map-wrapper {
        height: 350px;
    }
}

/* Location & Connectivity Section */
.location-connectivity-section {
    background-color: var(--main-bg);
}

.location-content-wrapper {
    background-color: #2D2548;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.location-content {
    padding: 60px 50px;
    color: #FFFFFF;
}

.location-section-title {
    font-family: 'Cormorant Infant', serif;
    font-size: 38px;
    font-weight: 700;
    color: #C4A869;
    line-height: 1.3;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.location-intro-text {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
}

.location-subheading {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.location-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    padding: 0;
}

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

.location-icon {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon i {
    font-size: 16px;
    color: #FFFFFF;
}

.location-text {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 1.6;
    padding-top: 8px;
}

.btn-get-directions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #87A055;
    color: #FFFFFF;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
}

.btn-get-directions:hover {
    background-color: #748a49;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(135, 160, 85, 0.4);
}

.btn-get-directions i {
    font-size: 15px;
}

.location-map-wrapper {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.location-map-img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    display: block;
}

/* Project Features Section */
.project-features-section {
    background-color: #F5F3ED;
}

.feature-card-detail {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-detail-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.feature-card-title {
    font-family: 'Cormorant Infant', serif;
    font-size: 24px;
    font-weight: 600;
    color: #AB8B44;
    margin-bottom: 15px;
}

.feature-card-description {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 15px;
    color: #333333;
    line-height: 1.6;
}

/* Spaces Section */
.project-spaces-section {
    background-color: var(--main-bg);
}

.space-card {
    background-color: #FFFFFF;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.space-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.space-card-icon {
    color: #6B8E23;
    margin-bottom: 20px;
}

.space-card-title {
    font-family: 'Cormorant Infant', serif;
    font-size: 22px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
}

.space-card-description {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

/* Commercial Options Section */
.commercial-options-section {
    background-color: #E8E4D3;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.option-item {
    background-color: #FFFFFF;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.option-item:hover {
    transform: scale(1.03);
}

.option-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #275316;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.option-description {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

/* Elevate Business Section */
.elevate-business-section {
    background-color: var(--main-bg);
}

.amenity-card {
    background-color: #F5F3ED;
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.amenity-card:hover {
    background-color: #6B8E23;
    color: #FFFFFF;
    transform: translateY(-5px);
}

.amenity-card:hover i {
    color: #FFFFFF;
}

.amenity-card i {
    color: #6B8E23;
    transition: color 0.3s ease;
}

.amenity-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.amenity-description {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.amenity-card:hover .amenity-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Project Gallery Section */
.project-gallery-section {
    background-color: #F5F3ED;
}

/* Responsive Styles for Project Page */
@media (max-width: 768px) {
    .project-hero-title {
        font-size: 32px;
        letter-spacing: 4px;
    }
    
    .project-hero-subtitle {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .project-intro-title {
        font-size: 36px;
        letter-spacing: 2px;
        text-align: center;
    }
    
    .project-intro-subtitle {
        font-size: 16px;
        text-align: center;
    }
    
    .project-intro-location {
        font-size: 14px;
        text-align: center;
    }
    
    .project-intro-content {
        padding: 40px 0 30px 0;
    }
    
    .project-intro-content .row {
        flex-direction: column;
    }
    
    .project-intro-content .col-lg-6 {
        text-align: center;
    }
    
    .project-main-image-wrapper {
        padding: 20px 0;
    }
    
    .project-intro-description {
        font-size: 14px;
        text-align: center;
    }
    
    .project-info-bar {
        padding: 25px 30px;
    }
    
    .location-content-wrapper {
        min-height: auto;
    }
    
    .location-content {
        padding: 40px 30px;
    }
    
    .location-section-title {
        font-size: 32px;
        text-align: center;
    }
    
    .location-intro-text {
        font-size: 13px;
        text-align: center;
    }
    
    .location-subheading {
        font-size: 15px;
        text-align: center;
    }
    
    .location-list-item {
        flex-direction: row;
        gap: 12px;
    }
    
    .location-text {
        font-size: 13px;
    }
    
    .location-map-wrapper {
        min-height: 400px;
    }
    
    .location-map-img {
        min-height: 400px;
    }
    
    .info-bar-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-download-brochure {
        padding: 12px 25px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
    
    .project-logo {
        max-width: 150px;
    }
    
    .feature-detail-img {
        height: 200px;
    }
    
    .options-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .project-hero-title {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    .project-hero-subtitle {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .project-intro-title {
        font-size: 28px;
        letter-spacing: 1px;
        text-align: center;
    }
    
    .project-intro-subtitle {
        font-size: 15px;
        text-align: center;
    }
    
    .project-intro-location {
        font-size: 13px;
        text-align: center;
    }
    
    .project-intro-content {
        padding: 30px 0 20px 0;
    }
    
    .project-main-image-wrapper {
        padding: 15px 0;
    }
    
    .project-intro-description {
        font-size: 13px;
        text-align: center;
    }
    
    .project-info-bar {
        padding: 20px 25px;
    }
    
    .location-content {
        padding: 35px 25px;
    }
    
    .location-section-title {
        font-size: 28px;
    }
    
    .location-intro-text {
        font-size: 12px;
    }
    
    .location-subheading {
        font-size: 14px;
    }
    
    .location-icon {
        width: 35px;
        height: 35px;
    }
    
    .location-icon i {
        font-size: 14px;
    }
    
    .location-text {
        font-size: 12px;
    }
    
    .btn-get-directions {
        padding: 12px 28px;
        font-size: 12px;
        width: 100%;
    }
    
    .location-map-wrapper {
        min-height: 350px;
    }
    
    .location-map-img {
        min-height: 350px;
    }
    
    .info-bar-icon {
        width: 45px;
        height: 45px;
    }
    
    .info-bar-icon i {
        font-size: 20px;
    }
    
    .info-bar-label {
        font-size: 11px;
    }
    
    .info-bar-value {
        font-size: 12px;
    }
    
    .btn-download-brochure {
        padding: 12px 20px;
        font-size: 12px;
    }
    
    .project-logo {
        max-width: 120px;
    }
    
    .feature-card-detail {
        padding: 20px;
    }
    
    .feature-detail-img {
        height: 180px;
    }
    
    .space-card {
        padding: 30px 20px;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .amenity-card {
        padding: 25px 15px;
    }
}

@media (max-width: 400px) {
    .project-hero-title {
        font-size: 20px;
        letter-spacing: 1px;
        text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.7);
    }
    
    .project-hero-subtitle {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
    
    .project-intro-title {
        font-size: 24px;
        letter-spacing: 1px;
        text-align: center;
    }
    
    .project-intro-subtitle {
        font-size: 14px;
        text-align: center;
    }
    
    .project-intro-location {
        font-size: 12px;
        text-align: center;
    }
    
    .project-main-image-wrapper {
        padding: 10px 0;
    }
    
    .project-intro-description {
        font-size: 12px;
        text-align: center;
    }
    
    .btn-download-brochure {
        padding: 10px 15px;
        font-size: 11px;
        gap: 8px;
    }
    
    .location-content {
        padding: 30px 20px;
    }
    
    .location-section-title {
        font-size: 24px;
    }
    
    .location-intro-text {
        font-size: 11px;
    }
    
    .location-subheading {
        font-size: 13px;
    }
    
    .location-icon {
        width: 32px;
        height: 32px;
    }
    
    .location-icon i {
        font-size: 13px;
    }
    
    .location-text {
        font-size: 11px;
    }
    
    .btn-get-directions {
        padding: 11px 22px;
        font-size: 11px;
    }
    
    .location-map-wrapper {
        min-height: 250px;
    }
    
    .location-map-img {
        min-height: 250px;
    }
}

.btn-submit-img-wrapper:hover .btn-submit-img {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
    margin-top: 25px;
}

.copyright {
    font-size: 14px;
    color: var(--white);
    margin: 0;
    line-height: 1.4;
}

.footer-links-bottom {
    font-size: 14px;
    color: var(--white);
    margin: 0;
    line-height: 1.4;
}

.footer-links-bottom a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    margin: 0 5px;
}

.footer-links-bottom a:hover {
    color: var(--primary-green);
}

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

/* Large Desktop (1400px and above) */
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1450px;
    }
    
    .header-section {
        padding: 5px 60px;
    }
    
    .hero-section {
        padding: 0 50px;
    }
    
    .empire-section {
        padding: 60px 0 80px 0;
    }
    
    .empire-header {
        margin-bottom: 60px;
    }
    
    .empire-content .col-lg-7 {
        padding-right: 0 !important;
    }
    
    .empire-content .col-lg-5 {
        padding-left: 0 !important;
    }
    
    .casa-wood-section {
        padding: 0px 0 30px 0;
    }
    
    .btn-contact-img {
        max-width: 200px;
    }

    .footer-section {
        padding: 60px 0 30px 0;
    }
    
    .footer-heading {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .footer-text {
        font-size: 16px;
        line-height: 1.8;
    }
    
    .footer-input {
        font-size: 16px;
        padding: 12px 15px;
    }
}

/* Desktop (1200px - 1299px) */
@media (max-width: 1299px) and (min-width: 1200px) {
    .header-section {
        padding: 5px 30px;
    }
    
    .logo-img {
        height: 75px;
    }
    
    .enquire-btn-img {
        width: 200px;
        max-height: 48px;
    }
    
    .navbar-nav .nav-link {
        font-size: 17px;
        padding: 8px 18px !important;
    }
    
    .navbar-nav {
        flex-wrap: nowrap;
    }
}

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 993px) {
    .header-section {
        padding: 5px 30px;
    }
    
    .header-section .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }
    
    .logo-img {
        height: 70px;
    }
    
    .navbar-nav .nav-link {
        font-size: 16px;
        padding: 8px 15px !important;
    }
    
    .enquire-btn-img {
        width: 180px;
        max-height: 45px;
    }
    
    .navbar-nav {
        flex-wrap: nowrap;
    }
    
    .hero-section {
        padding: 0 25px;
    }
    
    .scroll-graphic {
        padding: 50px 25px 45px 120px;
        max-width: 500px;
    }
    
    .scroll-text {
        font-size: 20px;
    }
    
    .empire-logo-img {
        max-width: 240px;
    }
    
    .section-main-heading {
        font-size: 28px;
    }
    
    .section-sub-text {
        font-size: 13px;
    }
    
    .casa-wood-title {
        font-size: 36px;
    }
    
    .casa-wood-text {
        font-size: 24px;
    }
    
    .casa-wood-text-panel {
        padding: 50px 40px;
        height: 450px;
    }
    
    .casa-wood-img {
        height: 450px;
    }
    
    .clients-testimonials-section {
        margin: 50px 40px;
        max-height: 400px;
        padding: 20px;
    }
    
    .section-heading {
        font-size: 26px;
        padding-top: 25px;
    }
    
    .section-subheading {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
}

/* Tablet Portrait (768px - 992px) */
@media (max-width: 992px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .header-section {
        padding: 5px 20px;
    }
    
    .header-section .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        margin-top: 15px;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        text-align: center;
        margin: 5px 0;
    }
    
    .navbar-nav .nav-link {
        font-size: 16px;
        padding: 10px 15px !important;
        display: block;
        width: 100%;
    }
    
    .navbar-nav .nav-item.mx-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .enquire-btn-img {
        width: 160px;
        max-height: 40px;
    }
    
    .nav-item .nav-divider {
        display: none;
    }
    
    .nav-item > div[style*="height: 50px"] {
        display: none !important;
    }
    
    .navbar-collapse {
        margin-top: 10px;
    }
    
    .hero-section {
        padding: 0 20px;
    }
    
    .hero-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .scroll-graphic {
        padding: 40px 30px 35px 80px;
        max-width: 100%;
    }
    
    .scroll-text {
        font-size: 18px;
    }
    
    .empire-section {
        padding: 40px 0 50px 0;
    }
    
    .empire-header {
        margin-bottom: 35px;
    }
    
    .empire-logo-img {
        max-width: 220px;
    }
    
    .section-main-heading {
        font-size: 26px;
    }
    
    .section-sub-text {
        font-size: 12px;
    }
    
    .casa-wood-title {
        font-size: 32px;
    }
    
    .casa-wood-header {
        margin-bottom: 40px;
    }
    
    .empire-content > .row {
        flex-direction: column;
    }
    
    .empire-content .col-lg-7 {
        width: 100%;
        height: auto;
        min-height: 400px;
    }
    
    .empire-content .col-lg-5 {
        width: 100%;
        height: auto;
    }
    
    .empire-content .col-lg-5 > .row {
        height: auto;
        min-height: 400px;
    }
    
    .empire-content .col-md-6 {
        width: 50%;
        height: 50%;
        min-height: 200px;
    }
    
    .empire-building-img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }
    
    .casa-wood-content .row {
        flex-direction: column;
        height: auto;
    }
    
    .casa-wood-content .col-lg-5,
    .casa-wood-content .col-lg-7 {
        width: 100%;
        height: auto;
    }
    
    .casa-wood-text-panel {
        padding: 40px 30px;
        height: auto;
        min-height: 300px;
    }
    
    .casa-wood-text {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .casa-wood-img {
        height: 400px;
        margin-top: 0;
    }
    
    .btn-contact-img {
        max-width: 200px;
    }
    
    .clients-testimonials-section {
        margin: 40px 20px;
        max-height: none;
        overflow: visible;
        padding: 25px 20px;
    }
    
    .clients-testimonials-section .row {
        max-height: none;
        overflow: visible;
        flex-direction: column;
    }
    
    .clients-testimonials-section .col-lg-3,
    .clients-testimonials-section .col-lg-6,
    .clients-testimonials-section .col-lg-3:last-child {
        width: 100%;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .section-divider {
        display: none;
    }
    
    .clients-testimonials-section .col-lg-6 {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .section-heading {
        font-size: 24px;
        padding-top: 0;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .section-subheading {
        margin-bottom: 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
    }
    
    /* Center testimonials section content on mobile */
    .clients-testimonials-section .col-lg-6 {
        text-align: center;
    }
    
    .legacy-section {
        padding-top: 0 !important;
        margin-top: 20px;
    }
    
    .clients-carousel-wrapper {
        height: 250px;
        max-height: 250px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 13px;
    }
    
    .legacy-section {
        padding-top: 0 !important;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-content .col-lg-4 {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .btn-submit-img {
        max-width: 200px;
    }
}

/* Mobile Landscape / Small Tablet (576px - 767px) */
@media (max-width: 768px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .header-section {
        padding: 5px 15px;
    }
    
    .header-section .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .navbar-toggler {
        border: 1px solid rgba(0, 0, 0, 0.1);
        padding: 4px 8px;
        order: 2;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
        outline: none;
    }
    
    .navbar-brand {
        order: 1;
        flex: 0 0 auto;
    }
    
    .navbar-collapse {
        order: 3;
        width: 100%;
        margin-top: 10px;
    }
    
    .navbar-nav {
        text-align: center;
        padding: 15px 0;
        flex-direction: column;
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        font-size: 15px;
        padding: 10px 15px !important;
        width: auto;
        display: inline-block;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 3px 0;
    }
    
    .header-right {
        justify-content: center;
        align-items: center;
        margin: 10px auto 0;
        padding: 0;
        gap: 8px;
        width: auto;
        display: flex;
    }
    
    .enquire-btn-img {
        width: 140px;
        max-height: 35px;
        margin: 0;
        padding: 0;
        flex-shrink: 0;
        display: block;
    }
    
    .nav-item:last-child {
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
    }
    
    .nav-divider-spacer {
        display: none;
    }
    
    .nav-item > div[style*="height: 50px"] {
        display: none !important;
    }
    
    .hero-section {
        padding: 0 15px;
    }
    
    .hero-content {
        padding-left: 15px;
        padding-right: 15px;
        position: relative;
    }
    
    .scroll-graphic {
        padding: 30px 20px 25px 40px;
        max-width: 100%;
        position: relative;
    }
    
    .scroll-text {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .empire-section {
        padding: 30px 0 40px 0;
    }
    
    .empire-header {
        margin-bottom: 25px;
    }
    
    .empire-logo-img {
        max-width: 180px;
    }
    
    .section-main-heading {
        font-size: 22px;
        letter-spacing: 1px;
    }
    
    .section-sub-text {
        font-size: 11px;
    }
    
    .casa-wood-title {
        font-size: 28px;
    }
    
    .casa-wood-header {
        margin-bottom: 30px;
    }
    
    .empire-content .col-lg-7 {
        min-height: 300px;
    }
    
    .empire-building-img {
        height: 300px;
    }
    
    .empire-content .col-lg-5 > .row {
        min-height: 300px;
    }
    
    .empire-content .col-md-6 {
        min-height: 150px;
    }
    
    .casa-wood-text-panel {
        padding: 30px 20px;
        min-height: 250px;
    }
    
    .casa-wood-text {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .casa-wood-img {
        height: 300px;
    }
    
    .btn-contact-img {
        max-width: 160px;
    }
    
    .clients-testimonials-section {
        margin: 30px 15px;
        padding: 20px 15px;
        overflow: visible;
    }
    
    .clients-testimonials-section .row {
        overflow: visible;
    }
    
    .clients-testimonials-section .col-lg-3,
    .clients-testimonials-section .col-lg-6,
    .clients-testimonials-section .col-lg-3:last-child {
        padding: 0 10px;
        margin-bottom: 25px;
    }
    
    .section-heading {
        font-size: 22px;
        line-height: 1.2;
    }
    
    .section-subheading {
        font-size: 16px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
    }
    
    .clients-carousel-wrapper {
        height: 220px;
        max-height: 220px;
        margin: 15px 0;
    }
    
    .client-logo-img {
        max-height: 90px;
    }
    
    .client-logo-item.active .client-logo-img {
        max-height: 110px;
    }
    
    .testimonial-card {
        padding: 15px;
        margin: 15px 0;
    }
    
    .testimonial-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .testimonial-img {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .testimonial-text {
        font-size: 12px;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .testimonial-name,
    .testimonial-position {
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .testimonial-name {
        font-size: 14px;
    }
    
    .testimonial-position {
        font-size: 12px;
    }
    
    .legacy-section {
        padding-top: 0 !important;
        margin-top: 20px;
    }
    
    .legacy-img {
        max-width: 180px;
        margin-bottom: 15px;
    }
    
    .legacy-stats {
        margin-top: 15px;
    }
    
    .legacy-stats p {
        font-size: 12px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.4;
    }
    
    .footer-section {
        padding: 35px 0 15px 0;
    }
    
    .footer-heading {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-company,
    .footer-address,
    .footer-contact {
        font-size: 14px;
    }
    
    .footer-links li a {
        font-size: 14px;
    }
    
    .footer-input {
        font-size: 14px;
        padding: 10px 12px;
        margin-bottom: 10px;
    }
    
    .btn-submit-img {
        max-width: 200px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom .col-md-6 {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .footer-bottom .col-md-6.text-end {
        text-align: center !important;
    }
    
    .copyright,
    .footer-links-bottom {
        font-size: 12px;
    }
}

/* Mobile Portrait (up to 576px) */
@media (max-width: 576px) {
    .header-section {
        padding: 5px 10px;
    }
    
    .header-section .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .navbar-toggler {
        padding: 3px 6px;
        font-size: 0.9rem;
    }
    
    .navbar-nav {
        padding: 10px 0;
    }
    
    .navbar-nav .nav-link {
        font-size: 14px;
        padding: 8px 12px !important;
    }
    
    .header-right {
        gap: 6px;
        justify-content: center;
        align-items: center;
        margin: 10px auto 0;
        padding: 0;
        width: auto;
        display: flex;
    }
    
    .enquire-btn-img {
        width: 120px;
        max-height: 32px;
        margin: 0;
        padding: 0;
    }
    
    .navbar-nav .nav-item:last-child {
        justify-content: center;
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    .nav-divider-spacer {
        display: none;
    }
    
    .navbar-collapse {
        margin-top: 8px;
    }
    
    .hero-section {
        padding: 0 10px;
    }
    
    .hero-content {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .scroll-graphic {
        padding: 25px 15px 20px 25px;
    }
    
    .scroll-text {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .empire-section {
        padding: 25px 0 30px 0;
    }
    
    .empire-header {
        margin-bottom: 20px;
    }
    
    .empire-logo-img {
        max-width: 150px;
    }
    
    .section-main-heading {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .section-sub-text {
        font-size: 10px;
    }
    
    .casa-wood-title {
        font-size: 24px;
    }
    
    .casa-wood-header {
        margin-bottom: 25px;
    }
    
    .empire-content .col-lg-7 {
        min-height: 250px;
    }
    
    .empire-building-img {
        height: 250px;
    }
    
    .empire-content .col-lg-5 > .row {
        min-height: 250px;
    }
    
    .empire-content .col-md-6 {
        width: 50%;
        min-height: 125px;
    }
    
    .feature-card-img {
        object-fit: cover;
    }
    
    .flip-back-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .feature-card {
        padding: 15px 10px;
    }
    
    .feature-card-icon img {
        width: 50px;
        height: 50px;
    }
    
    .feature-card-text {
        font-size: 12px;
        letter-spacing: 0.3px;
    }
    
    /* Responsive Feature Cards for 576px */
    @media (max-width: 576px) {
        .feature-card {
            padding: 12px 8px;
        }
        
        .feature-card-icon {
            margin-bottom: 10px;
        }
        
        .feature-card-icon img {
            width: 40px;
            height: 40px;
        }
        
        .feature-card-text {
            font-size: 10px;
            letter-spacing: 0.2px;
            line-height: 1.3;
        }
    }
    
    .flip-back {
        padding: 20px;
    }
    
    .casa-wood-text-panel {
        padding: 25px 15px;
        min-height: 200px;
    }
    
    .casa-wood-text {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .casa-wood-img {
        height: 250px;
    }
    
    .btn-contact-img {
        max-width: 140px;
    }
    
    .clients-testimonials-section {
        margin: 25px 10px;
        padding: 20px 10px;
        overflow: visible;
    }
    
    .clients-testimonials-section .row {
        overflow: visible;
    }
    
    .clients-testimonials-section .col-lg-3,
    .clients-testimonials-section .col-lg-6,
    .clients-testimonials-section .col-lg-3:last-child {
        padding: 0 5px;
        margin-bottom: 20px;
    }
    
    .section-heading {
        font-size: 18px;
        margin-bottom: 8px;
        line-height: 1.2;
    }
    
    .section-subheading {
        font-size: 14px;
        margin-bottom: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
    }
    
    .clients-carousel-wrapper {
        height: 200px;
        max-height: 200px;
        margin: 10px 0;
    }
    
    .client-logo-img {
        max-height: 70px;
    }
    
    .client-logo-item.active .client-logo-img {
        max-height: 90px;
    }
    
    .testimonial-card {
        padding: 12px;
        margin: 10px 0;
    }
    
    .testimonial-img {
        max-width: 80px;
    }
    
    .testimonial-text {
        font-size: 11px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.5;
    }
    
    .testimonial-name {
        font-size: 13px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .testimonial-position {
        font-size: 11px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .testimonial-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .legacy-section {
        padding-top: 0 !important;
        margin-top: 15px;
    }
    
    .legacy-img {
        max-width: 150px;
        margin-bottom: 15px;
    }
    
    .legacy-stats {
        margin-top: 10px;
    }
    
    .legacy-stats p {
        font-size: 11px;
        margin-bottom: 5px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.4;
    }
    
    .footer-section {
        padding: 30px 0 15px 0;
    }
    
    .footer-heading {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .footer-company,
    .footer-address,
    .footer-contact {
        font-size: 13px;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-links li a {
        font-size: 13px;
    }
    
    .footer-input {
        font-size: 13px;
        padding: 8px 10px;
        margin-bottom: 8px;
    }
    
    .footer-textarea {
        min-height: 70px;
    }
    
    .btn-submit-img {
        max-width: 150px;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .copyright,
    .footer-links-bottom {
        font-size: 11px;
    }
}

/* Extra Small Mobile (up to 400px) */
@media (max-width: 400px) {
    .logo-img {
        height: 40px;
    }
/*     
    .navbar-no-img {
        max-height: 18px;
        display: block;
    } */
    
    .header-right {
        gap: 5px;
        justify-content: center;
        align-items: center;
        margin: 10px auto 0;
        padding: 0;
        width: auto;
        display: flex;
    }
    
    .enquire-btn-img {
        width: 100px;
        max-height: 28px;
        margin: 0;
        padding: 0;
    }
    
    .navbar-nav .nav-item:last-child {
        justify-content: center;
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    .scroll-graphic {
        padding: 20px 10px 15px 20px;
    }
    
    .scroll-text {
        font-size: 13px;
    }
    
    .empire-logo-img {
        max-width: 120px;
    }
    
    .section-main-heading {
        font-size: 16px;
    }
    
    .section-sub-text {
        font-size: 9px;
    }
    
    .casa-wood-title {
        font-size: 20px;
    }
    
    .empire-building-img {
        height: 200px;
    }
    
    .empire-content .col-lg-7 {
        min-height: 200px;
    }
    
    .empire-content .col-lg-5 > .row {
        min-height: 200px;
    }
    
    .flip-container {
        min-height: 200px;
    }
    
    .empire-content .col-md-6 {
        min-height: 100px;
    }
    
    .casa-wood-text-panel {
        padding: 20px 12px;
        min-height: 180px;
    }
    
    .casa-wood-text {
        font-size: 14px;
    }
    
    .casa-wood-img {
        height: 200px;
    }
    
    .btn-contact-img {
        max-width: 120px;
    }
    
    .section-heading {
        font-size: 16px;
    }
    
    .testimonial-text {
        font-size: 11px;
    }
    
    .btn-submit-img {
        max-width: 120px;
    }
    
    /* About Page Hero - Extra Small Mobile */
    .about-hero-text-overlay {
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        text-align: center !important;
        z-index: 10 !important;
        position: absolute !important;
        width: 100% !important;
        padding: 0 10px;
    }
    
    .about-hero-title {
        font-size: 18px !important;
        letter-spacing: 1px !important;
        text-align: center !important;
        width: 100% !important;
        color: #FFFFFF !important;
        text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.7), 2px 2px 4px rgba(0, 0, 0, 1) !important;
        position: relative !important;
        z-index: 11 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 0 !important;
    }
}

/* ========================= */
/* ABOUT US PAGE STYLES */
/* ========================= */

/* About Header */
.about-header {
    position: relative;
}

.about-header .navbar {
    position: relative;
    background: var(--main-bg) !important;
}

/* About Hero Section */
.about-hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 100%;
}

.about-hero-title {
    font-family: 'Cormorant Infant', serif;
    font-size: 48px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Blog Hero Styles */
.blog-hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 100%;
}

.blog-hero-title {
    font-family: 'Cormorant Infant', serif;
    font-size: 48px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Media Gallery Hero Styles */
.media-gallery-hero-text-overlay,
.contact-hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 100%;
}

.media-gallery-hero-title,
.contact-hero-title {
    font-family: 'Cormorant Infant', serif;
    font-size: 48px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Media Gallery Section */
.media-gallery-section {
    background-color: var(--main-bg);
    padding: 60px 0;
}

/* Video Gallery Styles */
.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.video-item {
    width: 100%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .video-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* About Content Section */
.about-content-section {
    background-color: var(--main-bg);
    padding: 60px 0;
}

.about-label {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #275316;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-main-title {
    font-family: 'Cormorant Infant', serif;
    font-size: 32px;
    font-weight: 600;
    color: #AB8B44;
    line-height: 1.3;
}

.about-description {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* About Gallery - New Layout */
.about-gallery-new {
    padding: 30px 0;
}

.gallery-main-image {
    width: 100%;
    margin-bottom: 20px;
    /* border-radius: 20px; */
    overflow: hidden;
    /* box-shadow: -2px 4px 15px rgba(0, 0, 0, 0.15); */
}

.gallery-main-image {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #f5f5f5; */
    height: 600px;
    padding: 20px;
}

.gallery-main-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

@media (max-width: 768px) {
    .gallery-main-image {
        height: 400px;
        padding: 15px;
    }
    
    .gallery-thumbnails {
        display: none; /* Hide thumbnails on mobile */
    }
    
    .gallery-thumb img {
        height: 100px;
    }
}

@media (max-width: 576px) {
    .gallery-thumbnails {
        display: none; /* Hide thumbnails on mobile */
    }
}

.gallery-thumb {
    /* border-radius: 15px; */
    overflow: hidden;
    box-shadow: -2px 4px 12px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    cursor: pointer;
    border: 3px solid transparent;
}

.gallery-thumb:hover {
    transform: translateY(-5px);
    box-shadow: -2px 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery-thumb.active {
    border: 3px solid #AB8B44;
    box-shadow: -2px 4px 15px rgba(171, 139, 68, 0.4);
}

.gallery-thumb img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
}

/* Old gallery classes - kept for backwards compatibility */
.about-gallery {
    display: grid;
    grid-template-columns: 25% 30% 15% 25%;
    grid-template-rows: 50% 50%;
    gap: 15px;
    height: 70vh;
    min-height: 400px;
    padding: 20px 0;
}

.gallery-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: -2px 4px 15px rgba(0, 0, 0, 0.15);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-card.card-2 {
    grid-column: 2 / 3;
    grid-row: span 2;
}

.gallery-card.card-3 {
    grid-column: span 2;
}

/* Gallery Navigation */
.gallery-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.gallery-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #AB8B44;
    background: transparent;
    color: #AB8B44;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-arrow:hover {
    background: #AB8B44;
    color: #FFFFFF;
}

/* Quote Section */
.quote-section {
    background-color: #E8E4D3;
    padding: 80px 60px;
    overflow: hidden;
}

.quote-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.quote-item {
    display: flex;
    align-items: stretch;
}

.quote-box {
    position: relative;
    padding: 30px 0;
}

.quote-text {
    font-family: 'Cormorant Infant', serif;
    font-size: 24px;
    font-weight: 500;
    font-style: italic;
    color: #333333;
    line-height: 1.5;
    margin-bottom: 30px;
}

.quote-author {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #AB8B44;
    letter-spacing: 2px;
}

.quote-box-light .quote-text-light {
    font-family: 'Cormorant Infant', serif;
    font-size: 24px;
    font-weight: 500;
    font-style: italic;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 30px;
}

.quote-author-light {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #888888;
    letter-spacing: 2px;
}

/* Core Values Section */
.core-values-section {
    background-color: var(--main-bg);
}

.core-values-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.core-values-section .container {
    padding-top: 0;
    padding-bottom: 0;
}

@media (min-width: 576px) {
    .core-values-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (min-width: 992px) {
    .core-values-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    
}

@media (min-width: 1200px) {
    .core-values-section {
        padding-top: 120px;
        padding-bottom: 120px;
    }
    
}




.core-values-text {
    background-color: #AB8B44;
    padding: 50px 40px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.core-values-title {
    font-family: 'Cormorant Infant', serif;
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
}

.value-item {
    margin-bottom: 20px;
}

.value-heading {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.value-description {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 0;
}

.core-values-img-wrapper {
    height: 100%;
    display: flex;
    align-items: stretch;
    min-height: 100%;
    flex: 1;
}

.core-values-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 700px;
    display: block;
    flex: 1;
}

@media (max-width: 991px) {
    /* Stack columns vertically - image below text */
    .core-values-section .row {
        flex-direction: column;
    }
    
    .core-values-section .row > .core-values-text {
        width: 100%;
        order: 1;
    }
    
    .core-values-section .row > .core-values-img-wrapper {
        width: 100%;
        order: 2;
        margin-top: 0;
    }
    
    .core-values-img {
        min-height: 500px;
        height: auto;
    }
    
    .core-values-img-wrapper {
        height: auto;
    }
}

@media (max-width: 768px) {
    .core-values-img {
        min-height: 400px;
        height: auto;
    }
    
    .core-values-img-wrapper {
        height: auto;
    }
}

@media (max-width: 576px) {
    .core-values-img {
        min-height: 350px;
        height: auto;
    }
    
    .core-values-img-wrapper {
        height: auto;
    }
}

/* Ensure equal heights on all screen sizes */
.core-values-section .row {
    display: flex;
    align-items: stretch;
}

.core-values-section .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

/* Ensure image column stretches to match text column */
.core-values-section .row > .core-values-img-wrapper {
    display: flex;
    flex-direction: column;
    padding: 0;
}

/* Completed Projects Section */
.completed-projects-section {
    background-color: var(--main-bg);
    padding-bottom: 80px;
}


.projects-section-title {
    font-family: 'Cormorant Infant', serif;
    font-size: 32px;
    font-weight: 600;
    color: #AB8B44;
    margin-bottom: 40px;
}

.projects-grid {
    margin: 0 auto;
}

.project-card {
    text-align: center;
    padding: 30px 20px;
    background-color: #F5F3ED;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Alternating background colors for checkerboard pattern */
.project-card-bordered {
    background-color: #E8E4D3;
}

.project-name {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #275316;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.project-location {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #275316;
    margin-bottom: 0;
    opacity: 0.8;
}

/* Button wrapper for white border triangles */
.btn-upcoming-wrapper {
    position: relative;
    display: inline-block;
}

/* White border triangles - left (larger, behind) */
.btn-upcoming-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -22px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-right: 22px solid #FFFFFF;
    z-index: 0;
}

/* White border triangles - right (larger, behind) */
.btn-upcoming-wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -22px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-left: 22px solid #FFFFFF;
    z-index: 0;
}

.btn-upcoming-projects {
    position: relative;
    display: inline-block;
    padding: 18px 50px;
    background-color: #7BA34A;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid #FFFFFF;
    z-index: 1;
    box-sizing: border-box;
    line-height: 1.2;
}

/* Left arrow point (green, on top) - match button height */
.btn-upcoming-projects::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    border-right: 20px solid #7BA34A;
    transition: all 0.3s ease;
    z-index: 2;
}

/* Right arrow point (green, on top) - match button height */
.btn-upcoming-projects::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    border-left: 20px solid #7BA34A;
    transition: all 0.3s ease;
    z-index: 2;
}

/* Hover effect */
.btn-upcoming-projects:hover {
    background-color: #6a8a4a;
    color: #FFFFFF;
}

.btn-upcoming-projects:hover::before {
    border-right-color: #6a8a4a;
}

.btn-upcoming-projects:hover::after {
    border-left-color: #6a8a4a;
}

/* About Page Responsive Styles */
@media (max-width: 1200px) {
    .about-gallery {
        height: 60vh;
    }
    
    .quote-text,
    .quote-box-light .quote-text-light {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .about-hero-title,
    .blog-hero-title,
    .media-gallery-hero-title,
    .contact-hero-title {
        font-size: 36px;
        letter-spacing: 5px;
    }
    
    .about-main-title {
        font-size: 26px;
    }
    
    .core-values-text {
        padding: 40px 30px;
    }
    
    .core-values-img-wrapper {
        min-height: 100%;
    }
    
    .core-values-img {
        min-height: 100%;
    }
}

@media (max-width: 768px) {
    .about-hero-text-overlay,
    .blog-hero-text-overlay,
    .media-gallery-hero-text-overlay,
    .contact-hero-text-overlay {
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 10;
        position: absolute;
    }
    
    .about-hero-title,
    .blog-hero-title,
    .media-gallery-hero-title,
    .contact-hero-title {
        font-size: 28px;
        letter-spacing: 3px;
        text-align: center;
        width: 100%;
        color: #FFFFFF !important;
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7), 0 0 10px rgba(0, 0, 0, 0.5);
        position: relative;
        z-index: 11;
    }
    
    .about-label {
        text-align: center;
    }
    
    .about-main-title {
        font-size: 22px;
        text-align: center;
    }
    
    .about-main-title br {
        display: none;
    }
    
    .about-description {
        text-align: center;
    }
    
    /* New gallery responsive */
    .gallery-main-image {
        height: 400px;
        padding: 15px;
    }
    
    .gallery-thumbnails {
        display: none; /* Hide thumbnails on tablet/mobile */
    }
    
    .gallery-thumb img {
        height: 100px;
    }
    
    /* Old gallery responsive */
    .about-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        height: auto;
        min-height: 500px;
    }
    
    .gallery-card.card-2 {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-card.card-3 {
        grid-column: span 2;
    }
    
    .gallery-card.card-5 {
        grid-column: span 2;
    }
    
    .quote-section {
        padding: 50px 20px;
    }
    
    .quote-text,
    .quote-box-light .quote-text-light {
        font-size: 18px;
    }
    
    .core-values-title {
        font-size: 24px;
    }
    
    .completed-projects-section {
        padding: 60px 0;
    }
    
    .projects-section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .project-card {
        padding: 25px 15px;
    }
    
    .project-name {
        font-size: 12px;
    }
    
    .project-location {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .about-hero-text-overlay,
    .blog-hero-text-overlay,
    .media-gallery-hero-text-overlay,
    .contact-hero-text-overlay {
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 10;
        position: absolute;
    }
    
    .about-hero-title,
    .blog-hero-title,
    .media-gallery-hero-title,
    .contact-hero-title {
        font-size: 22px;
        letter-spacing: 2px;
        text-align: center;
        width: 100%;
        color: #FFFFFF !important;
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7), 0 0 10px rgba(0, 0, 0, 0.5);
        position: relative;
        z-index: 11;
    }
    
    .about-label {
        text-align: center;
    }
    
    .about-main-title {
        font-size: 18px;
    }
    
    /* New gallery responsive */
    .gallery-main-image {
        height: 300px;
        padding: 10px;
    }
    
    .gallery-thumbnails {
        display: none; /* Hide thumbnails on mobile */
    }
    
    .gallery-thumb img {
        height: 80px;
    }
    
    /* Old gallery responsive */
    .about-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 150px);
    }
    
    .gallery-card.card-2,
    .gallery-card.card-3,
    .gallery-card.card-5 {
        grid-column: span 1;
    }
    
    .quote-text,
    .quote-box-light .quote-text-light {
        font-size: 16px;
    }
    
    .core-values-text {
        padding: 30px 20px;
    }
    
    .core-values-img-wrapper {
        min-height: 400px;
    }
    
    .core-values-img {
        min-height: 400px;
    }
    
    .completed-projects-section {
        padding: 50px 0;
    }
    
    .projects-section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .project-card {
        padding: 20px 12px;
        min-height: 90px;
    }
    
    .project-name {
        font-size: 11px;
        margin-bottom: 5px;
    }
    
    .project-location {
        font-size: 10px;
    }
    
    .btn-upcoming-projects {
        padding: 12px 25px;
        font-size: 12px;
    }
}

/* ========================= */
/* BLOG LISTING PAGE STYLES */
/* ========================= */

/* Blog Listing Section */
.blog-listing-section {
    background-color: var(--main-bg);
    padding: 80px 0;
}

.blog-header-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.blog-main-title {
    font-family: 'Cormorant Infant', serif;
    font-size: 42px;
    font-weight: 600;
    color: #AB8B44;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.blog-subtitle {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    margin: 0;
}

.blog-grid {
    margin-bottom: 50px;
}

/* Blog Card */
.blog-card {
    background: #FFFFFF;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    /* border: 1px solid #E8E4D3; */
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-category-badge {
    display: none;
}

.blog-card-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background-color: #FFF9F2;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.blog-date {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    color: #333333;
    font-weight: 400;
}

.blog-reading-time {
    display: none;
}

.blog-card-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-excerpt {
    display: none;
}

.blog-learn-more {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    background-color: #7BA34A;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 30px;
    display: inline-block;
}

/* Blog Learn More Image Button */
.blog-learn-more-img {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.blog-learn-more-img img {
    display: block;
    height: auto;
    max-height: 40px;
}

.blog-learn-more-img:hover {
    transform: translateX(5px);
    opacity: 0.9;
    position: relative;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
    width: fit-content;
}

.blog-learn-more:hover {
    background-color: #6a8a4a;
    color: #FFFFFF;
}

.blog-read-more {
    display: none;
}

/* Pagination */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.pagination-btn {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #AB8B44;
    background: transparent;
    border: 2px solid #AB8B44;
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn:hover:not(:disabled) {
    background-color: #AB8B44;
    color: #FFFFFF;
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 10px;
}

.pagination-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #E0E0E0;
    background: transparent;
    color: #666666;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-number:hover {
    border-color: #AB8B44;
    color: #AB8B44;
}

.pagination-number.active {
    background-color: #AB8B44;
    border-color: #AB8B44;
    color: #FFFFFF;
}

/* Blog Listing Responsive Styles */
@media (max-width: 992px) {
    .blog-listing-section {
        padding: 60px 0;
    }
    
    .blog-header-wrapper {
        margin-bottom: 40px;
    }
    
    .blog-main-title {
        font-size: 36px;
    }
    
    .blog-subtitle {
        font-size: 15px;
    }
    
    .blog-image-wrapper {
        height: 280px;
    }
    
    .blog-card-content {
        padding: 25px 20px;
    }
    
    .blog-card-title {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .blog-listing-section {
        padding: 50px 0;
    }
    
    .blog-main-title {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .blog-subtitle {
        font-size: 14px;
    }
    
    .blog-image-wrapper {
        height: 250px;
    }
    
    .blog-card-title {
        font-size: 16px;
    }
    
    .blog-learn-more {
        font-size: 13px;
        padding: 10px 25px;
    }
    
    .blog-pagination {
        flex-direction: column;
        gap: 15px;
    }
    
    .pagination-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .blog-listing-section {
        padding: 40px 0;
    }
    
    .blog-header-wrapper {
        margin-bottom: 30px;
    }
    
    .blog-main-title {
        font-size: 26px;
        letter-spacing: 1px;
    }
    
    .blog-subtitle {
        font-size: 13px;
    }
    
    .blog-image-wrapper {
        height: 220px;
    }
    
    .blog-card-content {
        padding: 20px 18px;
    }
    
    .blog-meta {
        gap: 12px;
    }
    
    .blog-date {
        font-size: 13px;
    }
    
    .blog-card-title {
        font-size: 15px;
        margin-bottom: 18px;
    }
    
    .blog-learn-more {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .pagination-number {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

/* ========================= */
/* BLOG DETAIL PAGE STYLES */
/* ========================= */

/* Blog Detail Section */
.blog-detail-section {
    background-color: var(--main-bg);
    padding: 60px 0 80px;
}

/* Breadcrumb */
.blog-breadcrumb {
    margin-bottom: 40px;
}

.blog-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.blog-breadcrumb .breadcrumb-item {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    color: #666666;
}

.blog-breadcrumb .breadcrumb-item a {
    color: #AB8B44;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-breadcrumb .breadcrumb-item a:hover {
    color: #8B6F2A;
}

.blog-breadcrumb .breadcrumb-item.active {
    color: #333333;
}

.blog-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #999999;
}

/* Blog Detail Main */
.blog-detail-main {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

/* Blog Header */
.blog-detail-header {
    margin-bottom: 30px;
    text-align: left;
}

.blog-detail-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.blog-detail-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.blog-detail-date {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    color: #666666;
    font-weight: 400;
}

.blog-detail-author,
.blog-detail-category {
    display: none;
}

/* Blog Content */
.blog-detail-content {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 16px;
    color: #333333;
    line-height: 1.9;
}

.blog-detail-content p {
    margin-bottom: 30px;
    text-align: justify;
}

.blog-detail-content h2 {
    font-family: 'Cormorant Infant', serif;
    font-size: 28px;
    font-weight: 600;
    color: #333333;
    margin-top: 45px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.blog-content-image {
    margin: 40px 0;
}

.blog-content-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Recent's Blogs Section */
.recents-blogs-section {
    margin-top: 80px;
    padding: 60px 0;
    background-color: #F4EDE0;
}

.recents-blogs-title {
    font-family: 'Cormorant Infant', serif;
    font-size: 36px;
    font-weight: 600;
    color: #333333;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Blog Cards in Detail Page - Override */
.recents-blogs-section .blog-card {
    background: #FFFFFF;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.recents-blogs-section .blog-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.recents-blogs-section .blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.5s ease;
}

.recents-blogs-section .blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.recents-blogs-section .blog-card-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background-color: #FFF9F2;
}

.recents-blogs-section .blog-meta {
    display: block;
    margin-bottom: 15px;
}

.recents-blogs-section .blog-date {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    color: #666666;
    font-weight: 400;
}

.recents-blogs-section .blog-card-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.recents-blogs-section .blog-learn-more {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    background-color: #C9A148;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 28px;
    display: inline-block;
}

.recents-blogs-section .blog-learn-more-img {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.recents-blogs-section .blog-learn-more-img img {
    display: block;
    height: auto;
    max-height: 40px;
}

.recents-blogs-section .blog-learn-more-img:hover {
    transform: translateX(5px);
    opacity: 0.9;
    position: relative;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
    width: fit-content;
}

.recents-blogs-section .blog-learn-more:hover {
    background-color: #b38f3a;
    color: #FFFFFF;
    transform: translateX(5px);
}

/* Hide old sidebar and related posts styles */
.blog-sidebar-widget,
.blog-detail-share,
.blog-detail-image,
.blog-blockquote,
.related-posts-section {
    display: none;
}

/* Blog Detail Responsive Styles */
@media (max-width: 992px) {
    .blog-detail-section {
        padding: 50px 0 60px;
    }
    
    .blog-detail-main {
        padding: 0 40px;
    }
    
    .blog-detail-title {
        font-size: 36px;
    }
    
    .blog-detail-content {
        font-size: 15px;
    }
    
    .blog-detail-content h2 {
        font-size: 24px;
        margin-top: 40px;
    }
    
    .recents-blogs-section {
        margin-top: 60px;
        padding: 50px 0;
    }
    
    .recents-blogs-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    .recents-blogs-section .blog-image-wrapper {
        height: 250px;
    }
    
    .recents-blogs-section .blog-card-title {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .blog-detail-section {
        padding: 40px 0 50px;
    }
    
    .blog-detail-main {
        padding: 0 30px;
    }
    
    .blog-breadcrumb {
        margin-bottom: 30px;
    }
    
    .blog-detail-title {
        font-size: 32px;
    }
    
    .blog-detail-content {
        font-size: 15px;
    }
    
    .blog-detail-content h2 {
        font-size: 22px;
        margin-top: 35px;
        margin-bottom: 18px;
    }
    
    .blog-content-image {
        margin: 30px 0;
    }
    
    .recents-blogs-section {
        margin-top: 50px;
        padding: 40px 0;
    }
    
    .recents-blogs-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .recents-blogs-section .blog-image-wrapper {
        height: 220px;
    }
    
    .recents-blogs-section .blog-card-content {
        padding: 25px 20px;
    }
    
    .recents-blogs-section .blog-card-title {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .blog-detail-section {
        padding: 30px 0 40px;
    }
    
    .blog-detail-main {
        padding: 0 20px;
    }
    
    .blog-detail-title {
        font-size: 26px;
    }
    
    .blog-detail-content {
        font-size: 14px;
    }
    
    .blog-detail-content h2 {
        font-size: 20px;
        margin-top: 30px;
    }
    
    .blog-detail-content p {
        margin-bottom: 20px;
    }
    
    .recents-blogs-section {
        padding: 30px 0;
    }
    
    .recents-blogs-title {
        font-size: 22px;
    }
    
    .recents-blogs-section .blog-image-wrapper {
        height: 200px;
    }
    
    .recents-blogs-section .blog-card-content {
        padding: 20px 18px;
    }
    
    .recents-blogs-section .blog-learn-more {
        font-size: 12px;
        padding: 10px 20px;
    }
}

/* ============================================
   Gallery Carousel Styles
   ============================================ */

.gallery-carousel-container {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.gallery-carousel-viewport {
    flex: 1;
    overflow: hidden;
}

.gallery-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease-in-out;
}

.gallery-carousel-track .gallery-item {
    flex: 0 0 calc(33.333% - 13.333px);
    max-width: calc(33.333% - 13.333px);
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-carousel-track .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-carousel-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #AB8B44;
    background: transparent;
    color: #AB8B44;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.gallery-carousel-arrow:hover {
    background: #AB8B44;
    color: #FFFFFF;
}

.gallery-carousel-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.gallery-carousel-arrow:disabled:hover {
    background: transparent;
    color: #AB8B44;
}

.gallery-carousel-arrow i {
    font-size: 18px;
}

/* Carousel Dots */
.gallery-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.gallery-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E0D5C5;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-carousel-dot:hover {
    background: #C9B896;
}

.gallery-carousel-dot.active {
    background: #AB8B44;
    transform: scale(1.2);
}

/* Responsive Carousel Styles */
@media (max-width: 992px) {
    .gallery-carousel-track .gallery-item {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
    
    .gallery-carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .gallery-carousel-arrow i {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .gallery-carousel-container {
        gap: 10px;
    }
    
    .gallery-carousel-track {
        gap: 15px;
    }
    
    .gallery-carousel-track .gallery-item {
        flex: 0 0 calc(50% - 7.5px);
        max-width: calc(50% - 7.5px);
    }
    
    .gallery-carousel-arrow {
        width: 36px;
        height: 36px;
    }
    
    .gallery-carousel-arrow i {
        font-size: 12px;
    }
    
    .gallery-carousel-dots {
        margin-top: 20px;
        gap: 8px;
    }
    
    .gallery-carousel-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .gallery-carousel-track .gallery-item,
    .gallery-carousel-track .video-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .gallery-carousel-container {
        gap: 8px;
    }
    
    .gallery-carousel-arrow {
        width: 32px;
        height: 32px;
    }
    
    .gallery-carousel-arrow i {
        font-size: 10px;
    }
}

/* ============================================
   Video Carousel Styles
   ============================================ */

.video-carousel-container {
    margin-bottom: 20px;
}

.video-carousel-track .video-item {
    flex: 0 0 calc(33.333% - 13.333px);
    max-width: calc(33.333% - 13.333px);
}

.video-carousel-track .video-item .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.video-carousel-track .video-item .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Video Carousel Styles */
@media (max-width: 992px) {
    .video-carousel-track .video-item {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .video-carousel-track .video-item {
        flex: 0 0 calc(50% - 7.5px);
        max-width: calc(50% - 7.5px);
    }
}

@media (max-width: 576px) {
    .video-carousel-track .video-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ============================================
   WhatsApp Floating Button
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    color: #FFFFFF;
    font-size: 32px;
}

/* Pulse animation */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float i {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float i {
        font-size: 26px;
    }
}

/* ============================================
   WhatsApp Multiple Buttons with Labels
   ============================================ */

.whatsapp-buttons-container {
    position: fixed;
    bottom: 50px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.whatsapp-float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float-btn:hover {
    background-color: #128C7E;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float-btn i {
    font-size: 24px;
    color: #fff;
}

.whatsapp-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    color: #fff;
}

/* Mobile Responsive - WhatsApp Buttons */
@media (max-width: 768px) {
    .whatsapp-buttons-container {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .whatsapp-float-btn {
        padding: 10px 16px;
    }
    
    .whatsapp-float-btn i {
        font-size: 22px;
    }
    
    .whatsapp-label {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .whatsapp-buttons-container {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .whatsapp-float-btn {
        padding: 8px 14px;
    }
    
    .whatsapp-float-btn i {
        font-size: 20px;
    }
    
    .whatsapp-label {
        font-size: 12px;
    }
}

/* ============================================
   Enquiry Popup Modal
   ============================================ */

.enquiry-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.enquiry-modal.active {
    display: flex;
}

.enquiry-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 16px;
    max-width: 450px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: enquiryModalSlideIn 0.3s ease-out;
}

@keyframes enquiryModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.enquiry-modal-header {
    background: linear-gradient(135deg, #AB8B44 0%, #D4AF37 50%, #AB8B44 100%);
    padding: 25px 30px;
    text-align: center;
}

.enquiry-modal-header h3 {
    color: #fff;
    font-family: 'Cormorant Infant', serif;
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
}

.enquiry-modal-header p {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin: 0;
}

.enquiry-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.enquiry-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.enquiry-modal-body {
    padding: 30px;
}

.enquiry-form-group {
    margin-bottom: 20px;
}

.enquiry-form-group label {
    display: block;
    color: #AB8B44;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.enquiry-form-group input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(171, 139, 68, 0.3);
    border-radius: 8px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.enquiry-form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.enquiry-form-group input:focus {
    outline: none;
    border-color: #AB8B44;
    background: rgba(171, 139, 68, 0.1);
    box-shadow: 0 0 0 3px rgba(171, 139, 68, 0.15);
}

.enquiry-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #AB8B44 0%, #D4AF37 50%, #AB8B44 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.enquiry-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(171, 139, 68, 0.4);
}

.enquiry-submit-btn:active {
    transform: translateY(0);
}

.enquiry-form-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.enquiry-form-footer p {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    margin: 0;
}

/* Success message */
.enquiry-success {
    display: none;
    text-align: center;
    padding: 40px 30px;
}

.enquiry-success.active {
    display: block;
}

.enquiry-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #AB8B44 0%, #D4AF37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.enquiry-success-icon i {
    font-size: 40px;
    color: #fff;
}

.enquiry-success h4 {
    color: #fff;
    font-family: 'Cormorant Infant', serif;
    font-size: 26px;
    margin-bottom: 10px;
}

.enquiry-success p {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin-bottom: 20px;
}

.enquiry-success-close {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid #AB8B44;
    border-radius: 6px;
    color: #AB8B44;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enquiry-success-close:hover {
    background: #AB8B44;
    color: #fff;
}

/* Responsive */
@media (max-width: 576px) {
    .enquiry-modal-content {
        max-width: 100%;
        margin: 10px;
        border-radius: 12px;
    }
    
    .enquiry-modal-header {
        padding: 20px;
    }
    
    .enquiry-modal-header h3 {
        font-size: 24px;
    }
    
    .enquiry-modal-body {
        padding: 20px;
    }
    
    .enquiry-form-group input {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .enquiry-submit-btn {
        padding: 14px;
        font-size: 14px;
    }
}

/* ============================================
   Privacy Policy Page Styles
   ============================================ */
.privacy-content-section {
    background-color: var(--main-bg);
    padding: 60px 0;
}

.privacy-content {
    text-align: left;
}

.privacy-main-title {
    font-family: 'Cormorant Infant', serif;
    font-size: 32px;
    font-weight: 600;
    color: #AB8B44;
    line-height: 1.3;
    text-align: left;
    margin-bottom: 1.5rem;
}

.privacy-description {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: left;
}

.privacy-content ul {
    text-align: left;
    padding-left: 2rem;
}

.privacy-content h5 {
    color: var(--primary-green);
    font-weight: 600;
    text-align: left;
}

@media (max-width: 768px) {
    .privacy-content-section {
        padding: 40px 0;
    }
    
    .privacy-main-title {
        font-size: 24px;
        text-align: left;
    }
    
    .privacy-description {
        font-size: 14px;
        text-align: left;
    }
    
    .privacy-content {
        text-align: left;
    }
    
    .privacy-content ul {
        text-align: left;
        padding-left: 1.5rem;
    }
    
    .privacy-content h5 {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .privacy-content-section {
        padding: 30px 0;
    }
    
    .privacy-main-title {
        font-size: 20px;
        text-align: left;
    }
    
    .privacy-description {
        font-size: 13px;
        text-align: left;
    }
    
    .privacy-content {
        text-align: left;
    }
    
    .privacy-content ul {
        text-align: left;
        padding-left: 1.2rem;
    }
}
