/* --- FONTS --- */
@font-face {
    font-family: 'Albula';
    src: url('fonts/albula-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Albula';
    src: url('fonts/albula-light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* --- CSS VARIABLES & RESET --- */
:root {
    --primary-color: #B8860B;
    /* Dark Goldenrod */
    --primary-light: #daa520;
    /* Goldenrod */
    --accent-color: #B8860B;
    --bg-light: #FFFFFF;
    --bg-beige: #FAFAF5;
    --text-dark: #1a1a1a;
    --text-gray: #555555;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
    --gradient-gold: linear-gradient(135deg, #B8860B 0%, #daa520 50%, #8B6508 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Albula', 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: clamp(0.95rem, 1vw, 1.1rem);
    /* Responsive base font size */
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Animation utility classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

.delay-600 {
    animation-delay: 0.6s;
}

h1,
h2,
h3,
h4,
.brand-font {
    font-family: 'Albula', 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
}

p {
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
}

/* --- PRELOADER --- */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: visible;
    transition: visibility 1s;
}

.loader-panel {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: #ffffff;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 10001;
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 10px;
    overflow: hidden;
}

.panel-left {
    left: 0;
}

.panel-right {
    right: 0;
}

@media (max-width: 600px) {
    .loader-panel {
        font-size: clamp(0.7rem, 4.5vw, 1.2rem);
        letter-spacing: 2px;
    }

    .loader-logo {
        width: 120px;
    }

    .panel-left {
        padding-right: 5px;
    }

    .panel-right {
        padding-left: 5px;
    }
}

.loader-wrapper.fade-out .panel-left {
    transform: translateX(-100%);
}

.loader-wrapper.fade-out .panel-right {
    transform: translateX(100%);
}

.loader-wrapper.fade-out {
    visibility: hidden;
    transition-delay: 1.2s;
}

.loader-wrapper.fade-out .loader-content {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.loader-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10002;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    width: 160px;
    height: auto;
    animation: breathing 2.5s ease-in-out infinite;
    z-index: 10003;
    filter: none;
    /* Ensure no inversion filters are applied */
}

@keyframes breathing {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}



a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

.container-wide {
    max-width: 1400px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.btn-primary:hover {
    background-color: #996e00;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

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

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

.btn-secondary {
    background-color: #000000;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background-color: #333333;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

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

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.8rem;
    margin-top: 15px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

/* --- HEADER & NAV --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    transition: var(--transition-smooth);
    min-height: 95px;
    /* Increased to accommodate larger logo */
    display: flex;
    align-items: center;
    background-color: #4b4d4f;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

body {
    padding-top: 95px;
    /* Matches new header height */
    /* Offset for fixed header */
}

@media (min-width: 1100px) {
    body {
        padding-top: 105px;
    }
}

header.sticky,
header.header-solid {
    background-color: #4b4d4f;
    padding: 8px 0;
    min-height: 85px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    /* Make it sticky/scroll with view */
    top: 0;
    width: 100%;
    /* Default width */
    animation: slideDown 0.35s ease-out;
}



@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

#headerLogo {
    height: 80px;
    /* Increased from 60px */
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition-smooth);
}

header.sticky #headerLogo,
header.header-solid #headerLogo {
    height: 70px;
    filter: brightness(0) invert(1);
}

.nav-right-group {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: auto;
}

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

.desktop-only-btn {
    display: flex;
}

.mobile-only-link {
    display: none;
    width: 100%;
    margin-top: 20px;
}

.mobile-only-link .btn {
    width: 100%;
}

.header-call-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px !important;
    font-size: 0.85rem !important;
    white-space: nowrap;
}

.header-call-btn i,
.header-action-icon i {
    width: 18px;
    height: 18px;
}

.header-action-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0 !important;
    border-radius: 50% !important;
}

.nav-links a {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
}

header.sticky .nav-links a,
header.header-solid .nav-links a {
    color: #ffffff;
}

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

.mobile-call-icon {
    display: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    margin-right: 15px;
}

@media (max-width: 1024px) {
    .mobile-call-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.menu-toggle {
    display: none;
    cursor: pointer;
    color: #ffffff;
}

header.sticky .menu-toggle,
header.header-solid .menu-toggle {
    color: #ffffff;
}

/* --- HERO SECTION (PREMIUM SWIPER) --- */
.hero-premium {
    width: 100%;
    position: relative;
    padding-bottom: 60px;
    /* Space for dots below slider */
    background: #fff;
    /* Clean white background for dots space */
}

.hero-img-responsive {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 5s ease-out, opacity 1.5s ease-in-out;
}

.hero-swiper {
    width: 100%;
    height: 100%;
    overflow: visible !important;
    /* Allow pagination to be visible outside its bounds */
}

.hero-swiper .swiper-pagination {
    bottom: -45px !important;
    left: 0;
    width: 100%;
    text-align: center;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    /* Literal fit to container */
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.swiper-slide {
    height: auto;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide-active .hero-img-responsive {
    transform: scale(1.05);
    /* Very subtle zoom for smoothness */
}

.hero-overlay {
    display: none;
}

.hero-container {
    display: none;
}




.hero-content {
    max-width: 800px;
    text-align: center;
    padding: 60px 40px !important;
    background: rgba(255, 255, 255, 0.85) !important;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #48484a;
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

/* Swiper Customization */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #333;
    /* Darker dots for visibility on white bg */
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
    width: 25px;
    border-radius: 5px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

/* --- PROJECTS SECTION --- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.project-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.project-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-card-image img {
    transform: scale(1.1);
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.project-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-card-title {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 10px;
    color: var(--text-dark);
}

.project-card-location {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.project-card-location i {
    width: 16px;
    color: var(--primary-color);
}

.project-card-details {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.project-card-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.rera-qr {
    text-align: center;
    margin: 25px 0;
    padding: 25px 20px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.rera-qr::before {
    content: 'RERA REGISTERED';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(184, 134, 11, 0.2);
    z-index: 1;
}

.rera-qr::after {
    content: 'SCAN QR TO VERIFY';
    font-size: 0.6rem;
    color: #999;
    font-weight: 700;
    letter-spacing: 1px;
}

.rera-qr.no-qr::after {
    display: none;
}

.rera-qr.no-qr {
    padding: 30px 20px;
    min-height: 120px;
    justify-content: center;
}

.rera-qr img {
    max-width: 90px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.rera-number {
    font-size: 0.8rem;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: #fdfaf0;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(184, 134, 11, 0.1);
    font-family: 'Poppins', sans-serif;
    margin-top: 5px;
}

.project-card-details i {
    width: 18px;
    color: var(--primary-color);
}

.btn-full {
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .hero-premium {
        height: auto;
    }

    .hero-slide-bg[style*="banner.jpg"] {
        background-image: url('images/mb.jpg') !important;
    }

    .hero-content {
        padding: 40px 20px !important;
        margin: 0 15px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}



/* Redesigned Hero List (Pills) */
.hero-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
    padding: 0;
    list-style: none;
}

.hero-list li {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.hero-list li:hover {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(184, 134, 11, 0.1);
    transform: translateY(-2px);
}

.hero-list i {
    width: 18px;
    height: 18px;
    color: #ef4444;
    /* Red X */
}

/* Old hero-list styles removed to prevent conflict */

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

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

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.countdown-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 15px 25px;
    border-radius: 8px;
    min-width: 100px;
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* --- OFFER HIGHLIGHTS --- */
.offers {
    background-color: var(--bg-beige);
}

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

.offer-card {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(184, 134, 11, 0.08);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.offer-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(184, 134, 11, 0.1);
    border-color: rgba(184, 134, 11, 0.2);
}

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

.offer-icon {
    width: 80px;
    height: 80px;
    background-color: #fcf9f2;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto 30px;
    transition: all 0.5s ease;
    border: 1px solid rgba(184, 134, 11, 0.1);
}

.offer-icon i {
    font-size: 2rem;
}

.offer-card:hover .offer-icon {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: scale(1.1) rotateY(180deg);
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.2);
}

.offer-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
}

.offer-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 25px;
}

/* --- PROJECTS ON OFFER --- */
/* --- PROJECTS ON OFFER --- */
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.project-card.featured {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    min-height: 450px;
}

.project-card.featured .project-img {
    width: 65%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
}

.project-card.featured .project-info {
    width: 35%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 1100px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr;
    }

    .project-card.featured {
        flex-direction: column;
    }

    .project-card.featured .project-img,
    .project-card.featured .project-info {
        width: 100%;
    }

    .project-card.featured .project-img {
        height: 300px;
        min-height: 250px;
    }
}

.badge-upcoming {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 10;
    letter-spacing: 1px;
}

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

.project-img {
    height: 250px;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.zero-cost-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.zero-cost-list li {
    font-size: 0.8rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.zero-cost-list li i {
    color: var(--primary-color);
    width: 14px;
    height: 14px;
}

.zero-cost-list li span {
    font-weight: 600;
    color: var(--text-dark);
}

.project-info h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.project-location {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.project-location i {
    color: var(--primary-color);
}

.project-desc {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--text-gray);
}

/* --- LIFESTYLE GALLERY --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    height: 620px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition-smooth);
}

/* Remove overlay text */
.gallery-overlay span {
    display: none;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
        height: 300px;
    }
}

/* --- LIMITED PERIOD BANNER --- */
.cta-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url('images/banner.jpg');
    background-size: cover;
    background-attachment: fixed;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-banner h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

/* --- ENQUIRY FORM --- */
.enquiry {
    background-color: var(--bg-beige);
}

.enquiry-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* --- IMPROVED ENQUIRY SECTION --- */
.bg-dark-elegant {
    background-color: #0c0c0c;
    position: relative;
    overflow: hidden;
}

.bg-dark-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(184, 134, 11, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.enquiry-container-premium {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    backdrop-filter: none;
}

.enquiry-visual-premium {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    /* Changed from 600px to match grid height */
    min-height: 550px;
    /* Base height */
}

.enquiry-visual-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: transform 12s ease;
}

.enquiry-visual-premium:hover img {
    transform: scale(1.1);
}

.enquiry-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 50px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 20%, transparent 100%);
    color: white;
}

.premium-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-gold);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.enquiry-overlay-content h3 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.enquiry-overlay-content p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 500px;
}

