/* Site Wrapper */
.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333333;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    position: relative;
    min-height: 60px;
    background-color: transparent !important;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-box {
    width: 24px;
    height: 20px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 24px;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    transition: transform 0.3s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    display: block;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

/* Active state for hamburger */
.hamburger-menu.active .hamburger-inner {
    transform: rotate(45deg);
}

.hamburger-menu.active .hamburger-inner::before {
    transform: translateY(8px) rotate(0);
    opacity: 0;
}

.hamburger-menu.active .hamburger-inner::after {
    transform: translateY(-8px) rotate(-90deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100dvh;
   /* fallback */
   height: 100vh;
    background-color: #23120B;
    z-index: 1000;
    transition: right 0.4s ease;
    overflow-y: auto;
    padding: 80px 20px 40px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
    display: block;
    color: #fff;
    padding: 15px 20px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-link:hover {
    color: #FDB827;
    padding-left: 25px;
}

.has-dropdown::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.has-dropdown.active::after {
    content: '-';
    transform: translateY(-50%) rotate(0);
}

.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(0, 0, 0, 0.1);
    padding-left: 20px;
}

.mobile-dropdown.active {
    max-height: 500px;
}

.mobile-dropdown li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-dropdown a {
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-dropdown a:hover {
    color: #FDB827;
    padding-left: 25px;
}

/* Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.main-header.scrolled {
    background: #23120B; /* Matching footer background */
    padding: 0.8rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.main-header .navbar-brand img {
    height: 50px;
    transition: all 0.3s ease;
}

.main-header.scrolled .navbar-brand img {
    height: 40px;
}

/* Adjust hero section to account for fixed header */
.hero-section {
    margin-top: 80px; /* Height of the header */
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 640px; /* Match homepage hero */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .hero-section {
        height: 520px;
    }
}

@media (max-width: 600px) {
    .hero-section {
        height: 420px;
    }
}

/* Hero background image */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Ensure hero content is properly positioned */
.hero-content {
    position: relative;
    z-index: 95;
    width: 100%;
    color: #fff; /* Ensure text is visible on the image */
}

/* Container adjustments */
.container {
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
}

/* ===== Base Styles ===== */
:root {
    /* Primary Color Palette */
    --color-dark: #1a1a1a;        /* Dark Gray for Headers/Footers */
    --color-neutral: #4a4a4a;     /* Neutral Gray */
    --color-accent: #FDB827;      /* Vibrant Yellow (Premium Accent) */
    --color-light: #ffffff;       /* White */
    
    /* Functional Colors */
    --primary-color: var(--color-accent);
    --secondary-color: #333333;
    --dark-color: var(--color-dark);
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --light-gray: #f5f5f5;
    
    /* UI Elements */
    --header-bg: var(--color-dark);
    --header-height: 80px;
    --footer-bg: var(--color-dark);
    --body-bg: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --text-on-dark: #ffffff;
    --border-color: rgba(0, 0, 0, 0.1);
    
    /* Transitions & Effects */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.1);
    --border-radius: 6px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    margin: 0 !important;
    padding: 0 !important;
}

/* Base Typography & Layout */
body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
    overflow-x: hidden;
    background-color: var(--body-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
    letter-spacing: -0.02em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

p {
    margin-bottom: 15px;
    color: var(--text-light);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

/* Utility Classes */
.bg-light {
    background-color: var(--light-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.text-center {
    text-align: center !important;
}

/* Responsive Images */
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Lazy Loading */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.lazy.loaded {
    opacity: 1;
}

/* Section Title Styling (Consolidated) */
.section-title h2 {
    font-size: 36px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

/* Removed conflicting .section-title h2:after to use global .section-title:after instead */

.section-title p {
    max-width: 700px;
    margin: 15px auto 0;
}

.btn {
    display: inline-block;
    background: var(--color-accent);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--color-accent);
    transition: var(--transition);
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(253, 184, 39, 0.3);
}

.btn:hover {
    background: transparent;
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 184, 39, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.btn-outline:hover {
    background: #fff;
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 184, 39, 0.4);
}

/* ===== Header Styles ===== */
/* Header Styles - Merged into .main-header */

/* ===== Header Styles ===== */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
    width: 100%;
}

.navbar .container {
    max-width: 1320px;
    padding: 0 1.5rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

/* Logo styles */
.navbar-brand {
    padding: 0;
    margin: 0;
    line-height: 1;
}

.logo {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    z-index: 1002;
    flex-shrink: 0;
}

.logo:hover {
    opacity: 0.9;
}

/* Active link indicator */
.nav-link.active {
    color: var(--color-accent) !important;
    position: relative;
}

.nav-link.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--color-accent);
}

/* Hover effect for nav items */
.nav-link:not(.active):hover:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--color-accent);
    transform: scaleX(0.8);
    transition: transform 0.3s ease;
}

/* Smooth transitions */
.nav-link,
.dropdown-item,
.navbar-toggler {
    transition: all 0.3s ease;
}

.nav-item {
    position: relative;
    margin-left: 1.5rem;
}

/* .nav-link styles merged into main block around line 1782 */

/* Dropdown Menu styles consolidated in main dropdown section */

.dropdown-item {
    color: var(--text-on-dark);
    padding: 0.5rem 1.5rem;
    transition: var(--transition);
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-accent);
}

.dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

/* Mobile Menu Toggle */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    display: none;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--color-dark);
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 4px;
    }
    

    
    .nav-link {
        padding: 0.5rem 0 !important;
    }
    
    .dropdown-menu {
        background-color: rgba(0, 0, 0, 0.2);
        border: none;
        margin: 0.5rem 0 0 1rem;
    }

    .main-nav.show {
        transform: translateY(0);
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        margin: 0 0 0.5rem 0;
    }

    .nav-link {
        padding: 0.75rem 0;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin-top: 0.5rem;
        border: none;
        box-shadow: none;
    }
}

