/* ============================================
   FLATS PAGE STYLES
   Amaravati Constructions
   ============================================ */

body { padding-bottom: 0 !important; }

/* Branding override */
.text-red { color: var(--secondary-color) !important; }

/* Ensure header matches homepage */
.header { background-color: #FFFFFF; box-shadow: 0 4px 12px rgba(19,70,123,0.05); position: sticky; top: 0; z-index: 1000; }
.header-container { height: 110px; }
.logo img { max-height: 92px; }

/* --- Hero Section --- */
.flats-hero {
    position: relative;
    width: 100%;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.flats-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.flats-hero-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}

.flats-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(19,70,123,0.92) 0%, rgba(15,57,100,0.8) 50%, rgba(19,70,123,0.7) 100%);
}

.flats-hero-grid {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.flats-hero-content { color: var(--white); text-align: left !important; }

.flats-hero-tag {
    display: inline-block;
    padding: 6px 20px;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.06);
}

.flats-hero-title {
    font-family: var(--font-family);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.15);
    text-align: left !important;
}

.flats-hero-subtitle {
    font-size: 16px; font-weight: 300;
    line-height: 1.7; opacity: 0.9;
    margin-bottom: 28px; max-width: 550px;
    text-align: left !important;
}

.flats-hero-highlights {
    display: flex; flex-wrap: wrap; gap: 16px; justify-content: flex-start !important;
}

.hero-highlight {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9);
}

.hero-highlight svg { color: #4ade80; flex-shrink: 0; }

/* Hero Form Card */
.flats-hero-form-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    animation: formSlideIn 0.8s ease-out;
}

@keyframes formSlideIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-card-header {
    background: linear-gradient(135deg, var(--secondary-color), #b3141b);
    padding: 22px 28px;
    color: var(--white);
}

.form-card-header h3 {
    font-size: 20px; font-weight: 600; margin: 0 0 4px;
}

.form-card-header p {
    font-size: 13px; opacity: 0.85; margin: 0;
}

.flats-enquiry-form { padding: 24px 28px 28px; }

.form-field { margin-bottom: 16px; }

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%; padding: 13px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-family);
    transition: border-color 0.3s;
    background: var(--bg-color);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(19,70,123,0.08);
}

.form-field textarea {
    resize: vertical;
    min-height: 80px;
}

.form-submit-btn {
    width: 100%; padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    display: flex; align-items: center; justify-content: center;
}

/* --- Quick Highlights Strip --- */
.quick-highlights {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 0;
}

.highlights-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px 0;
}

.hl-card {
    background: var(--white);
    border: 1px solid rgba(19,70,123,0.08);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.hl-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(19,70,123,0.08);
    border-color: rgba(19,70,123,0.15);
}

.hl-card-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(213,24,32,0.06); /* Brand Red tinted */
    color: var(--secondary-color); /* Brand Red */
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    transition: var(--transition);
}

.hl-card:hover .hl-card-icon {
    background: var(--secondary-color);
    color: var(--white);
}

.hl-card-title {
    display: block;
    font-size: 18px; font-weight: 600; color: var(--primary-color-dark);
    margin-bottom: 4px;
}

.hl-card-label {
    font-size: 13px; color: var(--text-light);
}

/* --- Overview Section --- */
.flats-overview { background: var(--bg-color); }

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.overview-content p {
    font-size: 15px; color: var(--text-light);
    line-height: 1.85; margin-bottom: 18px;
}

.overview-features {
    background: var(--white);
    border-radius: 16px;
    padding: 36px;
    border: 1px solid rgba(19,70,123,0.06);
    box-shadow: var(--shadow-sm);
}

.overview-features-title {
    font-size: 20px; font-weight: 600;
    color: var(--primary-color-dark);
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--secondary-color);
}

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

.feature-list li {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 16px;
    font-size: 14px; color: var(--text-color); line-height: 1.5;
}

.feature-list li svg { color: #28a745; flex-shrink: 0; margin-top: 1px; }
.feature-list li:last-child { margin-bottom: 0; }

/* --- Flat Types Section --- */
.flat-types-section {
    padding: 80px 0;
    background: var(--white);
}

.flat-types-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 850px;
    margin: 0 auto;
}