.enquiry-list-premium {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    font-weight: 500;
}

.list-item i {
    color: var(--primary-color);
}

.enquiry-form-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    /* Stretch to match grid height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically */
}

.form-header-premium {
    margin-bottom: 35px;
}

.form-header-premium h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-header-premium p {
    color: #6e6e73;
    font-size: 0.95rem;
}

.input-group-premium {
    margin-bottom: 20px;
}

.input-group-premium label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group-premium label i {
    width: 16px;
    color: var(--primary-color);
}

.input-group-premium input,
.input-group-premium select,
.input-group-premium textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: #fdfdfd;
    transition: all 0.3s ease;
}

.input-group-premium input:focus,
.input-group-premium select:focus,
.input-group-premium textarea:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.1);
    outline: none;
}

.input-row-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-premium-gold {
    background: var(--gradient-gold);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.2);
}

.btn-premium-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(184, 134, 11, 0.3);
}

@media (max-width: 1024px) {
    .stat-item-premium h3 {
        font-size: 4.5rem;
        /* Even larger for impact */
        margin-bottom: 5px;
    }

    .enquiry-container-premium {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .enquiry-visual-premium {
        height: 450px;
        /* Fixed height on mobile stacking */
        min-height: auto;
    }
}

@media (max-width: 600px) {
    .stat-item-premium h3 {
        font-size: 4rem;
        /* Prominent numbers on mobile */
    }

    .input-row-premium {
        grid-template-columns: 1fr;
    }

    .enquiry-form-card {
        padding: 30px 20px;
    }

    .enquiry-overlay-content h3 {
        font-size: 1.8rem;
    }
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* Sophisticated subtle border */
    border-radius: 12px;
    background: #fdfdfd;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-control:focus {
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.1);
    transform: translateY(-2px);
    outline: none;
}

