/* ============================================================
   GODREJ HOMEZ - Main Stylesheet
   assets/css/style.css
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--body-font);
    color: var(--text-dark);
    background: var(--white-color);
    overflow-x: hidden;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--body-font); }

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: var(--transition);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(8, 59, 103, 0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 30px;
}

/* Logo */
.logo-link { display: flex; align-items: center; }

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.header-logo {
    display: flex;
    align-items: center;
}

/* .logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
} */

.logo-img {
    width: 60px;
    height: auto;
    display: block;
    object-fit: contain;
}

.logo-godrej {
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--white-color);
    letter-spacing: 4px;
}

.logo-homez {
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    letter-spacing: 6px;
    text-transform: uppercase;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* .btn-call {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: var(--radius-lg);
    font-size: 13px;
    font-weight: 500;
    font-family: var(--body-font);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-call:hover {
    background: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow-blue);
} */

/* =========================
   CALL BUTTON PREMIUM UI
========================= */

.btn-call{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 24px;

    border-radius: 50px;
    overflow: hidden;
    text-decoration: none;

    background: linear-gradient(
        90deg,
        #ff0d1b 0%,
        #12003A 35%,
        #2A007A 65%,
        #ff0d1b 100%
    );

    background-size: 300% auto;

    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;

    border: 1px solid rgba(255,255,255,0.10);

    box-shadow:
        0 8px 20px rgba(18,0,58,0.28),
        0 0 18px rgba(255,13,27,0.18);

    animation:
        callGradient 5s linear infinite,
        callPulse 2.5s ease-in-out infinite;

    transition: 0.4s ease;
}

/* Moving Gradient */
@keyframes callGradient{
    0%{
        background-position: 0% center;
    }
    100%{
        background-position: 300% center;
    }
}

/* Scale Up Down */
@keyframes callPulse{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.03);
    }
    100%{
        transform: scale(1);
    }
}

/* Shine Effect */
.btn-call::before{
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );

    transform: skewX(-25deg);
    transition: 0.8s ease;
}

.btn-call:hover::before{
    left: 130%;
}

.btn-call:hover{
    transform: translateY(-3px) scale(1.04);

    box-shadow:
        0 12px 28px rgba(18,0,58,0.40),
        0 0 24px rgba(255,13,27,0.28);
}

/* Content Layer */
.btn-call svg,
.btn-call span{
    position: relative;
    z-index: 2;
}

/* Icon */
.btn-call svg{
    width: 16px;
    height: 16px;

    animation: callIconMove 1.8s ease-in-out infinite;
}

/* Phone Shake */
@keyframes callIconMove{
    0%{
        transform: rotate(0deg);
    }
    20%{
        transform: rotate(-12deg);
    }
    40%{
        transform: rotate(12deg);
    }
    60%{
        transform: rotate(-8deg);
    }
    80%{
        transform: rotate(8deg);
    }
    100%{
        transform: rotate(0deg);
    }
}

/* Mobile */
@media(max-width:768px){

    .btn-call{
        padding: 12px 20px;
        font-size: 12px;
    }

}


.btn-call svg { flex-shrink: 0; }

.btn-hamburger {
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: var(--transition);
    cursor: pointer;
    border-radius: var(--radius-sm);
}

.btn-hamburger:hover {
    background: rgba(255,255,255,0.2);
}

.ham-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--dark-bg);
    z-index: 9999;
    transition: right 0.5s cubic-bezier(0.77,0,0.175,1);
    display: flex;
    align-items: stretch;
        overflow-y: auto;
        padding-bottom: 40px;
}

.mobile-menu-overlay.open {
    right: 0;
}

.mobile-menu-inner {
    width: 100%;
    padding: 40px 40px 60px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-y: auto;
}

.mobile-menu-close {
    position: absolute;
    top: 28px;
    right: 30px;
    color: var(--white-color);
    opacity: 0.7;
    transition: var(--transition-fast);
    padding: 8px;
}

.mobile-menu-close:hover { opacity: 1; transform: rotate(90deg); }

.mobile-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

.mobile-logo .logo-godrej {
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 700;
    color: var(--white-color);
    letter-spacing: 4px;
}

.mobile-logo .logo-homez {
    font-size: 10px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 6px;
}

.mobile-nav { flex: 1; }

