/* Main CSS for Godrej Lakeside Orchard - Version 2 */

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Base Styles */
html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #687241; /* Updated primary color */
    --secondary-color: #8a915d; /* Updated secondary color */
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --dark: #212529;
    --transition: all 0.3s ease;
    --body-font: 'Futura Bk BT', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --heading-font: 'Cormorant Garamond', 'Times New Roman', Times, serif;
}

/* Base Typography */
body {
    font-family: var(--body-font);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Text Elements */
p, span, a, li, td, th, label, input, textarea, select, button, .btn, .nav-link {
    font-family: var(--body-font);
    letter-spacing: 0.2px;
    color: var(--text-color);
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

/* Section Headings */
.section-header h2,
.section-header h1,
.section-header .h1,
.section-header .h2,
.section-title,
h1, .h1,
#lakeside-oasis h2,
#highlights h2,
#project-config h2,
#master-plan h2,
#location h2,
#redefining-skyline h2,
#contact h2,
#tranquil-retreat h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-header .divider,
.section-divider {
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto 1.5rem;
    position: relative;
}

.section-header .lead,
.section-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

h1, .h1 {
    font-size: 2.75rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2, .h2 {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

h3, .h3 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

h4, .h4 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

h5, .h5 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

h6, .h6 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* Paragraphs */
p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
    font-weight: 300;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.7;
    font-weight: 300;
    color: #555;
    margin-bottom: 2rem;
}

/* Small Text */
small, .small {
    font-size: 0.85rem;
    line-height: 1.6;
    display: inline-block;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Lists */
ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.25rem;
}

li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* Blockquotes */
blockquote {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

/* Text Elements */
.text-muted {
    color: #6c757d !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-white {
    color: #fff !important;
}

/* Font Weights */
.font-light {
    font-weight: 300 !important;
}

.font-regular {
    font-weight: 400 !important;
}

.font-medium {
    font-weight: 500 !important;
}

.font-semi-bold {
    font-weight: 600 !important;
}

.font-bold {
    font-weight: 700 !important;
}

/* Text Transforms */
.text-uppercase {
    letter-spacing: 1px;
}

/* Responsive Typography */
@media (max-width: 991.98px) {
    html {
        font-size: 15px;
    }
    
    h1, .h1 { font-size: 2.25rem; }
    h2, .h2 { font-size: 1.875rem; }
    h3, .h3 { font-size: 1.5rem; }
    h4, .h4 { font-size: 1.25rem; }
    
    .lead {
        font-size: 1.15rem;
    }
}

@media (max-width: 767.98px) {
    html {
        font-size: 14px;
    }
    
    h1, .h1 { font-size: 2rem; }
    h2, .h2 { font-size: 1.75rem; }
    
    p {
        font-size: 1rem;
    }
}

.section-padding {
    padding: 80px 15px;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Navbar Styles */
.navbar {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Make navbar sticky on all devices */
.navbar-sticky {
    position: sticky;
    top: 0;
}

/* Navbar brand/logo */
.navbar-brand {
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Center logo in mobile view */
@media (max-width: 991.98px) {
    .navbar > .container {
        position: relative;
        justify-content: center !important;
    }
    
    .navbar-brand {
        margin: 0 auto;
        text-align: center;
        position: relative;
        left: 0;
        right: 0;
        transform: none;
    }
    
    .navbar-toggler {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
}

.navbar-brand img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

/* Navbar toggler */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navbar links */
.navbar-nav .nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

/* CTA Button */
.btn-enquire {
    background-color: var(--primary-color);
    color: white !important;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-enquire:hover {
    background-color: #143a23;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 71, 42, 0.3);
}

/* Mobile menu */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 0;
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .btn-enquire {
        display: block;
        text-align: center;
        margin-top: 1rem;
    }
}

.navbar-brand img {
    max-height: 60px;
    width: auto;
    transition: var(--transition);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: var(--primary-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color);
}

.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 15%;
    background-color: var(--secondary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
    width: 70%;
}

/* Location Carousel */
.location-carousel {
    border-radius: 0.75rem;
    overflow: hidden;
    height: 100%;
}

.location-carousel .carousel-inner,
.location-carousel .carousel-item,
.location-carousel img {
    height: 100%;
    object-fit: cover;
}

/* Ensure map and carousel are equal height on larger screens */
@media (min-width: 992px) {
    .map-container,
    .location-carousel {
        min-height: 400px;
        height: 100%;
    }
}

/* Adjust height for medium screens */
@media (max-width: 991.98px) {
    .map-container,
    .location-carousel {
        min-height: 350px;
        height: 350px;
    }
}

/* Adjust height for small screens */
@media (max-width: 575.98px) {
    .map-container,
    .location-carousel {
        min-height: 300px;
        height: 300px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-top: 20px;
    overflow: hidden;
}

.hero-carousel .carousel-item {
    height: 90vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
}

.hero-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    justify-content: center;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    border: none;
}

.carousel-indicators .active {
    background-color: var(--white);
    transform: scale(1.2);
}


/* Scroll Down Indicator */
/* Scroll Down Button */
.scroll-down {
    position: absolute;
    top: 95%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    transition: all 0.3s ease;
    z-index: 10;
    animation: bounce 2s infinite;
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.scroll-down:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.scroll-down:hover {
    opacity: 1;
    color: var(--accent-color);
}

.scroll-down::after {
    content: '';
    display: block;
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    margin-top: 15px;
    position: relative;
}

.scroll-down::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 20px;
    background: currentColor;
    animation: scrollDown 2s infinite;
}

/* Buttons */
.btn-primary, .btn {
    background-color: #687241;
    border-color: #687241;
    color: white;
    transition: var(--transition);
}

.btn-primary:hover, .btn:hover {
    background-color: #8a915d;
    border-color: #8a915d;
    color: white;
}

.btn-enquire {
    background-color: #687241;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-enquire:hover {
    background-color: #8a915d !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Section Headers */
.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.divider {
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg, #687241, #7e8552);
    margin: 15px auto;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--white);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 0;
        margin: 0;
    }
    
    .hero-carousel .carousel-item {
        height: 80vh;
        min-height: 500px;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-carousel .carousel-item {
        height: 90vh;
        min-height: 400px;
    }
}

/* Animations */
[data-aos] {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Utility Classes */
.bg-light {
    background-color: var(--light-bg) !important;
}

.text-primary {
    color: #687241 !important;
}

.text-secondary {
    color: #7e8552 !important;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

/* Modal */
.modal-content {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.modal-header {
    border-bottom: 1px solid #eee;
    background-color: #687241;
    color: var(--white);
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

/* Form Styles */
.form-control {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: #687241;
    box-shadow: 0 0 0 0.25rem rgba(104, 114, 65, 0.25);
}

/* Project Highlights */
.highlight-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.highlight-card {
    position: relative;
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    z-index: 1;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #687241, #7e8552);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26, 71, 42, 0.15);
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: #687241;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #687241, #7e8552);
    color: white;
}

.highlight-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #687241;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.highlight-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #7e8552;
    transition: width 0.3s ease;
}

.highlight-card:hover h4::after {
    width: 70%;
}

.highlight-card p {
    color: #666;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.highlight-card:hover p {
    color: #444;
}

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

.highlight-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

/* Staggered animation for cards */
.highlight-card:nth-child(1) { animation-delay: 0.1s; }
.highlight-card:nth-child(2) { animation-delay: 0.2s; }
.highlight-card:nth-child(3) { animation-delay: 0.3s; }
.highlight-card:nth-child(4) { animation-delay: 0.4s; }
.highlight-card:nth-child(5) { animation-delay: 0.5s; }
.highlight-card:nth-child(6) { animation-delay: 0.6s; }

/* Floor Plans Section */
#plans {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

#plans h2 {
    color: #687241;
    font-size: 2.5rem;
    font-weight: 700;
    /* margin-bottom: 1.5rem; */
}

#plans p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    /* margin-bottom: 1.5rem; */
}

/* Tab Navigation */
#floorPlanTabs {
    border: none;
    gap: 10px;
}

#floorPlanTabs .nav-link {
    color: #666;
    font-weight: 500;
    padding: 8px 20px;
    border: 1px solid #ddd;
    border-radius: 30px;
    transition: all 0.3s ease;
}

#floorPlanTabs .nav-link.active {
    background-color: #687241;
    color: #fff;
    border-color: #687241;
}

#floorPlanTabs .nav-link:not(.active):hover {
    background-color: #f5f5f5;
    border-color: #ddd;
}

/* Floor Plan Cards */
#plans .card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

#plans .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#plans .card-img-top {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: filter 0.3s ease;
}

#plans .card-img-top:hover {
    filter: blur(0);
}

#plans .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

#plans .card-text {
    color: #a9b16f;
    font-weight: 500;
    margin-bottom: 0;
}

/* Download Button */
.unlock-price-btn {
    background-color: transparent;
    color: #a9b16f;
    border: 2px solid #a9b16f;
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.unlock-price-btn:hover {
    background-color: #a9b16f;
    color: #fff;
    transform: translateY(-2px);
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

/* Enquiry Modal Styles */
.enquiry-modal {
    border: 2px solid #687241;
    border-radius: 15px;
    overflow: hidden;
}

.enquiry-modal .modal-header {
    background-color: #687241;
    color: white;
    border-bottom: none;
    padding: 1.5rem;
}

.enquiry-modal .modal-title {
    font-family: 'Futura BT', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0;
}

.enquiry-modal .btn-close {
    filter: invert(1) brightness(100%);
    opacity: 0.8;
    transition: var(--transition);
}

.enquiry-modal .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.enquiry-modal .modal-body {
    padding: 2rem;
}

.enquiry-modal .form-floating > .form-control {
    height: calc(3.5rem + 2px);
    padding: 1rem 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    transition: var(--transition);
}

.enquiry-modal .form-floating > label {
    padding: 1rem 0.75rem;
    color: #6c757d;
}

.enquiry-modal .form-control:focus {
    border-color: #687241;
    box-shadow: 0 0 0 0.25rem rgba(104, 114, 65, 0.25);
}

.enquiry-modal .btn-primary {
    background-color: #687241;
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.enquiry-modal .btn-primary:hover {
    background-color: #8a915d !important;
    border-color: #8a915d !important;
    color: white !important;
}

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

.modal-header {
    border-bottom: 1px solid #eee;
    padding: 1.5rem;
}

.modal-title {
    font-weight: 600;
    color: #333;
}

.modal-body {
    padding: 0;
}

.modal-body img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    #plans .row.align-items-center {
        flex-direction: column;
    }
    
    #plans .col-lg-4 {
        margin-bottom: 2rem;
        text-align: center !important;
    }
    
    #floorPlanTabs {
        margin-top: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    #plans h2 {
        font-size: 2rem;
    }
    
    #plans p {
        font-size: 1rem;
    }
    
    #plans .card-img-top {
        height: 200px;
    }
    
    .unlock-price-btn {
        padding: 8px 25px;
        font-size: 0.9rem;
    }
}