.form-control::placeholder {
    color: #bbb;
    font-weight: 300;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23B8860B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

/* --- WHY CHOOSE MANTRA --- */
.stats {
    background-color: white;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- FOOTER --- */
/* --- NEW MULTI-TIER FOOTER --- */
.main-footer {
    background-color: #f7f6f2;
    /* Exact cream/ivory from image */
    color: var(--text-dark);
}

.footer-top {
    padding: 80px 0 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-office-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-office-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: 'Albula', 'Playfair Display', serif;
    color: #333;
}

.footer-office-col p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.office-icon {
    margin-bottom: 15px;
    color: #000;
    width: 24px;
    height: 24px;
}

.view-map-link {
    color: #333;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.contact-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.nri-contacts {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nri-contacts p {
    margin-bottom: 0;
}

/* Mid Footer */
.footer-mid {
    padding: 60px 0;
    background: #fdfdfa;
    /* Slightly lighter off-white */
}

.footer-mid-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 100px;
    align-items: center;
}

.footer-about h4,
.footer-social-section h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-family: 'Albula', 'Playfair Display', serif;
}

.footer-about p {
    font-size: 0.95rem;
    color: #666;
}

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

.social-links-footer a {
    color: #444;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.social-links-footer a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Award Badge */
.award-badge-container {
    position: relative;
    width: 160px;
    height: 100%;
}

.award-badge {
    position: absolute;
    bottom: -90px;
    left: 0;
    background: #7a7d80;
    /* Gray from image */
    color: white;
    padding: 30px 20px;
    width: 150px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
    font-family: 'Poppins', sans-serif;
}

.award-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 8px;
    width: 100%;
}