/* Header layout */
.header .container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo styles merged into main block */

/* Navigation container */
.nav-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 60%;
    margin: 0 auto;
}

/* Navigation menu */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.nav-item {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    margin: 0 10px;
}

/* .nav-link styles merged */

/* .nav-link hover styles merged */

/* Call button styles */
.header-call {
    z-index: 1002;
    flex-shrink: 0;
    margin-left: auto;
}

.call-button {
    display: flex;
    align-items: center;
    background-color: var(--color-accent);
    color: var(--text-on-dark);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.call-button i {
    margin-right: 8px;
}

.call-button:hover {
    background-color: darken(var(--color-accent), 10%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1002;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-on-dark);
    transition: all 0.3s ease;
}

/* Responsive styles */
@media (max-width: 991.98px) {
    .nav-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
   /* fallback */
   height: 100vh;
        background-color: var(--header-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1001;
        padding: 80px 20px 40px;
    }

    .nav-container.active {
        transform: translateX(0);
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .nav-item {
        width: 100%;
        margin: 5px 0;
        height: auto;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 15px 20px;
        text-align: center;
        font-size: 1.1rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .call-button .call-text {
        display: none;
    }

    .call-button {
        padding: 10px 15px;
    }
}

/* Container styles moved to header layout section */

/* Logo styles cleaned up */

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    margin-left: 2.5rem;
    position: relative;
}

/* .nav-link styles merged */

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.75rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--primary-color);
}

/* Responsive Navigation */
@media (max-width: 991.98px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100dvh;
   /* fallback */
   height: 100vh;
        background-color: var(--header-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 0.75rem 0;
        display: block;
        font-size: 1rem;
    }
    
    .header.sticky .nav-menu {
        padding-top: 5rem;
    }
}

/* Header Buttons */
.header-buttons {
    display: flex;
    align-items: center;
    margin-left: 2rem;
}