.floor-plan-tab {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 1px solid #e0e6ed;
    border-radius: 50px;
    font-weight: 600;
    color: #5e6e82;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.floor-plan-tab:hover,
.floor-plan-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 71, 42, 0.15);
}

.floor-plan-content {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.floor-plan-content.active {
    display: block;
}

.floor-plan-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.floor-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 71, 42, 0.1);
}

.floor-plan-img-container {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    background: #f8f9fa;
}

.floor-plan-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.floor-plan-card:hover .floor-plan-img {
    transform: scale(1.02);
}

.floor-plan-details {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.floor-plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.floor-plan-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
}

.spec-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #5e6e82;
}

.spec-item i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.floor-plan-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
}

.btn-floor-plan {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-floor-plan.primary {
    background: var(--primary-color);
    color: white;
}

.btn-floor-plan.primary:hover {
    background: #154221;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 71, 42, 0.2);
}

.btn-floor-plan.secondary {
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-floor-plan.secondary:hover {
    background: #f0f7f2;
    transform: translateY(-2px);
}

/* Floor Plan Modal */
.floor-plan-modal .modal-dialog {
    max-width: 95%;
    margin: 1rem auto;
}

.floor-plan-modal .modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.floor-plan-modal .modal-header {
    border-bottom: 1px solid #e9ecef;
    padding: 1.25rem 1.5rem;
    background-color: #f8f9fa;
    position: relative;
}

.floor-plan-modal .modal-title {
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    font-size: 1.25rem;
}

.floor-plan-modal .btn-close {
    position: relative;
    right: 0;
    top: 0;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.floor-plan-modal .btn-close:hover {
    opacity: 1;
}

.floor-plan-zoom-container {
    position: relative;
    background-color: #f5f7fa;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    transition: background-color 0.3s ease;
}

.floor-plan-zoom-container:active {
    cursor: grabbing;
}

.floor-plan-zoom-container img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    transition: transform 0.3s ease;
    transform-origin: center center;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Zoom controls */
#zoomInBtn, #zoomOutBtn, #resetZoomBtn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    background-color: white;
    color: #495057;
    transition: all 0.2s ease;
}

#zoomInBtn:hover, #zoomOutBtn:hover, #resetZoomBtn:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
    border-color: #ced4da;
}

/* Navigation buttons */
.floor-plan-nav .btn {
    min-width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floor-plan-modal .modal-dialog {
        margin: 0.5rem;
        max-width: 100%;
    }
    
    .floor-plan-modal .modal-header {
        padding: 1rem;
    }
    
    .floor-plan-modal .modal-title {
        font-size: 1.1rem;
    }
    
    .floor-plan-zoom-container {
        min-height: 250px;
    }
    
    .floor-plan-nav .btn {
        min-width: auto;
        padding: 0.25rem 0.75rem;
    }
    
    .floor-plan-nav .btn i {
        margin: 0 !important;
    }
    
    .floor-plan-nav span {
        display: none;
    }
}

/* Animation for modal content */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal.fade .modal-dialog {
    animation: fadeInScale 0.3s ease-out;
}

/* Tooltip styles */
.tooltip-inner {
    background-color: var(--primary-color);
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before, 
.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: var(--primary-color);
}

.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before, 
.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: var(--primary-color);
}

