/* ============================================
   TULIP MELROSE - LUXURY REAL ESTATE
   Premium Landing Page Styles
   ============================================ */

/* ==================== VARIABLES ==================== */
:root {
    --primary: #9E5A6E;
    --primary-dark: #7A4555;
    --primary-light: #C4899A;
    --gold: #D4AF37;
    --gold-light: #E8D4A0;
    --dark: #1a1a1a;
    --light: #f8f6f4;
    --gray: #6c757d;
    --white: #ffffff;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.2);

    --transition-fast: 0.3s ease;
    --transition-normal: 0.4s ease;
    --transition-slow: 0.6s ease;
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Touch-friendly improvements */
a, button {
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal scroll */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* ==================== PRELOADER ==================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 150px;
    height: 150px;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
}

.btn-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(158, 90, 110, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--dark);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--gold);
    color: var(--dark);
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgb(158 90 110);
    box-shadow: 0 2px 30px rgba(0,0,0,0.1);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    transition: var(--transition-fast);
}

.header.scrolled .logo-text {
    color: var(--primary);
}

.logo-text span {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 300;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    position: relative;
}

.header.scrolled .nav-link {
    color: var(--white);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.header.scrolled .header-phone {
    color: var(--white);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
}

.header.scrolled .mobile-toggle span {
    background: var(--white);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
}

.mobile-nav-links {
    text-align: center;
}

.mobile-nav-links a {
    display: block;
    color: var(--white);
    font-size: 1.5rem;
    padding: 15px;
    text-decoration: none;
    font-family: var(--font-heading);
}

.mobile-nav-links a:hover {
    color: var(--gold);
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Swiper Hero Slider */
.hero-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-swiper .swiper-wrapper {
    width: 100% !important;
    height: 100% !important;
}

.hero-swiper .swiper-slide {
    width: 100% !important;
    height: 100% !important;
}

.hero-slide {
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(158, 90, 110, 0.55) 100%);
    z-index: 1;
}

.hero-slide-1 {
    background-image: url('../../tulip/hero1.jpg') !important;
}

.hero-slide-2 {
    background-image: url('../../tulip/hero2.jpg') !important;
}

.hero-slide-3 {
    background-image: url('../../tulip/hero3.jpg') !important;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 100px;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
    padding: 10px 24px;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 35px;
    color: var(--gold);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1;
    letter-spacing: -1px;
}

.hero-title span {
    display: block;
    font-size: 1.6rem;
    font-family: var(--font-body);
    letter-spacing: 10px;
    text-transform: uppercase;
    font-weight: 300;
    margin-top: 20px;
    color: var(--gold-light);
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 300;
    margin: 35px 0;
    opacity: 0.9;
    letter-spacing: 0.5px;
    line-height: 1.7;
    max-width: 540px;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    margin-bottom: 20px;
    padding: 12px 0;
    border-left: 3px solid var(--gold);
    padding-left: 15px;
}

.hero-location i {
    color: var(--gold);
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 50px;
    width: 512px;
    margin-top: 55px;
    padding-top: 45px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold);
    font-weight: 600;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.75;
    margin-top: 8px;
}

/* Slider Controls */
.hero-slider-controls {
    position: absolute;
    bottom: 50px;
    right: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 20;
}

/* Arrow Navigation */
.slider-arrow {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    color: var(--white);
    font-size: 1rem;
    aspect-ratio: 1 / 1;
    padding: 0;
    flex-shrink: 0;
}

.slider-arrow:hover {
    background: var(--gold);
    color: var(--dark);
    transform: scale(1.1);
}

.slider-arrow:active {
    transform: scale(0.95);
}

/* Swiper Pagination */
.slider-pagination {
    display: flex;
    gap: 10px;
}

.slider-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
}

.slider-pagination .swiper-pagination-bullet-active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}

/* ==================== ENQUIRY FORM ==================== */
.enquiry-form-card {
    background: var(--white);
    padding: 40px;
    box-shadow: var(--shadow-xl);
    width: 100%;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.form-header p {
    color: var(--gray);
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(158, 90, 110, 0.1);
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition-normal);
    font-family: var(--font-body);
}

.form-submit:hover {
    background: var(--gold);
    color: var(--dark);
}

.rera-badge {
    margin-top: 20px;
    padding: 15px;
    background: #f5f5f5;
    text-align: center;
    font-size: 0.7rem;
    color: var(--gray);
    line-height: 1.5;
}

.rera-badge strong {
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

/* ==================== SECTION STYLES ==================== */
.section {
    padding: 120px 0;
}

.section-light {
    background: var(--light);
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-primary {
    background: var(--primary);
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    padding: 0 30px;
}

.section-badge::before,
.section-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--gold);
}

.section-badge::before { left: 0; }
.section-badge::after { right: 0; }

.section-dark .section-badge {
    color: var(--gold);
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.7);
}

/* ==================== OVERVIEW SECTION ==================== */
#overview {
    background-image: url('../../tulip/tulip-gold.png');
    background-size: 180px;
    background-position: center;
    background-repeat: repeat;
    position: relative;
}

#overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.93);
    z-index: 0;
}