.mobile-nav-list { display: flex; flex-direction: column; gap: 4px; }

.mobile-nav-item {
    opacity: 0;
    transform: translateX(30px);
}

.mobile-menu-overlay.open .mobile-nav-item {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu-overlay.open .mobile-nav-item:nth-child(1) { transition: all 0.4s ease 0.1s; }
.mobile-menu-overlay.open .mobile-nav-item:nth-child(2) { transition: all 0.4s ease 0.17s; }
.mobile-menu-overlay.open .mobile-nav-item:nth-child(3) { transition: all 0.4s ease 0.24s; }
.mobile-menu-overlay.open .mobile-nav-item:nth-child(4) { transition: all 0.4s ease 0.31s; }
.mobile-menu-overlay.open .mobile-nav-item:nth-child(5) { transition: all 0.4s ease 0.38s; }
.mobile-menu-overlay.open .mobile-nav-item:nth-child(6) { transition: all 0.4s ease 0.45s; }

.mobile-nav-link {
    display: block;
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: var(--transition-fast);
    letter-spacing: 0.5px;
}

.mobile-nav-link:hover {
    color: var(--white-color);
    padding-left: 12px;
}

.mobile-menu-footer {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.55s;
}

.mobile-menu-overlay.open .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: var(--transition-fast);
}

.mobile-phone:hover { color: var(--white-color); }

.mobile-whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white-color);
    padding: 14px 24px;
    border-radius: var(--radius-lg);
    font-size: 15px;
    font-weight: 500;
    width: fit-content;
    transition: var(--transition-fast);
}

.mobile-whatsapp:hover { background: #1ebe57; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: flex-start;   /* left-align content */
    overflow: hidden;
}
 
/* Background: full building render image */
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/banner1.jpg');
    background-size: cover;
    background-position: center center;
    transform: scale(1.03);
    animation: heroZoom 14s ease-out forwards;
}
 
@keyframes heroZoom {
    from { transform: scale(1.03); }
    to   { transform: scale(1); }
}
 
/* Dark overlay — heavier on the left so text is readable */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(5, 15, 35, 0.82) 0%,
        rgba(5, 15, 35, 0.55) 50%,
        rgba(5, 15, 35, 0.10) 100%
    );
}
 
/* Content block — left-aligned, vertically centered */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    width: 100%;
    /* max-width: 700px; */
    /* remove the old text-align:center */
}
 
/* Remove old badge */
.hero-badge { display: none; }
 
/* Property / brand name */
.hero-title {
    font-family: var(--heading-font);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    color: var(--white-color);
    line-height: 1.12;
    margin-bottom: 0;
    letter-spacing: -0.5px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.3s forwards;
}
 
.hero-title span { color: var(--white-color); } /* no gold tint on main title */
 
/* Location line */
.hero-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 400;
    margin: 14px 0 28px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.5s forwards;
    font-style: italic;
}
 
.hero-location svg {
    color: rgba(255,255,255,0.6);
    flex-shrink: 0;
}
 
/* BHK badge strip (the dark pill with diagonal slash) */
.hero-bhk-strip {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.7s forwards;
}
 
/* Diagonal slash accent */
.hero-bhk-slash {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 46px 22px;
    border-color: transparent transparent #1b3a6b transparent;
    flex-shrink: 0;
}
 
.hero-bhk-label {
    background: #ffffff;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 17px 28px 17px 16px;
    line-height: 1;
    border-radius: 12px;
}
 
/* CTA Button */
.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 18px 38px;
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.9s forwards;
}
 
.hero-cta-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(8,59,103,0.45);
}
 
/* Hide old subtitle & search box in this layout */
.hero-subtitle,
.hero-search-box {
    display: none;
}
 
/* Blue stats strip at the bottom — keep as-is but tweak */
.hero-strip {
    /* position: absolute;
    bottom: 0;
    left: 0;
    right: 0; */
    background: rgba(8, 40, 90, 0.92);
    backdrop-filter: blur(8px);
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    z-index: 3;
}
 
.hero-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white-color);
}
 
.hero-strip-item span:first-child {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
    color: #d4a832;  /* gold */
    line-height: 1;
}
 
.hero-strip-item span:last-child {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}
 
.hero-strip-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.18);
}
 