.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before, 
.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: var(--primary-color);
}

.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before, 
.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .highlight-card {
        margin-bottom: 20px;
    }
    
    .highlight-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* Location Carousel */
.location-carousel-container {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
}

#locationCarousel {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 300px;
}

#locationCarousel .carousel-item {
    height: 100%;
}

#locationCarousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#locationCarousel .carousel-control-prev,
#locationCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

#locationCarousel:hover .carousel-control-prev,
#locationCarousel:hover .carousel-control-next {
    opacity: 1;
}

#locationCarousel .carousel-control-prev {
    left: 15px;
}

#locationCarousel .carousel-control-next {
    right: 15px;
}

#locationCarousel .carousel-control-prev-icon,
#locationCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 100%, 100%;
    filter: invert(1) sepia(1) saturate(5) hue-rotate(175deg);
}

.location-info {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 0.75rem;
}

.location-info h4 {
    color: var(--primary-color);
    font-weight: 600;
}

.location-info .btn-outline-primary {
    border-color: var(--primary-color);
    color: #fff;
    transition: all 0.3s ease;
}

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

/* Project Configuration */
#project-config {
    padding: 5rem 0;
    background-color: var(--light-bg);
    text-align: center;
}

#project-config .config-card {
    margin: 0 auto;
    max-width: 100%;
}

