/* Reset and Base Styles */
:root {
    --primary-color: #E49E22; /* Mustard Yellow */
    --primary-light: #E49E22;
    --secondary-color: #5D4A1F; /* Olive Brown */
    --secondary-light: #E49E22;
    --accent-color: #5D4A1F;
    --white: #fff;
    --light-gray: #f8fafc;
    --medium-gray: #e5e7eb;
    --dark-gray: #000000; /* Black */
    --text-color: #000000;
    --text-light: #5D4A1F;
    --border-color: #5D4A1F;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s ease;
    --radius-sm: 8px;
    --radius: 18px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --light-bg: #f6f7fb;
    --card-bg: #fcfcfd;
    --shadow: 0 8px 32px rgba(30,34,56,0.10);
    --main-font: 'Poppins';
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: none !important;
}

/* Prevent horizontal overflow and double scrollbars */
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  width: 100%;
  /* height: 100%; removed to allow full page scroll */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    padding-top: 80px; /* Increased to match navbar height and prevent overlap */
    /* display: flex; removed to allow normal block flow */
    /* flex-direction: column; removed */
    /* min-height: 100vh; removed to allow content to define height */
    width: 100%; /* Fix: was 100vw, now 100% to prevent overflow */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 12px;
}

section {
    padding: 48px 0;
}

.section-header {
    margin-bottom: 28px;
}

.section-header.center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    color: #5D4A1F;
    font-size: 1.15em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 14px;
    margin-top: 8px;
    position: relative;
}

.section-subtitle::before {
  margin-right: 8px;
}
.section-subtitle::after {
  margin-left: 8px;
}
@media (max-width: 700px) {
  .section-subtitle {
    font-size: 1em;
    gap: 6px;
  }
  .section-subtitle::before,
  .section-subtitle::after {
    width: 18px;
    height: 2px;
  }
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8em;
    color: var(--secondary-color);
    margin-bottom: 10px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.section-title span {
    color: var(--secondary-color);
}

/* .section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
} */

.section-header.center .section-title:after {
    left: 50%;
    transform: translateX(-50%);
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease !important;
    gap: 8px;
}

.btn:focus {
    outline: 2px solid #E49E22;
    outline-offset: 2px;
}

.btn-primary {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--secondary-color) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background: var(--secondary-color) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color) !important;
    border: 1px solid var(--secondary-color) !important;
}

.btn-outline:hover {
    background: var(--secondary-color) !important;
    color: var(--primary-color) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-video {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-video:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.3);
    color: #ff6b6b;
}

/* Redesigned Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar Brand - Modern Design */
.nav-brand .brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.2s ease;
    padding: 8px 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(255,224,130,0.05));
    border: 1px solid rgba(212,175,55,0.2);
}

.nav-brand .brand-link:hover {
    transform: scale(1.02);
    background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(255,224,130,0.08));
    border-color: rgba(212,175,55,0.3);
}

.navbar-brand-icon {
    width: 45px;
    height: 45px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    border: none;
}

.navbar-brand-logo {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    display: block;
    margin: 0 auto;
}

.brand-text {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #1a2238, #2d3748);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 1px 3px rgba(26,34,56,0.1);
}

.brand-name {
    font-size: 22px;
    font-weight: 700;
    color: #1a2238;
    margin: 0;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.brand-tagline {
    font-size: 12px;
    color: #d4af37;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-item {
    text-decoration: none;
    color: #1a2238 !important;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-item:hover {
    color: #d4af37;
    background: rgba(212,175,55,0.1);
}

.nav-item.active {
    color: #d4af37;
    background: rgba(212,175,55,0.15);
}

/* Action Buttons */
.nav-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        gap: 10px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-item {
        width: 100%;
        padding: 15px 20px;
        text-align: left;
        border-radius: 8px;
        font-size: 16px;
    }
    

    
    .nav-hamburger {
        display: flex;
    }
    
    .brand-name {
        font-size: 18px;
    }
    
    .brand-tagline {
        font-size: 10px;
    }
}

.primary-btn {
    background: #25d366;
    color: white;
    box-shadow: 0 3px 10px rgba(37,211,102,0.3);
}

.primary-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37,211,102,0.4);
}

.secondary-btn {
    background: #d4af37;
    color: white;
    box-shadow: 0 3px 10px rgba(212,175,55,0.3);
}

.secondary-btn:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212,175,55,0.4);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

@media (max-width: 992px) {
    .nav-hamburger {
        display: flex;
    }
}