/* ============================================================
   ANIMATION
   ============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
 
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
        .hero-section{
            padding: 110px 0px 60px;
            height: auto !important;
        }

    .hero-content {
        padding: 0 28px;
        max-width: 100%;
    }
 
    .hero-strip {
        gap: 18px;
        flex-wrap: wrap;
        padding: 12px 20px;
    }
 
    .hero-strip-divider { display: none; }
 
    .hero-bhk-label { font-size: 11px; padding: 14px 20px 14px 12px; letter-spacing: 1.5px; }
}
 
@media (max-width: 480px) {
    .hero-title { font-size: 30px; }
    .hero-cta-btn { padding: 15px 28px; font-size: 13px; }
}


/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--heading-font);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.25;
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================================
   HOT PROJECTS SECTION
   ============================================================ */

   /* ============================================================
   PROJECT TABS
   Add this after the ".section-subtitle" block in style.css
   ============================================================ */

/* Tab Nav */
.project-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    border: 1.5px solid var(--primary-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.project-tab {
    padding: 12px 36px;
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-color);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.22s ease, color 0.22s ease;
    position: relative;
    white-space: nowrap;
}

/* separator line between tabs */
.project-tab + .project-tab {
    border-left: 1.5px solid var(--primary-color);
}

.project-tab.active,
.project-tab:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/* Tab Panels */
.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: tabFadeIn 0.35s ease forwards;
}

@keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   PROJECTS GRID — 4 cols desktop, wraps to 5th card on new row
   ============================================================ */
/* ============================================================
   PROJECT TABS — add/replace in assets/css/style.css
   ============================================================ */

/* Tab Nav */
.project-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    border: 1.5px solid var(--primary-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.project-tab {
    padding: 12px 48px;
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-color);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.22s ease, color 0.22s ease;
    white-space: nowrap;
}

.project-tab + .project-tab {
    border-left: 1.5px solid var(--primary-color);
}

.project-tab.active,
.project-tab:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/* Tab Panels */
.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: tabFadeIn 0.35s ease forwards;
}

@keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   PROJECTS GRID
   4 cols on desktop — 5th card same width, left-aligned
   ============================================================ */

   /* ============================================================
   PROJECT TABS — Full width, 50/50 split
   Replace existing .project-tabs and .project-tab rules
   ============================================================ */

.project-tabs {
    display: flex;
    width: 100%;
    margin-bottom: 40px;
    border: 1.5px solid var(--primary-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.project-tab {
    flex: 1;
    padding: 14px 0;
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    color: var(--primary-color);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.22s ease, color 0.22s ease;
}

.project-tab + .project-tab {
    border-left: 1.5px solid var(--primary-color);
}

.project-tab.active,
.project-tab:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* Override any previous nth-child centering rule */
.projects-grid .project-card:nth-child(5):last-child {
    grid-column: auto;   /* normal width, sits left */
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .project-tabs  { width: 100%; }
    .project-tab   { padding: 11px 0; font-size: 12px; flex: 1; text-align: center; }
    .projects-grid { grid-template-columns: 1fr; }
}
.projects-section {
    padding: 90px 0 100px;
    background: #f9f9f9;
}


/* ---- Project Card ---- */
.project-card {
    background: var(--white-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    padding: 12px;
}

.project-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.project-card:nth-child(1).visible { transition-delay: 0s; }
.project-card:nth-child(2).visible { transition-delay: 0.1s; }
.project-card:nth-child(3).visible { transition-delay: 0.2s; }
.project-card:nth-child(4).visible { transition-delay: 0.3s; }

.project-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

/* Card Image */
.card-image-wrap {
    position: relative;
    overflow: hidden;
    height: 210px;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .card-image {
    transform: scale(1.08);
}

/* NEW LAUNCH Ribbon */
.card-ribbon {
    position: absolute;
    top: 16px;
    left: 0;
    background: #e63946;
    color: var(--white-color);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px 5px 12px;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
    z-index: 2;
}

/* Card Title Strip */
.card-title-strip {
    background: var(--primary-color);
    padding: 14px 16px;
}

.card-project-name {
    font-family: var(--heading-font);
    font-size: 17px;
    font-weight: 600;
    color: var(--white-color);
    line-height: 1.3;
}

.card-developer {
    font-size: 11px;
    color: rgba(255,255,255,0.65);
    margin-top: 2px;
    letter-spacing: 0.5px;
}

/* Card Body */
.card-body { padding: 14px 16px 0; }

.card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.card-location svg { color: var(--secondary-color); flex-shrink: 0; }

/* Config Strip */
.card-config-strip {
    background: #edf3fb;
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
}

.card-config-item {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
}

.card-config-sep {
    font-size: 12px;
    color: var(--text-muted);
}

.card-price {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.card-price strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--heading-font);
}

/* Card Actions */
.card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--mid-gray);
    margin-top: 14px;
        padding-top: 10px;
}

.card-btn {
    padding: 13px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    font-family: var(--body-font);
}

.card-btn-enquire {
    background: var(--primary-color);
    color: var(--white-color);
}

.card-btn-enquire:hover { background: var(--secondary-color); }

.card-btn-view {
    background: transparent;
    color: var(--primary-color);
    border-left: 1px solid var(--mid-gray);
}

.card-btn-view:hover {
    background: #edf3fb;
}

/* ============================================================
   ENQUIRY POPUP
   ============================================================ */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-modal {
    background: var(--white-color);
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: translateY(30px) scale(0.97);
    transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
    border: 1px solid rgba(8,59,103,0.08);
}

.popup-overlay.active .popup-modal {
    transform: translateY(0) scale(1);
}

.popup-header {
    background: var(--primary-color);
    padding: 22px 28px;
    position: relative;
}

.popup-title {
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 600;
    color: var(--white-color);
}

.popup-subtitle {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
    font-weight: 300;
}

.popup-close {
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.7);
    transition: var(--transition-fast);
    padding: 6px;
    line-height: 0;
}

