:root {
    --primary-color: #c5a880; /* Premium Gold/Bronze */
    --primary-hover: #b3956c;
    --secondary-color: #0f0f0f;
    --secondary-hover: #1a1a1a;
    --text-color: #1e1e1e;
    --text-muted: #7f7f7f;
    --bg-light: #faf9f6; /* Alabaster / Premium warm off-white */
    --bg-white: #ffffff;
    --border-color: rgba(197, 168, 128, 0.25); /* Subtle gold border */
    --border-light: rgba(0, 0, 0, 0.08);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    --container-width: 1200px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.03);
    --shadow-premium: 0 20px 40px rgba(197, 168, 128, 0.08);
    --shadow-glow: 0 0 25px rgba(197, 168, 128, 0.2);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-white);
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 120px 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    background: var(--bg-white);
}

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

.subtitle {
    display: block;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

/* Custom Scrollbar for Premium Feel */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0f0f0f;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* Header & Glassmorphism */
header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

header.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Scroll Progress Bar at bottom of header */
.scroll-progress-container {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, 0.05);
    z-index: 1001;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--primary-color);
    transition: width 0.1s ease-out;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle Styles */
.nav-toggle {
    display: none;
    position: relative;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1003;
}

.nav-toggle .bar {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.nav-toggle .bar:nth-child(1) {
    top: 2px;
}

.nav-toggle .bar:nth-child(2) {
    top: 8px;
}

.nav-toggle .bar:nth-child(3) {
    top: 14px;
}

.nav-toggle.active .bar:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.nav-toggle.active .bar:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
}

.mobile-only {
    display: none;
}

/* Premium Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--primary-color);
    color: #0f0f0f;
    border-color: var(--primary-color);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #0f0f0f;
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover {
    color: #ffffff;
    border-color: #0f0f0f;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border-color: var(--text-color);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: var(--transition);
    z-index: -1;
}

.btn-outline:hover {
    color: #0f0f0f;
    border-color: var(--primary-color);
}

.btn-outline:hover::before {
    left: 0;
}

/* Premium Diagonal Shine Effect */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -70%;
    width: 30%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 30%,
        rgba(255, 255, 255, 0.4) 70%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: none;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

.shine-effect:hover::after {
    left: 150%;
    opacity: 1;
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 125%; /* Extra height to accommodate parallax translation */
    z-index: -1;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.35) 60%,
        rgba(15, 15, 15, 1) 100%
    ); /* Soft dark gradient blending into subsequent sections */
    z-index: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
    width: 100%;
}

.hero-text h1 {
    font-size: 5rem;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
    letter-spacing: 1px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

/* Scroll Mouse Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(5px);
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel-anim 1.6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes scroll-wheel-anim {
    0% {
        top: 6px;
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        top: 24px;
        opacity: 0;
    }
}

/* Quick Details */
.quick-details-section {
    background: var(--bg-light);
    color: var(--text-color);
    padding: 80px 0;
    border-bottom: 1px solid var(--border-light);
}

.quick-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.detail-item {
    text-align: center;
    background: var(--bg-white);
    padding: 35px 25px;
    border: 1px solid var(--border-light);
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: var(--transition);
}

.detail-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-premium);
}

.detail-item:hover::before {
    transform: scaleX(1);
}

.detail-text .label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.detail-text .value {
    font-weight: 800;
    font-size: 1.35rem;
    text-transform: uppercase;
    color: var(--secondary-color);
}

/* Overview */
.overview-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.rounded-img {
    width: 100%;
    border-radius: 0;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-slow);
}

.rounded-img:hover {
    transform: scale(1.02);
}

.feature-list {
    list-style: none;
    margin-top: 40px;
}

.feature-list li {
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 1px;
    background: var(--primary-color);
}

/* Amenities Slider */
.amenities-slider-container {
    width: 100%;
    overflow: hidden;
    background: #000;
    position: relative;
}

.amenities-track {
    display: flex;
    width: calc(400px * 8);
    animation: scroll 40s linear infinite;
}

.amenities-track:hover {
    animation-play-state: paused;
}

.amenity-slide {
    width: 400px;
    height: 520px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.amenity-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.amenity-slide:hover img {
    transform: scale(1.08);
}

.amenity-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #fff;
    z-index: 2;
    transition: var(--transition);
}

.amenity-overlay h4 {
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.amenity-slide:hover .amenity-overlay h4 {
    transform: translateY(0);
    color: var(--primary-color);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-400px * 4)); }
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    border: none;
}

.price-card {
    padding: 80px 40px;
    background: #111111; /* Luxury dark layout */
    color: #ffffff;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: var(--transition);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.price-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--primary-color), transparent 40%, transparent 60%, var(--primary-color)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.15;
    transition: var(--transition);
    pointer-events: none;
}