#project-config .table {
    margin-bottom: 0;
}

#project-config th,
#project-config td {
    text-align: center !important;
    vertical-align: middle;
}

#project-config .d-flex {
    justify-content: center;
}

.config-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(26, 71, 42, 0.08);
    transition: var(--transition);
    margin-bottom: 30px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.config-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 71, 42, 0.12);
}

.config-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    table-layout: fixed;
}

.config-table thead {
    background: var(--primary-color);
    color: var(--white);
}

.config-table th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.config-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s ease;
}

.config-table tbody tr:last-child {
    border-bottom: none;
}

.config-table tbody tr:hover {
    background-color: rgba(26, 71, 42, 0.02);
}

.config-table td {
    padding: 20px;
    vertical-align: middle;
    position: relative;
    font-size: 1rem;
    color: #444;
}

.config-table td:first-child {
    font-weight: 600;
    color: var(--primary-color);
}

.config-table td .badge {
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    background: rgba(26, 71, 42, 0.08);
    color: var(--primary-color);
}

.config-table .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-top: 5px;
}

.config-table .unit {
    font-size: 0.85rem;
    color: #666;
    display: block;
    margin-top: 3px;
}

.config-card .card-footer {
    background-color: #f9f9f9;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 25px;
    font-size: 0.85rem;
    color: #777;
}