.popup-close:hover {
    color: var(--white-color);
    transform: translateY(-50%) rotate(90deg);
}

.popup-property-name {
    background: #edf3fb;
    padding: 10px 28px;
    font-size: 12px;
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--mid-gray);
}

.popup-body { padding: 24px 28px; }

/* Form Styles */
.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--mid-gray);
    border-radius: var(--radius-sm);
    font-family: var(--body-font);
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition-fast);
    outline: none;
    background: var(--white-color);
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(13,94,168,0.1);
}

.form-control.error {
    border-color: #e63946;
    box-shadow: 0 0 0 3px rgba(230,57,70,0.1);
}

.form-control::placeholder { color: #bbb; }

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.form-error {
    font-size: 11px;
    color: #e63946;
    margin-top: 5px;
    display: none;
}

.form-error.show { display: block; }

/* Submit Btn */
.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white-color);
    border-radius: var(--radius-sm);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    margin-top: 4px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.5;
}

.form-consent input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--secondary-color);
}

/* Form Messages */
.form-success, .form-failure {
    display: none;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-top: 12px;
    text-align: center;
}

.form-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.form-failure {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.form-success.show, .form-failure.show { display: block; }


/* footer css  */

/* ============================================================
   FOOTER
============================================================ */

.site-footer{
    position: relative;
    background: #3d3d3f;
    padding: 55px 20px 40px;
    overflow: hidden;
}

.footer-inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo{
    margin-bottom: 18px;
}

.footer-logo .logo-godrej{
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.footer-logo .logo-homez{
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    letter-spacing: 4px;
    margin-top: 4px;
}

.footer-disclaimer{
    max-width: 1500px;
    margin: 0 auto 20px;

    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
}

/* .footer-readmore{
    color: #fff;
    font-size: 17px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s ease;
} */

.footer-readmore:hover{
    color: #ff0d1b;
}

.footer-rera{
    color: #fff;
    font-size: 16px;
    margin-bottom: 35px;
}

.footer-links{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 18px;
}

.footer-links a{
    color: #fff;
    font-size: 15px;
    transition: 0.3s ease;
}

.footer-links a:hover{
    color: #ff0d1b;
}

.footer-links span{
    color: rgba(255,255,255,0.45);
}

.footer-copy{
    color: rgba(255,255,255,0.65);
    font-size: 13px;
}

/* ============================================================
   FLOATING BUTTONS
============================================================ */

.floating-whatsapp,
.floating-call{
    position: fixed;
    bottom: 22px;

    width: 50px;
    height: 50px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 999;

    color: #fff;

    backdrop-filter: blur(10px);

    transition: 0.4s ease;

    animation: floatPulse 2s ease-in-out infinite;
}

.floating-whatsapp{
    left: 20px;

    background:
    linear-gradient(135deg,#24cc63,#128c44);

    box-shadow:
    0 10px 30px rgba(18,140,68,0.35);
}

.floating-call{
    right: 20px;

    background:
    linear-gradient(135deg,#12003A,#2A007A);

    box-shadow:
    0 10px 30px rgba(18,0,58,0.35);
}

.floating-whatsapp svg,
.floating-call svg{
    width: 25px;
    height: 25px;
}   

.floating-whatsapp:hover,
.floating-call:hover{
    transform: scale(1.08);
}

@keyframes floatPulse{

    0%{
        transform: scale(1);
    }

    50%{
        transform: scale(1.08);
    }

    100%{
        transform: scale(1);
    }

}

/* ============================================================
   MOBILE
============================================================ */

@media(max-width:768px){

    .site-footer{
        padding: 45px 15px 100px;
    }

    .footer-disclaimer{
        font-size: 12px;
        line-height: 1.7;
    }

    .footer-rera{
        font-size: 14px;
        line-height: 1.6;
    }

    .footer-links{
        gap: 10px;
    }

    .footer-links a{
        font-size: 13px;
    }

    .floating-whatsapp,
    .floating-call{
        width: 45px;
        height: 45px;
    }

    .floating-whatsapp{
        left: 12px;
        bottom: 12px;
    }

    .floating-call{
        right: 12px;
        bottom: 12px;
    }

    .floating-whatsapp svg,
    .floating-call svg{
        width: 22px;
        height: 22px;
    }

}




/* ============================================================
   FLOATING CTA
   ============================================================ */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 500;
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    padding: 14px 24px;
    border-radius: var(--radius-lg);
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(8,59,103,0.4);
    animation: floatingPulse 2.5s ease-in-out infinite;
    cursor: pointer;
    transition: var(--transition-fast);
}

.floating-cta-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(8,59,103,0.5);
    animation: none;
}

.floating-cta-icon {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@keyframes floatingPulse {
    0%, 100% { transform: translateY(0); box-shadow: 0 4px 20px rgba(8,59,103,0.4); }
    50% { transform: translateY(-5px); box-shadow: 0 10px 35px rgba(8,59,103,0.55); }
}



/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .header-inner { padding: 0 20px; }

    .btn-call span { display: none; }
    .btn-call { padding: 10px 14px; }

    

    .projects-grid { grid-template-columns: 1fr; }

    .floating-cta { bottom: 20px; right: 16px; }
    .floating-cta-btn { padding: 12px 18px; font-size: 12px; }

    .mobile-nav-link { font-size: 22px; }
    .mobile-menu-inner { padding: 30px 28px 50px; }
}

@media (max-width: 480px) {
    .section-title { font-size: 26px; }
    .popup-modal { margin: 0; border-radius: var(--radius-sm); }
}


/* ============================================================
   HERO FORM — Add to assets/css/style.css
   ============================================================ */

/* Make hero content two-column layout */
.hero-section {
    justify-content: center; /* override left-align when form is present */
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    /* max-width: 1200px; */
    width: 100%;
    /* padding: 0 60px; */
}

/* Left text block */
.hero-text {
    flex: 1;
    min-width: 0;
}


.hero-btn-wrap{
    margin-top: 22px;
}

.hero-btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;

    /* SMALL SIZE */
    padding: 13px 24px;

    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;

    background: linear-gradient(
        90deg,
        #ff0d1b 0%,
        #12003A 35%,
        #2A007A 65%,
        #ff0d1b 100%
    );

    background-size: 300% auto;

    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;

    border: 1px solid rgba(255,255,255,0.10);

    box-shadow:
        0 8px 20px rgba(18,0,58,0.28),
        0 0 18px rgba(255,13,27,0.18);

    animation:
        heroGradient 5s linear infinite,
        heroPulse 2.5s ease-in-out infinite;

    transition: 0.4s ease;
}

/* Gradient Animation */
@keyframes heroGradient{
    0%{
        background-position: 0% center;
    }
    100%{
        background-position: 300% center;
    }
}

/* Scale Up Down */
@keyframes heroPulse{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.03);
    }
    100%{
        transform: scale(1);
    }
}