.price-card:hover::before {
    opacity: 0.8;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow), 0 20px 45px rgba(0, 0, 0, 0.4);
}

.price-card h1, .price-card h2, .price-card h3, .price-card h4 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 2.5px;
}

.price-card p {
    color: rgba(255, 255, 255, 0.7);
}

.price-card .area {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

.price-tag {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.price-card .btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.price-card .btn-outline::before {
    background: var(--primary-color);
}

.price-card .btn-outline:hover {
    color: #0f0f0f;
    border-color: var(--primary-color);
}

/* Location Timeline */
.landmark-group {
    background: var(--bg-white);
    padding: 60px 50px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    position: relative;
}

.location-timeline {
    position: relative;
    margin-top: 40px;
    padding-left: 30px;
}

.location-timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: linear-gradient(to bottom, var(--primary-color), var(--border-color));
}

.location-timeline-item {
    position: relative;
    margin-bottom: 35px;
    padding-left: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.location-timeline-item::before {
    content: '';
    position: absolute;
    left: -29px;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    z-index: 2;
    transition: var(--transition);
}

.location-timeline-item::after {
    content: '';
    position: absolute;
    left: -29px;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--primary-color);
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.location-timeline-item:hover::before {
    transform: translateY(-50%) scale(1.3);
    background: var(--primary-color);
}

.location-timeline-item:hover::after {
    transform: translateY(-50%) scale(2.2);
    opacity: 0.3;
}

.location-place {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.location-place i {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.location-time {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 0.95rem;
    background: rgba(197, 168, 128, 0.12);
    padding: 6px 18px;
    border-radius: 30px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.location-timeline-item:hover .location-time {
    background: var(--primary-color);
    color: #0f0f0f;
}

/* Footer */
footer {
    background: #0f0f0f;
    color: #ffffff;
    padding: 120px 0 50px;
    border-top: 1px solid rgba(197, 168, 128, 0.1);
}

footer h4 {
    color: #ffffff;
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--primary-color);
}

footer p {
    opacity: 0.7;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

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

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.6;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    position: relative;
    padding-left: 0;
}

.footer-links ul a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: var(--transition);
}

.footer-links ul a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 15px;
}

.footer-links ul a:hover::before {
    left: 0;
    opacity: 1;
    color: var(--primary-color);
}

.footer-contact p {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.footer-contact p i {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.4;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.footer-bottom .footer-disclaimer {
    opacity: 0.3;
    max-width: 900px;
    margin: 15px auto 0;
    line-height: 1.5;
}

/* Form Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.85); /* Premium glass backdrop */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.modal.is-active {
    display: block;
    opacity: 1;
}

.close {
    position: fixed;
    top: 30px;
    right: 40px;
    width: 44px;
    height: 44px;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: var(--transition);
    z-index: 2001;
}

.close:hover {
    background: var(--primary-color);
    color: #0f0f0f;
    border-color: var(--primary-color);
    transform: rotate(90deg);
}

/* Premium Form Underlines and Transitions */
/* Premium Form Underlines and Transitions - High Fidelity Rebuild */
.modal-wrapper {
    position: relative;
    margin: 4vh auto;
    width: 100%;
    max-width: 850px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    animation: modalFormFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    border-radius: 12px;
    overflow: hidden;
}

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

.modal-container-card {
    display: grid;
    grid-template-columns: 3.5fr 6.5fr;
    min-height: 560px;
}

@media (max-width: 768px) {
    .modal-container-card {
        grid-template-columns: 1fr;
    }
    .modal-left-promise {
        display: none !important;
    }
    .modal-wrapper {
        max-width: 450px;
        margin: 6vh auto;
    }
}

/* Left Promise Column */
.modal-left-promise {
    background-color: #ebeffa;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.promise-header {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

.promise-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #0b1a30;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
}

.promise-line {
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 12px auto 0;
}

.promise-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
    width: 100%;
}

.promise-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.promise-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promise-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #0b1a30;
    letter-spacing: 1.5px;
    line-height: 1.4;
}

/* Right Form Column */
.modal-right-form {
    padding: 40px 45px 30px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 480px) {
    .modal-right-form {
        padding: 30px 20px;
    }
}

.form-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    text-align: center;
}

.modal-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.modal-partner-sub {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 8px;
    line-height: 1.3;
}

.form-title-section {
    text-align: center;
    margin-bottom: 25px;
}

.form-title-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.title-line {
    width: 40px;
    height: 1px;
    background-color: var(--primary-color);
    margin: 8px auto 0;
}

.enquiry-form-new {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.enquiry-form-new .form-input-group {
    width: 100%;
}

.enquiry-form-new .form-field-control {
    width: 100%;
    height: 44px;
    padding: 0 15px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-color);
    background-color: #f0f3fa;
    border: none;
    border-radius: 8px;
    outline: none;
    transition: var(--transition);
}

.enquiry-form-new select.form-field-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2378716c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.1rem;
    padding-right: 2.25rem;
    cursor: pointer;
    color: #4a5568;
}