/* Responsive Table */
@media screen and (max-width: 767px) {
    .config-table {
        border: 0;
    }

    .config-table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    .config-table tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #eee;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .config-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: right;
        padding: 12px 15px;
        border-bottom: 1px solid #f0f0f0;
    }

    .config-table td::before {
        content: attr(data-label);
        font-weight: 600;
        text-transform: uppercase;
        color: #666;
        margin-right: 15px;
        font-size: 0.8rem;
    }

    .config-table td:last-child {
        border-bottom: 0;
    }
}

/* ===== AMENITIES SECTION ===== */
#amenities {
    background-color: #fff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

#amenities .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

#amenities h2 {
    color: #1a1a1a;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

#amenities p.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Desktop Grid Layout */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 15px;
}

/* Carousel */
.amenities-carousel {
    display: block;
    width: 100%;
    padding: 20px 0 40px;
    position: relative;
    overflow: hidden;
}

.amenities-carousel .swiper-wrapper {
    align-items: stretch;
    transition-timing-function: linear !important;
    box-sizing: border-box;
    padding: 10px 0 30px;
}

.amenities-carousel .swiper-slide {
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 0 10px;
}

.amenity-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    margin: 0 5px;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.amenity-img {
    height: 200px;
    overflow: hidden;
}

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

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

.amenity-caption {
    padding: 15px 10px;
    text-align: center;
    background: #fff;
}

.amenity-caption h4 {
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Swiper Pagination */
.swiper-pagination {
    position: relative;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ddd;
    opacity: 1;
    margin: 0 4px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #1a1a1a;
    width: 20px;
    border-radius: 4px;
}

/* Responsive Adjustments */
/* Desktop */
@media (min-width: 1200px) {
    .amenities-carousel .swiper-slide {
        width: 300px !important;
    }
}

/* Laptop */
@media (max-width: 1199.98px) and (min-width: 992px) {
    .amenities-carousel .swiper-slide {
        width: 280px !important;
    }
}

/* Tablet */
@media (max-width: 991.98px) and (min-width: 768px) {
    .amenities-carousel .swiper-slide {
        width: 250px !important;
    }
}

/* Mobile Landscape */
@media (max-width: 767.98px) and (min-width: 576px) {
    .amenities-carousel .swiper-slide {
        width: 220px !important;
    }
    
    .amenity-card {
        margin: 0 5px;
    }
    
    .amenity-img {
        height: 180px;
    }
}

/* Mobile Portrait */
@media (max-width: 575.98px) {
    .amenities-carousel .swiper-slide {
        width: 180px !important;
    }
    
    .amenity-img {
        height: 160px;
    }
    
    .amenity-caption h4 {
        font-size: 0.95rem;
    }
}

@media (max-width: 767.98px) {
    #amenities {
        padding: 3rem 0 2rem;
        overflow: hidden;
        background-color: rgba(255,255,0,0.1); /* Debug */
    }
    
    #amenities h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    #amenities p.section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 15px;
    }
    
    /* Show carousel on mobile, hide grid */
    .amenities-grid {
        display: none;
    }
    
    .amenities-carousel {
        display: block;
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }
    
    .amenities-carousel .swiper-slide {
        width: 80%;
        max-width: 300px;
    }
    
    .amenity-card {
        margin: 0 5px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        width: 100%;
    }
    
    .amenity-img {
        height: 180px;
    }
    
    .amenity-caption {
        padding: 12px 8px;
    }
    
    .amenity-caption h4 {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .swiper-pagination {
        position: relative;
        margin-top: 15px;
        bottom: 0;
    }
    
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: #ddd;
        opacity: 1;
        margin: 0 4px;
    }
    
    .swiper-pagination-bullet-active {
        background: #1a1a1a;
        width: 20px;
        border-radius: 4px;
    }
}

/* Cards */
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    margin-bottom: 30px;
}

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

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 25px;
}

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

/* Map Container */
.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: var(--dark);
}