#overview .container {
    position: relative;
    z-index: 1;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.overview-card {
    background: linear-gradient(145deg, #ffffff 0%, #fdfcfa 100%);
    padding: 50px 30px;
    text-align: center;
    box-shadow:
        0 10px 40px rgba(158, 90, 110, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.overview-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px rgba(158, 90, 110, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--primary) 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.overview-card:hover::before {
    transform: scaleX(1);
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.overview-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--gold) 0%, #c9a227 100%);
    border-radius: 50%;
    position: relative;
    box-shadow:
        0 8px 25px rgba(212, 175, 55, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.overview-card:hover .overview-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 12px 35px rgba(212, 175, 55, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.overview-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--gold);
    opacity: 0.3;
    transform: scale(1.2);
}

.overview-icon i {
    font-size: 2rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.overview-card h4 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.overview-card p {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text h3 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 25px;
}

.overview-text p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 20px;
}

.overview-tagline {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--primary);
    margin-top: 30px;
}

.overview-image {
    position: relative;
    overflow: hidden;
}

.overview-image img {
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.overview-image:has(.platinum-logo) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview-image img.platinum-logo {
    width: 320px;
    height: 320px;
    object-fit: contain;
    display: block;
    padding: 40px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f6f2 100%);
    border: none;
    position: relative;
    box-shadow:
        0 25px 50px rgba(158, 90, 110, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(212, 175, 55, 0.3);
    outline: 3px solid var(--gold);
    outline-offset: 8px;
    transition: all 0.4s ease;
}

.overview-image img.platinum-logo:hover {
    transform: scale(1.02);
    box-shadow:
        0 30px 60px rgba(158, 90, 110, 0.2),
        0 15px 30px rgba(0, 0, 0, 0.12),
        inset 0 0 0 1px rgba(212, 175, 55, 0.5);
}

.overview-image:has(.platinum-logo)::before {
    display: none;
}

.overview-image:has(.platinum-logo)::after {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    pointer-events: none;
}

.overview-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    z-index: -1;
}

/* ==================== LOCATION SECTION ==================== */
#location {
    background: linear-gradient(180deg, #f8f6f2 0%, #ffffff 100%);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.location-map {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.12),
        0 10px 25px rgba(0, 0, 0, 0.08);
}

.location-map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 550px;
}

.location-map-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.location-map:hover .location-map-wrapper img {
    transform: scale(1.05);
}

.location-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s ease-in-out infinite;
}

.location-pin i {
    font-size: 3rem;
    color: var(--primary);
    filter: drop-shadow(0 4px 8px rgba(158, 90, 110, 0.4));
}

.location-pin span {
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(158, 90, 110, 0.3);
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, -60%); }
}

.location-details {
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.06),
        0 5px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.location-details h3 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.location-category {
    margin-bottom: 35px;
    padding: 25px;
    background: linear-gradient(145deg, #fdfcfa 0%, #f8f6f2 100%);
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.location-category:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.location-category:last-child {
    margin-bottom: 0;
}

.location-category h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-category h4 i {
    color: var(--gold);
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.location-item:last-child {
    border-bottom: none;
}

.location-item:hover {
    padding-left: 10px;
}

.location-item span:first-child {
    color: var(--gray-dark);
}

.location-item span:last-child {
    color: var(--primary);
    font-weight: 600;
    background: rgba(158, 90, 110, 0.08);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
}

#thank-you {
    background-color: var(--primary-dark);
    background-image: url('../../tulip/tulip-grey.png');
    background-size: 150px;
    background-repeat: repeat;
    position: relative;
}

#thank-you::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(62, 35, 44, 0.95);
    z-index: 0;
}


/* ==================== HIGHLIGHTS SECTION ==================== */
#highlights {
    background-color: var(--primary-dark);
    background-image: url('../../tulip/tulip-grey.png');
    background-size: 150px;
    background-repeat: repeat;
    position: relative;
}

#highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(62, 35, 44, 0.95);
    z-index: 0;
}

#highlights .container {
    position: relative;
    z-index: 1;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.highlight-card {
    text-align: center;
    padding: 45px 25px;
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.highlight-card:hover {
    background: linear-gradient(145deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.05) 100%);
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(212, 175, 55, 0.1);
}

.highlight-card:hover::before {
    opacity: 1;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: relative;
    transition: all 0.4s ease;
    background: rgba(212, 175, 55, 0.05);
}

.highlight-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transform: scale(1.3);
    opacity: 0;
    transition: all 0.4s ease;
}

.highlight-card:hover .highlight-icon {
    background: linear-gradient(145deg, var(--gold) 0%, #c9a227 100%);
    border-color: var(--gold);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.highlight-card:hover .highlight-icon::after {
    opacity: 1;
    transform: scale(1.5);
}

.highlight-icon i {
    font-size: 1.8rem;
    color: var(--gold);
    transition: all 0.4s ease;
}

.highlight-card:hover .highlight-icon i {
    color: var(--dark);
}

.highlight-card h4 {
    font-size: 1.05rem;
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 500;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* ==================== SKY TERRACE SECTION ==================== */
#sky-terrace {
    background: linear-gradient(180deg, #0a1628 0%, #1a2a4a 100%);
    position: relative;
    overflow: hidden;
}

#sky-terrace::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../tulip/tulip-gold.png');
    background-size: 200px;
    background-repeat: repeat;
    opacity: 0.03;
}

#sky-terrace .section-badge {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    color: var(--gold);
}

#sky-terrace .section-title,
#sky-terrace .section-subtitle {
    color: var(--white);
}

#sky-terrace .section-subtitle {
    opacity: 0.8;
}

.sky-terrace-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sky-terrace-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(212, 175, 55, 0.1);
}

.sky-terrace-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.sky-terrace-image:hover img {
    transform: scale(1.05);
}

.sky-terrace-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    pointer-events: none;
}