.flat-type-card {
    background: var(--bg-color);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    border: 1.5px solid rgba(19,70,123,0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.flat-type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(19,70,123,0.12);
}

.flat-type-featured {
    background: linear-gradient(135deg, var(--primary-color-dark), var(--primary-color));
    border: none;
    color: var(--white);
    /* Match 2 BHK card: ribbon / accents stay inside rounded rect */
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(19, 70, 123, 0.35), 0 0 0 2px rgba(255, 214, 120, 0.55);
    z-index: 1;
}

.flat-type-featured .flat-type-name,
.flat-type-featured .flat-type-area,
.flat-type-featured .flat-type-features li {
    color: rgba(255,255,255,0.9);
}

.flat-type-featured .flat-type-name {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.flat-type-featured .flat-type-icon { background: rgba(255,255,255,0.12); color: var(--white); }

/* Shared tag: same pill shape / position for Popular & Premium Choice */
.flat-type-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    left: auto;
    transform: none;
    width: max-content;
    max-width: calc(100% - 28px);
    padding: 8px 14px;
    border-radius: 8px;
    text-align: center;
    white-space: nowrap;
    z-index: 2;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    /* Popular (2 BHK) */
    background: linear-gradient(135deg, var(--secondary-color), #b3141b);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.28);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.flat-type-featured .featured-badge {
    background: linear-gradient(135deg, #ffe08a 0%, #f5c542 45%, #e6a820 100%);
    color: #0d2847;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.flat-type-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(19,70,123,0.06);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.flat-type-name {
    font-size: 22px; font-weight: 600;
    color: var(--primary-color-dark);
    margin-bottom: 6px;
}

.flat-type-area {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.flat-type-features {
    list-style: none; padding: 0; margin: 0 0 28px;
    text-align: left;
}

.flat-type-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 14px;
    color: var(--text-color);
    position: relative;
    padding-left: 20px;
}

.flat-type-featured .flat-type-features li { border-color: rgba(255,255,255,0.12); }

.flat-type-features li::before {
    content: '✓';
    position: absolute; left: 0;
    color: #28a745;
    font-weight: 700;
}

.flat-type-featured .flat-type-features li::before { color: #4ade80; }

.flat-type-features li:last-child { border-bottom: none; }

.flat-type-btn {
    width: 100%; padding: 14px;
    border-radius: 50px;
}

/* --- Masterplan / middle garden: full-bleed hero + on-image caption (ref. style) --- */
.flats-masterplan-section {
    padding: 0;
    margin: 0;
    width: 100%;
    border-top: 1px solid rgba(19, 70, 123, 0.08);
}

.flats-masterplan-hero {
    position: relative;
    width: 100%;
    min-height: clamp(320px, 58vw, 720px);
    max-height: min(88vh, 900px);
    overflow: hidden;
    background: #0a1628;
}

.flats-masterplan-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    display: block;
}

.flats-masterplan-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(8, 18, 40, 0.92) 0%,
        rgba(8, 18, 40, 0.45) 38%,
        rgba(8, 18, 40, 0.12) 62%,
        transparent 100%
    );
}

.flats-masterplan-copy {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1280px;
    margin: 0;
    padding: clamp(28px, 5vw, 56px) clamp(20px, 4vw, 48px) clamp(32px, 6vw, 72px);
    text-align: right;
    box-sizing: border-box;
}

.flats-masterplan-eyebrow {
    margin: 0 0 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 214, 120, 0.95);
}

.flats-masterplan-tagline {
    margin: 0 0 8px;
    max-width: 520px;
    margin-left: auto;
    font-size: clamp(26px, 4.2vw, 44px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.flats-masterplan-tagline-sub {
    margin: 0;
    max-width: 420px;
    margin-left: auto;
    font-size: clamp(14px, 1.9vw, 18px);
    font-weight: 300;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

@media (max-width: 576px) {
    .flats-masterplan-copy {
        text-align: left;
    }
    .flats-masterplan-tagline,
    .flats-masterplan-tagline-sub {
        margin-left: 0;
        max-width: none;
    }
}

/* --- Amenities Showcase --- */
.flats-amenities-section { background: var(--bg-color); }

.section-subtitle {
    font-size: 15px; color: var(--text-light);
    max-width: 600px; margin: -30px auto 50px;
    text-align: center; line-height: 1.6;
}

.amenities-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.amenity-showcase-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.amenity-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.amenity-showcase-card.amenity-large { grid-column: span 1; }

.amenity-showcase-img {
    width: 100%; height: 220px;
    overflow: hidden;
}

.amenity-large .amenity-showcase-img { height: 280px; }

.amenity-showcase-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.amenity-showcase-card:hover .amenity-showcase-img img {
    transform: scale(1.05);
}

.amenity-showcase-info {
    padding: 20px 24px;
}

.amenity-showcase-info h3 {
    font-size: 17px; font-weight: 600;
    color: var(--primary-color-dark);
    margin-bottom: 6px;
}

.amenity-showcase-info p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* After first 2 large cards, switch to 3 columns */
.amenities-showcase .amenity-showcase-card:nth-child(n+3) {
    grid-column: span 1;
}

/* Make the remaining cards a 3-column layout */
@supports (grid-template-columns: repeat(3, 1fr)) {
    .amenities-showcase {
        grid-template-columns: repeat(6, 1fr);
    }
    .amenity-showcase-card.amenity-large { grid-column: span 3; }
    .amenity-showcase-card:nth-child(n+3) { grid-column: span 2; }
}

/* --- Connectivity Section --- */
.connectivity-section {
    padding: 80px 0;
    background: var(--white);
}

.connectivity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.connectivity-card {
    background: var(--bg-color);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    border: 1px solid rgba(19,70,123,0.04);
    transition: var(--transition);
}

.connectivity-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(19,70,123,0.1);
}

.conn-icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(19,70,123,0.06);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    color: var(--primary-color);
}

.connectivity-card:hover .conn-icon {
    background: var(--primary-color);
    color: var(--white);
}

.connectivity-card h4 {
    font-size: 16px; font-weight: 600;
    color: var(--primary-color-dark);
    margin-bottom: 4px;
}

.connectivity-card p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* --- Flats by location (listing grid) --- */
.flats-locations-section {
    background: var(--bg-color);
    border-top: 1px solid rgba(19, 70, 123, 0.06);
}

.flats-locations-heading .section-subtitle.flats-locations-intro {
    margin: 14px auto 48px;
    max-width: 640px;
}

.flats-locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.flats-location-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(19, 70, 123, 0.08);
    box-shadow: 0 8px 28px rgba(19, 70, 123, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.flats-location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(19, 70, 123, 0.12);
}

.flats-location-media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #e8ecf2;
    overflow: hidden;
}