/* ===================================
   MODERN CONTACT SECTION
   =================================== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f8ff 100%);
    position: relative;
    overflow: hidden;
}

.contact-shape-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(26, 71, 42, 0.03);
    top: -300px;
    right: -300px;
    z-index: 0;
}

.contact-shape-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(45deg, rgba(26, 71, 42, 0.05) 0%, rgba(26, 71, 42, 0.02) 100%);
    bottom: -200px;
    left: -100px;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

.contact-info-card,
.contact-form-wrapper {
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-info-card:hover,
.contact-form-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08) !important;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(26, 71, 42, 0.1);
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-method:hover .contact-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.contact-method {
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.contact-method:last-child {
    margin-bottom: 0;
}

.contact-method h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-method p,
.contact-method a {
    color: #666;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--primary-color);
}

/* Form Styles */
.contact-form .form-control,
.contact-form .form-select {
    height: 56px;
    padding: 0 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #fff;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(26, 71, 42, 0.15);
}

.contact-form textarea.form-control {
    height: auto;
    padding-top: 16px;
    min-height: 120px;
}

/* Floating Labels */
.form-floating > label {
    padding: 1rem 1.25rem;
    color: #6c757d;
    font-size: 0.95rem;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    opacity: 0.8;
    transform: scale(0.85) translateY(-0.9rem) translateX(0.25rem);
}

/* Submit Button */
.btn-primary, .btn {
    background-color: #687241;
    border-color: #687241;
    color: white;
    padding: 12px 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover, .btn:hover {
    background-color: #8a915d;
    border-color: #8a915d;
    color: white;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), #2a7d4a);
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-submit:hover {
    background-color: #8a915d;
    border-color: #8a915d;
    color: white;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #2a7d4a, var(--primary-color));
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-submit:hover::before {
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 71, 42, 0.2);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f4f8;
    color: var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Map Container */
.map-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
    z-index: 1;
}

/* Section Tag */
.section-tag {
    display: inline-block;
    background: rgba(26, 71, 42, 0.1);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info-card,
    .contact-form-wrapper {
        padding: 30px !important;
    }
    
    .contact-method {
        margin-bottom: 25px;
    }
}

@media (max-width: 767.98px) {
    .contact-shape-1,
    .contact-shape-2 {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2rem !important;
    }
    
    .map-container {
        height: 300px !important;
    }
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== MOBILE ACTION BAR ===== */
@keyframes shine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
  
.mobile-action-bar {
    height: 54px;
    display: flex;
    align-items: center;
    padding-bottom: env(safe-area-inset-bottom);
    background: #8a915d;
    background-image: linear-gradient(120deg, #8a915d 25%, #5b6434 50%, #8a915d 75%);
    background-size: 200% 100%;
    animation: shine 8s linear infinite;
    z-index: 999;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}
  
/* Location Carousel */
.location-carousel {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.location-carousel {
    height: 100%;
}

.location-carousel .carousel-inner {
    height: 100%;
    border-radius: 0.75rem;
    overflow: hidden;
}

.location-carousel .carousel-item {
    height: 100%;
}

.location-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    #locationCarousel {
        margin-bottom: 2rem;
    }
    
    .map-container {
        height: 300px;
        margin-bottom: 2rem;
    }
}

/* Floor Plan Enquire Now Buttons */
.enquire-now {
    position: relative;
    display: block;
    overflow: hidden;
}

.enquire-now .position-absolute {
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.enquire-now:hover .position-absolute {
    opacity: 1;
}

.enquire-now .bg-white {
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9) !important;
    padding: 8px 16px !important;
    font-weight: 600;
    color: #333;
}

.enquire-now:hover .bg-white {
    transform: scale(1.05);
}

.enquire-now .fa-envelope {
    color: #a9b16f;
}

/* Project Configuration Styles */
.config-card {
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.config-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08) !important;
}

.config-card .table th {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    border-bottom: 2px solid #dee2e6;
}

.config-card .table td {
    vertical-align: middle;
    border-color: #f1f3f5;
}

.config-card .badge {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.35em 0.65em;
    border-radius: 0.25rem;
}

.config-card .btn {
    font-weight: 500;
    min-width: 120px;
    transition: all 0.3s ease;
}

.config-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.config-card .bg-light {
    background-color: #f8f9fa !important;
}

.config-card .rounded-4 {
    border-radius: 1rem !important;
}

.config-card .text-muted {
    color: #6c757d !important;
}

.mobile-action-link {
    height: 54px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-action-link:hover {
    color: #fff;
    opacity: 0.9;
}