.nav-hamburger span {
    width: 25px;
    height: 3px;
    background: #1a2238;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section Styles */
/* Mobile Navigation */
/* Responsive Styles for Brand Elements */
@media (max-width: 768px) {
    .nav-brand .brand-link {
        padding: 6px 12px;
        gap: 8px;
    }
    
    .navbar-brand-icon {
        width: 38px;
        height: 38px;
    }
    
    .navbar-brand-logo {
        width: 40px;
        height: 40px;
    }
    
    .brand-text {
        font-size: 16px;
    }
    
    .footer-brand-logo {
        flex-direction: row;
        text-align: left;
        gap: 15px;
        padding: 20px 15px;
    }
    
    .footer-logo-img {
        width: 55px !important;
        height: 55px !important;
        margin: 0 auto !important;
    }
    
    .footer-brand-title {
        font-size: 1.6rem !important;
    }
}

@media (max-width: 992px) {
    .nav-container {
        padding: 12px 16px;
    }
    
    .nav-brand .brand-link {
        padding: 4px 8px;
    }
    
    .navbar-brand-icon {
        width: 35px;
        height: 35px;
    }
    
    .navbar-brand-logo {
        width: 35px;
        height: 35px;
    }
    
    .brand-text {
        font-size: 15px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: #ffffff !important;
        backdrop-filter: none;
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 24px;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        gap: 4px;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 16px 20px;
        border-radius: 12px;
        font-size: 16px;
        justify-content: flex-start;
        color: #1a2238 !important;
    }
    
    .nav-link:hover {
        color: #d4af37 !important;
        background: rgba(212, 175, 55, 0.1) !important;
    }
    
    .nav-cta-group {
        flex-direction: column;
        gap: 12px;
        margin-left: 0;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav-cta {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
        font-size: 16px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(212, 175, 55, 0.05);
        margin: 8px 0;
        padding: 8px;
        border-radius: 12px;
        display: none;
    }
    
    .nav-dropdown.open .dropdown-menu {
        display: block;
    }
    
    .dropdown-link {
        padding: 12px 16px;
        font-size: 15px;
    }
    
    /* Hide desktop hover effects on mobile */
    .nav-dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
    }
    
    .nav-dropdown.open:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

/* Mobile Menu Animations */
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

.nav-menu.active {
    animation: slideInFromRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu .animate-in {
    animation: fadeInUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

/* Body scroll lock when mobile menu is open */
body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Backdrop for mobile menu */
.nav-menu.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    animation: fadeIn 0.3s ease;
}

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

/* Enhanced hover effects for desktop */
@media (min-width: 993px) {
    .nav-link {
        position: relative;
        overflow: hidden;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: -100%;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, #d4af37, #ffe082);
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-link:hover::before,
    .nav-link.active::before {
        left: 0;
    }
    
    /* Smooth dropdown arrow rotation */
    .dropdown-arrow {
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    /* Enhanced dropdown menu appearance */
    .dropdown-menu {
        backdrop-filter: blur(20px);
        border: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -8px;
        left: 20px;
        width: 16px;
        height: 16px;
        background: white;
        border: 1px solid rgba(212, 175, 55, 0.2);
        border-bottom: none;
        border-right: none;
        transform: rotate(45deg);
    }
}

@media (max-width: 576px) {
    section {
        padding: 20px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    /* Extra small screens navbar adjustments */
    .nav-container {
        padding: 10px 12px;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .logo-main {
        font-size: 16px;
    }
    
    .logo-sub {
        font-size: 9px;
    }
    
    .nav-menu {
        width: 100vw;
        right: -100vw;
        padding: 70px 16px 16px;
    }
    
    .nav-link {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .nav-cta {
        padding: 14px 16px;
        font-size: 15px;
    }
}


/* Footer */
.footer {
    background: var(--dark-gray) !important;
    color: var(--white) !important;
    padding-top: 20px;
    position: relative;
    margin-top: auto;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0px !important;
    margin-bottom: 0;
}

.modern-footer .footer-main {
    gap: 0px !important;
}

.footer-brand {
    margin-right: 0px !important;
}

.footer-links {
    margin-left: 0px !important;
}

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 15px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo svg {
    width: 40px;
    height: 40px;
}

.footer-logo span {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.footer-section.about p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: background 0.3s ease; /* Keep background transition, remove transform */
}

.social-links a:hover {
    background: var(--secondary-color);
}

.footer-section.links ul {
    list-style: none;
}

.footer-section.links li {
    margin-bottom: 12px;
}

.footer-section.links a {
    color: var(--medium-gray);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease; /* Keep color transition, remove transform */
    display: inline-block;
}

.footer-section.links a:hover {
    color: var(--secondary-color);
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.6;
}

.contact-info i {
    color: var(--secondary-color);
    margin-top: 3px;
}

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

.instagram-grid a {
    display: block;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
}

.instagram-grid a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease; /* Keep opacity transition */
}

.instagram-grid a:hover::before {
    opacity: 1;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
}

.copyright {
    text-align: center;
    font-size: 14px;
    color: var(--medium-gray);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.footer-links a {
    color: var(--medium-gray);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease; /* Keep color transition */
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Footer Brand - Elegant Design */
.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
}

.footer-logo-img {
    width: 40px !important;
    height: 40px !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
    display: block !important;
    margin: 0 !important;
}

.footer-brand-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #000000 !important;
    margin: 0 !important;
    text-shadow: none !important;
    letter-spacing: 0.5px !important;
}

/* Enhanced WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 48px;
    right: 32px;
    z-index: 1001;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s infinite;
    animation-delay: 1s;
}

.whatsapp-float:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 1.5rem;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    color: #fff;
}

.whatsapp-float i {
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
}

.whatsapp-float span {
    display: none;
}

@media (max-width: 600px) {
  .whatsapp-float {
    right: 16px;
    bottom: 36px;
    width: 48px;
    height: 48px;
  }
  
  .whatsapp-float i {
    font-size: 1.3rem;
  }
}

/* Enhanced Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 120px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #ffe082);
    color: #1a2238;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    animation: slideInUp 0.3s ease;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #ffe082, #d4af37);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: #1a2238;
}

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

@media (max-width: 600px) {
    .back-to-top {
        bottom: 110px;
        right: 16px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 50px;
    }
    
    .amenity-slide {
        flex-direction: column;
    }
    
    .amenity-image {
        height: 300px;
    }
}

@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-social {
        display: none;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-text p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-form {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
    }
    
    .location-grid {
        flex-direction: column;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-badge {
        font-size: 12px;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
    
    .whatsapp-float span {
        display: none;
    }
    
    .back-to-top {
        bottom: 90px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .hero-content {
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        flex-direction: column;
    }
    
    .image-badge {
        width: 80px;
        height: 80px;
        bottom: -10px;
        right: -10px;
    }
    
    .badge-number {
        font-size: 20px;
    }
    
    .badge-text {
        font-size: 12px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .property-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 250px);
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
    
    .testimonial-slide {
        padding: 30px 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-info {
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-section.links a:hover {
        transform: none;
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 14px;
        bottom: 110px;
        right: 16px;
    }
    
    .whatsapp-float {
        right: 20px;
        bottom: 20px;
    }
}

/* Animation Classes */
[data-aos="fade-up"] {
    transform: translateY(30px);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

[data-aos="fade-left"] {
    transform: translateX(30px);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
    opacity: 1;
}

[data-aos="flip-left"] {
    transform: perspective(1000px) rotateY(-100deg);
    opacity: 0;
    transition-property: transform, opacity;
    backface-visibility: hidden;
}

[data-aos="flip-left"].aos-animate {
    transform: perspective(1000px) rotateY(0);
    opacity: 1;
}

/* === property page === */

        /* Header Section */
        .main-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.482)), 
                url('../images/gallery/apartment-hero.jpg') no-repeat center center/cover;
    color: var(--white);
    height: 35rem;
    padding: 8rem 0 6rem;
    text-align: center;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.main-header .btn {
    margin-bottom: -30rem;
}

.main-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


        .main-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }

        .location-tag {
            display: inline-flex;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: var(--radius-xl);
            margin-top: 1rem;
        }

        .location-tag svg {
            margin-right: 0.5rem;
        }

        /* Modern Apartment Section */
        .apartment-section {
            padding: 6rem 0;
            background-color: var(--light-gray);
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--dark-gray);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .section-header p {
            color: var(--text-light);
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .apartment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .apartment-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            position: relative;
        }

        .apartment-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .apartment-img {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .apartment-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .status-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--white);
            background-color: var(--primary-color);
            z-index: 2;
        }

        .status-badge.completed {
            background-color: var(--secondary-color);
        }

        .apartment-details {
            padding: 1.5rem;
        }

        .apartment-title {
            font-size: 1.4rem;
            color: var(--dark-gray);
            margin-bottom: 0.5rem;
        }

        .apartment-location {
            display: flex;
            align-items: center;
            color: var(--text-light);
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .apartment-location svg {
            width: 16px;
            height: 16px;
            margin-right: 0.5rem;
            color: var(--accent-color);
        }

        .apartment-features {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--medium-gray);
        }

        .feature-item {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
        }

        .feature-item svg {
            width: 18px;
            height: 18px;
            margin-right: 0.5rem;
            color: var(--primary-color);
        }

        .apartment-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .price {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .price span {
            font-size: 0.9rem;
            font-weight: 400;
            color: var(--text-light);
        }

        /* Amenities Section */
        .amenities-section {
            padding: 5rem 0;
            background-color: var(--white);
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .amenity-card {
            text-align: center;
            padding: 2rem 1.5rem;
            background: var(--light-gray);
            border-radius: var(--radius);
            transition: var(--transition);
        }

        .amenity-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .amenity-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .amenity-icon svg {
            width: 30px;
            height: 30px;
            color: var(--white);
        }

        .amenity-card h4 {
            font-size: 1.1rem;
            color: var(--dark-gray);
            margin-bottom: 0.5rem;
        }

        .amenity-card p {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Location Section */
        .location-section {
            padding: 5rem 0;
            background-color: var(--light-gray);
        }

        .location-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .location-map {
            height: 400px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .location-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .location-info h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--dark-gray);
        }

        .location-info p {
            margin-bottom: 1.5rem;
            color: var(--text-color);
        }

        .location-features {
            margin-top: 2rem;
        }

        .location-feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .location-feature svg {
            width: 24px;
            height: 24px;
            color: var(--secondary-color);
            margin-right: 1rem;
            flex-shrink: 0;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .apartment-section, .amenities-section, .location-section {
                padding: 5rem 0;
            }
            
            .section-header {
                margin-bottom: 3rem;
            }

            .location-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .location-map {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .main-header {
                padding: 6rem 0 4rem;
            }

            .main-header h1 {
                font-size: 2.5rem;
            }

            .apartment-section, .amenities-section, .location-section {
                padding: 4rem 0;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .apartment-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .cta-content h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 576px) {
            .apartment-features {
                gap: 0.75rem;
            }
            
            .amenities-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
        }

      
        /* Shops Page */

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Page Header */
.page-header {
    position: relative;
    color: var(--white);
    padding: 120px 0 100px;
    text-align: center;
    overflow: hidden;
}

.page-header .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: 70vh;
    justify-content: center;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.page-header h1 {
    color: white;
    font-size: 3.8rem;
    margin-bottom: 20px;
    text-shadow: var(--shadow-xl);
    line-height: 1.2;
    font-weight: 700;
}

.page-header .subtitle {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 40px;
    text-shadow: var(--shadow);
    line-height: 1.6;
    opacity: 0.9;
}

.header-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: var(--transition);
}

.stat-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.stat-badge i {
    color: var(--secondary-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: var(--white);
    opacity: 0.7;
    transition: var(--transition);
}

.scroll-indicator:hover i {
    opacity: 1;
    transform: translateY(5px);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .page-header h1 {
        font-size: 3.2rem;
    }
    .page-header .subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 80px;
        min-height: auto;
    }
    .page-header h1 {
        font-size: 2.5rem;
    }
    .header-cta {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 80%;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 2rem;
    }
    .page-header .subtitle {
        font-size: 1.1rem;
    }
    .stat-badge {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* Commercial Overview */
.commercial-overview {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.commercial-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Shop Types */
.shop-types {
    padding: 80px 0;
    background-color: var(--white);
}

.shop-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.shop-category {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    background-color: var(--light-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.category-image {
    height: 100%;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-content {
    padding: 30px;
}

.category-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.category-content p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-content ul {
    margin-bottom: 25px;
}

.category-content ul li {
    margin-bottom: 10px;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.category-content ul li i {
    margin-right: 10px;
    color: var(--secondary-color);
}

/* Investment Benefits */
.investment-benefits {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.benefit-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Shop Layout */
.shop-layout {
    padding: 80px 0;
    background-color: var(--white);
}

.layout-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.layout-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.layout-details h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.layout-details p {
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.layout-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.layout-feature {
    display: flex;
    gap: 15px;
}

.layout-feature i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 5px;
}

.layout-feature h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.layout-feature p {
    margin: 0;
    color: var(--text-light);
}

/* Available Shops */
.available-shops {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.shop-item {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.shop-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.shop-image {
    position: relative;
    height: 200px;
}

.shop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
}

.shop-status.available {
    background-color: var(--secondary-color);
    color: var(--dark-gray);
}

.shop-status.reserved {
    background-color: var(--accent-color);
    color: var(--white);
}

.shop-info {
    padding: 20px;
}

.shop-info h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.shop-info p {
    color: var(--text-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.shop-info p i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.shop-info .btn {
    width: 100%;
    margin-top: 15px;
}

/* Payment Plans */
.payment-plans {
    padding: 80px 0;
    background-color: var(--white);
}

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

.plan-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.plan-card.featured {
    border: 2px solid var(--secondary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.plan-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    text-align: center;
    position: relative;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.plan-discount {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--dark-gray);
    padding: 5px 15px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
}

.plan-features {
    padding: 30px;
}

.plan-features ul {
    list-style: none;
}

.plan-features ul li {
    margin-bottom: 15px;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.plan-features ul li i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.plan-cta {
    padding: 0 30px 30px;
}

.plan-cta .btn {
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .shop-category {
        grid-template-columns: 1fr;
    }
    
    .layout-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .layout-image {
        order: 2;
    }
    
    .layout-details {
        order: 1;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .category-content {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .commercial-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .shop-categories {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.featured {
        transform: none;
    }
}

/* Amenities Page Styles */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.492)), 
                url('../images/gallery/amenities-hero.webp') center/cover no-repeat;
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.page-header p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Amenities Overview */
.amenities-overview {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Poppins';
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.amenities-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.amenity-stat {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.amenity-stat:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.75rem;
}

.amenity-stat h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.amenity-stat p {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.1rem;
}

/* Amenity Sections */
.amenity-section {
    padding: 100px 0;
}

.amenity-section:nth-child(even) {
    background-color: var(--light-gray);
}

.amenity-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.reverse {
    flex-direction: row-reverse;
}

.amenity-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.amenity-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.amenity-image:hover img {
    transform: scale(1.05);
}

.amenity-details {
    flex: 1;
}

.amenity-details h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Poppins';
}

.amenity-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.amenity-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 15px;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 5px;
}

.feature-item h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* All Amenities Grid */
.all-amenities {
    padding: 100px 0;
    background: linear-gradient(rgba(248, 250, 252, 0.9), rgba(248, 250, 252, 0.9)), 
                url('../assets/images/pattern-bg.png') center/cover;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.amenity-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.amenity-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.amenity-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.amenity-card ul {
    list-style: none;
}

.amenity-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.amenity-card ul li:before {
    content: "•";
    color: var(--secondary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 2px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.service-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: var(--radius);
    background: var(--light-gray);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.service-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.9)), 
                url('../assets/images/cta-bg.jpg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    font-family: 'Poppins';
}

.cta-content p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .amenity-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .reverse {
        flex-direction: column;
    }
    
    .amenity-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.75rem;
    }
    
    .amenity-features {
        grid-template-columns: 1fr;
    }
    
    .amenities-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .amenities-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Contact Page Styles */

/* Page Header - Clear Text Version */
.page-header {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    color: var(--dark-gray); /* Dark text for better contrast */
    text-align: center;
    background-color: var(--white); /* Fallback background */
}

.header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0); /* Semi-transparent white */
    border-radius: var(--radius-lg);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white; /* Your navy blue */
}

.page-header p {
    font-size: 20px;
    color: white;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 20px;
    }
    
    .header-content {
        padding: 30px 20px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 25px 15px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
}

/* Contact Information Section */
.contact-info-section {
    background-color: var(--light-gray);
    padding: 60px 0;
}

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

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-form h2 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-form p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(30, 58, 138, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 2px;
    height: 20px;
    width: 20px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.checkbox-label:hover input ~ .checkmark {
    border-color: var(--primary-color);
}

.checkbox-label input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-label .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.quick-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quick-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.quick-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.quick-item i {
    font-size: 24px;
    color: var(--secondary-color);
    margin-top: 5px;
}

.quick-item h4 {
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.quick-item p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 10px;
}

.quick-item .btn {
    padding: 8px 15px;
    font-size: 14px;
}

/* Map Section */
.map-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
}

.map-info {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.map-info h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.map-info h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-item {
    display: flex;
    gap: 15px;
}

.location-item i {
    font-size: 20px;
    color: var(--secondary-color);
    margin-top: 3px;
}

.location-item h4 {
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.location-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* FAQ Section */
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
}

.faq-item.active {
    border-color: var(--secondary-color);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    font-size: 18px;
    margin: 0;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.faq-question i {
    transition: var(--transition);
    color: var(--secondary-color);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.9)), 
                url('../assets/images/cta-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .map-info {
        order: -1;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Improved About Section Styles */
.about-section .mission-statement {
  font-size: 1.1rem;
  color: var(--primary-color);
  background: rgba(212,175,55,0.08);
  border-left: 4px solid var(--secondary-color);
  padding: 12px 18px;
  margin: 1.5rem 0 2rem 0;
  border-radius: 6px;
  font-weight: 500;
}

.about-features.features-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 32px;
  margin-top: 1.5rem;
}
@media (max-width: 700px) {
  .about-features.features-2x2 {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.about-features .feature-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(30,58,138,0.06);
  padding: 22px 18px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid #f3f3f3;
  min-width: 0;
}
.about-features .feature-card:hover {
  box-shadow: 0 8px 32px rgba(212,175,55,0.13);
  transform: translateY(-4px) scale(1.03);
}
.about-features .feature-icon {
  font-size: 2rem;
  color: var(--secondary-color);
  flex-shrink: 0;
  margin-top: 2px;
}
.about-features .feature-content h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--primary-color);
}
.about-features .feature-content p {
  font-size: 0.97rem;
  color: var(--text-light);
  margin: 0;
}

.about-media .main-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(30,58,138,0.10);
}
.about-media .about-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--secondary-color);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 30px;
  box-shadow: 0 2px 12px rgba(212,175,55,0.18);
  letter-spacing: 1px;
  z-index: 2;
}

/* Fade-in animation for about section and features */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s, transform 0.7s;
}
[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* --- About Section: Compact Spacing for All Screens --- */
.about-section {
  padding: 60px 0 !important;
}
@media (max-width: 992px) {
  .about-section {
    padding: 36px 0 !important;
  }
  .about-grid {
    gap: 24px !important;
  }
}
@media (max-width: 700px) {
  .about-section {
    padding: 24px 0 !important;
  }
  .about-grid {
    gap: 14px !important;
  }
}
.about-grid {
  gap: 40px;
}
.about-content {
  margin-bottom: 0 !important;
}
.about-features.features-2x2 {
  gap: 14px 18px !important;
  margin-top: 1rem !important;
  margin-bottom: 1.2rem !important;
}
.about-features .feature-card {
  padding: 14px 10px !important;
  min-height: unset !important;
}
.mission-statement {
  margin: 1rem 0 1.2rem 0 !important;
  padding: 8px 12px !important;
}
.section-header {
  margin-bottom: 18px !important;
}
@media (max-width: 576px) {
  .about-section {
    padding: 14px 0 !important;
  }
  .about-features.features-2x2 {
    gap: 10px !important;
    margin-top: 0.7rem !important;
    margin-bottom: 0.7rem !important;
  }
  .about-features .feature-card {
    padding: 10px 6px !important;
  }
  .section-header {
    margin-bottom: 10px !important;
  }
}

/* Redesigned Hero Section */
.redesigned-hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #111;
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.redesigned-hero .hero-bg-image {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('../images/gallery/hero-bg.jpg') center center/cover no-repeat;
  z-index: 1;
}
.redesigned-hero .hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 2;
}
.redesigned-hero .hero-main-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.redesigned-hero .hero-logo-badge {
  margin-bottom: 1rem;
}
.redesigned-hero .hero-logo {
  width: 70px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.redesigned-hero .hero-pretitle {
  font-family: 'Poppins';
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: #D4AF37;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.redesigned-hero .hero-heading {
  font-family: 'Poppins';
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}
.redesigned-hero .hero-subheading {
  font-family: 'Poppins';
  font-size: 1.5rem;
  font-weight: 400;
  color: #D4AF37;
  margin-bottom: 1rem;
}
.redesigned-hero .hero-description {
  font-size: 1.15rem;
  color: #f3f3f3;
  margin-bottom: 2rem;
}
/* Removed .hero-cta-buttons and .scroll-indicator styles */

/* Responsive for hero section */
@media (max-width: 700px) {
  .redesigned-hero .hero-heading {
    font-size: 2.1rem;
  }
  .redesigned-hero .hero-subheading {
    font-size: 1.1rem;
  }
  .redesigned-hero .hero-main-content {
    padding: 0 1.2rem;
  }
}

/* Improved Property Listings Section */
.improved-listings {
  background: linear-gradient(120deg, #1a2238 60%, #28304d 100%);
  position: relative;
  padding-bottom: 120px;
  padding-top: 60px;
  overflow-x: hidden;
}
.improved-listings::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, #d4af37 0%, transparent 70%);
  opacity: 0.08;
  z-index: 0;
}
.section-header.center {
  position: relative;
  z-index: 2;
}
.section-title {
  font-family: var(--main-font);
  font-size: 2.8em;
  color: var(--secondary-color);
  margin-bottom: 10px;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}
/* .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--secondary-color);
  margin: 12px auto 0;
  border-radius: 2px;
  opacity: 0.7;
} */
.section-subtitle {
  color: #bfc8e6;
  font-size: 1.2em;
  font-family: var(--main-font);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}
.section-description {
  color: #e0e7ff;
  font-size: 1.1em;
  font-family: var(--main-font);
  margin-bottom: 30px;
}
.property-category {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 48px;
  padding: 36px 28px 28px 28px;
  position: relative;
  z-index: 2;
  border-top: 5px solid var(--secondary-color);
}
.category-title {
  font-family: var(--main-font);
  color: var(--primary-color);
  font-size: 2em;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.table-responsive {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(30,34,56,0.04);
}
table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
}
table th, table td {
  padding: 18px 20px;
  text-align: left;
  font-family: var(--main-font);
  font-size: 1.05em;
}
table th {
  background: var(--secondary-color);
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid #f6e7b7;
}
table td:last-child, table th:last-child {
  text-align: right;
}
table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
}
table tbody tr:hover {
  background: #fffbe6;
}
.best-value-badge {
  background: var(--secondary-color);
  color: var(--primary-color);
  font-size: 0.9em;
  border-radius: 14px;
  padding: 3px 14px;
  margin-left: 10px;
  font-weight: 700;
  box-shadow: 0 0 8px 2px #d4af3740;
  letter-spacing: 0.04em;
  animation: glow 1.8s infinite alternate;
}
@keyframes glow {
  from { box-shadow: 0 0 8px 2px #d4af3740; }
  to { box-shadow: 0 0 18px 6px #d4af3760; }
}
.floating-contact-btn {
  background: var(--secondary-color);
  color: var(--primary-color);
  font-weight: 700;
  font-family: var(--main-font);
  border: none;
  box-shadow: 0 4px 24px #d4af3730;
  transition: background 0.2s, color 0.2s;
}
.floating-contact-btn:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}
.info-tooltip {
  color: var(--secondary-color);
  border-bottom: 1px dotted var(--secondary-color);
}
.scroll-hint {
  color: #ffe082;
  font-size: 1em;
  margin-top: 8px;
}
@media (max-width: 700px) {
  .property-category {
    padding: 18px 6px 18px 6px;
  }
  .section-title {
    font-size: 2em;
  }
  .category-title {
    font-size: 1.2em;
  }
  table th, table td {
    padding: 10px 8px;
    font-size: 0.95em;
  }
}

.glassy-cta {
  background: rgba(26,34,56,0.75);
  border-radius: 28px;
  box-shadow: 0 8px 40px 0 #d4af3740, 0 2px 24px #1a223850;
  padding: 48px 36px 40px 36px;
  margin: 56px auto 0 auto;
  max-width: 540px;
  text-align: center;
  position: relative;
  z-index: 3;
  border: 2.5px solid;
  border-image: linear-gradient(90deg, #d4af37 0%, #fffbe6 100%) 1;
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.cta-icon {
  color: #d4af37;
  font-size: 2.5em;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 8px #d4af3740);
}
.listings-cta-content .cta-title {
  font-family: 'Poppins';
  color: #fff;
  font-size: 2.1em;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px #1a223880;
}
.listings-cta-content .cta-desc {
  color: #ffe082;
  font-size: 1.18em;
  margin-bottom: 30px;
  font-family: 'Poppins';
}
.luxury-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(90deg, #ffe082 0%, #d4af37 100%);
  color: #1a2238;
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 1.18em;
  padding: 18px 44px;
  border-radius: 36px;
  border: none;
  box-shadow: 0 4px 24px #d4af3730, 0 0 0 0 #d4af37;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.luxury-cta-btn span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.luxury-cta-btn i.fa-arrow-right {
  font-size: 1.2em;
  transition: transform 0.2s;
}
.luxury-cta-btn:hover, .luxury-cta-btn:focus {
  background: linear-gradient(90deg, #d4af37 0%, #ffe082 100%);
  color: #1a2238;
  box-shadow: 0 8px 32px #d4af3760, 0 0 16px 2px #ffe08280;
}
.luxury-cta-btn:hover i.fa-arrow-right {
  transform: translateX(6px);
}
.luxury-cta-btn:active {
  box-shadow: 0 2px 8px #d4af3760;
}
@media (max-width: 700px) {
  .glassy-cta {
    padding: 22px 8px 22px 8px;
    max-width: 98vw;
  }
  .listings-cta-content .cta-title {
    font-size: 1.2em;
  }
  .luxury-cta-btn {
    font-size: 1em;
    padding: 12px 18px;
  }
}

@media (max-width: 700px) {
  .improved-listings {
    padding: 18px 0 60px 0;
  }
  .property-category {
    padding: 12px 2vw 12px 2vw;
    margin-bottom: 24px;
    border-radius: 10px;
    box-shadow: none;
  }
  .section-header.center {
    padding: 0 2vw;
  }
  .section-title {
    font-size: 1.3em;
  }
  .category-title {
    font-size: 1em;
    gap: 6px;
  }
  table-responsive {
    overflow-x: auto;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  .table-responsive::-webkit-scrollbar {
    height: 6px;
    background: #eee;
    border-radius: 4px;
  }
  .table-responsive::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 4px;
  }
  table th, table td {
    padding: 8px 6px;
    font-size: 0.92em;
    min-width: 90px;
  }
  .scroll-hint {
    display: block;
    font-size: 0.95em;
    color: #d4af37;
    margin: 8px 0 0 0;
    text-align: left;
  }
  .glassy-cta {
    padding: 14px 2vw 18px 2vw;
    max-width: 99vw;
    border-radius: 14px;
    margin: 32px auto 0 auto;
  }
  .cta-icon {
    font-size: 1.5em;
    margin-bottom: 8px;
  }
  .listings-cta-content .cta-title {
    font-size: 1.1em;
    margin-bottom: 8px;
  }
  .listings-cta-content .cta-desc {
    font-size: 0.98em;
    margin-bottom: 18px;
  }
  .luxury-cta-btn {
    font-size: 0.98em;
    padding: 12px 0;
    width: 100%;
    justify-content: center;
    border-radius: 24px;
  }
  .luxury-cta-btn span, .luxury-cta-btn i {
    font-size: 1em;
    gap: 6px;
  }
}

/* Decorative background for the section */
.improved-listings {
  position: relative;
  overflow: hidden;
}
.improved-listings::after {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, #d4af37 0%, transparent 70%);
  opacity: 0.10;
  z-index: 1;
  pointer-events: none;
}
.improved-listings::before {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, #ffe082 0%, transparent 70%);
  opacity: 0.08;
  z-index: 1;
  pointer-events: none;
}

/* Card gold border and subtle pattern */
.property-category {
  border: 2px solid #d4af37;
  background: repeating-linear-gradient(135deg, #fcfcfd, #fcfcfd 18px, #f6f7fb 18px, #f6f7fb 36px);
  box-shadow: 0 4px 32px #d4af3720;
  position: relative;
  z-index: 2;
  transition: box-shadow 0.2s, transform 0.2s;
}
.property-category:hover {
  box-shadow: 0 8px 40px #d4af3740, 0 2px 24px #1a223850;
  transform: translateY(-4px) scale(1.01);
}

/* Table polish */
.table-responsive {
  box-shadow: 0 2px 16px #d4af3710;
}
table tbody tr:nth-child(even) {
  background: #f6f7fb;
}
table tbody tr:hover {
  background: #fffbe6;
  border-left: 4px solid #d4af37;
  transition: background 0.2s, border-left 0.2s;
}

/* Category title icon animation */
.category-title i {
  transition: color 0.2s, transform 0.2s;
}
.category-title:hover i {
  color: #ffe082;
  transform: scale(1.15) rotate(-8deg);
}

/* Heading drop shadow */
.section-title {
  text-shadow: 0 2px 12px #d4af3720;
}

/* Animate cards on scroll (AOS) */
.property-category, .glassy-cta {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.property-category.aos-animate, .glassy-cta.aos-animate {
  opacity: 1;
  transform: none;
}

/* CTA sparkle effect */
.glassy-cta {
  position: relative;
  overflow: hidden;
}
.glassy-cta::after {
  content: '';
  position: absolute;
  top: 10%; left: 60%;
  width: 80px; height: 80px;
  background: radial-gradient(circle, #ffe082 0%, transparent 70%);
  opacity: 0.18;
  z-index: 1;
  pointer-events: none;
  animation: sparkle-move 3.5s infinite alternate;
}
@keyframes sparkle-move {
  0% { left: 60%; top: 10%; opacity: 0.18; }
  100% { left: 20%; top: 60%; opacity: 0.10; }
}

/* CTA button shine effect */
.luxury-cta-btn {
  position: relative;
  overflow: hidden;
}
.luxury-cta-btn::before {
  content: '';
  position: absolute;
  left: -60px; top: 0;
  width: 40px; height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.0) 100%);
  transform: skewX(-20deg);
  opacity: 0.7;
  transition: left 0.5s;
}
.luxury-cta-btn:hover::before {
  left: 110%;
  transition: left 0.5s;
}

.improved-amenities {
  background: linear-gradient(120deg, #181c24 80%, #23283a 100%);
  position: relative;
  padding: 70px 0 60px 0;
  overflow: hidden;
}
.improved-amenities::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, #d4af37 0%, transparent 70%);
  opacity: 0.10;
  z-index: 1;
  pointer-events: none;
}
.amenities-grid {
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
  position: relative;
  z-index: 2;
}
.amenity-card {
  background: rgba(30,34,56,0.85);
  border: 2px solid #d4af37;
  border-radius: 22px;
  box-shadow: 0 4px 32px #d4af3720;
  padding: 38px 28px 28px 28px;
  min-width: 240px;
  max-width: 320px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  z-index: 2;
}
.amenity-card:hover {
  box-shadow: 0 8px 40px #d4af3740, 0 2px 24px #1a223850;
  transform: translateY(-6px) scale(1.03);
}
.amenity-icon {
  background: linear-gradient(135deg, #ffe082 0%, #d4af37 100%);
  color: #181c24;
  font-size: 2.5em;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  box-shadow: 0 2px 12px #d4af3720;
  border: 2px solid #fffbe6;
}
.amenity-title {
  color: #fff;
  font-family: var(--main-font);
  font-size: 1.3em;
  margin-bottom: 10px;
  margin-top: 6px;
  letter-spacing: 0.01em;
}
.amenity-desc {
  color: #e0e7ff;
  font-size: 1em;
  font-family: var(--main-font);
  margin-bottom: 0;
}
.amenities-cta {
  margin-top: 48px;
  text-align: center;
  z-index: 2;
  position: relative;
}
@media (max-width: 900px) {
  .amenities-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .amenity-card {
    min-width: 0;
    width: 98vw;
    max-width: 400px;
  }
}

.modern-amenities {
  background: linear-gradient(120deg, #fffbe6 80%, #f6f7fb 100%);
  padding: 70px 0 60px 0;
  position: relative;
  overflow: hidden;
}
.amenities-slider {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  margin-top: 36px;
}
.amenity-slide {
  min-width: 340px;
  max-width: 400px;
  flex: 0 0 auto;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 32px #d4af3720;
  scroll-snap-align: start;
  background: #fff;
  border: 2px solid #ffe082;
  transition: box-shadow 0.2s, transform 0.2s;
}
.amenity-slide:hover {
  box-shadow: 0 8px 40px #d4af3740, 0 2px 24px #ffe08280;
  transform: translateY(-6px) scale(1.03);
}
.amenity-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: brightness(0.97);
}
.amenity-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(255,255,255,0.98) 80%, rgba(255,255,255,0.5) 100%);
  color: #1a2238;
  padding: 28px 20px 18px 20px;
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
}
.amenity-title {
  color: #d4af37;
  font-family: var(--main-font);
  font-size: 1.25em;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.amenity-desc {
  color: #1a2238;
  font-size: 1em;
  font-family: var(--main-font);
  margin-bottom: 0;
}
.amenities-cta {
  margin-top: 48px;
  text-align: center;
  z-index: 2;
  position: relative;
}
@media (max-width: 900px) {
  .amenities-slider {
    gap: 18px;
  }
  .amenity-slide {
    min-width: 80vw;
    max-width: 95vw;
  }
  .amenity-image img {
    height: 160px;
  }
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 36px;
  position: relative;
  z-index: 2;
}
.amenity-card {
  background: #fff;
  border: 2px solid #ffe082;
  border-radius: 22px;
  box-shadow: 0 4px 32px #d4af3720;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.amenity-card:hover {
  box-shadow: 0 8px 40px #d4af3740, 0 2px 24px #ffe08280;
  transform: translateY(-6px) scale(1.03);
}
.amenity-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.amenity-card-content {
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
}
.amenity-accent {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, #ffe082 0%, #d4af37 100%);
  border-radius: 2px;
  margin-bottom: 16px;
}
.amenity-title {
  color: #d4af37;
  font-family: var(--main-font);
  font-size: 1.25em;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  text-align: center;
}
.amenity-desc {
  color: #1a2238;
  font-size: 1em;
  font-family: var(--main-font);
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 1100px) {
  .amenities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 700px) {
  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .amenity-image img {
    height: 140px;
  }
  .amenity-card-content {
    padding: 18px 8px 14px 8px;
  }
}

.luxury-amenities {
  background: linear-gradient(120deg, #fffbe6 80%, #f6f7fb 100%);
  position: relative;
  padding: 80px 0 70px 0;
  overflow: hidden;
}
.luxury-amenities::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 420px; height: 420px;
  background: radial-gradient(circle, #ffe082 0%, transparent 70%);
  opacity: 0.13;
  z-index: 1;
  pointer-events: none;
}
.amenities-staggered-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 36px;
  margin-top: 48px;
  position: relative;
  z-index: 2;
}
.amenity-card.luxury.staggered:nth-child(2) {
  margin-top: 48px;
}
.amenity-card.luxury.staggered {
  background: #fff;
  border: 2.5px solid #ffe082;
  border-radius: 32px;
  box-shadow: 0 4px 32px #d4af3720;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  padding-bottom: 18px;
}
.amenity-card.luxury.staggered:hover {
  box-shadow: 0 8px 40px #d4af3740, 0 2px 24px #ffe08280;
  transform: translateY(-8px) scale(1.04);
  border-color: #d4af37;
}
.amenity-img-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-top: -60px;
  margin-bottom: 18px;
  box-shadow: 0 4px 24px #ffe08240;
  border: 4px solid #fffbe6;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.amenity-img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.amenity-card-content {
  padding: 0 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
}
.amenity-accent {
  width: 38px;
  height: 4px;
  background: linear-gradient(90deg, #ffe082 0%, #d4af37 100%);
  border-radius: 2px;
  margin-bottom: 16px;
  margin-top: 8px;
}
.amenity-title {
  color: #d4af37;
  font-family: var(--main-font);
  font-size: 1.18em;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  text-align: center;
}
.amenity-desc {
  color: #1a2238;
  font-size: 1em;
  font-family: var(--main-font);
  margin-bottom: 0;
  text-align: center;
}
.luxury-cta-card {
  background: #fffbe6;
  border-radius: 22px;
  box-shadow: 0 4px 32px #ffe08230;
  margin: 64px auto 0 auto;
  max-width: 420px;
  text-align: center;
  padding: 36px 18px 32px 18px;
  border: 2px solid #ffe082;
}
.luxury-cta-card h4 {
  color: #d4af37;
  font-family: var(--main-font);
  font-size: 1.3em;
  margin-bottom: 18px;
}
.luxury-cta-btn {
  background: linear-gradient(90deg, #ffe082 0%, #d4af37 100%);
  color: #1a2238;
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 1.1em;
  padding: 14px 36px;
  border-radius: 32px;
  border: none;
  box-shadow: 0 4px 24px #d4af3730;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.luxury-cta-btn:hover {
  background: #d4af37;
  color: #fff;
}
@media (max-width: 1100px) {
  .amenities-staggered-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 18px;
  }
  .amenity-card.luxury.staggered:nth-child(2) {
    margin-top: 0;
  }
}
@media (max-width: 700px) {
  .amenities-staggered-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .amenity-img-circle {
    width: 80px;
    height: 80px;
    margin-top: -40px;
  }
  .luxury-cta-card {
    margin: 36px auto 0 auto;
    padding: 18px 4vw 18px 4vw;
  }
}

.improved-gallery {
  background: linear-gradient(120deg, #fffbe6 80%, #f6f7fb 100%);
  padding: 80px 0 70px 0;
  position: relative;
}
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 36px 0 32px 0;
}
.filter-btn {
  background: #fff;
  color: #b8860b;
  border: 2px solid #ffe082;
  border-radius: 30px;
  padding: 10px 28px;
  font-size: 1em;
  font-family: 'Poppins';
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
  outline: none;
}
.filter-btn.active, .filter-btn:hover {
  background: linear-gradient(90deg, #ffe082 0%, #d4af37 100%);
  color: #1a2238;
  border-color: #d4af37;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 10px;
}
.gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px #d4af3720;
  background: #fff;
  cursor: pointer;
  break-inside: avoid;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  box-shadow: 0 2px 8px #d4af3710;
  transition: none;
}
.gallery-item:hover img {
  transform: none;
  box-shadow: 0 2px 8px #d4af3710;
  border: none;
}
.gallery-item.large {
  grid-column: span 8;
  grid-row: span 2;
}
.gallery-item:not(.large) {
  grid-column: span 4;
  grid-row: span 1;
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 70%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.overlay-content {
  transform: translateY(20px);
  transition: transform 0.3s ease;
  width: 100%;
}
.gallery-item:hover .overlay-content {
  transform: translateY(0);
}
.overlay-content h4 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.overlay-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.view-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .view-btn {
  opacity: 1;
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .gallery-item img {
    height: 140px;
  }
}
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .gallery-item img {
    height: 110px;
  }
}

/* Luxury Home CTA Styles */
.luxury-cta-home {
  background: linear-gradient(120deg, #1a2238 80%, #23283a 100%);
  position: relative;
  padding: 90px 0 90px 0;
  overflow: hidden;
  z-index: 1;
}
.home-cta-card {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(30, 34, 56, 0.85);
  border: 2.5px solid #d4af37;
  border-radius: 32px;
  box-shadow: 0 8px 40px #d4af3740, 0 2px 24px #1a223850;
  padding: 48px 36px 38px 36px;
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.home-cta-content {
  position: relative;
  z-index: 2;
}
.home-cta-content .cta-icon {
  font-size: 3.5rem;
  color: #d4af37;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px #d4af3780;
}
.home-cta-content .cta-title {
  font-family: 'Poppins';
  color: #fff;
  font-size: 2.3em;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px #1a223880;
}
.home-cta-content .cta-desc {
  color: #ffe082;
  font-size: 1.18em;
  margin-bottom: 32px;
  font-family: 'Poppins';
}
.home-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(90deg, #ffe082 0%, #d4af37 100%);
  color: #1a2238;
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 1.18em;
  padding: 20px 48px;
  border-radius: 36px;
  border: none;
  box-shadow: 0 4px 24px #d4af3730, 0 0 0 0 #d4af37;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.home-cta-btn span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-cta-btn i.fa-arrow-right {
  font-size: 1.2em;
  transition: transform 0.2s;
}
.home-cta-btn:hover, .home-cta-btn:focus {
  background: linear-gradient(90deg, #d4af37 0%, #ffe082 100%);
  color: #1a2238;
  box-shadow: 0 8px 32px #d4af3760, 0 0 16px 2px #ffe08280;
}
.home-cta-btn:hover i.fa-arrow-right {
  transform: translateX(6px);
}
.home-cta-btn:active {
  box-shadow: 0 2px 8px #d4af3760;
}
.home-cta-btn::before {
  content: '';
  position: absolute;
  left: -60px; top: 0;
  width: 40px; height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.0) 100%);
  transform: skewX(-20deg);
  opacity: 0.7;
  transition: left 0.5s;
}
.home-cta-btn:hover::before {
  left: 110%;
  transition: left 0.5s;
}
/* Subtle sparkle background for CTA */
.cta-sparkle-bg {
  pointer-events: none;
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
  background: radial-gradient(circle at 80% 20%, #ffe08222 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, #d4af3722 0%, transparent 60%);
  animation: sparkle-move 8s linear infinite alternate;
}
@keyframes sparkle-move {
  0% { background-position: 80% 20%, 20% 80%; }
  100% { background-position: 60% 40%, 40% 60%; }
}
@media (max-width: 700px) {
  .home-cta-card {
    padding: 22px 8px 22px 8px;
    max-width: 98vw;
  }
  .home-cta-content .cta-title {
    font-size: 1.2em;
  }
  .home-cta-btn {
    font-size: 1em;
    padding: 12px 18px;
  }
}

.home-cta-card {
  border: 3px solid red !important;
  background: #fffbe6 !important;
  color: #1a2238 !important;
}

/* --- Best & Perfect Location Section Styles --- */
.best-location-section {
  background: #fff;
  color: #1a2238;
  position: relative;
  padding: 0 0 70px 0;
  overflow: hidden;
}
.best-location-section .location-gradient {
  width: 100%;
  height: 60px;
  background: linear-gradient(90deg, #fffbe6 0%, #ffe082 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.best-location-section .container {
  position: relative;
  z-index: 2;
  padding-top: 70px;
}
.location-header {
  text-align: center;
  margin-bottom: 38px;
  position: relative;
}
.location-pin {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 8px;
}
.location-title {
  font-family: 'Poppins';
  font-size: 2.3rem;
  font-weight: 700;
  color: #1a2238;
  margin: 0 0 8px 0;
  letter-spacing: 0.5px;
}
.location-accent {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37 0%, #ffe082 100%);
  margin: 18px auto 0 auto;
  border-radius: 2px;
}
.location-content-grid {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}
.location-info-card {
  background: #fff;
  border: 2.5px solid #d4af37;
  border-radius: 24px;
  box-shadow: 0 6px 32px #d4af3720;
  padding: 44px 36px 36px 36px;
  max-width: 420px;
  min-width: 260px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto 0 0;
}
.location-info-card h3 {
  color: #d4af37;
  font-family: 'Poppins';
  font-size: 1.5em;
  margin-bottom: 16px;
  font-weight: 700;
}
.location-address {
  font-size: 1.13em;
  margin-bottom: 18px;
  color: #1a2238;
}
.location-details {
  margin-bottom: 18px;
  color: #1a2238;
  font-size: 1.13em;
}
.location-details strong {
  color: #d4af37;
  font-weight: 600;
}
.location-info-card a {
  color: #1a2238;
  text-decoration: underline;
  transition: color 0.2s;
}
.location-info-card a:hover {
  color: #d4af37;
}
.location-map-btn {
  display: inline-block;
  margin-top: 18px;
  background: linear-gradient(90deg, #d4af37 0%, #ffe082 100%);
  color: #1a2238;
  font-weight: 700;
  font-size: 1.08em;
  padding: 12px 32px;
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 0 2px 12px #d4af3720;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.location-map-btn:hover {
  background: linear-gradient(90deg, #ffe082 0%, #d4af37 100%);
  color: #fff;
  box-shadow: 0 4px 24px #d4af3740;
}
.location-map-card {
  border: 2.5px solid #d4af37;
  border-radius: 22px;
  box-shadow: 0 6px 32px #d4af3720;
  overflow: hidden;
  flex: 2 1 420px;
  min-width: 320px;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.location-map-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 18px;
  display: block;
}
@media (max-width: 1024px) {
  .location-content-grid {
    flex-direction: column;
    gap: 32px;
  }
  .location-info-card, .location-map-card {
    max-width: 100%;
    margin: 0 auto !important;
  }
  .location-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 600px) {
  .best-location-section .container {
    padding-top: 40px;
  }
  .location-info-card {
    padding: 28px 12px 24px 12px;
    border-radius: 16px;
  }
  .location-map-card {
    border-radius: 14px;
  }
  .location-map-card iframe {
    height: 250px;
    border-radius: 10px;
  }
  .location-title {
    font-size: 1.1rem;
  }
  .location-header {
    margin-bottom: 22px;
  }
  .location-accent {
    width: 48px;
    height: 3px;
    margin-top: 10px;
  }
}

/* --- Heavy Luxury Hero Section (About Page) --- */
.heavy-luxury-hero {
  position: relative;
  min-height: 70vh;
  width: 100%;
  background: #fffbe6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  padding: 0;
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.heavy-luxury-hero .hero-bg-svg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}
.luxury-hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 24px 60px 24px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 32px;
  box-shadow: 0 8px 40px #d4af3720, 0 2px 24px #1a223820;
  backdrop-filter: blur(2px);
}
.luxury-hero-title {
  font-family: 'Poppins';
  font-size: 3.2rem;
  font-weight: 800;
  color: #d4af37;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  line-height: 1.1;
  text-shadow: 0 2px 12px #fffbe6cc;
}
.luxury-hero-accent {
  width: 90px;
  height: 5px;
  background: linear-gradient(90deg, #d4af37 0%, #ffe082 100%);
  margin: 0 auto 28px auto;
  border-radius: 2.5px;
}
.luxury-hero-subtitle {
  font-size: 1.45rem;
  color: #1a2238;
  margin-bottom: 38px;
  font-family: 'Poppins';
  font-weight: 500;
  line-height: 1.5;
  text-shadow: 0 1px 8px #fffbe6cc;
}
.luxury-hero-btn {
  display: inline-block;
  background: linear-gradient(90deg, #d4af37 0%, #ffe082 100%);
  color: #1a2238;
  font-weight: 700;
  font-size: 1.18em;
  padding: 16px 44px;
  border-radius: 28px;
  text-decoration: none;
  box-shadow: 0 2px 16px #d4af3720;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  letter-spacing: 0.5px;
  margin-top: 8px;
}
.luxury-hero-btn:hover {
  background: linear-gradient(90deg, #ffe082 0%, #d4af37 100%);
  color: #fff;
  box-shadow: 0 6px 32px #d4af3740;
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 900px) {
  .luxury-hero-content {
    padding: 40px 10px 40px 10px;
    border-radius: 20px;
  }
  .luxury-hero-title {
    font-size: 2.1rem;
  }
  .luxury-hero-subtitle {
    font-size: 1.1rem;
  }
  .luxury-hero-btn {
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: 20px;
  }
}
@media (max-width: 600px) {
  .heavy-luxury-hero, .hero-content-wrapper {
    min-height: 340px;
  }
  .luxury-hero-content {
    padding: 24px 4px 24px 4px;
    border-radius: 12px;
  }
  .luxury-hero-title {
    font-size: 1.2rem;
  }
  .luxury-hero-accent {
    width: 48px;
    height: 3px;
    margin-bottom: 14px;
  }
  .luxury-hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  .luxury-hero-btn {
    font-size: 0.95rem;
    padding: 10px 18px;
    border-radius: 12px;
  }
}

.main-content {
  flex: 1;
}

/* Section title on dark backgrounds */
.section-title.white {
    color: #fff;
}

/* --- Improved Our Listings Section --- */
.kc-listings-section {
  background: #fff;
  padding: 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.kc-listings-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 0 40px 0;
  position: relative;
}
.kc-listings-header {
  text-align: center;
  margin-bottom: 40px;
}
.kc-listings-header h2 {
  color: #222;
  font-size: 2.2rem;
  font-family: 'Poppins';
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.kc-listings-header h3 {
  color: #666;
  font-size: 1.1rem;
  font-family: 'Poppins';
  margin-bottom: 10px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.kc-listings-header p {
  color: #444;
  font-size: 1.02rem;
  margin-bottom: 0;
  font-family: 'Poppins';
}
.kc-listings-table-wrap {
  margin-bottom: 40px;
  background: #fafbfc;
  border-radius: 10px;
  box-shadow: none;
  padding: 28px 18px 18px 18px;
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: visible;
}
.kc-listings-table-wrap h4 {
  color: #fff;
  background: #222;
  font-size: 1.08rem;
  font-family: 'Poppins';
  margin: -28px -18px 18px -18px;
  padding: 16px 18px 12px 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 10px 10px 0 0;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: none;
  display: block;
}
@media (max-width: 700px) {
  .kc-listings-table-wrap {
    padding: 10px 2px 6px 2px;
    border-radius: 6px;
    margin-bottom: 18px;
  }
  .kc-listings-table-wrap h4 {
    font-size: 0.98rem;
    margin: -10px -2px 10px -2px;
    padding: 10px 8px 8px 8px;
    border-radius: 6px 6px 0 0;
  }
}
.kc-listings-table {
  width: 100%;
  border-collapse: collapse;
  background: none;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  font-size: 1rem;
  margin-bottom: 0;
  color: #222;
}
.kc-listings-table th, .kc-listings-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  background: none;
  font-family: 'Poppins';
}
.kc-listings-table th {
  color: #444;
  font-weight: 600;
  font-size: 1em;
  border-top: 1px solid #e5e7eb;
  background: #fafbfc;
}
.kc-listings-table tr:last-child td {
  border-bottom: none;
}
.kc-listings-table tbody tr:hover {
  background: #f6f7f9;
}
.kc-badge {
  display: inline-block;
  background: #f3f4f6;
  color: #444;
  font-weight: 500;
  font-size: 0.92em;
  padding: 2px 10px;
  border-radius: 8px;
  margin-left: 8px;
  letter-spacing: 0.2px;
  box-shadow: none;
}
.kc-payment-plan-info {
  background: #fafbfc;
  color: #222;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 1em;
  font-family: 'Poppins';
  margin-top: 6px;
  box-shadow: none;
  border: 1px solid #e5e7eb;
}
.kc-listings-cta {
  margin: 40px 0 0 0;
  max-width: none;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  text-align: center;
  backdrop-filter: none;
  overflow: visible;
}
.kc-listings-cta h4 {
  color: #222;
  font-size: 1.15em;
  margin-bottom: 8px;
  font-family: 'Poppins';
  letter-spacing: 0.01em;
  font-weight: 600;
}
.kc-listings-cta p {
  color: #444;
  font-size: 1em;
  margin-bottom: 16px;
  font-family: 'Poppins';
}
.kc-listings-cta-btn {
  display: inline-block;
  background: #222;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
  padding: 12px 32px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: none;
  letter-spacing: 0.5px;
  border: none;
}
.kc-listings-cta-btn:hover {
  background: #444;
  color: #fff;
  transform: translateY(-1px) scale(1.03);
}
@media (max-width: 1100px) {
  .kc-listings-container {
    max-width: 98vw;
    padding: 32px 0 24px 0;
  }
}
@media (max-width: 700px) {
  .kc-listings-section {
    padding: 0;
    margin: 0;
    left: 0;
    right: 0;
    width: 100vw;
    border-radius: 0;
  }
  .kc-listings-container {
    padding: 8px 0 4px 0;
    border-radius: 0;
  }
  .kc-listings-header h2 {
    font-size: 1.1rem;
  }
  .kc-listings-header h3 {
    font-size: 0.9rem;
  }
  .kc-listings-table-wrap {
    padding: 6px 2vw 4px 2vw;
    border-radius: 6px;
    margin-bottom: 14px;
    min-width: 0;
  }
  .kc-listings-table-wrap h4 {
    font-size: 0.95rem;
    margin: -6px -2vw 8px -2vw;
    padding: 8px 8px 7px 8px;
    border-radius: 6px 6px 0 0;
    word-break: break-word;
  }
  .kc-listings-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    border-radius: 0;
    min-width: 0;
    -webkit-overflow-scrolling: touch;
  }
  .kc-listings-table thead, .kc-listings-table tbody, .kc-listings-table tr {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  .kc-listings-table th, .kc-listings-table td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 8px 4px;
    font-size: 0.93rem;
  }
  .kc-listings-cta h4 {
    font-size: 0.98em;
  }
  .kc-listings-cta-btn {
    font-size: 0.93em;
    padding: 9px 12px;
    border-radius: 10px;
  }
}

/* --- Table Scroll Wrapper for Mobile --- */
.kc-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}
.kc-table-scroll::after {
  content: '';
  display: none;
}
@media (max-width: 700px) {
  .kc-table-scroll {
    overflow-x: auto;
    width: 100%;
    box-shadow: none;
    margin-bottom: 2px;
  }
  .kc-listings-table {
    width: 100%;
    min-width: 0;
    display: table;
    border-radius: 0;
    table-layout: auto;
    font-size: 0.97rem;
  }
  .kc-table-wide {
    min-width: 480px;
    width: max-content;
  }
  .kc-listings-table th, .kc-listings-table td {
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
    padding: 7px 3px;
    font-size: 0.97rem;
    word-break: break-word;
  }
}

/* --- Listings Section Table Styles --- */
.kc-listings-section {
  background: #f8f9fb;
  padding: 64px 0 48px 0;
}
.kc-listings-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.kc-listings-header {
  text-align: center;
  margin-bottom: 32px;
}
.kc-listings-header h2 {
  font-family: 'Poppins';
  font-size: 2.3rem;
  color: #1a2238;
  margin-bottom: 0.5rem;
}
.kc-listings-header h3 {
  font-size: 1.2rem;
  color: #d4af37;
  margin-bottom: 0.5rem;
}
.kc-listings-header p {
  color: #555;
  font-size: 1rem;
}
.kc-listings-table-wrap {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(30,42,56,0.07);
  margin-bottom: 28px;
  padding: 24px 24px 12px 24px;
}
.kc-listings-table-wrap h4 {
  font-size: 1.1rem;
  color: #1a2238;
  margin-bottom: 12px;
  font-weight: 600;
}
.kc-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.kc-listings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  background: transparent;
  margin-bottom: 0;
}
.kc-listings-table th, .kc-listings-table td {
  padding: 10px 8px;
  text-align: left;
  border-bottom: 1px solid #ececec;
  color: #222;
  font-size: 1rem;
  word-break: break-word;
}
.kc-listings-table th {
  background: #f3f4f8;
  color: #1a2238;
  font-weight: 600;
}
.kc-listings-table td {
  background: #fff;
}
.kc-badge {
  display: inline-block;
  background: #d4af37;
  color: #fff;
  font-size: 0.85em;
  font-weight: 600;
  border-radius: 12px;
  padding: 2px 10px;
  margin-left: 6px;
  white-space: nowrap;
}
.kc-payment-plan-info {
  font-size: 1.05rem;
  color: #1a2238;
  background: #f3f4f8;
  border-radius: 10px;
  padding: 12px 18px;
  margin-bottom: 0;
}
.kc-listings-cta {
  text-align: center;
  margin-top: 32px;
  margin-bottom: 0;
}
.kc-listings-cta h4 {
  font-size: 1.3rem;
  color: #1a2238;
  margin-bottom: 8px;
}
.kc-listings-cta p {
  color: #555;
  margin-bottom: 18px;
}
.kc-listings-cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ffe082 0%, #d4af37 100%);
  color: #1a2238;
  font-weight: bold;
  font-size: 1.08rem;
  padding: 14px 36px;
  border-radius: 28px;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 8px 0 rgba(212,175,55,0.08);
}
.kc-listings-cta-btn:hover {
  background: linear-gradient(90deg, #d4af37 0%, #ffe082 100%);
}

/* Only .kc-table-wide scrolls horizontally on mobile */
.kc-table-scroll {
  overflow-x: auto;
}
.kc-listings-table {
  min-width: 0;
  width: 100%;
}
.kc-table-wide {
  min-width: 600px;
}

/* --- Responsive Styles --- */
@media (max-width: 600px) {
  .kc-listings-section {
    padding: 36px 0 24px 0;
  }
  .kc-listings-container {
    padding: 0 6px;
  }
  .kc-listings-header h2 {
    font-size: 1.45rem;
  }
  .kc-listings-header h3 {
    font-size: 1.05rem;
  }
  .kc-listings-header p {
    font-size: 0.97rem;
  }
  .kc-listings-table-wrap {
    padding: 12px 4px 6px 4px;
    border-radius: 10px;
  }
  .kc-listings-table-wrap h4 {
    font-size: 1rem;
    margin-bottom: 7px;
  }
  .kc-listings-table th, .kc-listings-table td {
    padding: 7px 4px;
    font-size: 0.97rem;
  }
  .kc-listings-table th, .kc-listings-table td {
    white-space: normal;
    word-break: break-word;
  }
  .kc-listings-table {
    font-size: 0.97rem;
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
  }
  .kc-table-scroll {
    max-width: 100vw;
    overflow-x: auto;
  }
  .kc-table-wide {
    min-width: 480px;
  }
  .kc-badge {
    font-size: 0.8em;
    padding: 2px 7px;
    margin-left: 3px;
  }
  .kc-listings-cta h4 {
    font-size: 1.08rem;
  }
  .kc-listings-cta-btn {
    font-size: 0.98rem;
    padding: 12px 18px;
    border-radius: 22px;
  }
}

/* --- Gallery Section Responsive Styles --- */
.gallery-section {
  background: #fff;
  padding: 64px 0 48px 0;
}
.gallery-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-header.center {
  text-align: center;
  margin-bottom: 32px;
}
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
  overflow-x: auto;
}
.filter-btn {
  background: #f3f4f8;
  color: #1a2238;
  border: none;
  border-radius: 18px;
  padding: 8px 18px;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 500;
  margin-bottom: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.filter-btn.active, .filter-btn:hover {
  background: #d4af37;
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.gallery-item, .gallery-item.large {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(30,42,56,0.10);
  background: #f8f9fb;
  transition: box-shadow 0.2s, transform 0.2s;
}
.image-container {
  width: 100%;
  aspect-ratio: 3/2;
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  background: #eaeaea;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item.large .image-container {
  aspect-ratio: 3/2;
}
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  display: block;
}
.gallery-overlay {
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  background: rgba(26,34,56,0.38);
  opacity: 0;
  transition: opacity 0.2s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 0 0 16px 16px;
  pointer-events: none;
}
.gallery-item:hover .gallery-overlay,
.gallery-item:focus-within .gallery-overlay {
  opacity: 1;
  pointer-events: auto;
}
.overlay-content {
  color: #fff;
  padding: 18px 16px 14px 16px;
  width: 100%;
  background: linear-gradient(0deg, rgba(26,34,56,0.65) 60%, rgba(26,34,56,0.05) 100%);
  border-radius: 0 0 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.overlay-content h4, .overlay-content p {
  text-align: center;
  width: 100%;
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .gallery-item, .gallery-item.large {
    border-radius: 12px;
  }
  .gallery-overlay, .overlay-content {
    border-radius: 0 0 12px 12px;
  }
}
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .gallery-item, .gallery-item.large {
    border-radius: 8px;
  }
  .gallery-overlay, .overlay-content {
    border-radius: 0 0 8px 8px;
  }
  .image-container, .gallery-item.large .image-container {
    aspect-ratio: 3/2;
  }
}

/* --- Remove hover effects and equalize gallery image sizes --- */
.gallery-item, .gallery-item.large {
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(30,42,56,0.10);
  background: #f8f9fb;
  transition: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 0;
}
/* Remove hover/active effects */
.gallery-item:hover, .gallery-item:focus-within {
  box-shadow: 0 2px 12px 0 rgba(30,42,56,0.10);
  transform: none;
}
.image-container img {
  filter: none !important;
  transition: none;
}
/* Make overlay always visible */
.gallery-overlay {
  opacity: 1 !important;
  pointer-events: auto !important;
  transition: none;
}
/* Remove .large special grid/size rules */
.gallery-item.large {
  grid-column: auto !important;
  grid-row: auto !important;
}
.gallery-item.large .image-container {
  aspect-ratio: 3/2 !important;
}
/* Gallery grid: all items same size */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* --- Our Location Section Responsive Styles --- */
.location-section.best-location-section {
  background: #fff;
  position: relative;
  padding: 64px 0 48px 0;
}
.location-gradient {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(120deg, #f8f9fb 60%, #eaeaea 100%);
  z-index: 0;
}
.location-section .container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.location-header {
  text-align: center;
  margin-bottom: 32px;
}
.location-title {
  font-family: 'Poppins';
  font-size: 2.1rem;
  color: #1a2238;
  margin-bottom: 0.5rem;
}
.location-pin {
  display: inline-block;
  margin-bottom: 8px;
}
.location-accent {
  width: 48px;
  height: 4px;
  background: #d4af37;
  border-radius: 2px;
  margin: 0 auto 8px auto;
}
.location-content-grid {
  display: flex;
  gap: 32px;
  align-items: stretch;
}
.location-info-card, .location-map-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(30,42,56,0.07);
  padding: 32px 28px;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-info-card {
  max-width: 380px;
}
.location-map-card {
  flex: 2 1 0;
  min-width: 0;
  padding: 18px 0 18px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.location-map-card iframe {
  width: 100%;
  height: 420px;
  border-radius: 18px;
  border: 0;
  display: block;
}
.location-address {
  font-size: 1.08rem;
  color: #1a2238;
  margin-bottom: 10px;
}
.location-details {
  font-size: 1rem;
  color: #555;
  margin-bottom: 18px;
}
.location-map-btn {
  display: inline-block;
  background: #d4af37;
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 12px 28px;
  border-radius: 24px;
  text-decoration: none;
  margin-top: 12px;
  transition: background 0.2s;
}
.location-map-btn:hover {
  background: #1a2238;
  color: #fff;
}
@media (max-width: 900px) {
  .location-content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .location-info-card, .location-map-card {
    max-width: 100%;
    padding: 22px 10px;
    border-radius: 12px;
  }
  .location-map-card iframe {
    height: 320px;
    border-radius: 12px;
  }
}
@media (max-width: 600px) {
  .location-section.best-location-section {
    padding: 32px 0 18px 0;
  }
  .location-section .container {
    padding: 0 4px;
  }
  .location-header {
    margin-bottom: 18px;
  }
  .location-title {
    font-size: 1.25rem;
  }
  .location-accent {
    width: 32px;
    height: 3px;
    margin-bottom: 4px;
  }
  .location-content-grid {
    flex-direction: column;
    gap: 10px;
  }
  .location-info-card, .location-map-card {
    padding: 12px 4px;
    border-radius: 8px;
    box-shadow: 0 1px 6px 0 rgba(30,42,56,0.07);
  }
  .location-info-card h3 {
    font-size: 1.08rem;
  }
  .location-address, .location-details {
    font-size: 0.97rem;
  }
  .location-map-btn {
    font-size: 0.97rem;
    padding: 10px 14px;
    border-radius: 16px;
  }
  .location-map-card iframe {
    height: 200px;
    border-radius: 8px;
  }
}

@media (max-width: 600px) {
  .location-content-grid {
    flex-direction: column;
    gap: 0;
  }
  .location-unified-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 6px 0 rgba(30,42,56,0.07);
    padding: 12px 4px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .location-info-card, .location-map-card {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin: 0;
  }
  .location-info-card h3 {
    font-size: 1.08rem;
  }
  .location-address, .location-details {
    font-size: 0.97rem;
  }
  .location-map-btn {
    font-size: 0.97rem;
    padding: 10px 14px;
    border-radius: 16px;
  }
  .location-map-card iframe {
    height: 200px;
    border-radius: 8px;
  }
}

/* --- Our Location Section Unified Card --- */
.location-unified-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(30,42,56,0.07);
  padding: 32px 28px;
  margin: 0 auto 0 auto;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.location-info-card, .location-map-card {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
}
.location-map-card iframe {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  border: 0;
  display: block;
}
@media (max-width: 900px) {
  .location-unified-card {
    padding: 18px 6px;
    border-radius: 12px;
    gap: 14px;
  }
  .location-map-card iframe {
    height: 220px;
    border-radius: 10px;
  }
}
@media (max-width: 600px) {
  .location-section.best-location-section {
    padding: 32px 0 18px 0;
  }
  .location-section .container {
    padding: 0 4px;
  }
  .location-header {
    margin-bottom: 18px;
  }
  .location-title {
    font-size: 1.25rem;
  }
  .location-accent {
    width: 32px;
    height: 3px;
    margin-bottom: 4px;
  }
  .location-unified-card {
    padding: 10px 2px;
    border-radius: 8px;
    gap: 8px;
    max-width: 100%;
  }
  .location-info-card h3 {
    font-size: 1.08rem;
  }
  .location-address, .location-details {
    font-size: 0.97rem;
  }
  .location-map-btn {
    font-size: 0.97rem;
    padding: 10px 14px;
    border-radius: 16px;
  }
  .location-map-card iframe {
    height: 160px;
    border-radius: 8px;
  }
}

/* --- Redesigned Our Location Section --- */
.redesigned-location-section {
  background: linear-gradient(120deg, #f8f9fb 60%, #eaeaea 100%);
  padding: 64px 0 48px 0;
  position: relative;
}
.location-bg-gradient {
  display: none;
}
.location-card {
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px 0 rgba(30,42,56,0.10);
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.location-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.location-pin-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}
.location-card-title {
  font-family: 'Poppins';
  font-size: 1.6rem;
  color: #1a2238;
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.location-card-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.location-info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
  color: #1a2238;
  word-break: break-word;
}
.location-info-row i {
  color: #d4af37;
  font-size: 1.1em;
  min-width: 20px;
  text-align: center;
}
.location-info-row a {
  color: #1a2238;
  text-decoration: underline;
  transition: color 0.2s;
}
.location-info-row a:hover {
  color: #d4af37;
}
.location-map-btn-wide {
  display: block;
  width: 100%;
  background: linear-gradient(90deg, #ffe082 0%, #d4af37 100%);
  color: #1a2238;
  font-weight: bold;
  font-size: 1.08rem;
  padding: 14px 0;
  border-radius: 28px;
  text-align: center;
  text-decoration: none;
  margin-top: 8px;
  margin-bottom: 0;
  transition: background 0.2s;
  box-shadow: 0 2px 8px 0 rgba(212,175,55,0.08);
}
.location-map-btn-wide:hover {
  background: linear-gradient(90deg, #d4af37 0%, #ffe082 100%);
  color: #fff;
}
.location-card-map {
  width: 100%;
  margin-top: 8px;
}
.location-card-map iframe {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  border: 0;
  display: block;
}
@media (max-width: 600px) {
  .redesigned-location-section {
    padding: 32px 0 18px 0;
  }
  .location-card {
    max-width: 100%;
    padding: 14px 4px 10px 4px;
    border-radius: 12px;
    gap: 10px;
  }
  .location-card-title {
    font-size: 1.15rem;
  }
  .location-info-row {
    font-size: 0.97rem;
    gap: 7px;
  }
  .location-map-btn-wide {
    font-size: 0.97rem;
    padding: 11px 0;
    border-radius: 18px;
  }
  .location-card-map iframe {
    height: 140px;
    border-radius: 8px;
  }
}

/* --- Two-column layout for Our Location card on large screens --- */
.location-card-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
@media (min-width: 901px) {
  .location-card {
    max-width: 900px;
    padding: 40px 40px 40px 40px;
  }
  .location-card-content {
    flex-direction: row;
    gap: 32px;
    min-height: 320px;
    align-items: stretch;
    justify-content: center;
  }
  .location-card-info {
    flex: 1 1 0;
    max-width: 340px;
    justify-content: center;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
    min-height: 0;
    padding: 0 0 0 8px;
  }
  .location-card-map {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 0;
    padding: 0 8px 0 0;
  }
  .location-card-map iframe {
    height: 100%;
    min-height: 220px;
    max-height: 340px;
    border-radius: 16px;
  }
}

/* Enhanced Floating Buttons */
.call-float {
  position: fixed;
  bottom: 110px;
  right: 32px;
  z-index: 1001;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: pulse 2s infinite;
}

.call-float:hover {
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

.call-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.call-float i {
  font-size: 1.5rem;
  color: #fff;
  margin: 0;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3), 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 600px) {
  .call-float {
    right: 16px;
    bottom: 56px;
    width: 48px;
    height: 48px;
  }
  
  .call-float i {
    font-size: 1.3rem;
  }
  
  .whatsapp-float {
    right: 16px;
    bottom: 8px;
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 600px) {
  .floating-btn-row {
    position: fixed;
    right: 8px;
    bottom: 8px;
    z-index: 1001;
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  .call-float, .whatsapp-float {
    position: static;
    margin: 0;
    right: auto;
    bottom: auto;
  }
}

.amenity-label {
  font-size: 1.04rem;
  color: var(--dark-gray);
  font-family: 'Poppins';
  text-align: center;
  margin-top: 2px;
  font-weight: 500;
}

/* Animated pulse for floating buttons */
.floating-btn-row .call-float a,
.floating-btn-row .whatsapp-float a {
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 rgba(212, 175, 55, 0.7);
  transition: box-shadow 0.3s;
}

.floating-btn-row .whatsapp-float a {
  animation-delay: 0.75s; /* Stagger the animations */
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    transform: scale(1.1);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    transform: scale(1);
  }
}

@media (max-width: 991px) {
  .nav-dropdown .dropdown-menu {
    display: none;
    position: static;
    background: #fff;
    box-shadow: none;
    min-width: 100%;
    padding: 0;
  }
  .nav-dropdown.dropdown-open .dropdown-menu {
    display: block;
  }
  .nav-dropdown .dropdown-menu a {
    color: #222;
    padding: 12px 18px;
    display: block;
    border-bottom: 1px solid #eee;
  }
}

/* Navbar Dropdown: Desktop hover, Mobile toggle */
@media (min-width: 992px) {
  .nav-dropdown {
    position: relative;
  }
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    display: block;
  }
  .nav-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    z-index: 100;
    left: 0;
    top: 100%;
    padding: 0;
  }
  .nav-dropdown .dropdown-menu a {
    color: #222;
    padding: 12px 18px;
    display: block;
    border-bottom: 1px solid #eee;
    text-align: left;
    background: none;
  }
  .nav-dropdown .dropdown-menu a:last-child {
    border-bottom: none;
  }
}
@media (max-width: 991px) {
  .nav-dropdown .dropdown-menu {
    display: none;
    position: static;
    background: #fff;
    box-shadow: none;
    min-width: 100%;
    padding: 0;
  }
  .nav-dropdown.open .dropdown-menu {
    display: block;
  }
  .nav-dropdown .dropdown-menu a {
    color: #222;
    padding: 12px 18px;
    display: block;
    border-bottom: 1px solid #eee;
    text-align: left;
    background: none;
  }
  .nav-dropdown .dropdown-menu a:last-child {
    border-bottom: none;
  }
}

.dropdown-menu a {
  display: block !important;
  color: #222 !important;
  pointer-events: auto !important;
}

/* Re-Floating Buttons */
.re-floating-btn-row {
    position: fixed;
    right: 8px;
    bottom: 8px;
    z-index: 1001;
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.re-call-float, .re-whatsapp-float {
    position: static;
    margin: 0;
    right: auto;
    bottom: auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    transition: box-shadow 0.2s, background 0.2s;
}
.re-call-float {
    background: #25d366;
}
.re-whatsapp-float {
    background: #25d366;
}
.re-call-float a, .re-whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 2rem;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    animation: re-pulse 1.5s infinite;
    box-shadow: 0 0 0 rgba(212, 175, 55, 0.7);
}
.re-whatsapp-float a {
    animation-delay: 0.75s;
}
.re-call-float a:hover, .re-whatsapp-float a:hover {
    background: #128c7e;
    color: #fff;
}
.re-call-float i, .re-whatsapp-float i {
    font-size: 2rem;
    color: #fff;
    margin: 0;
}
@keyframes re-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
        transform: scale(1.1);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
        transform: scale(1);
    }
}
.re-back-to-top {
    position: fixed;
    bottom: 70px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}
.re-back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.re-back-to-top:hover {
    background: var(--secondary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Video Enhancement Styles */
.video-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.video-loading .spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #d4af37;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

.video-loading p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.video-error {
    text-align: center;
    padding: 40px;
    color: #666;
    background: #f9f9f9;
    border-radius: 8px;
}

.video-error i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #d4af37;
}

.video-error p {
    margin-bottom: 15px;
}

.retry-btn {
    background: #d4af37;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.retry-btn:hover {
    background: #b8941f;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Video Container Enhancements */
.video-container {
    position: relative;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background: #000;
}

video:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}