.sky-terrace-features {
    color: var(--white);
}

.sky-terrace-features h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.sky-terrace-features > p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 40px;
}

.sky-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.sky-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.sky-feature:hover {
    background: linear-gradient(145deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.05) 100%);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateX(5px);
}

.sky-feature i {
    font-size: 1.5rem;
    color: var(--gold);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    flex-shrink: 0;
}

.sky-feature span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* ==================== CLUB SECTION ==================== */
#amenities {
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

#amenities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../tulip/tulip-gold.png');
    background-size: 180px;
    background-repeat: repeat;
    opacity: 0.02;
}

#amenities .container {
    position: relative;
    z-index: 1;
}

#amenities .section-badge {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    color: var(--gold);
}

#amenities .section-title,
#amenities .section-subtitle {
    color: var(--white);
}

#amenities .section-subtitle {
    opacity: 0.8;
}

/* Club Gallery */
.club-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
    margin-bottom: 50px;
}

.club-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.club-gallery-item.club-gallery-large {
    grid-row: span 2;
}

.club-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.club-gallery-item:hover img {
    transform: scale(1.1);
}

.club-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
    transition: all 0.4s ease;
}

.club-gallery-overlay i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0;
    transition: all 0.4s ease;
}

.club-gallery-item:hover .club-gallery-overlay i {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.club-gallery-item:hover .club-gallery-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.club-gallery-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.club-gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.club-gallery-large .club-gallery-overlay h3 {
    font-size: 1.8rem;
}

/* More Amenities Tags */
.club-more-amenities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.club-amenity-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.club-amenity-tag:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.club-amenity-tag i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.lightbox-image {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.lightbox-caption {
    color: white;
    font-size: 1.2rem;
    margin-top: 20px;
    text-align: center;
}

.club-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 60px;
}

.club-tag {
    background: var(--primary);
    color: var(--white);
    padding: 12px 25px;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ==================== LANDSCAPE SECTION ==================== */
#landscape {
    background: linear-gradient(180deg, #f8faf8 0%, #ffffff 100%);
    position: relative;
}

#landscape .container {
    position: relative;
    z-index: 1;
}

/* Landscape Slider Container */
.landscape-slider-container {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

/* Main Slider */
.landscape-main-slider {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.landscape-main-swiper {
    width: 100%;
    height: 550px;
    border-radius: 20px;
}

.landscape-main-slide {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.landscape-main-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.6s ease;
}

.landscape-main-slide:hover img {
    transform: scale(1.03);
}

.landscape-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: white;
}

.landscape-slide-caption h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.landscape-slide-caption p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    max-width: 600px;
}

/* Thumbnail Slider */
.landscape-thumbs-slider {
    width: 140px;
    flex-shrink: 0;
}

.landscape-thumbs-swiper {
    height: 550px;
}

.landscape-thumbs-swiper .swiper-wrapper {
    flex-direction: column;
}

.landscape-thumb {
    width: 100%;
    height: 125px;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.landscape-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.landscape-thumbs-swiper .swiper-slide-thumb-active .landscape-thumb {
    border-color: #71b280;
    box-shadow: 0 8px 25px rgba(113, 178, 128, 0.3);
}

.landscape-thumb:hover img {
    transform: scale(1.1);
}

/* Landscape Features Grid */
.landscape-features {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.landscape-feature {
    text-align: center;
    padding: 25px 15px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(113, 178, 128, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.landscape-feature:hover {
    transform: translateY(-8px);
    border-color: rgba(113, 178, 128, 0.5);
    box-shadow: 0 15px 35px rgba(113, 178, 128, 0.12);
}

.landscape-feature-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 12px;
    background: linear-gradient(145deg, #71b280 0%, #4a9c5d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(113, 178, 128, 0.25);
    transition: all 0.4s ease;
}

.landscape-feature:hover .landscape-feature-icon {
    transform: scale(1.15) rotate(5deg);
}

.landscape-feature-icon i {
    font-size: 1.2rem;
    color: white;
}

.landscape-feature h4 {
    font-size: 0.95rem;
    color: var(--dark);
    font-family: var(--font-body);
    font-weight: 600;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .landscape-slider-container {
        flex-direction: column-reverse;
    }

    .landscape-thumbs-slider {
        width: 100%;
    }

    .landscape-thumbs-swiper {
        height: auto;
    }

    .landscape-thumbs-swiper .swiper-wrapper {
        flex-direction: row;
    }

    .landscape-thumb {
        height: 100px;
    }

    .landscape-main-swiper {
        height: 450px;
    }

    .landscape-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .landscape-main-swiper {
        height: 350px;
    }

    .overview-image:has(.platinum-logo)::after{
        display: none !important;
    }

    .landscape-thumb {
        height: 80px;
    }

    .landscape-slide-caption h3 {
        font-size: 1.4rem;
    }

    .landscape-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==================== SPORTS SECTION ==================== */
#sports.section-dark {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%) !important;
}

#sports::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../../tulip/tulip-gold.png');
    background-size: 180px;
    background-repeat: repeat;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

#sports > .container {
    position: relative;
    z-index: 1;
}

.sports-carousel-container {
    position: relative;
    padding: 0 60px;
    margin-bottom: 50px;
}

.sports-carousel-swiper {
    overflow: hidden;
    padding: 30px 0;
}

.sports-carousel-swiper .swiper-slide {
    transition: all 0.4s ease;
    transform: scale(0.85);
    opacity: 0.6;
}

.sports-carousel-swiper .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
}

.sports-carousel-swiper .swiper-slide-active .sports-carousel-info {
    opacity: 1;
    transform: translateY(0);
}

.sports-carousel-card {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.sports-carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sports-carousel-card:hover img {
    transform: scale(1.08);
}

.sports-carousel-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
    pointer-events: none;
}

.sports-carousel-info {
    text-align: center;
    padding: 25px 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
}

.sports-carousel-info h4 {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 8px;
}

.sports-carousel-info p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

/* Navigation Buttons */
.sports-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sports-nav-btn:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.sports-nav-prev {
    left: 0;
}

.sports-nav-next {
    right: 0;
}

/* Sports Amenities Tags */
.sports-amenities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.sports-amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.sports-amenity-item:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.sports-amenity-item i {
    font-size: 1.1rem;
    color: var(--gold);
    transition: color 0.3s ease;
}

.sports-amenity-item:hover i {
    color: var(--dark);
}

/* ==================== RESIDENCES SECTION ==================== */
#residences {
    padding: 0;
    overflow: hidden;
}

.residence-full-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* Left Image Side */
.residence-image-side {
    position: relative;
    background: var(--dark);
}

.residence-large-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    cursor: pointer;
    overflow: hidden;
}

.residence-large-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.residence-large-image:hover img {
    transform: scale(1.05);
}

.residence-large-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, transparent 60%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

.residence-image-badge {
    position: absolute;
    bottom: 50px;
    left: 50px;
    background: rgba(255,255,255,0.95);
    padding: 20px 30px;
    border-radius: 15px;
    z-index: 5;
    font-size: 1rem;
    color: var(--gray);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.residence-image-badge span {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

/* Right Content Side */
.residence-content-side {
    background: linear-gradient(180deg, #faf9f7 0%, #f5f3f0 100%);
    display: flex;
    align-items: center;
    padding: 80px;
}

.residence-content-inner {
    max-width: 500px;
}

.residence-main-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--dark);
    margin: 15px 0;
    line-height: 1.2;
}

.residence-tagline {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Big Stats */
.residence-big-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.residence-big-stat {
    text-align: left;
}

.big-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.big-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Feature List */
.residence-feature-list {
    margin-bottom: 40px;
}

.residence-feature-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.residence-feature-row:hover {
    padding-left: 10px;
    background: rgba(158, 90, 110, 0.05);
    margin: 0 -15px;
    padding-right: 15px;
    padding-left: 15px;
}

.residence-feature-row i {
    color: var(--gold);
    font-size: 1rem;
}

.residence-feature-row span {
    font-size: 0.95rem;
    color: var(--dark);
}

/* Mini Gallery */
.residence-mini-gallery {
    display: flex;
    gap: 12px;
}

.residence-mini-thumb {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.residence-mini-thumb:hover {
    transform: translateY(-5px);
}

.residence-mini-thumb.active {
    border-color: var(--gold);
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.3);
}

.residence-mini-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* Main Image Zoom Icon */
.residence-image-zoom {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.residence-large-image:hover .residence-image-zoom {
    opacity: 1;
}

.residence-large-image img {
    transition: opacity 0.3s ease, transform 0.6s ease;
}

/* ==================== PLANS SECTION (FLOOR + MASTER) ==================== */
#plans {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
}

#plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../../tulip/tulip-gold.png');
    background-size: 180px;
    background-repeat: repeat;
    opacity: 0.03;
    pointer-events: none;
}

#plans > .container {
    position: relative;
    z-index: 1;
}

/* Plan Tabs */
.plan-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.plan-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    padding: 18px 35px;
    border-radius: 50px;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-tab i {
    font-size: 1.2rem;
}

.plan-tab:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.plan-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

/* Plan Contents */
.plan-content {
    display: none;
}

.plan-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Floor Plan Grid */
.floor-plan-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.floor-plan-image-wrapper {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.floor-plan-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.floor-plan-image-wrapper:hover .floor-plan-img {
    transform: scale(1.02);
}

.floor-plan-overlay {
    position: absolute;
    top: 25px;
    left: 25px;
    right: 25px;
    bottom: 25px;
    background: rgba(0,0,0,0.5);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--white);
}

.floor-plan-image-wrapper:hover .floor-plan-overlay {
    opacity: 1;
}

.floor-plan-overlay i {
    font-size: 2.5rem;
    color: var(--gold);
}

.floor-plan-overlay span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.floor-plan-label {
    position: absolute;
    top: 40px;
    right: 40px;
    background: var(--primary);
    padding: 12px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.plan-type {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.plan-area {
    display: block;
    font-size: 0.8rem;
    color: var(--gold);
    margin-top: 3px;
}

/* Floor Plan Info */
.floor-plan-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.floor-plan-desc {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.floor-plan-rooms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.plan-room-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.05);
    padding: 15px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.plan-room-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
}

.plan-room-item i {
    color: var(--gold);
    font-size: 1rem;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold) 0%, #c9a227 100%);
    color: var(--dark);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* Master Plan Grid */
.master-plan-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.master-plan-visual-card {
    background: rgba(255,255,255,0.05);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
}

.master-plan-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--gold) 0%, #c9a227 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.master-plan-icon i {
    font-size: 2.2rem;
    color: var(--dark);
}