/* Shine */
.hero-btn::before{
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );

    transform: skewX(-25deg);
    transition: 0.8s ease;
}

.hero-btn:hover::before{
    left: 130%;
}

.hero-btn:hover{
    transform: translateY(-3px) scale(1.04);

    box-shadow:
        0 12px 28px rgba(18,0,58,0.40),
        0 0 24px rgba(255,13,27,0.28);
}

.hero-btn-text,
.hero-btn-icon{
    position: relative;
    z-index: 2;
}

.hero-btn-icon{
    width: 26px;
    height: 26px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.12);

    font-size: 13px;

    transition: 0.3s ease;
}

.hero-btn:hover .hero-btn-icon{
    transform: translateX(4px);
}

@media(max-width:768px){

    .hero-btn{
        padding: 12px 20px;
        font-size: 12px;
    }

}

/* Right form block */
.hero-form-wrap {
    flex-shrink: 0;
    width: 380px;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-radius: var(--radius-sm);
    padding: 22px 20px 18px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    opacity: 0;
    animation: fadeUp 0.9s ease 1s forwards;
}

.hero-form-title {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
    text-align: center;
}

.hero-form-sub {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.hero-form-divider {
    height: 1px;
    background: var(--mid-gray);
    margin-bottom: 14px;
}

/* Form fields */
.hero-form .hf-field {
    margin-bottom: 10px;
}

.hero-form .hf-control {
    width: 100%;
    padding: 10px 13px;
    border: 1.5px solid #dde3ec;
    border-radius: var(--radius-sm);
    font-family: var(--body-font);
    font-size: 13px;
    color: var(--text-dark);
    background: #f8fafc;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-form .hf-control:focus {
    border-color: var(--secondary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(13,94,168,0.08);
}

.hero-form .hf-control::placeholder {
    color: #aab;
    font-size: 12px;
}

/* Submit */
.hero-form .hf-submit {
    width: 100%;
    padding: 11px;
    background: var(--primary-color);
    color: #fff;
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.22s ease, transform 0.18s ease;
    margin-top: 4px;
}

.hero-form .hf-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
}

/* Consent tiny text */
.hero-form .hf-consent {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin-top: 10px;
    font-size: 10px;
    color: #999;
    line-height: 1.5;
}

.hero-form .hf-consent input {
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--secondary-color);
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
    }
    .hero-form-wrap {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero-form-wrap { max-width: 100%; }
}