.enquiry-form-new select.form-field-control:invalid,
.enquiry-form-new select.form-field-control option[value=""] {
    color: #999999;
}

.enquiry-form-new input.form-field-control::placeholder {
    color: #999999;
    font-weight: 500;
}

.enquiry-form-new .form-field-control:hover {
    background-color: #e5eaf5;
}

.enquiry-form-new .form-field-control:focus {
    background-color: #ffffff;
    box-shadow: 0 0 0 1.5px var(--primary-color);
}

/* Custom Phone Selector Grid */
.phone-input-group {
    display: flex;
    align-items: center;
    width: 100%;
    height: 44px;
    background-color: #f0f3fa;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.phone-input-group:hover {
    background-color: #e5eaf5;
}

.phone-input-group:focus-within {
    background-color: #ffffff;
    box-shadow: 0 0 0 1.5px var(--primary-color);
}

.phone-country-select {
    width: 80px;
    height: 100%;
    border: none;
    background: transparent;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a5568;
    padding-left: 12px;
    cursor: pointer;
    appearance: none;
    outline: none;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.phone-number-input {
    flex: 1;
    height: 100%;
    border: none;
    background: transparent;
    padding: 0 15px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-color);
    outline: none;
}

.phone-number-input::placeholder {
    color: #999999;
}

/* Consent check */
.consent-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 5px;
    text-align: left;
}

.form-checkbox {
    width: 15px;
    height: 15px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    border-radius: 3px;
    flex-shrink: 0;
}

.consent-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    line-height: 1.5;
    cursor: pointer;
}

.consent-label a {
    text-decoration: underline;
    color: var(--secondary-color);
}

.consent-label a:hover {
    color: var(--primary-color);
}

/* Submit button overrides */
.submit-button-new {
    background-color: var(--primary-color);
    color: #ffffff;
    border: 1px solid var(--primary-color);
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(197, 168, 128, 0.2);
    width: 100%;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button-new:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(197, 168, 128, 0.3);
}

/* Form Footer features */
.form-features-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
    margin-top: 25px;
}

.footer-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-feature-item i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.footer-feature-item span {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed #25d366;
    opacity: 0.4;
    animation: rotate-pulse 10s linear infinite;
}

@keyframes rotate-pulse {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 0.6;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.4;
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    color: #FFF;
}

/* Scroll Reveal Animations (Scroll Observer Fallback / Native CSS combined) */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

/* When visible */
.is-visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Stagger Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.25s; }
.delay-3 { transition-delay: 0.4s; }
.delay-4 { transition-delay: 0.55s; }
.delay-5 { transition-delay: 0.7s; }

/* Native CSS Scroll-Driven Animations (Modern Browsers) */
@supports ((animation-timeline: view()) and (animation-range: entry)) {
    @media (prefers-reduced-motion: no-preference) {
        /* Parallax Hero Image */
        .hero {
            view-timeline: --hero-timeline block;
        }
        .hero-slideshow {
            animation: hero-scroll-parallax linear forwards;
            animation-timeline: --hero-timeline;
            animation-range: exit 0% exit 100%;
        }
        @keyframes hero-scroll-parallax {
            to {
                transform: translateY(180px);
            }
        }
    }
}

/* Native CSS scroll progress bar */
@supports ((animation-timeline: scroll()) and (animation-range: entry)) {
    .scroll-progress-bar {
        animation: progress-grow linear forwards;
        animation-timeline: scroll();
    }
    @keyframes progress-grow {
        from { width: 0%; }
        to { width: 100%; }
    }
}
/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    /* Navigation Drawer & Toggle */
    .nav-toggle {
        display: block;
    }
    .nav-actions {
        display: none;
    }
    .mobile-only {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 100px 30px;
        gap: 20px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.3s cubic-bezier(0.77, 0.2, 0.05, 1), visibility 0.3s;
        z-index: 1002;
        visibility: hidden;
    }
    .nav-links.active {
        right: 0;
        visibility: visible;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links a {
        display: block;
        padding: 12px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--border-color);
    }
    .nav-links a::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .hero-text p {
        font-size: 1.15rem;
    }
    .quick-details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .price-card {
        padding: 50px 24px;
    }
    .landmark-group {
        padding: 30px;
    }
    .location-timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
    .hero-form-container {
        padding: 40px 25px;
        margin: 5vh auto;
    }
    .close {
        top: 15px;
        right: 20px;
        width: 38px;
        height: 38px;
        font-size: 24px;
    }
}