.master-plan-visual-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 8px;
}

.master-plan-visual-card > p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.master-quick-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.quick-stat {
    text-align: center;
}

.qs-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.qs-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    margin-top: 5px;
}

/* Master Plan Features */
.master-plan-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.master-feature {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 20px 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.master-feature:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(10px);
    border-color: var(--gold);
}

.mf-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.mf-text h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 3px;
}

.mf-text p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* ==================== SPECIFICATIONS ==================== */
#specifications {
    background: linear-gradient(180deg, #faf9f7 0%, #f5f3f0 100%);
    position: relative;
}

#specifications::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../../tulip/tulip-gold.png');
    background-size: 200px;
    background-repeat: repeat;
    opacity: 0.02;
    pointer-events: none;
}

#specifications > .container {
    position: relative;
    z-index: 1;
}

.specs-wrapper {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* Specs Navigation */
.specs-nav {
    background: linear-gradient(180deg, var(--primary) 0%, #7a4555 100%);
    padding: 30px 0;
    display: flex;
    flex-direction: column;
}

.specs-nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.specs-nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.specs-nav-item:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.specs-nav-item.active {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.specs-nav-item.active::before {
    transform: scaleY(1);
}

.specs-nav-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.specs-nav-item.active .specs-nav-icon {
    background: var(--gold);
    color: var(--dark);
}

/* Specs Content Area */
.specs-content-area {
    padding: 40px;
}

.specs-panel {
    display: none;
}

.specs-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.specs-panel-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gold);
}

.specs-panel-header i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, #7a4555 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
}