/* promotion banner css */

/* =========================
   PROMOTION BANNER
========================= */

.promotion-banner{
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.promotion-slider{
    width: 100%;
    height: auto;
}

.promotion-slider .swiper-slide{
    width: 100%;
    height: auto;
}

.promotion-slider .swiper-slide img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* =========================
   ARROWS
========================= */

.promotion-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(18,0,58,0.75);
    backdrop-filter: blur(10px);

    color: #fff;
    font-size: 20px;
    cursor: pointer;

    transition: 0.4s ease;

    border: 1px solid rgba(255,255,255,0.10);
}

.promotion-arrow:hover{
    background: linear-gradient(
        135deg,
        #ff0d1b,
        #12003A
    );

    transform: translateY(-50%) scale(1.08);
}

.promotion-prev{
    left: 25px;
}

.promotion-next{
    right: 25px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .promotion-arrow{
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .promotion-prev{
        left: 12px;
    }

    .promotion-next{
        right: 12px;
    }

}


/* =========================
   CENTER PAGINATION
========================= */

.promotion-pagination{
    position: absolute;
    left: 50% !important;
    bottom: 30px;

    transform: translateX(-50%);

    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    width: auto;
}

.promotion-pagination .swiper-pagination-bullet{
    width: 54px;
    height: 12px;

    border-radius: 2px;

    background: rgba(255,255,255,0.35);

    opacity: 1;

    transition: 0.4s ease;
}

/* Active */
.promotion-pagination .swiper-pagination-bullet-active{
    background: #ffffff;

    box-shadow:
        0 0 10px rgba(255,255,255,0.45);
}

/* Mobile */
@media(max-width:768px){

    .promotion-pagination{
        bottom: 15px;
        gap: 8px;
    }

    .promotion-pagination .swiper-pagination-bullet{
        width: 38px;
        height: 8px;
    }

}