/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

button,
a,
input,
textarea,
select {
    cursor: pointer;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.scroll-animate,
.scroll-fade-up,
.scroll-fade-left,
.scroll-fade-right,
.scroll-scale {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.scroll-animate {
    transform: translateY(30px);
}

.scroll-fade-up {
    transform: translateY(50px);
}

.scroll-fade-left {
    transform: translateX(-50px);
}

.scroll-fade-right {
    transform: translateX(50px);
}

.scroll-scale {
    transform: scale(0.9);
}

.scroll-animate.animate-in,
.scroll-fade-up.animate-in,
.scroll-fade-left.animate-in,
.scroll-fade-right.animate-in {
    opacity: 1;
    transform: translate(0, 0);
}

.scroll-scale.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    --brand-navy: #0b1f3a;
    --brand-blue: #1e3a8a;
    --brand-sky: #60a5fa;
    --brand-gold: #f59e0b;
    --ink: #0f172a;
    --muted: #64748b;
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --card: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 18px 60px rgba(2, 6, 23, 0.12);
    --shadow-soft: 0 10px 30px rgba(2, 6, 23, 0.10);
    --grad-primary: linear-gradient(135deg, var(--brand-blue) 0%, #3b82f6 45%, var(--brand-sky) 100%);
    --grad-gold: linear-gradient(135deg, var(--brand-gold) 0%, #fbbf24 50%, #fde68a 100%);
    --radius: 22px;
    --radius-sm: 14px;
    --container: 1200px;
    --header-h: 78px;
    --nunito_font: "Nunito", "Inter", system-ui, -apple-system, sans-serif;
    --content-bg: #ffffff;
    --content-text: #1a1a1a;
    --content-border: rgba(255, 255, 255, 0.9);
    --content-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    --location-bg: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --location-text: #ffffff;
    --details-bg: rgba(255, 255, 255, 0.9);
    --details-border: rgba(59, 130, 246, 0.25);
    --feature-bg: rgba(59, 130, 246, 0.1);
    --feature-border: rgba(59, 130, 246, 0.2);
    --feature-text: #1f2937;
    --stat-bg: rgba(255, 255, 255, 0.9);
    --stat-border: rgba(245, 158, 11, 0.3);
    --stat-num: #f59e0b;
    --stat-label: #374151;
}

/* ========================================
   KEYFRAME ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroBottomFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFormFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes phoneRing {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30% {
        transform: rotate(-15deg);
    }

    20%,
    40% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(0deg);
    }
}

@keyframes downloadBounce {
    0% {
        transform: translateY(-3px);
    }

    50% {
        transform: translateY(3px);
    }

    100% {
        transform: translateY(-3px);
    }
}

@keyframes whatsappPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

@keyframes callShake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30% {
        transform: rotate(-12deg);
    }

    20%,
    40% {
        transform: rotate(12deg);
    }

    50% {
        transform: rotate(0deg);
    }
}

@keyframes priceShine {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4), 0 0 30px rgba(255, 215, 0, 0.3);
        transform: rotate(-1deg) scale(1);
    }

    50% {
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6), 0 0 40px rgba(255, 215, 0, 0.5);
        transform: rotate(-1deg) scale(1.03);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   BUTTONS & HOVER EFFECTS
   ======================================== */
.btn {
    padding: 1.2rem 2.5rem;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    will-change: transform;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #c9a96e 0%, #b8956a 50%, #d4af7a 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b8956a 0%, #a68659 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

.btn-submit {
    background: #ab5930;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    background: #8b4426;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(171, 89, 48, 0.4);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.brand img {

    filter: drop-shadow(2px 4px 6px white);

}

.btn-outline {
    background: transparent;
    color: #374151;
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-check-price {
    background: #aa5830;
    color: white;
    border: 1px solid #aa5830;
}

.btn-check-price:hover {
    background: #8b4426 !important;
    border-color: #8b4426 !important;
    color: #000;
}

.price-button {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.price-button::before {
    content: '→';
    position: absolute;
    right: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.price-button::after {
    content: '→';
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.price-button:hover {
    background: linear-gradient(135deg, #c9a96e 0%, #d4af37 100%);
    transform: translateX(-5px) translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.5);
}

.price-button:hover::before {
    opacity: 1;
    right: -25px;
}

.price-button:hover::after {
    margin-left: 12px;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    font-weight: 500;
    will-change: transform;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.enquire-btn {
    background: #ab5930;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.enquire-btn:hover {
    background: #8b4426;
    transform: translateY(-2px);
}

.mobile-enquire-btn {
    background: #ab5930;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-enquire-btn:hover {
    background: #8b4426;
}

.content-left {
    flex: 1;
    max-width: 32%;
    color: var(--content-text);
    padding: 30px;
    background: var(--content-bg);
    border-radius: 28px;
    border: 3px solid var(--content-border);
    box-shadow: var(--content-shadow);
    min-width: 0;
    overflow-wrap: break-word;
    text-align: center;
    position: relative;

}

.content-left h1 {
    font-size: clamp(32px, 4vw, 48px);
    margin: 0;
    font-family: "Playfair Display", serif;
    font-weight: 900;
    color: var(--content-text);
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.content-left .content-details {
    background: var(--details-bg);
    border: 2px solid var(--details-border);
    border-radius: 20px;
    padding: 7px 24px;
    max-width: 360px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    margin: 10px auto;
}

.content-left .content-details p {
    font-size: 15px;
    margin: 0;
    color: var(--feature-text);
    font-weight: 500;
    line-height: 1.5;
}

.content-left .highlight-features {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.content-left .highlight-features .feature-item {
    padding: 8px 16px;
    justify-content: center;
    width: 340px;
    background: var(--feature-bg);
    border: 1px solid var(--feature-border);
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.content-left .highlight-features .feature-item span {
    font-size: 14px;
    text-align: center;
    color: var(--feature-text);
    font-weight: 500;
    line-height: 1.4;
}

.content-left .subhead {
    font-size: 18px;
    margin: 0;
    color: var(--feature-text);
    font-weight: 600;
    position: relative;
    z-index: 1;
    padding-top: 10px;
}

.content-left .stats {
    justify-content: center;
    margin: 7px 0;
}

.content-left .stat {
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    position: relative;
    z-index: 1;
    text-align: center;
}

.content-left .stat .num {
    font-size: 24px;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    color: var(--content-text);
    margin: 0;
    display: block;
}

.content-left .hero-actions {
    justify-content: center;
    margin: 0;
    position: relative;
    z-index: 1;
}

.form-container {
    flex: 0 0 450px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--ink);
    max-width: 100%;
    min-width: 0;
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header h2 {
    font-size: 30px;
    font-weight: bold;
    color: var(--ink);
    margin: 0 0 10px;
}

.form-header p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-container input,
.form-container textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #FAFAFA;
    box-sizing: border-box;
}

.form-container input:focus,
.form-container textarea:focus {
    outline: none;
    border-color: var(--brand-gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-container textarea {
    min-height: 80px;
    resize: vertical;
}

.form-container .btn {
    width: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    color: #000;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease-out;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.form-container .btn:hover {
    background: linear-gradient(135deg, #c9a96e 0%, #d4af37 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(201, 169, 110, 0.5);
}

/* ========================================
   CARD HOVER EFFECTS
   ======================================== */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 46px;
    align-items: center;
}

/* ========================================
   NAVIGATION HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    will-change: background, box-shadow;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
}

.header.scrolled .nav-links li a {
    color: #333;
}

.header.scrolled .phone-link {
    color: #333;
    border-color: #c9a96e;

}

.nav {
    padding: 0px 2.4rem 0 4rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 10;
}

.logo img {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: all 0.3s ease;
    will-change: transform;
}

.nav-links {
    display: none;
    list-style: none;
    gap: 1.4rem;
    align-items: center;
    margin: 0;
}


.nav-links li a {
    text-decoration: none;
    color: #f1f1f1e6;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #c9a96e;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a:hover {
    color: #c9a96e;
}

.nav-links li a.active {
    color: #c9a96e;
}

.nav-cta {
    display: none;
    align-items: center;
    gap: 1rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #f1f1f1e6;
    font-weight: 500;
    transition: color 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
}

.phone-link:hover {
    color: #c9a96e;
    border-color: #c9a96e;
}

.phone-link .icon {
    animation: phoneRing 1.5s ease-in-out infinite;
}

.enquire-btn {
    background: #ab5930;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.enquire-btn:hover {
    background: #8b4426;
    transform: translateY(-2px);
}

.download-icon {
    display: inline-block;
    animation: downloadBounce 0.8s ease-in-out infinite;
}

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-brochure-btn {
    background: #ab5930;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.mobile-brochure-btn:hover {
    background: #8b4426;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(-10px);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-content a {
    text-decoration: none;
    color: rgba(51, 51, 51, 0.8);
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-menu-content a:hover {
    color: #c9a96e;
}

.mobile-menu hr {
    border: none;
    height: 1px;
    background: #e5e5e5;
}

.mobile-phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #333;
}

/* ========================================
   ICONS
   ======================================== */
.icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.icon-menu {
    width: 30px;
    height: 40px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    position: relative;
    overflow: hidden;
}

@keyframes heroZoom {
    0% {
        background-size: 100%;
    }

    50% {
        background-size: 110%;
    }

    100% {
        background-size: 100%;
    }
}



.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-controls:hover {
    background: rgba(255, 255, 255, 0.4);
}

.carousel-prev {
    left: 2rem;
}

.carousel-next {
    right: 2rem;
}

.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
}

.indicator.active {
    width: 32px;
    border-radius: 4px;
    background: white;
}

.mobile-hero-image {
    display: none;
    width: 100%;
    height: 21rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 80px;
    transition: all 0.5s ease;
}

.mobile-rera-logo {
    position: absolute;
    top: 95px;
    left: 50px;
    z-index: 10;
}

.mobile-rera-logo img {
    height: 100px !important;
    width: auto;
    object-fit: contain;
        filter: drop-shadow(2px 4px 6px black) !important;

}



/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    background: #a9a9a92e;
    padding: 0.5rem 1rem 2rem 1rem;
    overflow-x: hidden;
}

.about-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 2rem;
    color: #333;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.col {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1 1 calc(25% - 0.75rem);
    min-width: 0;
}

.col .icon,
.col .icons {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.col div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
    min-width: 0;
}

.col h3 {
    font-size: 14px;
    font-weight: 600;
    color: #ab5930;
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.col p {
    font-size: 12px;
    color: #666;
    margin: 0 0 0 0.25rem;
    line-height: 1.4;
    word-break: break-word;
}



.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-images2 {
    display: none;
}


.about-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ab5930;
}

.about-content h1 {
    font-size: 24px;
    font-weight: 600;
    color: #ab5930;
    padding-bottom: 10px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


/* ========================================
   HIGHLIGHTS SECTION
   ======================================== */
.highlights-section {
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #f9fafb 0%, #e0f2fe 100%);
}

.highlights-container {
    max-width: 1200px;
    margin: 0 auto;
}

.highlights-header {
    text-align: center;
    margin-bottom: 2rem;
}

.highlights-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.highlights-subtitle {
    color: #6b7280;
    max-width: 32rem;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.6;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.highlight-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}


.highlight-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    display: inline-flex;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.highlight-icon.blue {
    background: #3b82f6;
}

.highlight-icon.green {
    background: #10b981;
}

.highlight-icon.emerald {
    background: #059669;
}

.highlight-icon.orange {
    background: #f97316;
}

.highlight-icon.purple {
    background: #8b5cf6;
}

.highlight-icon.red {
    background: #ef4444;
}

.highlight-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.highlight-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.highlight-description {
    color: #6b7280;
    line-height: 1.6;
}

/* ========================================
   RESIDENCES SECTION
   ======================================== */
.residences-section {
    padding: 2rem 1rem;
}

.residences-container {
    max-width: 1200px;
    margin: 0 auto;
}

.residences-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.residences-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.residence-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.residence-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.2), transparent);
    transition: left 0.6s ease;
}

.residence-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.residence-card:hover::after {
    left: 100%;
}

.residence-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.residence-card:hover .residence-image {
    transform: scale(1.1);
}

.residence-content {
    padding: 1.5rem;
}

.residence-type {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.residence-description {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.price-button {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.price-button::after {
    content: '→';
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.price-button:hover {
    background: linear-gradient(135deg, #c9a96e 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.5);
}

.price-button:hover::after {
    margin-left: 12px;
}

/* ========================================
   AMENITIES SECTION
   ======================================== */
.amenities-section {
    padding: 2rem 1rem;
    background: #f9fafb;
}

.amenities-container {
    max-width: 1200px;
    margin: 0 auto;
}

.amenities-header {
    text-align: center;
    margin-bottom: 2rem;
}

.amenities-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.amenities-subtitle {
    color: #6b7280;
    max-width: 32rem;
    margin: 0 auto;
    font-size: 1.125rem;
}

.amenities-slider {
    position: relative;
    margin-bottom: 2rem;
}

.amenities-main-image {
    position: relative;
    height: 24rem;
    overflow: hidden;
    border-radius: 0.5rem;
}

.amenities-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
    position: relative;
}

.amenities-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.amenities-image-title {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    z-index: 10;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.amenities-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.amenities-nav-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.amenities-prev {
    left: 1rem;
}

.amenities-next {
    right: 1rem;
}

.amenities-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.amenities-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amenities-indicator.active {
    width: 32px;
    border-radius: 4px;
    background: #c9a96e;
}

.amenities-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    width: 100%;
}

.amenity-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 5rem;
}

.amenity-thumbnail:hover {
    opacity: 0.8;
}

.amenity-thumbnail.active {
    border: 2px solid #c9a96e;
    box-shadow: 0 0 0 2px #c9a96e;
}

.amenity-thumbnail-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.amenity-thumbnail-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.amenity-thumbnail:hover .amenity-thumbnail-bg::before {
    background: rgba(0, 0, 0, 0.4);
}

.amenity-thumbnail-title {
    position: absolute;
    bottom: 0.25rem;
    left: 0.25rem;
    right: 0.25rem;
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ========================================
   LOCATION SECTION
   ======================================== */
.location-section {
    padding: 2rem 1rem 0 1rem;
    background: #f9fafb;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto 20px;
}

.location-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.location-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.location-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.location-list li {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.location-list li svg {
    flex-shrink: 0;
    fill: #333;
}

.location-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    filter: blur(8px);
    border: 5px solid black;
}

.location-image::before {
    content: '';
    position: absolute;
    width: 95%;
    height: 90%;
    top: 15%;
    right: -3%;
    border: 2px solid #c9a96e;
    border-radius: 0.5rem;
    z-index: -1;
}

.location-image-wrapper {
    position: relative;
}

.location-overlay-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    color: #1f2937;
    padding: 1rem 2rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.location-overlay-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 1);
    border-color: #d4af37;
}

.location-map-icon {
    transition: transform 0.3s ease;
    color: #d4af37;
}

.location-overlay-btn:hover .location-map-icon {
    transform: scale(1.15);
    color: #f4d03f;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-section {
    padding: 2rem 1rem;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.gallery-slider {
    position: relative;
    margin-bottom: 2rem;
}

.gallery-main-image {
    position: relative;
    height: 24rem;
    overflow: hidden;
    border-radius: 0.5rem;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.gallery-nav-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.gallery-prev {
    left: 1rem;
}

.gallery-next {
    right: 1rem;
}

.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.gallery-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-indicator.active {
    width: 32px;
    border-radius: 4px;
    background: #c9a96e;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.gallery-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 5rem;
}

.gallery-thumbnail:hover {
    opacity: 0.8;
}

.gallery-thumbnail.active {
    border: 2px solid #c9a96e;
    box-shadow: 0 0 0 2px #c9a96e;
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    padding: 2rem 1rem;
    background: #f9fafb;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: #6b7280;
    max-width: 32rem;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}

.form-input {
    width: 100%;
    padding: 0.8rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 6rem;
}

.form-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}



.form-disclaimer {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.75rem;
}

.contact-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.contact-info p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.contact-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.contact-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    color: #374151;
    font-size: 0.875rem;
}

.contact-features li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: #c9a96e;
    border-radius: 50%;
    margin-right: 0.75rem;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ===============================
   PREMIUM LUXURY FOOTER DESIGN
================================= */
.footer {
    background: #dbeafe;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #c9a96e, transparent);
}

.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 30px 0;
}

/* Top RERA Row */
.footer-rera,
.footer-rera-number {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: #1f2937;
    font-weight: bold;
}

.footer-rera {
    font-size: 16px;
}

.footer-rera-number {
    font-size: 14px;
}

/* 4 Column Section Layout */
.footer-content>.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 36px 0 0 65px;
    justify-items: center;
}

/* Disclaimer full width */
.footer-disclaimer {
    font-size: 13px;
    line-height: 1.8;
    text-align: justify;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    grid-column: 1 / -1;
}

.footer-copyright {
    text-align: center;
    margin-top: 25px;
    font-weight: 600;
    color: #1f2937;
}

.footer-links {
    text-align: center;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c9a96e;
}

.footer-separator {
    color: #9ca3af;
}

/* ========================================
   FLOATING ACTIONS
   ======================================== */
.floating-actions {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
    width: fit-content;
}

.floating-btn:hover {
    transform: scale(1.05);
}

.whatsapp-btn {
    background: #10b981;
    color: white;
}

.whatsapp-btn:hover {
    background: #059669;
}

.whatsapp-btn .icon {
    animation: whatsappPulse 1.2s ease-in-out infinite;
}

.call-btn {
    background: #3b82f6;
    color: white;

}

.call-btn:hover {
    background: #2563eb;
}

.call-btn .icon {
    animation: callShake 1.5s ease-in-out infinite;
}

.floating-text {
    display: none;
}

/* ========================================
   MODAL
   ======================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 64rem;
    background: linear-gradient(135deg, #1f2937 0%, #000 100%);
    border: 2px solid rgba(201, 169, 110, 0.3);
    border-radius: 1rem;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    padding: 0.5rem;
    color: white;
    background: none;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(201, 169, 110, 0.2);
}

.modal-body {
    display: flex;
    flex-direction: column;
}

.modal-image {
    display: none;
    width: 50%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.modal-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(201, 169, 110, 0.05) 100%);
}

.modal-form-container {
    width: 100%;
    padding: 2rem;
}

.modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-logo {
    width: 8rem;
    height: auto;
    object-fit: contain;
}

.modal-title {
    color: #c9a96e;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-input {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.modal-input::placeholder {
    color: #9ca3af;
}

.modal-input:focus {
    outline: none;
    border-color: #c9a96e;
}

.modal-submit {
    width: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    color: black;
    font-weight: 600;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.modal-submit:hover {
    background: linear-gradient(135deg, #c9a96e 0%, #d4af37 100%);
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.5);
}

.modal-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: 150px;
    flex-shrink: 0;
}

.brand img {
    height: 72px;
    object-fit: contain;
}


.investment-banner {
    background: transparent;
    color: white;
    text-align: center;
    padding: 0;
}

.top-badge {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 8px 20px;
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 1px black;
}

.invest-text {
    font-size: 18px;
    letter-spacing: 3px;
    font-weight: 500;
    text-shadow: 1px 1px 1px black;
}

.grade-text {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #f4c430;
    text-shadow: 0 0 4px rgba(244, 208, 63, 0.5);
}

.commercial-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.commercial-text {
    margin: 0 15px;
    font-size: 16px;
    letter-spacing: 2px;
    text-shadow: 1px 1px 1px black;
}

.line {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
}

.location-box {
    display: inline-block;
    background: white;
    color: #000;
    padding: 10px 25px;
    margin-bottom: 5px;
    font-weight: 700;
    backdrop-filter: blur(4px);
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: 500px;
    margin: 10px auto 0px;
    text-shadow: 1px 1px 1px black;
}

.feature {
    display: flex;
    text-align: center;
    max-width: 200px;
    gap: 30px;
}

.feature .icon {
    /* font-size: 28px; */
    margin-bottom: 12px;
}

.feature p {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 12px;
    line-height: 1.6;
}

.feature strong {
    display: block;
    font-weight: 600;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    margin-top: -7px;
    /* min-height: 82vh; */
    display: flex;
    align-items: flex-end;
    padding: 0;
    opacity: 0;
    animation: heroFadeIn 0.6s ease-out 0.1s forwards;
}

/* ========================================
   HERO OVERLAY SECTIONS
   ======================================== */

.hero-right-overlay {
    position: absolute;
    padding: 8px 12px;
    right: 82px;
    bottom: 160px;
    width: 420px;
    background: rgb(0 0 0 / 64%);
    border-radius: 12px;
    opacity: 0;
    transform: translateX(30px);
    animation: heroSlideIn 0.5s ease-out 0.3s forwards;
}

.hero-overlay-content {
    display: flex;
    gap: 18px;
}

.vertical-gold-line {
    border: 1px solid #C9A227;
    height: 101px;

}

.hero-text-content {
    flex: 1;
}

.hero-grade-title {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    font-weight: 700;
    color: #C9A227;
    margin: 0 0 8px 0;
    line-height: 0.95;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-commercial-text {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

.hero-location-badge {
    display: inline-block;
    border: 1px solid rgba(201, 162, 39, 0.5);
    background: rgba(201, 162, 39, 0.1);
    padding: 8px 18px;
    color: white;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-pricing-section {
    font-weight: bold;
    padding-left: 20px;
}


.hero-starting-text {
    font-size: 11px;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-price-large {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.95) 0%, rgba(247, 147, 30, 0.95) 50%, rgba(255, 215, 0, 0.95) 100%);
    padding: 8px 20px;
    border-radius: 8px;
    display: inline-block;
    position: relative;
    transform: rotate(-1deg);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: priceShine 3s ease-in-out infinite;
}

.hero-sqft-text {
    font-size: 13px;
    margin: 0 0 6px 0;
}

.hero-payment-text {
    font-size: 11px;
    margin: 0;
    font-style: italic;
}

.hero-location-line {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.hero-location-icon {
    color: #f4d03f;
    text-shadow: 0 0 4px rgba(244, 208, 63, 0.5);
}

.hero-bottom-left {
    border-top: 1px solid;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 110px;
    background: rgb(0 0 0 / 75%);
    padding: 5px 50px 5px 0;
    gap: 90px;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: heroBottomFadeIn 0.5s ease-out 0.5s forwards;
}

.hero-invest-box,
.hero-earn-box,
.hero-divider {
    display: none;
}

.hero-bottom-heading {
    font-size: clamp(14px, 1.8vw, 20px);
    font-weight: 700;
    color: white;
    margin: 0 0 5px 0;
    line-height: 1.2;
    text-shadow: 1px 1px 1px black;
}

.hero-bottom-yield {
    font-size: clamp(12px, 1.4vw, 16px);
    font-weight: 600;
    color: #f4d03f;
    text-shadow: 0 0 4px rgba(244, 208, 63, 0.5);
    margin: 0;
}

.hero-lead-form-section {
    background: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.08);
    padding: 0 0 20px;
    opacity: 0;
    animation: heroFormFadeIn 0.5s ease-out 0.7s forwards;
}

/* ========================================
   LAPTOP/DESKTOP: SINGLE BANNER ONLY
   ======================================== */


.lead-form-heading {
    text-align: center;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    color: #2c3e50;
    padding: 12px 0;
}

/* ========================================
   LEAD FORM
   ======================================== */

.lead-form {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(12px, 2vw, 20px);
    align-items: stretch;
    padding-inline: 12px;
}

.lead-form-input {
    flex: 1 1 280px;
    padding: clamp(12px, 1.5vw, 16px) clamp(15px, 2vw, 20px);
    border: 1.5px solid #ddd;
    border-radius: 4px;
    font-size: clamp(14px, 1.2vw, 15px);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.lead-form-input:focus {
    outline: none;
    border-color: #C9A227;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.lead-form-submit {
    flex: 1 1 280px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    color: #000;
    padding: clamp(12px, 1.5vw, 16px) clamp(30px, 4vw, 50px);
    border: none;
    border-radius: 4px;
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.lead-form-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.lead-form-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #f4d03f 0%, #ffd700 50%, #f4d03f 100%);
}

.lead-form-submit:hover::before {
    width: 300px;
    height: 300px;
}

.lead-form-submit:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #c9a96e 0%, #d4af37 100%);
}

.submit-icon {
    transition: transform 0.3s ease;
}

.lead-form-submit:hover .submit-icon {
    transform: translateX(3px);
}



.mobile-text {
    display: none;
}

/* ========================================
   FLOOR PLAN SECTION
   ======================================== */
.floorplan-section {
    padding: 2rem 1rem;
    background: #f9fafb;
}

.floorplan-container {
    max-width: 1200px;
    margin: 0 auto;
}

.floorplan-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.floorplan-grid {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.floorplan-image-wrapper {
    flex: 1;
    position: relative;
}

.floorplan-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.floorplan-image:hover {
    transform: scale(1.02);
}

.floorplan-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.plot-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
}

.floorplan-details {
    flex: 1;
}

.floorplan-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.floorplan-divider {
    height: 1px;
    background: #e5e7eb;
    margin-bottom: 1.5rem;
}

.floorplan-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.floorplan-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 20px;
}

.floorplan-list li svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
    fill: #333;
}

.floorplan-list li span {
    color: #666;
    line-height: 0.8;
}

.floorplan-list li strong {
    display: block;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.banner-image img {
    width: 100%;
    height: 70vh;
}

.icon svg {
    width: 32px;
    height: 32px;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    /* background: #f9fafb; */
}

.logo-track {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-card {
    flex-shrink: 0;
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.logo-card:hover img {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.awards-section {
    padding: 3rem 1rem;
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.awards-slider {
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
}

.awards-track {
    display: flex;
    gap: 2rem;
    animation: scrollAwards 35s linear infinite;
}

.awards-track:hover {
    animation-play-state: paused;
}

.award-card {
    flex-shrink: 0;
    width: 200px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.award-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    scale: 1.2;
}

@keyframes scrollAwards {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 35px 0 25px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a[aria-label="Facebook"] {
    background: #1877f2;
}

.footer-social a[aria-label="Instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social a[aria-label="LinkedIn"] {
    background: #0077b5;
}

.footer-social a[aria-label="Twitter"] {
    background: #1da1f2;
}

.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.footer-social i {
    font-size: 16px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 28px;
    font-weight: 600;
    color: #1f2937;
    position: relative;
}

.footer-section h3::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #c9a96e;
    position: absolute;
    bottom: -8px;
    left: 0;
    transition: width 0.4s ease;
}

.footer-section:hover h3::after {
    width: 70px;
}

.footer-section p {
    color: #374151;
    line-height: 1.8;
    font-size: 16px;
}

.footer-section p i {
    margin-right: 8px;
    color: #c9a96e;
}

.footer-section a {
    color: #374151;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #c9a96e;
    transform: translateX(5px);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #374151;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #c9a96e;
    transform: translateX(5px);
}

.footer-content-mobile {
    display: none;
}

#next-btn,
#prev-btn {
    display: none;
}

/* .hero {
} */

/* ===================================================== */
/* ================= LARGE DESKTOP ===================== */
/* ===================================================== */
@media (min-width: 1251px) {

    .nav-links {
        display: flex;
    }

    .nav-cta {
        display: flex;
    }

    .mobile-actions {
        display: none;
    }

    .lead-form {
        flex-wrap: nowrap;
    }

    .logo img {
        height: 65px;
        filter: contrast(1.15) brightness(1.08) saturate(1.15);
        -webkit-filter: contrast(1.15) brightness(1.08) saturate(1.15);
    }

    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .amenities-thumbnails {
        grid-template-columns: repeat(8, 1fr);
    }

    .location-grid {
        grid-template-columns: 1fr 1fr;
    }

    .location-title {
        font-size: 3rem;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-title {
        font-size: 2.5rem;
    }

    /* .hero {
        background-image: url('banner1.png') !important;
    } */

}


/* ===================================================== */
/* ================= SMALL DESKTOP ===================== */
/* ===================================================== */
@media (max-width: 1250px) {
    .banner-image img {
        height: 68vh;
    }

    .hero-bottom-heading {
        font-size: clamp(20px, 2.5vw, 21px);
    }

    .hero-price-large {
        font-size: 24px;
    }

    .hero-starting-text {
        font-size: 12px;
        margin: 0 0 1px 0;
    }

    .hero-pricing-section {
        padding-left: 2px;
        margin-left: 45px;
    }

    .hero-bottom-left {
        gap: 25px;
    }

    .hero-location-line {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 10px;
        margin-top: 2px;
    }

    .mobile-rera-logo {
        position: absolute;
        top: 45px;
        z-index: 10;

    }

    .mobile-rera-logo img {
        left: 12px;
        width: 90px;
        position: absolute;
        top: 72px;
        z-index: 10;
    }

    .mobile-brochure-btn {
        background: #ab5930;
        color: white;
        padding: 0.8rem 2rem;
        border: none;
        border-radius: 0.375rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.9rem;
        font-size: 1.2rem;
    }

    .brand img {
        filter: drop-shadow(2px 4px 6px black) !important;
    }

    .download-icon {
        width: 21px !important;
        height: 21px !important;
    }

    .header {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
    }

    .nav-links li a {
        color: #333;
    }

    .phone-link {
        color: #333;
        border-color: #c9a96e;
    }

    .nav {
        padding: 0 2.5rem;
    }

    .footer-container {
        padding: 60px 20px 30px;
    }

    .amenities-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-right-overlay {
        right: 50px;
        bottom: 130px;
    }

    .mobile-menu-content {
        padding: 1.5rem 2.5rem;
    }

    .location-box {
        padding: 6px 14px;
    }

    .line {
        width: 50px;
    }

    .commercial-text {
        font-size: 10px;
        margin: 0 12px;
    }

    .grade-text {
        font-size: 42px;
    }

}


/* ===================================================== */
/* ======================= TABLET ====================== */
/* ===================================================== */
@media (max-width: 1024px) {
    .download-icon {
        width: 18px !important;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 120px 15px 60px;
        min-height: calc(100vh - 120px);
        justify-content: center;
        gap: 30px;
    }

    .mobile-brochure-btn {
        background: #ab5930;
        color: white;
        padding: 0.6rem 1.2rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 14px;
    }

    .content-left {
        max-width: 100%;
        padding: 40px 20px;
        margin-bottom: 10px;
    }

    .form-container {
        flex: none;
        width: 100%;
        margin: 0 auto;
    }

    .hero-grade-title {
        font-size: 50px;
    }

    .hero-price-large {
        font-size: 24px;
        margin: 0 0 4px 0;
    }

    .lead-form {
        flex-wrap: wrap;
    }

    .lead-form-input {
        flex: 1 1 calc(50% - 10px);
    }

    .lead-form-submit {
        flex: 1 1 100%;
    }

    .about-content h3 {
        font-size: 16px;
        font-weight: 600;
        color: #ab5930;
    }

    .banner-image img {
        height: 75vh;
    }

    .hero-right-overlay {
        width: 320px;
    }

    .grade-text {
        font-size: 40px;
    }

    .invest-text {
        font-size: 16px
    }

    .features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
        margin: 7px 12px 0px;
    }

    .feature {
        gap: 20px;
    }

    .feature p {
        font-size: 10px;
    }

    .icon svg {
        width: 26px;
        height: 26px;
    }

    .commercial-text {
        font-size: 10px;
        font-weight: bold;
    }

    .top-badge {
        display: inline-block;
        border: 1px solid rgba(255, 255, 255, 0.6);
        padding: 7px 12px;
        font-size: 12px;
        margin-bottom: 2px;
        letter-spacing: 1px;
    }

    .hero-bottom-heading {
        font-size: 16px;
    }

    .hero-bottom-yield {
        font-size: 14px;
    }

    .harera-badge {
        font-size: 9px;
    }

    .hero-price-large {
        font-size: 18px;
    }

    .hero-bottom-left {
        gap: 20px;
    }

    .footer-rera,
    .footer-rera-number {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .footer-content>.footer-content {
        grid-template-columns: repeat(3, 1fr);
    }

    .quick-link {
        display: none;
    }

    .footer-section p {
        width: 250px;
    }

    .footer-section h3 {
        margin-bottom: 20px;
    }

    .hero-bottom-left-content {
        padding-left: 17px;
    }
}



/* ===================================================== */
/* ======================= MOBILE ====================== */
/* ===================================================== */
@media (max-width: 768px) {

    /* Floorplan */
    .floorplan-grid {
        flex-direction: column;
        align-items: center;
    }

    .floorplan-main-title {
        font-size: 2rem;
    }

    .floorplan-image-wrapper {
        width: 100%;
    }

    .floorplan-image {
        width: 100%;
        height: 450px;
        display: block;
    }

    .floorplan-list li span {
        font-size: 14px;
        word-wrap: break-word;
    }

    /* Location */
    .location-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .location-content {
        order: 2;
        margin: auto;
        padding-left: 5px;
        padding-top: 20px;
    }

    .location-image-wrapper {
        order: 1;
        width: 100% !important;
        height: auto !important;
    }

    .location-image {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: cover !important;
        filter: blur(8px) !important;
        border: 5px solid black !important;
    }

    /* Hero */
    .hero {
        flex-direction: column;
        height: auto;
        background: none !important;
        min-height: auto;
    }

    .hero-grade-title {
        font-size: 44px;
    }

    .hero-content {
        gap: 10px;
    }

    .hero-bottom-left-content,
    .hero-pricing-section,
    .hero-location-line {
        display: none;
    }

    /* Forms */
    .lead-form {
        grid-template-columns: 1fr;
    }

    .lead-form-submit {
        width: 100%;
    }

    /* Highlights */
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .highlight-card {
        padding: 1rem;
    }

    /* Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* About */
    .about-title {
        font-size: 2rem !important;
    }

    .about-images {
        grid-template-columns: 1fr;
    }

    .about-images img:last-child {
        display: none;
    }

    .about-content p {
        font-size: 12px;
        line-height: 1.7;
        color: #666;
    }

    .col {
        flex: 1 1 100%;
    }

    .logo img {
        height: 55px;
        filter: contrast(1.2) brightness(1.1) saturate(1.2);
        -webkit-filter: contrast(1.2) brightness(1.1) saturate(1.2);
    }

    .residences-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-thumbnails {
        grid-template-columns: repeat(3, 1fr);

    }

    .hero-right-overlay {
        right: 30px;
        bottom: 130px;
    }

    .banner-image img {
        height: 58vh;
    }

    .hero-invest-box,
    .hero-earn-box,
    .hero-divider {
        display: block;
    }

    .vertical-gold-line {
        display: none;
    }

    .hero-bottom-left {
        flex-direction: row;
        padding: 14px 16px;
        gap: 0;
        align-items: center;
        justify-content: space-between;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.85) 100%);
        backdrop-filter: blur(10px);
    }

    .hero-divider {
        width: 2px;
        height: 90px;
        background: #f4d03f;
        box-shadow: 0 0 8px rgba(244, 208, 63, 0.6);
        position: relative;
        order: 2;
    }


    .hero-invest-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 1;
        padding: 0 10px;
        order: 1;
    }

    .hero-box-label {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.8);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin: 0 0 6px 0;
        font-weight: 500;
    }

    .hero-box-value {
        font-size: 25px;
        font-weight: 900;
        color: #f4d03f;
        text-shadow: 0 0 8px rgba(244, 208, 63, 0.6);
        margin: 0 0 6px 0;
        line-height: 1;
    }

    .hero-box-subtext {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.85);
        margin: 0 0 4px 0;
        line-height: 1.3;
    }

    .hero-earn-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 1;
        padding: 0 10px;
        order: 3;
    }

    .hero-box-label {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.8);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin: 0 0 6px 0;
        font-weight: 500;
    }

    .hero-box-value {
        font-size: 25px;
        font-weight: 900;
        color: #f4d03f;
        text-shadow: 0 0 8px rgba(244, 208, 63, 0.6);
        margin: 0 0 6px 0;
        line-height: 1;
    }

    .hero-box-note {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
        font-style: italic;
    }

    .about-images2 {
        display: block;
    }

    .mobile-rera-logo img {
        width: 67px;
        left: 0;
        top: 42px;
    }

    .logo-card {
        width: 120px;
        height: 80px;
    }

    .logo-track {
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .award-card {
        width: 150px;
        height: 200px;
        padding: 1rem;
    }

    .awards-track {
        gap: 1rem;
    }

    .footer-social {
        gap: 0.75rem;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
    }

    .footer-social i {
        font-size: 1rem;
    }

    .footer-content>.footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section:hover h3::after {
        width: 60px;
    }

    .footer-disclaimer {
        text-align: left;
    }

    .footer-content-mobile {
        display: block;
    }

    .not-required {
        display: none !important;
    }

    .footer-content-mobile {
        display: block;
        text-align: center;
    }

    .footer-content-mobile h3 {
        font-size: 20px;
        margin: 8px 0 20px 0;
        font-weight: 600;
        color: #1f2937;
        position: relative;
        text-align: start;
    }

    .footer-disclaimer {
        padding-top: 8px;
        text-align: justify;
    }

    .footer-content-mobile h3::after {
        content: "";
        width: 170px;
        height: 3px;
        background: #c9a96e;
        position: absolute;
        bottom: -10px;
        left: 77px;
        transform: translateX(-50%);
    }

    .footer-content-mobile p {
        color: #374151;
        line-height: 2;
        font-size: 15px;
        text-align: start;
    }



    .footer-content-mobile p i {
        margin-right: 10px;
        color: #c9a96e;
        font-size: 16px;
    }

    .footer-content-mobile a {
        color: #374151;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-content-mobile a:hover {
        color: #c9a96e;
    }

    .footer-phone-add {
        display: flex;
        flex-direction: column;
        margin: 10px 0;
    }

    .footer-social {
        margin: 14px 18px;
    }

    .footer-rera-number {
        font-size: 10px;
        font-weight: bold;
    }

    .footer-container {
        padding: 30px 20px;
    }

    .awards-track,
    .logo-track {
        display: flex;
        gap: 2rem;
        animation: scrollAwards 5s linear infinite;
    }
}


/* ===================================================== */
/* ==================== SMALL MOBILE =================== */
/* ===================================================== */
@media (max-width: 480px) {
    .mobile-rera-logo img {
        width: 60px;
        left: -30px;
        top: 40px;
    }

    .about-content h1 {
        font-size: 18px;
    }

    .about-title {
        font-size: 28px !important;
        margin-bottom: 1rem !important;
    }

    .hero-grade-title {
        font-size: 38px;
    }

    .hero-price-large {
        font-size: 30px;
    }

    .lead-form {
        flex-direction: column;
    }

    .lead-form-input,
    .lead-form-submit {
        flex: 1 1 100%;
        width: 100%;
    }

    .logo img {
        height: 50px;
        max-width: 150px;
    }

    .mobile-hero-image {
        height: 15rem;
    }

    .highlight-title {
        font-size: 14px;
        font-weight: 600;
    }

    .highlight-description {
        font-size: 12px;
    }

    .amenities-thumbnails,
    .gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav {
        padding: 0 1.6rem 0 2.2rem;
    }

    .icon svg {
        width: 20px;
        height: 20px;
    }


    .top-badge {
        padding: 3px 10px;
        font-size: 8px;
        margin-bottom: 4px;
    }

    .invest-text {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .grade-text {
        font-size: 28px;
    }

    .commercial-wrapper {
        margin-bottom: 3px;
    }

    .location-box {
        padding: 4px 12px;
        font-size: 9px;
        margin-bottom: 4px;
    }

    .features {
        gap: 6px;
        margin: 4px auto 0;
    }

    .feature {
        gap: 6px;
        align-items: flex-start;
    }

    .feature p {
        font-size: 8px;
        padding-left: 7px;
    }

    .hero-right-overlay {
        position: absolute;
        bottom: 95px;
        right: 12px;
        width: 245px;
        border-top: 2px solid #C9A227;
        padding: 4px 10px;
    }

    .hero-divider {
        height: 72px;
    }

    .hero-box-label {
        font-size: 10px;
    }

    .banner-image img {
        height: 47vh;
    }

    .about-section {
        padding: 0 !important;
    }

    .hero-box-subtext {
        font-size: 10px;
    }

    .line {
        width: 35px;
    }

    .hero-box-note {
        font-size: 12px;
    }

    .hero-bottom-left {
        padding: 4px 0;
    }

    .hero-box-value {
        font-size: 21px;
    }

    .hero-bottom-left {
        height: 86px;
    }

    .footer-phone-add {
        gap: 10px;
    }

    .footer-content-mobile p {
        font-size: 12.8px;
    }

    .contact-subtitle {
        font-size: 12px;
    }

    .highlights-title,
    .residences-title,
    .amenities-title,
    .location-title {
        font-size: 1.87rem;
    }

    .amenities-subtitle {
        font-size: 12px;
    }

    .floorplan-image {
        height: 360px;
    }

    .location-list li {
        font-size: 1rem;
    }

    .location-overlay-btn {
        font-size: 12px;
        padding: 12px;
    }

    .gallery-section {
        padding: 1rem;
    }

    .section-title {
        font-size: 1.2rem;
        margin-bottom: 0;
    }

    .brand img {
        height: 62px;
        object-fit: contain;
    }

    .mobile-brochure-btn {
        font-size: 14px;
        padding: 0.5rem 1.2rem;
    }

    .brand {
        min-width: 145px;
    }

    .amenities-main-image .gallery-main-image,
    .amenities-main-image {
        height: 18rem;
    }
}