.specs-panel-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--dark);
}

/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.spec-card {
    background: #faf9f7;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.spec-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.spec-card-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.spec-card-value {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.5;
}

/* ==================== ABOUT SECTION ==================== */
#about {
    position: relative;
    overflow: hidden;
}

.about-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../../tulip/tulip-gold.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 600px;
    opacity: 0.04;
    pointer-events: none;
}

/* About Hero */
.about-hero {
    text-align: center;
    margin-bottom: 60px;
}

.about-logo-wrapper {
    margin-bottom: 30px;
}

.about-logo {
    width: 160px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3));
}

.about-main-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.about-tagline {
    font-size: 1.2rem;
    color: var(--gold);
    font-style: italic;
}

/* About Stats Bar */
.about-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 40px 60px;
    margin-bottom: 70px;
}

.about-stat-item {
    text-align: center;
    padding: 0 50px;
}

.about-stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.4;
}

.about-stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.4), transparent);
}

/* About Content Grid */
.about-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 70px;
}

.about-narrative h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 20px;
}

.about-narrative h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.about-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-narrative p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 18px;
}

/* Value Cards */
.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateX(10px);
}

.value-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--gold), #c9a227);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.2rem;
}

.value-content h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
}

.value-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Awards Section */
.about-awards {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 40px 50px;
    text-align: center;
}

.awards-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.awards-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.award-item i {
    font-size: 1.5rem;
    color: var(--gold);
}

.award-item span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* ==================== CONTACT SECTION ==================== */
#contact {
    background: linear-gradient(180deg, #f8f6f2 0%, #fff 100%);
}

/* Quick Action Buttons */
.contact-quick-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.quick-action-btn i {
    font-size: 1.2rem;
}

.quick-action-btn.call {
    background: var(--primary);
    color: var(--white);
}

.quick-action-btn.call:hover {
    background: #0a2540;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 44, 89, 0.3);
}

.quick-action-btn.whatsapp {
    background: #25D366;
    color: var(--white);
}

.quick-action-btn.whatsapp:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.quick-action-btn.email {
    background: var(--gold);
    color: var(--dark);
}

.quick-action-btn.email:hover {
    background: #c9a227;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Main Grid */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

/* Contact Info Card */
.contact-info-card {
    background: var(--primary);
    border-radius: 20px;
    padding: 40px;
    color: var(--white);
    height: 100%;
}

.contact-info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-header i {
    font-size: 2rem;
    color: var(--gold);
}

.contact-info-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.contact-detail-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.detail-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-icon i {
    color: var(--gold);
    font-size: 1.1rem;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
}

.detail-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

a.detail-value:hover {
    color: var(--gold);
}

.detail-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* RERA Badge */
.rera-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 20px;
}

.rera-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--gold), #c9a227);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rera-icon i {
    color: var(--dark);
    font-size: 1.3rem;
}

.rera-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.rera-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-weight: 600;
}

.rera-number {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    word-break: break-all;
}

.rera-full {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    word-break: break-all;
}

/* Contact Form Card */
.contact-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-card-header {
    margin-bottom: 35px;
}

.form-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.form-card-header p {
    font-size: 1rem;
    color: var(--gray);
}

/* Premium Form */
.premium-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-field label i {
    color: var(--gold);
    font-size: 0.9rem;
}

.form-field input,
.form-field textarea {
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #aaa;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--gold), #c9a227);
    color: var(--dark);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.form-submit-btn i {
    transition: transform 0.3s ease;
}

.form-submit-btn:hover i {
    transform: translateX(5px);
}

.form-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 10px;
}

.form-disclaimer i {
    color: #4CAF50;
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
    color: var(--white);
}

.footer-main {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

/* Footer Brand */
.footer-brand {
    padding-right: 30px;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.3));
}

.footer-project-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 1rem;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 15px;
}

.footer-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Footer Columns */
.footer-column h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--gold);
    position: relative;
    padding-bottom: 15px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: 0.65rem;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-links a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Footer Contact Items */
.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-contact-item i {
    width: 35px;
    height: 35px;
    min-width: 35px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
}

.footer-contact-item span,
.footer-contact-item a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--gold);
}

/* RERA Bar */
.footer-rera-bar {
    background: rgba(212, 175, 55, 0.08);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 20px 0;
}