.award-main {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 5px;
}

.award-year {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

/* Bottom Footer */
.footer-bottom-dark {
    background-color: #2c2e30;
    padding: 25px 0;
    color: white;
}

.footer-bottom-flex {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-bottom-flex a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.footer-bottom-flex a:hover {
    opacity: 1;
}

@media (max-width: 1024px) {
    .footer-office-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-mid-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .social-links-footer {
        justify-content: center;
    }

    .award-badge-container {
        margin: 0 auto;
        height: auto;
        width: 100%;
    }

    .award-badge {
        position: relative;
        bottom: 0;
        margin: 30px auto;
    }
}

@media (max-width: 600px) {
    .footer-office-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-flex {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
}

/* --- FLOATING ACTION BUTTONS --- */
.float-btn {
    position: fixed;
    bottom: 25px;
    width: 56px;
    height: 56px;
    background-color: #4b4d4f;
    /* Header color */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: var(--transition-smooth);
    border: none;
}

.float-btn i {
    width: 26px;
    height: 26px;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-left {
    left: 20px;
}

.float-right {
    right: 20px;
}

.float-btn:hover {
    transform: translateY(-3px);
    background-color: var(--primary-color);
    color: #ffffff;
}

.mobile-cta-bar {
    display: none;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 992px) {
    .section-padding {
        padding: 50px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .enquiry-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-banner h2 {
        font-size: 2.2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .enquiry-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .desktop-only-btn {
        display: none;
    }

    .mobile-only-link {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .mobile-cta-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: none;
        height: 55px;
        /* Reduced from 70px */
        background: #4b4d4f;
        /* Header color */
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
        z-index: 2000;
        padding: 0;
    }

    .mobile-cta-item {
        flex: 1;
        display: flex;
        flex-direction: row;
        /* Horizontal layout for slim bar */
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-weight: 600;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border: none;
        height: 100%;
        cursor: pointer;
        background: transparent;
        color: #ffffff;
        transition: background 0.2s ease;
        text-decoration: none;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-cta-item:last-child {
        border-right: none;
    }

    .mobile-cta-item i,
    .mobile-cta-item svg {
        font-size: 1.2rem;
        width: 1.2rem;
        height: 1.2rem;
    }

    .mobile-cta-item.whatsapp {
        color: #ffffff;
    }

    .mobile-cta-item.enquiry {
        background: rgba(255, 255, 255, 0.05);
        /* Subtle highlight */
        color: white;
        flex: 1.2;
    }

    .mobile-cta-item.call {
        color: #ffffff;
    }

    .mobile-cta-item:active {
        transform: scale(0.95);
        opacity: 0.8;
    }

    body {
        padding-bottom: 90px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #4b4d4f;
        /* Match the new header color */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
        z-index: 1001;
        gap: 35px;
        padding: 60px 40px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        color: #ffffff !important;
        /* Force visibility */
        font-size: 1.25rem;
        font-weight: 600;
        display: block;
        padding: 10px 0;
        letter-spacing: 2px;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 1002;
    }

    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url('images/mb.jpg');
        background-size: 100% 100%;
        background-position: center;
    }

    .hero h1 {
        font-size: 1.35rem;
        /* Reduced from 1.5rem */
    }

    .section-title {
        font-size: 1.3rem;
    }

    .hero-content p {
        font-size: 0.8rem;
        /* Reduced from 0.85rem */
    }

    .cta-banner h2 {
        font-size: 1.3rem;
    }

    .enquiry-text h2 {
        font-size: 1.2rem;
        /* Reduced from 1.3rem */
    }

    .offer-card h3 {
        font-size: 1rem;
    }

    .project-info h3 {
        font-size: 1.1rem;
    }

    .footer-title {
        font-size: 0.95rem;
    }

    .countdown-number {
        font-size: 1.3rem;
    }

    /* Honest section titles */
    .honest-card h3 {
        font-size: 1.2rem !important;
        /* Reduced from 1.3rem */
    }

    .honest-card h4 {
        font-size: 1.4rem !important;
        /* Reduced from 1.6rem */
    }

    /* Removing old fixed mobile font overrides to favor fluid typography */

    /* Popup titles */
    .popup-logo-header h2 {
        font-size: 1.1rem !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .offer-grid,
    .project-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .popup {
        padding: 30px 20px;
        width: 95%;
    }

    .popup h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .hero-content p {
        font-size: 0.75rem;
    }

    .enquiry-text h2 {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .logo img {
        height: 85px !important;
        /* Increased from 60px */
    }

    header.sticky .logo img {
        height: 75px !important;
        /* Increased from 50px */
    }

    /* General heading overrides for very small screens */
    h1 {
        font-size: 1.3rem !important;
    }

    h2 {
        font-size: 1.1rem !important;
    }

    h3 {
        font-size: 0.95rem !important;
    }

    h4 {
        font-size: 0.85rem !important;
    }

    /* Honest section */
    .honest-card h3 {
        font-size: 1.1rem !important;
    }

    .honest-card h4 {
        font-size: 1.4rem !important;
    }
}

/* Popup Notification */
/* Enforce vertical rectangular shape */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    background: transparent;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 900px;
    width: 90%;
    overflow: visible;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.popup.active {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.popup i {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.popup h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1999;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition-smooth);
}

.overlay.active {
    visibility: visible;
    opacity: 1;
}

/* Popup Form Split Layout */
.popup-split {
    display: flex;
    min-height: 500px;
}

.popup-left {
    flex: 1;
    background-color: #1a1a1a;
    color: white;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.popup-left h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 35px;
    font-family: 'Playfair Display', serif;
}

.popup-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.p-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.p-feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0;
    padding-top: 5px;
}

.p-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
}

.p-feature p {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0;
    line-height: 1.5;
}

.popup-right {
    flex: 1.2;
    padding: 50px;
    background: white;
    position: relative;
    text-align: left;
}

.popup-form-header {
    margin-bottom: 30px;
}

.popup-form-header h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.popup-form-header p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

@media (max-width: 768px) {
    .popup-split {
        flex-direction: column;
    }

    .popup-left {
        display: none;
    }

    .popup-right {
        padding: 50px 30px 40px;
    }

    .popup-left h2,
    .popup-form-header h2 {
        font-size: 1.8rem;
    }

    .popup-close {
        top: 15px;
        right: 15px;
        z-index: 10;
    }
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    color: var(--text-dark);
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    z-index: 99999 !important;
    /* Force visibility over form panels */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.popup-close i {
    font-size: 18px !important;
    color: inherit;
    margin: 0 !important;
    display: block;
}

.popup-close:hover {
    color: var(--primary-color);
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: rotate(90deg) scale(1.1);
}

.popup h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.popup p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 35px;
    line-height: 1.6;
}

/* --- ENQUIRY RESPONSIVENESS --- */
@media (max-width: 992px) {
    .enquiry-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .enquiry-visual {
        min-height: 400px;
    }
}

@media (max-width: 576px) {
    .enquiry-visual {
        min-height: 300px;
    }

    .enquiry-visual-content h2 {
        font-size: 2rem;
    }

    .enquiry-form-wrapper {
        padding: 40px 20px;
    }
}



/* --- NEW POPUP STYLES --- */
.popup-content-single {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.popup-header h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.popup-header p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.popup-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    /* WhatsApp/Call green or similar */
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.popup-call-btn:hover {
    transform: scale(1.05);
}

.popup-form-wrapper {
    text-align: left;
}

/* --- REDESIGNED INTERRUPT SECTION --- */
.comparison-card {
    display: flex;
    position: relative;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Premium soft shadow */
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
}

.comparison-half {
    flex: 1;
    padding: 2.5rem;
    /* Spacious padding */
    display: flex;
    flex-direction: column;
}

.comparison-half.left {
    background: #fff5f5;
    /* Light red/pink tint */
}

.comparison-half.right {
    background: linear-gradient(to bottom, #f0fff4, #ffffff);
    /* Light green tint */
    position: relative;
    overflow: hidden;
}

/* 'VS' Badge */
.vs-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--text-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border: 4px solid #fdfdfd;
}

/* Icons & Headers */
.mobile-icon-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.mobile-icon-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.comparison-half.left .mobile-icon-header i {
    color: #e53e3e;
    width: 32px;
    height: 32px;
}

.comparison-half.left .mobile-icon-header h3 {
    color: #c53030;
}

.comparison-half.right .mobile-icon-header i {
    color: #22c55e;
    width: 32px;
    height: 32px;
}

.comparison-half.right .mobile-icon-header h3 {
    color: #15803d;
}

/* Lists */
.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    flex-grow: 1;
}

.comparison-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list.negative li .value {
    color: #c53030;
    font-weight: 600;
    text-decoration: line-through;
    opacity: 0.7;
}

.comparison-list.positive li .value {
    color: #15803d;
    font-weight: 800;
}

/* Footers */
.comparison-footer {
    padding-top: 20px;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.comparison-footer p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-footer h4 {
    font-size: 2rem;
    margin: 0;
}

.comparison-footer.negative h4 {
    color: #c53030;
}

.comparison-footer.positive h4 {
    color: #15803d;
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-card {
        flex-direction: column;
    }

    .vs-badge {
        position: relative;
        left: 50%;
        top: 0;
        transform: translate(-50%, -50%);
        margin: 0;
    }
}

/* --- POPUP WIDTH ADJUSTMENT --- */
.popup-content-single {
    max-width: 400px;
    /* Reduced from 500px */
}

/* Mobile-specific popup adjustments */
@media (max-width: 768px) {
    .popup {
        width: 95%;
        max-width: 95%;
        padding: 0;
        max-height: 90vh;
        overflow-y: auto;
    }

    .popup-content-single {
        max-width: 100%;
        padding: 20px;
    }

    .popup-right {
        padding: 30px 20px 25px;
    }

    .popup-form-header h2 {
        font-size: 1.5rem;
    }

    .popup-form-header p {
        font-size: 0.85rem;
    }

    .popup h2 {
        font-size: 1.6rem;
    }

    .popup p {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .popup-header h2 {
        font-size: 1.5rem;
    }

    .popup-header p {
        font-size: 0.85rem;
    }

    /* Responsive Images */
    img {
        max-width: 100%;
        height: auto;
    }

    .project-img {
        height: 200px;
    }

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

    .gallery-item img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .enquiry-visual {
        min-height: 300px;
    }

    .enquiry-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Ensure no conflict with hero styles */
#hero {
    display: block;
    padding: 0;
}

/* --- COMPACT POPUP FORM STYLES --- */
.popup-modern {
    width: 100%;
    max-width: 420px;
    background: #fdfdfb;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    margin: 0 auto;
    border: 1px solid rgba(184, 134, 11, 0.2);
}

.popup-header-modern {
    background: #4b4d4f;
    /* Charcoal header */
    padding: 35px 20px 25px;
    text-align: center;
    position: relative;
}

.popup-logo-modern {
    height: 95px;
    width: auto;
    margin: 0 auto 15px;
    display: block;
    filter: brightness(0) invert(1);
    /* White logo on dark header */
}

.popup-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    font-family: 'Albula', 'Playfair Display', serif;
    letter-spacing: 1px;
}

.popup-subtitle-modern {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-top: 8px;
    font-weight: 400;
}

.popup-form-modern {
    padding: 30px 30px 25px;
}

.form-row-modern {
    margin-bottom: 12px;
}

.form-input-modern {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #4b4d4f;
    font-family: 'Poppins', sans-serif;
}

.form-input-modern:focus {
    outline: none;
    border-color: #d4af37;
    background: white;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-input-modern::placeholder {
    color: #999;
}

.btn-submit-modern {
    width: 100%;
    padding: 14px 18px;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 5px;
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.popup-form-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.popup-form-wrapper.active {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto;
}

.popup-modern {
    position: relative;
    /* other styles below handled in previous edits */
}

.popup-modern .popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.popup-modern .popup-close:hover {
    background: #e8e8ed;
    transform: scale(1.1);
}

.popup-modern .popup-close i {
    color: #ffffff !important;
    width: 18px;
    height: 18px;
    margin: 0 !important;
    stroke-width: 2.5;
}

.popup-divider-modern {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0;
}

.popup-divider-modern::before,
.popup-divider-modern::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e0e0e0;
}

.popup-divider-modern span {
    padding: 0 15px;
    color: #999;
    font-size: 0.85rem;
    font-weight: 600;
}

.popup-action-row {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.popup-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.popup-action-btn.whatsapp {
    background: #25D366;
    color: white;
}

.popup-action-btn.call {
    background: #4b4d4f;
    color: white;
}

.popup-action-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.trust-badges-modern {
    display: flex;
    justify-content: space-around;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.badge-item-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.badge-item-modern span {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

/* Mobile responsive for modern popup */
@media (max-width: 768px) {
    .popup-modern {
        max-width: 95%;
        border-radius: 12px;
    }

    .popup-header-modern {
        padding: 25px 20px;
    }

    .popup-logo-modern {
        height: 50px;
    }

    .popup-title-modern {
        font-size: 1.3rem;
    }

    .popup-subtitle-modern {
        font-size: 0.85rem;
    }

    .popup-form-modern {
        padding: 25px 20px;
    }

    .form-input-modern {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .btn-submit-modern {
        padding: 14px 18px;
        font-size: 0.9rem;
    }

    .btn-whatsapp-modern {
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .trust-badges-modern {
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* --- CLEAN DESIGN TOKENS --- */
.section-premium {
    padding: 100px 0;
    overflow: hidden;
}

.bg-soft {
    background-color: #f5f5f7;
}

.card-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    padding: 40px;
    transition: var(--transition-smooth);
}

.card-glass:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.card-glass-dark {
    background: rgba(29, 29, 31, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 40px;
    color: white;
}

.input-premium {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.input-premium:focus {
    border-color: var(--primary-color);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8B6508 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle-premium {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #6e6e73;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 400;
}

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

.honest-list-premium {
    list-style: none;
    padding: 0;
    margin: 0;
}

.honest-list-premium li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-glass-dark .honest-list-premium li {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.honest-title-premium {
    font-size: 1.5rem;
    color: #1d1d1f;
    margin-bottom: 5px;
    font-weight: 600;
}

/* --- GLOBAL CLEAN OVERRIDES --- */
.offer-card,
.project-card,
.gallery-item,
.enquiry-form-wrapper,
.card-glass,
.card-glass-dark {
    border-radius: 24px !important;
}

.section-title {
    font-weight: 700 !important;
    letter-spacing: -0.5px !important;
}

.btn {
    border-radius: 12px !important;
}

.nav-links a {
    font-weight: 600 !important;
    letter-spacing: 1px !important;
}

/* Fix for the duplicate section issue */
.enquiry.section-premium {
    padding: 100px 0;
}

/* --- LEGACY SECTION --- */
.stats-premium {
    background: #fff;
    padding: 100px 0;
}

.premium-tagline {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.header-divider {
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 25px auto;
    border-radius: 50px;
}

.stats-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item-premium {
    position: relative;
    padding: 20px;
}

.stat-inner {
    padding: 30px 20px;
    transition: var(--transition-smooth);
    border-radius: 20px;
}

.stat-item-premium:hover .stat-inner {
    transform: translateY(-10px);
    background: #fafaf5;
}

.stat-item-premium h3 {
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--primary-color);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-item-premium p {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.4;
    text-transform: none;
    letter-spacing: 0;
}

.stat-item-premium p span {
    display: block;
    font-size: 0.8rem;
    color: #6e6e73;
    font-weight: 500;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .stats-grid-premium {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* --- POWER OF ONE OFFER SECTION --- */
.offer-banner-section {
    padding: 60px 0;
    background-color: #fff;
}

.offer-banner-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.offer-banner-title {
    padding-left: 20px;
    border-left: 4px solid #1a2a5a;
    /* Navy blue from image */
}

.offer-banner-title span {
    display: block;
    font-size: 1.5rem;
    color: #444;
    font-weight: 400;
}

.offer-banner-title h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: #1a2a5a;
    margin: 5px 0 0;
    font-weight: 700;
}

.btn-know-more {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    border: 1px solid #c0c0c8;
    background: #fff;
    border-radius: 4px;
    font-weight: 600;
    color: #1a2a5a;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.btn-know-more:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.btn-know-more .divider {
    width: 1px;
    height: 20px;
    background: #c0c0c8;
}

.offer-card-steps {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.offer-card-steps::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-size: cover;
    opacity: 0.05;
    border-radius: 50%;
    pointer-events: none;
}

.step-item {
    text-align: center;
    position: relative;
    padding: 20px 0;
}

.step-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 1px;
    height: 40%;
    background: #eee;
    transform: translateY(-50%);
}

.step-item:nth-child(3n)::after {
    display: none;
}

.step-title {
    font-size: clamp(2rem, 5vw, 3rem);
    /* Bold responsive ZERO */
    font-weight: 800;
    color: #1a2a5a;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.step-desc {
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1a2a5a;
}

.step-desc {
    display: block;
    margin-top: 15px;
    font-size: 0.75rem;
    color: #444;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-footer-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.offer-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #1a2a5a;
    font-weight: 500;
    padding: 10px 25px;
    background: #f8f9ff;
    border-radius: 50px;
    border: 1px solid #eef0ff;
}

.offer-highlight-item span {
    font-weight: 800;
    color: var(--primary-color);
}

.offer-highlight-item i {
    width: 20px;
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .offer-card-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .step-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .offer-banner-header {
        flex-direction: column;
        gap: 20px;
    }

    .offer-card-steps {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .step-item::after {
        display: none;
    }
}