.header .btn {
    margin-left: 1rem;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

@media (max-width: 991.98px) {
    .header-buttons {
        margin-left: auto;
        margin-right: 1rem;
    }
    
    .header .btn {
        display: none;
    }
    
    .header .btn:first-child {
        display: inline-flex;
    }
}

/* Search Form Container */
.search-form-container {
    position: relative;
    z-index: 100;
    margin-top: -60px;
    margin-bottom: 40px;
}

.search-form {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px;
    position: relative;
    z-index: 2;
}

.search-form .form-row {
    margin: 0 -10px;
}

.search-form .form-group {
    padding: 0 10px;
    margin-bottom: 0;
}

.search-form .form-control {
    height: 55px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 0 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(197, 164, 126, 0.25);
}

/* Floor Plan Button Styles */
.fp-btn {
    background: linear-gradient(135deg, #FDB827 0%, #f8b423 100%);
    color: #23120B !important;
    font-weight: 700;
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(253, 184, 39, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fp-btn:hover {
    background: linear-gradient(135deg, #f8b423 0%, #FDB827 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 184, 39, 0.4);
    color: #fff !important;
}

.search-form .btn {
    height: 55px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 20px;
    width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .search-form-container {
        margin-top: -30px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
min-height: 100dvh;
        /* fallback */
        min-height: 100vh;
        height: auto;
    }
    
    .hero-slide {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .search-form-container {
        margin-top: 0;
        padding: 0 15px;
    }
    
    .search-form {
        padding: 20px 15px;
    }
    
    .search-form .form-group {
        margin-bottom: 15px;
    }
}

/* ===== Page Hero (Breadcrumb Area) ===== */
.page-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 640px; /* Match homepage hero */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-top: 0; /* Header is absolute */
    color: #fff;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(35, 18, 11, 0.75);
    z-index: 1;
}

/* Responsive Heights */
@media (max-width: 991.98px) {
    .page-hero {
        height: 520px;
    }
}

@media (max-width: 600px) {
    .page-hero {
        height: 420px;
    }
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.7);
}

.breadcrumb-item.active {
    color: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px;
        margin-top: 70px;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .breadcrumb {
        font-size: 0.875rem;
    }
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 18, 11, 0.75);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero .btn {
    margin: 0.5rem;
    min-width: 180px;
}

/* Search Form */
.search-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.5rem;
}

.form-group {
    padding: 0 0.5rem;
    margin-bottom: 1rem;
    flex: 1 0 0%;
    min-width: 200px;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(197, 164, 126, 0.25);
}

/* Responsive Hero */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .form-group {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 15px 60px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .form-group {
        flex: 0 0 100%;
    }
    
    .search-form {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sticky header state */
.header.sticky {
    padding: 12px 0;
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

/* Removed scroll up/down animations */

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    padding: 8px 0;
    margin: 0 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-link:hover {
    color: var(--color-accent);
}

.nav-link:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
    opacity: 0.8;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 640px; /* Match homepage hero */
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    padding-top: 0;
}

@media (max-width: 991.98px) {
    .hero {
        height: 520px;
    }
}

@media (max-width: 600px) {
    .hero {
        height: 420px;
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 60px;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Search Form */
.search-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--color-accent);
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(253, 184, 39, 0.25);
}

/* About Section */
.about-section {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

.page-about .values-section .section-title .subtitle {
    color: var(--color-accent) !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    position: relative !important;
    display: inline-block !important;
    padding-left: 24px !important;
    text-transform: uppercase !important;
    margin: 0 auto 15px !important;
    font-size: 14px !important;
    text-align: left !important;
}

.page-about .values-section .section-title .subtitle::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 4px !important;
    height: 20px !important;
    background: var(--color-accent) !important;
    border-radius: 2px !important;
    display: block !important;
}

.about-section .section-title h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    line-height: 1.3;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--color-accent), #f8c23a);
    color: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(253, 184, 39, 0.3);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.experience-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(253, 184, 39, 0.4);
}

.experience-badge h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

/* Alert Info Styling */
.alert-info {
    background-color: #f8f9fa !important;
    border-color: #e9ecef !important;
    color: #212529 !important;
    padding: 1.75rem 2rem !important;
    border-radius: 8px !important;
    line-height: 1.7;
}

.alert-info a {
    color: #0d6efd !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.alert-info a:hover {
    color: #0a58ca !important;
    text-decoration: underline;
}

.property-image {
    position: relative;
}

/* Prevent phone numbers from breaking in alert boxes */
.alert-info a[href^="tel:"] {
    white-space: nowrap;
    display: inline-block;
}

.experience-badge p {
    margin: 5px 0 0;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 1px;
}

.about-feature {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(253, 184, 39, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(253, 184, 39, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-accent);
    font-size: 24px;
    transition: all 0.3s ease;
}

.about-feature:hover .feature-icon {
    background: linear-gradient(135deg, var(--color-accent), #f8c23a);
    color: #fff;
    transform: rotate(5deg) scale(1.1);
}

.about-feature h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.about-feature p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

.about-signature {
    display: flex;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease;
}

.about-signature img {
    max-width: 150px;
    height: auto;
    margin-right: 20px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
    transition: all 0.4s ease;
}

.about-signature:hover img {
    transform: translateY(-3px);
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.15));
}

.signature-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-dark);
}

.signature-info p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .about-section .section-title h2 {
        font-size: 2rem;
    }
    
    .experience-badge {
        padding: 15px 20px;
    }
    
    .experience-badge h3 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
    }
    
    .experience-badge h3 {
        font-size: 1.8rem;
    }
    
    .about-feature {
        margin-bottom: 20px;
    }
}

.section-padding {
    padding: 100px 0;
}

.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-image {
    flex: 0 0 50%;
    padding: 0 15px;
}

.about-text {
    flex: 0 0 50%;
    padding: 0 15px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
}