.rera-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.rera-bar-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--gold), #c9a227);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rera-bar-icon i {
    color: var(--dark);
    font-size: 1.2rem;
}

.rera-bar-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rera-bar-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-weight: 600;
}

.rera-bar-number {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Disclaimer Section */
.footer-disclaimer-section {
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
}

.disclaimer-text {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-text strong {
    color: rgba(255, 255, 255, 0.6);
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.back-to-top {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.back-to-top i {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    color: var(--gold);
}

.back-to-top:hover i {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

/* ==================== FLOATING ELEMENTS ==================== */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition-fast);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* ==================== RESPONSIVE ==================== */

/* Large Tablets & Small Laptops */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .enquiry-form-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .section {
        padding: 100px 0;
    }

    .section-title {
        font-size: 2.8rem;
    }

    /* Overview tablet */
    .overview-content {
        gap: 50px;
    }

    /* Location tablet */
    .location-grid {
        gap: 40px;
    }

    /* Highlights tablet */
    .highlights-grid {
        gap: 25px;
    }

    /* Sky Terrace tablet */
    .sky-terrace-wrapper {
        gap: 50px;
    }

    /* Club tablet */
    .club-amenities {
        gap: 20px;
    }

    /* Footer tablet */
    .footer-grid {
        gap: 40px;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }

    .section {
        padding: 90px 0;
    }

    .section-title {
        font-size: 2.6rem;
    }

    /* Hero tablet */
    .hero-title {
        font-size: 3.2rem;
    }

    .hero-stats {
        gap: 40px;
    }

    /* Overview tablet */
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .overview-card {
        padding: 30px;
    }

    /* Location tablet */
    .location-image-side {
        min-height: 400px;
    }

    .location-badges {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Highlights tablet */
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-card {
        padding: 35px 25px;
    }

    /* Sky Terrace tablet */
    .sky-terrace-wrapper {
        grid-template-columns: 1fr;
    }

    .sky-terrace-image {
        height: 400px;
        display: none;
    }

    .location-details{
        padding:20px !important;
    }

    .hide-mobile{
        display: none;
    }

    .sky-terrace-features {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Club tablet */
    .club-amenities {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Landscape tablet */
    .landscape-features {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Sports tablet */
    .sports-carousel-swiper {
        padding: 0 60px;
    }

    .sports-carousel-card {
        height: 320px;
    }

    /* Residences tablet */
    .residence-full-wrapper {
        grid-template-columns: 1fr;
    }

    .residence-large-image {
        min-height: 60vh;
    }

    .residence-big-stats {
        justify-content: flex-start;
        gap: 40px;
    }

    .residence-mini-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Plans tablet */
    .floor-plan-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .floor-plan-image-wrapper {
        max-height: 450px;
    }

    .master-plan-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Club tablet */
    .club-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 250px 250px 250px;
    }

    .club-gallery-item.club-gallery-large {
        grid-row: span 2;
    }

    .club-gallery-overlay h3 {
        font-size: 1.2rem;
    }

    .club-more-amenities {
        gap: 12px;
    }

    .club-amenity-tag {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    /* Specifications tablet */
    .specs-wrapper {
        grid-template-columns: 200px 1fr;
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About tablet */
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-stats-bar {
        padding: 35px 50px;
    }

    /* Contact tablet */
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-quick-actions {
        gap: 15px;
    }
}

/* Small Tablets & Large Phones */
@media (max-width: 992px) {
    .nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .overview-grid,
    .highlights-grid,
    .landscape-features,
    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .overview-content,
    .location-grid,
    .about-content-grid,
    .contact-main-grid,
    .residences-showcase {
        grid-template-columns: 1fr;
    }

    .contact-quick-actions {
        flex-wrap: wrap;
    }

    .quick-action-btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .contact-form-card {
        padding: 35px;
    }

    .about-stats-bar {
        flex-wrap: wrap;
        padding: 30px 40px;
        gap: 20px;
    }

    .about-stat-item {
        padding: 15px 30px;
    }

    .about-stat-divider {
        display: none;
    }

    .about-stat-number {
        font-size: 2.5rem;
    }

    .awards-grid {
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .rera-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .club-amenities {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 100px;
        padding-bottom: 120px;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .hero-title span {
        font-size: 1.2rem;
        letter-spacing: 6px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin: 25px 0;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    .hero-stat-number {
        font-size: 2.5rem;
    }

    .hero-slider-controls {
        right: 50%;
        transform: translateX(50%);
        bottom: 30px;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
        min-width: 45px;
        min-height: 45px;
        max-width: 45px;
        max-height: 45px;
    }

    .overview-grid,
    .highlights-grid,
    .landscape-features,
    .amenity-grid {
        grid-template-columns: 1fr;
    }

    /* Club Gallery Mobile */
    .club-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }

    .club-gallery-item {
        height: 220px;
    }

    .club-gallery-item.club-gallery-large {
        grid-row: auto;
        height: 280px;
    }

    .club-gallery-overlay {
        padding: 20px;
    }

    .club-gallery-overlay h3 {
        font-size: 1.2rem;
    }

    .club-gallery-overlay p {
        font-size: 0.85rem;
    }

    .club-gallery-large .club-gallery-overlay h3 {
        font-size: 1.4rem;
    }

    .club-gallery-overlay i {
        font-size: 2rem;
    }

    /* Club Amenity Tags Mobile */
    .club-more-amenities {
        gap: 10px;
    }

    .club-amenity-tag {
        padding: 12px 18px;
        font-size: 0.85rem;
        gap: 8px;
    }

    .club-amenity-tag i {
        font-size: 1rem;
    }

    .sports-carousel-container {
        padding: 0 20px;
    }

    .sports-carousel-card {
        height: 280px;
    }

    .sports-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .sports-carousel-info h4 {
        font-size: 1.1rem;
    }

    .sports-amenities {
        gap: 10px;
    }

    /* Residences Responsive */
    .residence-full-wrapper {
        grid-template-columns: 1fr;
    }

    .residence-large-image {
        min-height: 50vh;
    }

    .residence-image-badge {
        bottom: 30px;
        left: 30px;
        padding: 15px 20px;
    }

    .residence-image-badge span {
        font-size: 1.5rem;
    }

    .residence-content-side {
        padding: 50px 30px;
    }

    .residence-main-title {
        font-size: 2.2rem;
    }

    .residence-big-stats {
        gap: 30px;
    }

    .big-number {
        font-size: 2.5rem;
    }

    /* Plans Section Responsive */
    .plan-tabs {
        flex-direction: column;
        gap: 10px;
    }

    .plan-tab {
        justify-content: center;
        padding: 15px 25px;
    }

    .floor-plan-grid,
    .master-plan-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .floor-plan-rooms-grid {
        grid-template-columns: 1fr;
    }

    .floor-plan-label {
        top: 35px;
        right: 35px;
        padding: 10px 15px;
    }

    .plan-type {
        font-size: 1.1rem;
    }

    .master-plan-visual-card {
        padding: 35px 25px;
    }

    .master-quick-stats {
        gap: 20px;
    }

    .qs-num {
        font-size: 1.6rem;
    }

    /* Specifications Responsive */
    .specs-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .specs-nav {
        flex-direction: row;
        overflow-x: auto;
        padding: 15px;
        gap: 10px;
    }

    .specs-nav-item {
        flex-direction: column;
        padding: 15px 20px;
        min-width: 100px;
        text-align: center;
        gap: 8px;
        border-radius: 10px;
    }

    .specs-nav-item::before {
        display: none;
    }

    .specs-nav-item.active {
        background: var(--gold);
        color: var(--dark);
    }

    .specs-nav-item.active .specs-nav-icon {
        background: rgba(0,0,0,0.1);
        color: var(--dark);
    }

    .specs-nav-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .specs-nav-item span {
        font-size: 0.8rem;
    }

    .specs-content-area {
        padding: 25px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .specs-panel-header h3 {
        font-size: 1.4rem;
    }

    .sports-amenity-item {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .club-amenities {
        grid-template-columns: 1fr;
    }

    .spec-list {
        grid-template-columns: 1fr;
    }

    .about-main-title {
        font-size: 2.2rem;
    }

    .about-stats-bar {
        flex-direction: column;
        padding: 30px 20px;
    }

    .about-stat-item {
        padding: 15px 0;
    }

    .about-stat-number {
        font-size: 2.2rem;
    }

    .value-card {
        padding: 20px;
    }

    .value-card:hover {
        transform: none;
    }

    .about-awards {
        padding: 30px 20px;
    }

    .awards-grid {
        flex-direction: column;
        gap: 20px;
    }

    /* Contact Responsive */
    .contact-quick-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .quick-action-btn {
        justify-content: center;
    }

    .contact-info-card {
        padding: 30px;
    }

    .contact-form-card {
        padding: 30px;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .form-card-header h3 {
        font-size: 1.5rem;
    }

    .form-submit-btn {
        padding: 16px 30px;
        font-size: 1rem;
    }

    .rera-badge {
        flex-direction: column;
        text-align: center;
    }

    .footer-main {
        padding: 60px 0 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-column h4 {
        text-align: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
        text-align: left;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .back-to-top span {
        display: none;
    }

    .header-cta {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding-top: 90px;
        padding-bottom: 100px;
    }

    .section-badge::before{
        left: -15px;
    }

    .section-badge::after{
        right: -15px;
    }

    .sky-terrace-content{
        gap:0px !important;
    }

    .sky-feature-grid{
        gap:10px !important;
    }

    .sky-feature{
        gap:0px !important;
    }


    .hero-badge {
        padding: 8px 16px;
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title span {
        font-size: 1rem;
        letter-spacing: 4px;
        margin-top: 15px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-location {
        font-size: 0.9rem;
    }

    .hero-stats {
        width: 100%;

    }

    .hero-stat-number {
        font-size: 2rem;
    }

    .hero-stat-label {
        font-size: 0.7rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        max-width: 40px;
        max-height: 40px;
        font-size: 0.9rem;
    }

    .hero-slider-controls {
        gap: 12px;
    }

    .enquiry-form-card {
        padding: 30px 20px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .section-badge {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    /* Overview 480px */
    .overview-card {
        padding: 25px;
    }

    .overview-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .overview-card h3 {
        font-size: 1.1rem;
    }

    /* Location 480px */
    .location-badge {
        padding: 25px;
    }

    .location-badge i {
        font-size: 1.5rem;
    }

    .location-badge h4 {
        font-size: 1rem;
    }

    /* Highlights 480px */
    .highlight-card {
        padding: 30px 20px;
    }

    .highlight-icon {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }

    .highlight-number {
        font-size: 2rem;
    }

    /* Sky Terrace 480px */
    .sky-terrace-features {
        grid-template-columns: 1fr;
    }

    .sky-feature-icon {
        width: 45px;
        height: 45px;
    }

    /* Club 480px */
    .club-gallery-item {
        height: 180px;
    }

    .club-gallery-item.club-gallery-large {
        height: 220px;
    }

    .club-gallery-overlay {
        padding: 15px;
    }

    .club-gallery-overlay h3 {
        font-size: 1rem;
    }

    .club-gallery-overlay p {
        font-size: 0.8rem;
    }

    .club-gallery-overlay i {
        font-size: 1.5rem;
    }

    .club-amenity-tag {
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    .club-amenity-tag i {
        font-size: 0.9rem;
    }

    /* Landscape 480px */
    .landscape-feature {
        padding: 25px 20px;
    }

    /* Sports 480px */
    .sports-carousel-card {
        height: 240px;
    }

    .sports-carousel-info {
        padding: 15px;
    }

    .sports-carousel-info h4 {
        font-size: 1rem;
    }

    .sports-carousel-info p {
        font-size: 0.85rem;
    }

    .sports-amenity-item {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    /* Residences 480px */
    .residence-large-image {
        min-height: 40vh;
    }

    .residence-content-side {
        padding: 40px 20px;
    }

    .residence-main-title {
        font-size: 1.8rem;
    }

    .residence-tagline {
        font-size: 1rem;
    }

    .big-number {
        font-size: 2rem;
    }

    .residence-features-grid {
        grid-template-columns: 1fr;
    }

    .residence-mini-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Plans 480px */
    .plan-tab {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .floor-plan-info h3 {
        font-size: 1.4rem;
    }

    .plan-room-item {
        padding: 12px 15px;
        font-size: 0.85rem;
    }

    .master-plan-icon {
        width: 70px;
        height: 70px;
    }

    .master-plan-visual-card h3 {
        font-size: 1.4rem;
    }

    .master-feature {
        padding: 15px;
    }

    .mf-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .mf-text h4 {
        font-size: 1rem;
    }

    /* Specifications 480px */
    .specs-nav-item {
        min-width: 80px;
        padding: 12px 15px;
    }

    .specs-nav-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .specs-nav-item span {
        font-size: 0.7rem;
    }

    .specs-content-area {
        padding: 20px 15px;
    }

    .spec-card {
        padding: 15px;
    }

    .spec-card-label {
        font-size: 0.7rem;
    }

    .spec-card-value {
        font-size: 0.9rem;
    }

    /* About 480px */
    .about-logo {
        width: 80px;
    }

    .about-main-title {
        font-size: 1.8rem;
    }

    .about-tagline {
        font-size: 1rem;
    }

    .about-stat-number {
        font-size: 1.8rem;
    }

    .about-stat-label {
        font-size: 0.75rem;
    }

    .about-narrative h3 {
        font-size: 1.5rem;
    }

    .value-card {
        padding: 18px;
    }

    .value-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }

    .value-content h4 {
        font-size: 1rem;
    }

    .award-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    /* Contact 480px */
    .quick-action-btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    .contact-info-card {
        padding: 25px;
    }

    .contact-info-header h3 {
        font-size: 1.3rem;
    }

    .detail-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .detail-value {
        font-size: 1rem;
    }

    .contact-form-card {
        padding: 25px;
    }

    .form-card-header h3 {
        font-size: 1.3rem;
    }

    .form-field input,
    .form-field textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .form-submit-btn {
        padding: 14px 25px;
        font-size: 0.95rem;
    }

    /* Footer 480px */
    .footer-main {
        padding: 50px 0 30px;
    }

    .footer-logo-img {
        width: 60px;
    }

    .footer-project-name {
        font-size: 1.5rem;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
    }

    .footer-column h4 {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .rera-bar-icon {
        width: 40px;
        height: 40px;
    }

    .rera-bar-number {
        font-size: 0.8rem;
    }

    .disclaimer-text {
        font-size: 0.72rem;
    }
}

/* ==================== FLOATING ELEMENTS RESPONSIVE ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--gold), #c9a227);
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.floating-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.floating-cta i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .floating-cta {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .floating-cta span {
        display: none;
    }

    .floating-cta {
        width: 50px;
        height: 50px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }
}

/* ==================== LIGHTBOX RESPONSIVE ==================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10001;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-image {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-caption {
    color: white;
    margin-top: 20px;
    font-size: 1.1rem;
    text-align: center;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 2rem;
    }

    .lightbox-image {
        max-width: 95%;
        max-height: 70vh;
    }

    .lightbox-caption {
        font-size: 0.95rem;
    }
}

/* ==================== POPUP FORM MODAL ==================== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    position: relative;
    max-width: 450px;
    width: 100%;
    transform: translateY(-30px) scale(0.95);
    transition: all 0.3s ease;
}

.popup-overlay.active .popup-container {
    transform: translateY(0) scale(1);
}

.popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.popup-close:hover {
    background: var(--gold);
    color: var(--dark);
    transform: rotate(90deg);
}

.popup-form-card {
    border-radius: 0;
}

/* Enquire Button */
.btn-enquire {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 16px 32px;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    border-radius: 10px;
}

.btn-secondary{
    background: var(--gold);
    color: var(--dark);
}

.btn-enquire:hover {
    background: var(--gold);
    color: var(--dark);
}

.btn-enquire i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .popup-overlay {
        padding: 15px;
    }

    .popup-container {
        max-width: 100%;
    }

    .popup-close {
        top: -12px;
        right: -12px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .popup-form-card {
        padding: 30px 20px;
    }
}