.flats-location-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.flats-location-card:hover .flats-location-img {
    transform: scale(1.04);
}

.flats-location-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1a1a1a;
    background: linear-gradient(135deg, #ffe08a, #f0c14b);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.flats-location-logo {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    z-index: 2;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.flats-location-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.flats-location-body {
    padding: 44px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.flats-location-bhk {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color-dark);
}

.flats-location-place {
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
}

.flats-location-pin {
    flex-shrink: 0;
    color: var(--secondary-color);
}

.flats-location-specs {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    text-align: left;
    font-size: 13px;
    color: var(--text-color);
    line-height: 1.55;
    flex: 1;
}

.flats-location-specs li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.flats-location-specs li:last-child {
    border-bottom: none;
}

.flats-location-specs .spec-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
    margin-bottom: 2px;
}

.flats-location-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    min-width: 160px;
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(180deg, #2fa86b, #248a57);
    box-shadow: 0 4px 14px rgba(36, 138, 87, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flats-location-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(36, 138, 87, 0.45);
}

@media (max-width: 991px) {
    .flats-locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

@media (max-width: 576px) {
    .flats-locations-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

/* --- CTA Section --- */
.flats-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color-dark), var(--primary-color), #1a5a9e);
    text-align: center;
}

.flats-cta-title {
    font-size: 38px; font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.flats-cta-text {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.flats-cta-buttons {
    display: flex; justify-content: center;
    gap: 16px; flex-wrap: wrap;
}

.flats-cta-btn {
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-color-dark);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* --- Promise Section --- */
.promise-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.promise-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 380px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.promise-card-img {
    width: 100%; height: 100%;
    position: relative;
}

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

.promise-card:hover .promise-card-img img {
    transform: scale(1.08);
}

.promise-card-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    z-index: 1;
}

.promise-card-title {
    position: absolute;
    bottom: 30px; left: 24px; right: 24px;
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    z-index: 2;
    margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .flats-hero { min-height: auto; }
    .flats-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .flats-hero-title { font-size: 32px; }
    .flats-hero-form-card { max-width: 450px; }

    .highlights-cards { grid-template-columns: repeat(2, 1fr); gap: 15px; }

    .overview-grid { grid-template-columns: 1fr; gap: 30px; }

    .flat-types-grid { grid-template-columns: 1fr; max-width: 420px; }

    .amenities-showcase { grid-template-columns: repeat(2, 1fr) !important; }
    .amenity-showcase-card.amenity-large,
    .amenity-showcase-card:nth-child(n+3) { grid-column: span 1 !important; }
    .amenity-large .amenity-showcase-img { height: 220px; }

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

    .flats-cta-title { font-size: 30px; }
}

@media (max-width: 576px) {
    .flats-hero-title { font-size: 26px; text-align: left !important; }
    .flats-hero-subtitle { font-size: 14px; text-align: left !important; }
    .flats-hero-highlights { flex-direction: column; gap: 10px; align-items: flex-start !important; }
    .flats-hero-form-card { max-width: 100%; }

    .highlights-cards { grid-template-columns: 1fr; }
    .hl-item { min-width: 140px; }

    .amenities-showcase { grid-template-columns: 1fr !important; }
    .amenity-showcase-img { height: 200px !important; }

    .connectivity-grid { grid-template-columns: 1fr; }
    .promise-grid { grid-template-columns: 1fr; }
    .promise-card { height: 300px; }

    .flats-cta-title { font-size: 24px; }
    .flats-cta-btn { width: 100%; text-align: center; }
}