/* Page Banner */
.page-banner {
    position: relative;
    height: 640px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    background-color: #000;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 18, 11, 0.75);
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.banner-content {
    text-align: center;
    width: 100%;
    padding-top: 2.5rem;
    margin-top: 0;
    padding-bottom: 0.5rem;
}

body.inner-page .banner-content {
    padding-top: 3.5rem;
    padding-bottom: 1rem;
    margin-top: 1.5rem;
}

.banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FDB827; /* Yellow color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
    background: transparent;
    padding: 0.5rem 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff;
    opacity: 0.8;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .page-banner {
        height: 520px;
    }
    
    .banner-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .page-banner {
        height: 420px;
    }
}

@media (max-width: 767.98px) {
    .page-banner {
        text-align: center;
    }
    
    .banner-content {
        padding: 0 15px;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .breadcrumb {
        justify-content: center;
    }
}

/* Header */
.header {
    background-color: transparent !important;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 15px 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

/* Add background when scrolled or menu is open */
.header.scrolled,
.header.navbar-mobile-open {
    background-color: rgba(35, 18, 11, 0.95) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
}

/* Ensure content is below the header */
.hero-slider,
.page-banner {
    margin-top: 0;
    padding-top: 0;
}

/* Footer */
.footer .footer-logo img {
    filter: none !important;
    -webkit-filter: none !important;
}

/* Ensure main content has no bottom spacing and handles whitespace */
.main-content {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    display: block;
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 70px 0 0;
    position: relative;
    margin-top: -5px !important; /* Force overlap with previous section */
    z-index: 5;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.footer-about {
    flex: 1 1 0;
    min-width: 200px;
    margin-right: 30px;
}

.footer-links {
    flex: 1 1 0;
    min-width: 160px;
    margin: 0 5px;
}

.footer-social, .footer-contact {
    flex: 1 1 0;
    min-width: 200px;
    padding: 0;
}

.footer-heading {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--color-accent);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--color-accent);
    color: #23120B !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(253, 184, 39, 0.3);
}

.footer-links ul li {
    margin-bottom: 6px;
    line-height: 1.3;
}

.footer-links ul li a {
    color: #ffffff;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link,
.footer-links a:not(.social-icon),
.footer-bottom a:not(.social-icon),
.contact-link,
.contact-item a {
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover,
.footer-links a:not(.social-icon):hover,
.footer-bottom a:not(.social-icon):hover,
.contact-link:hover,
.contact-item a:hover {
    color: #FDB827 !important;
    text-decoration: none;
}

.social-links a.social-icon {
    color: #ffffff !important;
    transition: color 0.3s ease;
}

.social-links a.social-icon:hover {
    color: #23120B !important;
}

.footer-links ul li a:hover {
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 0.95em;
}

.footer-contact ul li i {
    margin-right: 10px;
    color: var(--color-accent);
    font-size: 16px;
    line-height: 1.4;
    margin-top: 2px;
}

.newsletter-form {
    position: relative;
    margin-top: 20px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--color-accent);
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--color-neutral);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

/* ===== Property Tabs ===== */
.property-tabs-section {
    position: relative;
    padding: 80px 0;
    background-color: #f9f9f9;
    overflow: hidden;
}

.property-tabs-section .container {
    position: relative;
    z-index: 1;
}

.tabs-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    color: #23120B;
    margin: 0 0 15px 0;
    font-weight: 700;
    position: relative;
    display: inline-block;
    font-family: 'Playfair Display', serif;
}

/* Removed yellow line under section titles */

.tabs-nav-container {
    display: flex;
    justify-content: center;
    margin: 20px 0 40px;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tabs-nav {
    display: inline-flex;
    background: #fff;
    padding: 6px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tab-btn {
    padding: 10px 35px;
    border: none;
    background: none;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.tab-btn:not(.active):hover {
    color: #23120B;
}

.tab-btn.active {
    color: #fff;
    background: linear-gradient(135deg, #FDB827 0%, #f8b423 100%);
    box-shadow: 0 4px 15px rgba(253, 184, 39, 0.3);
    transform: translateY(-1px);
}

.tabs-content {
    position: relative;
    min-height: 500px;
}

.tab-pane {
    animation: fadeIn 0.5s ease-out;
    display: none;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.view-all-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 35px;
    background: transparent;
    border: 2px solid #FDB827;
    color: #FDB827;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.view-all-btn:hover {
    background: #FDB827;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(253, 184, 39, 0.3);
}

/* Responsive Adjustments */
.footer-content {
    padding: 0 15px;
}

@media (min-width: 576px) {
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .footer-content {
        padding: 0 15px;
        display: flex;
        flex-wrap: wrap;
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* Full width for About section */
    .footer-about {
        flex: 0 0 100%;
        margin: 0 0 20px;
        max-width: 100%;
        padding: 0 5px;
    }
    
    /* Container for side by side sections */
    .footer-links-wrapper {
        display: flex;
        flex: 0 0 100%;
        margin-bottom: 15px;
        gap: 8px;
        padding: 0 5px;
        box-sizing: border-box;
    }
    
    /* Quick Links and Legal Links side by side */
    .footer-links {
        flex: 1;
        margin: 0;
        min-width: 130px;
        max-width: calc(50% - 4px);
    }
    
    /* Full width for Contact section */
    .footer-contact {
        flex: 0 0 100%;
        margin: 0;
        max-width: 100%;
        padding: 0 5px;
        font-size: 0.95em;
        min-width: 220px;
    }
}

@media (min-width: 992px) {
    .footer-content {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 0 40px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .footer-about {
        flex: 1;
        margin-right: 20px;
    }
    
    .footer-links-wrapper {
        display: flex;
        flex: 2;
        justify-content: space-between;
    }
    
    .footer-links,
    .footer-social {
        flex: 1;
        margin: 0 10px;
    }
    
    .footer-contact {
        flex: 1;
        margin-left: 20px;
    }
    
    /* Property grid for desktop */
    .property-tabs-section .property-grid,
    .property-tabs .property-grid,
    .tab-content .property-grid,
    .property-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 1000px;
        padding: 20px 30px;
    }
}

@media (min-width: 1200px) {
    .footer-content {
        padding: 0 15px;
        max-width: 1140px;
        margin: 0 auto;
    }
}

@media (max-width: 991.98px) {
    .property-tabs-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tabs-nav-container {
        margin: 15px auto 30px !important;
        justify-content: center !important;
        padding: 10px 15px !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        max-width: 100%;
        display: flex !important;
    }
    
    .tab-btn {
        padding: 8px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .property-tabs-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .tabs-nav {
        flex-direction: row !important;
        padding: 5px 10px !important;
        width: auto !important;
        margin: 0 auto !important;
        justify-content: center !important;
    }
    
    .tab-btn {
        width: auto;
        padding: 8px 20px !important;
        margin: 0 4px !important;
    }
    
    .view-all-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .footer-content {
        padding: 0 15px;
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .footer-about,
    .footer-contact {
        flex: 0 0 100%;
        margin: 0 0 30px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Side by side for Quick Links and Legal Links on mobile */
    .footer-links-wrapper {
        display: flex;
        flex-direction: row;
        width: 100%;
        gap: 20px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }
    
    .footer-links {
        flex: 1;
        min-width: 140px;
        margin: 0;
        padding: 0;
    }
    
    /* Ensure proper spacing between list items */
    .footer-menu {
        margin: 10px 0 0;
        padding: 0;
    }
    
    .footer-menu-item {
        margin-bottom: 8px;
    }
    
    .footer-social {
        margin-left: 10px;
    }
    
    .property-tabs-section .property-grid,
    .property-tabs .property-grid,
    .tab-content .property-grid,
    .property-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 15px;
    }
    .section-title {
        font-size: 2rem;
    }
    
    .tab-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Mobile View */
@media (max-width: 767.98px) {
    .property-tabs-section .property-grid,
    .property-tabs .property-grid,
    .tab-content .property-grid,
    .property-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 15px;
    }
    .section-title {
        font-size: 2rem;
    }
    
    .tab-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Tablet View */
@media (min-width: 768px) and (max-width: 991.98px) {
    .property-tabs-section .property-grid,
    .property-tabs .property-grid,
    .tab-content .property-grid,
    .property-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        padding: 20px 15px;
        max-width: 800px;
        margin: 0 auto 30px;
    }
}

/* Tabs Navigation */
.tabs-nav {
    display: inline-flex;
    background: #fff;
    padding: 5px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.tab-btn {
    padding: 10px 30px;
    border: none;
    background: none;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: #FDB827;
    color: #23120B;
    box-shadow: 0 2px 10px rgba(253, 184, 39, 0.3);
}

.tab-btn:not(.active):hover {
    color: #23120B;
}

.slick-dots li button {
    font-size: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.slick-dots li button:focus {
    outline: none;
}

.slick-dots li.slick-active button {
    background: #FDB827;
    width: 30px;
    border-radius: 10px;
    opacity: 1;
}

/* Slick Arrows */
.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #23120B;
    font-size: 16px;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.slick-arrow:hover {
    background: #FDB827;
    color: #fff;
    opacity: 1;
}

.slick-prev {
    left: -20px;
}

.slick-next {
    right: -20px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .slick-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .slick-prev {
        left: -15px;
    }
    
    .slick-next {
        right: -15px;
    }
}

@media (max-width: 767px) {
    .slick-arrow {
        display: none !important;
    }
}

/* View All Button */
.btn-outline-primary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #FDB827;
    color: #FDB827;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #FDB827;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 184, 39, 0.3);
}

/* Property Grid */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 30px 15px;
    max-width: 1400px;
    margin: 0 auto 30px;
    width: 100%;
    box-sizing: border-box;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .tab-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .property-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
}

/* Responsive adjustments */
/* Tablet View (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .property-tabs-section .property-grid,
    .property-tabs .property-grid,
    .tab-content .property-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 20px !important;
        padding: 20px 15px !important;
        max-width: 800px !important;
        margin: 0 auto !important;
    }
    
    .property-item {
        width: 100%;
        margin: 0;
        min-width: 0;
    }
    

}

/* Mobile View (up to 767px) */
@media (max-width: 767px) {
    .property-tabs-section .property-grid,
    .property-tabs .property-grid,
    .tab-content .property-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 20px 15px !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    .property-item {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        min-width: 0;
    }
    
    .property-image {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .property-tabs-section .property-grid,
    .property-tabs .property-grid,
    .tab-content .property-grid {
        gap: 15px !important;
    }
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.footer-bottom i {
    color: var(--color-accent);
    margin: 0 5px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid var(--color-accent);
    border-radius: 50%;
    -webkit-animation: spin 1s linear infinite;
    -moz-animation: spin 1s linear infinite;
    -ms-animation: spin 1s linear infinite;
    -o-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { 
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg); 
    }
    100% { 
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg); 
    }
}

/* Our Core Values Section Centering */
.values-section .section-title {
    text-align: center !important;
    width: 100%;
}

.values-section .section-title .subtitle,
.values-section .section-title h2,
.values-section .section-title p {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}

.values-section .section-title h2 {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.values-section .section-title h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.values-section .section-title p {
    max-width: 700px;
    margin: 15px auto 0;
}

/* ============================
   SINGLE PROPERTY HERO
   Matches Homepage Hero Slider
   ============================ */

.property-hero {
    width: 100%;
    height: 640px;
    min-height: 640px;
    max-height: 640px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 120px 0 80px; /* matches homepage */
    margin-top: 0; /* header is absolute */
}

.property-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 18, 11, 0.75);
    z-index: 1;
}

.property-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
    text-align: left;
}

.property-hero-title {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.property-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
}

.property-hero-buttons {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .property-hero {
        height: 520px;
        min-height: 520px;
        max-height: 520px;
    }
}

@media (max-width: 600px) {
    .property-hero {
        height: 420px;
        min-height: 420px;
        max-height: 420px;
    }
}

@media (max-width: 768px) {
    .property-hero {
        padding: 100px 15px 60px;
        text-align: center;
    }

    .property-hero-title {
        font-size: 2.2rem;
    }

    .property-hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* === FAB: floating action button (global) === */
.fab-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.0);
    visibility: hidden;
    opacity: 0;
    transition: opacity .25s ease, background .25s ease;
    z-index: 9998;
    pointer-events: none;
    backdrop-filter: none;
}

.fab-overlay.active {
    visibility: visible;
    opacity: 1;
    background: rgba(0,0,0,0.35);
    pointer-events: auto;
    backdrop-filter: blur(4px);
}

/* Container */
.fab-container {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
}

/* Main FAB */
.fab-main {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(180deg,#fdd14a,#f4b82a);
    color: #1a1a1a;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .28s ease, box-shadow .28s ease;
}

/* Pulse animation */
@keyframes fabPulse {
    0% { box-shadow: 0 0 0 0 rgba(249,184,30,0.45); transform: scale(1); }
    70% { box-shadow: 0 0 0 12px rgba(249,184,30,0.04); transform: scale(1.03); }
    100% { box-shadow: 0 0 0 0 rgba(249,184,30,0); transform: scale(1); }
}
.fab-main.pulse {
    animation: fabPulse 2.2s infinite;
}

/* Options panel (hidden by default) */
.fab-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transform-origin: 100% 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(.98);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
}

/* Visible options */
.fab-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Individual option */
.fab-item {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    color: #1a1a1a;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.10);
    position: relative;
}

/* Staggered scale enter */
.fab-options.active .fab-item {
    transform: translateY(0);
    transition: transform .18s cubic-bezier(.2,.9,.3,1), opacity .18s;
}

/* Icon colours */
.fab-item .fa-whatsapp { color: #25D366; }
.fab-item .fa-phone { color: #FDB827; }
.fab-item .fa-envelope { color: #1a1a1a; }

/* Tooltips (desktop hover) */
.fab-tooltip {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.85);
    color: #fff;
    font-size: .85rem;
    padding: 6px 9px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity .12s ease, transform .12s ease;
    pointer-events: none;
    transform: translateY(-50%) translateX(6px);
}

/* Show tooltip on hover for pointer devices */
.fab-item:hover .fab-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Mobile: hide tooltips (space constraints) */
@media (max-width: 576px) {
    .fab-tooltip { display: none; }
    .fab-container { right: 14px; bottom: 14px; }
    .fab-main { width: 52px; height: 52px; }
    .fab-item { width: 44px; height: 44px; }
}

/* Rotate icon when open */
.fab-main.open { transform: rotate(45deg); }

/* Accessibility: focus outline */
.fab-main:focus, .fab-item:focus { outline: 3px solid rgba(253,184,39,0.18); outline-offset: 3px; }

/* Hide FAB initially; JS will show after scroll */
.fab-container, .fab-overlay { opacity: 0; transform: translateY(6px); transition: opacity .28s ease, transform .28s ease; pointer-events: none; }
.fab-visible { opacity: 1 !important; transform: none !important; pointer-events: auto !important; }

/* FAB: polish & stagger animations */
.fab-options .fab-item { opacity: 0; transform: translateY(6px) scale(.98); transition: transform .28s cubic-bezier(.2,.9,.3,1), opacity .28s; }
.fab-options.active .fab-item { opacity: 1; transform: none; }
.fab-options.active .fab-item:nth-child(1) { transition-delay: 0.02s; }
.fab-options.active .fab-item:nth-child(2) { transition-delay: 0.06s; }
.fab-options.active .fab-item:nth-child(3) { transition-delay: 0.10s; }

/* Slightly larger shadow when open */
.fab-options.active + .fab-main,
.fab-main.open { box-shadow: 0 14px 40px rgba(0,0,0,0.22); }

/* Ensure very high z-index but keep below site-wide overlays if any */
.fab-container, .fab-overlay { z-index: 9999; }

/* When menu open, prevent page scroll for mobile */
html.fab-menu-open, body.fab-menu-open { overflow: hidden; touch-action: none; }

/* Section Background Overrides */
.section-light-beige,
.section-light-grey,
.section-offwhite {
    background: #fff !important;
}

/* Make CTA full-width on all pages */
/* Section Title Styling */
.section-title {
    text-align: center !important;
    margin-bottom: 1.5rem !important;
    font-weight: 600;
    color: #333;
    position: relative;
    padding-bottom: 0.5rem;
    font-size: 1.75rem;
    text-transform: capitalize;
}

/* Optional: Add an underline effect */
.section-title:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #FDB827; /* Using the site's accent color */
    border-radius: 3px;
}

/* Reset any conflicting styles from the container */
.main-content .container {
    overflow: visible;
}

/* ============================================
   FIX: Sticky main-header overlapping heroes
   Applies ONLY to homepage + property details hero
   ============================================ */

/* Your header height */
:root {
    --main-header-height: 80px;
}

/* Adjust padding so hero is always fully visible */
.hero-section,
.hero-slider,
.property-hero {
    padding-top: var(--main-header-height) !important;
    box-sizing: border-box;
}

/* Mobile header slightly smaller */
@media (max-width: 768px) {
    :root {
        --main-header-height: 70px;
    }
}

/* Proper viewport height on mobile browsers */
/* Removed conflicting height styles */

/* ---------------------------------------------
   PREMIUM AMENITIES SECTION (Luxury Real Estate)
   --------------------------------------------- */
.amenities-highlight {
    background: linear-gradient(145deg, #fff9e5 0%, #fff4d1 50%, #ffeec0 100%) !important;
    padding: 0px 0px 80px !important;
    margin-top: 60px !important;
    border-radius: 16px !important;
    position: relative;
    box-shadow: 0 8px 35px rgba(0,0,0,0.04);
}

/* Inset luxury border */
.amenities-highlight::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 14px;
    border: 1.5px solid rgba(255, 210, 130, 0.35);
    pointer-events: none;
}

/* Center container contents */
/* Amenities styling */
.amenities-highlight .container {
    padding-left: 30px !important;
    padding-right: 30px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}


/* ---------------------------------------------
   AMENITY CARDS
   --------------------------------------------- */
#property-amenities .amenity-box {
    background: #ffffff;
    border: 1px solid rgba(255, 215, 140, 0.35);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Gold line inside cards */
#property-amenities .amenity-box::after {
    content: "";
    display: block;
    width: 40%;
    height: 3px;
    background: linear-gradient(90deg, #f7d184, #fcbc5a);
    margin: 12px auto 0 auto;
    border-radius: 20px;
    opacity: 0.65;
}

/* Icon styling */
#property-amenities .amenity-icon i {
    color: #f4b400 !important;
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

/* Text styling */
#property-amenities .amenity-box p {
    font-size: 1rem;
    color: #444;
    font-weight: 600;
}

/* ---------------------------------------------
   GLOW HOVER EFFECT (SUPER PREMIUM)
   --------------------------------------------- */
#property-amenities .amenity-box:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow:
        0 12px 28px rgba(0,0,0,0.08),
        0 0 20px rgba(255, 210, 120, 0.45);
    border-color: #f8d27a;
}

/* Also ensure location block never collapses upward */
#property-location,
.location-section,
.section-location {
    padding-top: 50px !important;
}
/* ============================================================
   CLEAN FINAL MODAL UI â€” NO DUPLICATES, NO CONFLICTS
   ============================================================ */

/* Backdrop */
.lead-modal {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}
.lead-modal.lead-open {
    display: flex;
}
.lead-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(3px);
}

/* Panel */
.lead-modal-panel {
    position: relative;
    background: white;
    border-radius: 14px;
    padding: 25px; /* Reduced from 35px */
    width: 90%;
    max-width: 500px; /* Reduced from 760px */
    animation: modalFadeIn .25s ease-out;
}
@keyframes modalFadeIn {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

/* Close Button */
.lead-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px; /* Reduced */
    height: 32px; /* Reduced */
    font-size: 22px; /* Reduced */
    border-radius: 8px;
    border: none;
    background: #eee;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Heading + subtitle */
.lead-modal-heading {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem; /* Reduced */
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.3;
}
.lead-modal-sub {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Inputs */
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px; /* Reduced */
    width: 100%;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 0.9rem;
}
.form-control {
    height: 45px; /* Reduced */
    border-radius: 8px;
    border: 1px solid #e1c78d;
    padding: 10px;
    font-size: 0.95rem;
}
.form-control:focus {
    border-color: #f4c750;
    box-shadow: 0 0 10px rgba(244,199,80,0.45);
}

/* ============================================================
   FINAL FIX â€” FORCE CENTER ALIGNMENT FOR BUTTONS & TEXT
   ============================================================ */

/* Parent wrapper */
.lead-modal-footer {
    text-align: center !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 25px !important;
}

/* Button row centered */
.lead-modal-actions {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    gap: 15px !important;
    margin-bottom: 12px !important;
}

/* Make buttons naturally centered */
.lead-modal-actions .btn {
    margin: 0 !important; /* Reset auto margins to let flexbox work */
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-width: 180px; /* Ensure buttons have decent width */
}

/* Style for the buttons */
.whatsapp-btn,
.request-callback-btn {
    padding: 10px 20px; /* Compact padding */
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem; /* Compact font size */
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    flex: 1; /* Allow buttons to grow evenly if needed, or stick to min-width */
    max-width: 220px; /* Prevent them from getting too wide on desktop */
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.request-callback-btn {
    border: 2px solid #f4b82a;
    background: white;
    color: black;
}

/* Hover effects */
.whatsapp-btn:hover,
.request-callback-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 14px rgba(245, 199, 40, 0.5);
    transition: 0.25s ease;
}

/* Center the privacy text */
.lead-privacy {
    text-align: center !important;
    width: 100% !important;
    margin-top: 15px !important;
    display: block !important;
    color: #777;
    font-size: 0.75rem; /* Smaller privacy text */
    line-height: 1.4;
}

/* Mobile */
@media(max-width: 768px) {
    .lead-modal-actions {
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
    }
    .lead-modal-actions .btn {
        width: 100% !important; /* Full width on mobile */
        max-width: 100% !important;
        margin: 0 !important;
        min-width: 0; /* Reset min-width */
    }
    .whatsapp-btn,
    .request-callback-btn {
        width: 100% !important;
        display: flex !important;
    }
}


/* Consistent spacing for all section titles */
.section-block .section-title {
    margin-top: 60px !important;
    margin-bottom: 30px !important;
}

/* Slightly more spacing for specific sections */
.section-light-grey .section-title,
.documents-section .section-title,
.floorplans-section .section-title,
.amenities-highlight .section-title {
    margin-top: 70px !important;
}


