/* ==========================================
   HOME PAGE CSS
   ========================================== */

/* HERO SLIDER */
.hero-slider {
    position: relative;
    height: 92vh;
    min-height: 560px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;          /* vertical center */
    justify-content: flex-start;  /* move content to left */
    opacity: 0;
    transition: opacity 1.2s ease;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-1 {
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&q=80');
}

.slide-2 {
    background-image: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=1600&q=80');
}

.slide-3 {
    background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1600&q=80');
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.55) 0%, rgba(26, 26, 26, 0.75) 100%);
}

/* .slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 20px;
    max-width: 800px;
} */

.slide-content {
    position: relative;
    z-index: 2;
    color: #fff;

    max-width: 700px;
    margin-left: 80px;  /* distance from left edge */
    padding: 0;
    text-align: left;
}



.slide-tag {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 16px;
    font-weight: 600;
}

.slide-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 7vw, 90px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 16px;
}

.slide-content h1 span {
    color: var(--yellow);
}

.slide-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.slide-btns {
    display: flex;
    gap: 16px;
    justify-content: left;
    flex-wrap: wrap;
}

.slider-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.dot.active {
    background: var(--yellow);
    transform: scale(1.3);
}

/* RERA BANNER */
.rera-banner {
    background: var(--charcoal);
    padding: 18px 40px;
    border-top: 3px solid var(--yellow);
}

.rera-banner .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 14px;
}

.rera-banner span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rera-banner i {
    color: var(--yellow);
}

.rera-banner a {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 600;
}

/* ABOUT IMG */
.about-img-wrap {
    position: relative;
}

.about-img-main {
    overflow: hidden;
}

.about-img-main img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.about-img-main:hover img {
    transform: scale(1.04);
}

.about-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--yellow);
    color: #fff;
    padding: 22px 28px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.about-img-badge strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    display: block;
    line-height: 1;
}

.about-img-badge span {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-block {
    background: var(--white);
    padding: 34px 28px;
    border: 1px solid var(--border);
    border-top: 4px solid var(--yellow);
    transition: box-shadow 0.3s, transform 0.3s;
}

.feature-block:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
    transform: translateY(-4px);
}

.feat-icon {
    width: 50px;
    height: 50px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.feat-icon i {
    color: #fff;
    font-size: 20px;
}

.feature-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.feature-block p {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.7;
}

/* STATS */
.stats-section {
    background: var(--yellow);
    padding: 50px 40px;
}

.stats-grid {
    max-width: 900px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {}

.stat-item .counter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    display: inline-block;
    line-height: 1;
}

.stat-dec {
    font-size: 36px;
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.stat-item p {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 8px;
}

/* ARCHITECTS */
.arch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.arch-card {
    background: var(--light);
    padding: 40px 34px;
    border-left: 5px solid var(--yellow);
    transition: box-shadow 0.3s;
}

.arch-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.arch-icon {
    width: 56px;
    height: 56px;
    background: var(--charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.arch-icon i {
    color: var(--yellow);
    font-size: 22px;
}

.arch-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.arch-card p {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.8;
}

/* PLAN CARDS */
.plan-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
}

.plan-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.plan-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.plan-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--yellow);
    color: #fff;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.plan-details {
    padding: 20px;
}

.plan-details h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.plan-specs {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.plan-specs span {
    font-size: 13px;
    color: var(--grey);
}

.plan-specs strong {
    color: var(--charcoal);
}

/* LOCATION POINTS */
.location-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.loc-item {
    font-size: 13px;
    color: var(--grey);
    display: flex;
    align-items: center;
    gap: 8px;
}

.loc-num {
    color: var(--yellow);
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}

.map-box {
    border: 3px solid var(--yellow);
    overflow: hidden;
}

.map-box iframe {
    width: 100%;
    height: 380px;
    display: block;
    border: 0;
}

/* ENQ CONTACT ITEMS */
.enq-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.enq-contact-item i {
    color: var(--yellow);
    font-size: 16px;
    width: 20px;
}

.enq-contact-item span {
    font-size: 14px;
}

/* SEC CENTER */
.sec-center {
    text-align: center;
}

/* RESPONSIVE HOME */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .rera-banner .container {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .location-points {
        grid-template-columns: 1fr;
    }
}

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

    .about-img-badge {
        right: 0;
        bottom: 0;
    }

    .slide-btns {
        flex-direction: column;
        align-items: center;
    }
}