/*
Theme Name: Astra Child
Template: astra
*/

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

        :root {
            --color-navy: #1e3a5f;
            --color-navy-dark: #152a45;
            --color-orange: #ff7733;
            --color-orange-light: #ff9966;
            --color-gold: #d4a574;
            --color-white: #ffffff;
            --color-light-bg: #f8f9fa;
            --color-text: #2c2c2c;
            --color-text-light: #666666;
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Poppins', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--color-text);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Banner */

        .hero-image {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

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

.hero-content {
    position: absolute;
    top: 60%;
    left: 40%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 90%;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 48px;
}


.hero-content h3 {
    font-size: 22px;
    margin-bottom: 20px;
}
.hero-content img{
    height: 20px;
    width: 20px;
}

.mx-price {
    position: relative;
    line-height: 1;
    width: max-content;
    padding: 10px 60px;
    background-image: linear-gradient(to right, #c49e4a, rgb(196 158 74 / 52%), rgb(0 0 0 / 0%));
    display: flex;
    flex-direction: column;
    color: white !important;
}

.rupee-symbol {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 50px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
}
.price-line{
    font-size: 14px;
    letter-spacing: 3px;
    color: white;
}

.amount{
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 1.5px;
    margin-top: 5px;
    color: white;
}


/* Wrapper */

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.brochure-btn {
    background: #203E74;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s ease;
}

/* Premium Auto Attention Animation */
.brochure-btn {
    animation: luxuryPulse 2.5s ease-in-out infinite;
}

/* Zoom In – Zoom Out Smooth */
@keyframes luxuryPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
    }
}

.brochure-btn:hover {
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-light) 100%);
}

.hero-highlights {
    list-style: none;
    padding: 0;
}

.hero-highlights li {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-highlights img{
    height: 20px;
    width: 20px;
}


.luxury-tag {
    display: inline-block;
    background: linear-gradient(90deg, #9A7A30, #C9A84C 60%, #E8C97A);
    color: #0A0806;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    padding: 8px 20px 8px 16px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
    margin-bottom: 10px;
    animation: fadeIn 0.9s ease 0.85s both;
}

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(12px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: 1px solid rgba(30, 58, 95, 0.1);
        }

        header.scrolled {
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 5px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .logo-container img {
            max-height: 60px;
            width: auto;
        }

        .logo {
            height: 60px;
            width: auto;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        nav a {
            color: var(--color-navy);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            position: relative;
            transition: color 0.3s ease;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-orange);
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: var(--color-orange);
        }

        nav a:hover::after {
            width: 100%;
        }

        .cta-btn {
            background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-light) 100%);
            color: var(--color-white) !important;
            padding: 8px 30px;
            border-radius: 50px;
            font-weight: 500;
            box-shadow: 0 4px 15px rgba(255, 119, 51, 0.3);
            transition: all 0.3s ease;
        }

        .cta-btn::after {
            display: none;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 119, 51, 0.4);
        }

        /* Mobile Menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: var(--color-navy);
            transition: 0.3s;
            border-radius: 2px;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.95) 0%, rgba(21, 42, 69, 0.85) 100%),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%231e3a5f" width="1920" height="1080"/><circle fill="%23ff7733" opacity="0.08" cx="400" cy="300" r="350"/><circle fill="%23ff7733" opacity="0.05" cx="1500" cy="700" r="500"/></svg>');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(to top, rgba(30, 58, 95, 0.8), transparent);
        }
        .hero-highlights{
            list-style: none;
        }
        /* Section Common Styles */
        section {
            padding: 4rem 3rem;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .section-badge {
            display: inline-block;
            padding: 0.5rem 1.2rem;
            background: rgba(255, 119, 51, 0.1);
            color: var(--color-orange);
            border-radius: 50px;
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--color-navy);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.15rem;
            color: var(--color-text-light);
            line-height: 1.8;
        }

        /* Overview Section */
        #overview {
            background: var(--color-white);
        }

        .overview-grid {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .overview-content h3 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            color: var(--color-navy);
            margin-bottom: 1.5rem;
        }

        .overview-content p {
            font-size: 1.05rem;
            line-height: 1.9;
            color: var(--color-text-light);
            margin-bottom: 1.5rem;
        }

        .overview-image {
        width: 100%;
        height: 500px;
        overflow: hidden;
        }

        .overview-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 30%;
        }

        .overview-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-card {
            padding: 20px;
            background: var(--color-light-bg);
            border-left: 4px solid var(--color-orange);
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateX(10px);
        }

        .stat-value {
            font-size: 20px;
            font-weight: 700;
            color: var(--color-navy);
        }

        .stat-label {
            font-size: 0.95rem;
            color: var(--color-text-light);
            margin-top: 0.5rem;
        }

        .highlights-section {
  position: relative;
  background: linear-gradient(160deg, #0d1b35 0%, #1a2744 45%, #0f1e38 100%);
  padding: 90px 0 100px;
  overflow: hidden;
}
.highlights-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}

.highlights-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative; z-index: 1;
}

/* Header */
.hl-header { text-align: center; margin-bottom: 64px; }
.hl-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,119,51,0.12);
  border: 1px solid rgba(255,119,51,0.35);
  color: #ff9966;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 2px; margin-bottom: 20px;
}
.hl-badge::before { content: '✦'; font-size: 7px; }
.hl-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 58px); font-weight: 300;
  color: #ffffff; line-height: 1.1; margin-bottom: 14px;
}
.hl-title em { color: #ff7733; font-style: italic; font-weight: 400; }
.hl-subtitle {
  font-family: 'Montserrat', sans-serif; font-size: 13px;
  color: rgba(255,255,255,0.4); font-weight: 400;
}
.hl-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin: 20px 0 0;
}
.hl-div-line { height: 1px; width: 60px; background: linear-gradient(to right, transparent, #ff7733); }
.hl-div-line.r { background: linear-gradient(to left, transparent, #ff7733); }
.hl-div-diamond { width: 5px; height: 5px; background: #ff7733; transform: rotate(45deg); }

/* Grid */
.hl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.hl-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 36px 28px 32px;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  opacity: 0;
  transform: translateY(36px);
}
.hl-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.16,1,0.3,1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}
.hl-card:hover {
  border-color: rgba(255,119,51,0.4);
  box-shadow:
    0 0 0 1px rgba(255,119,51,0.15),
    0 20px 50px rgba(0,0,0,0.4),
    0 0 40px rgba(255,119,51,0.06);
  transform: translateY(-5px);
}
.hl-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff7733, transparent);
  opacity: 0; transition: opacity 0.35s ease;
}
.hl-card:hover::before { opacity: 1; }
.hl-card::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 60px; height: 60px;
  background: radial-gradient(circle at bottom right, rgba(255,119,51,0.08), transparent 70%);
}

/* Card number */
.hl-card-num {
  position: absolute; top: 20px; right: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-weight: 600;
  color: rgba(255,119,51,0.25); letter-spacing: 1px;
}

/* Icon */
.hl-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,119,51,0.1);
  border: 1px solid rgba(255,119,51,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.hl-card:hover .hl-icon {
  background: rgba(255,119,51,0.18);
  border-color: rgba(255,119,51,0.5);
  box-shadow: 0 0 20px rgba(255,119,51,0.15);
}
.hl-icon svg { width: 22px; height: 22px; stroke: #ff9966; fill: none; stroke-width: 1.5; transition: stroke 0.35s; }
.hl-card:hover .hl-icon svg { stroke: #ff7733; }

/* Title */
.hl-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  color: #ffffff; margin-bottom: 12px; line-height: 1.2;
  transition: color 0.3s;
}
.hl-card:hover .hl-card-title { color: #fff8f3; }
.hl-card-title::after {
  content: ''; display: block;
  height: 1px; width: 0;
  background: #ff7733; margin-top: 6px;
  transition: width 0.35s ease;
}
.hl-card:hover .hl-card-title::after { width: 40px; }

/* Text */
.hl-card-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.75;
}

/* Featured card */
.hl-card.featured {
  background: rgba(255,119,51,0.06);
  border-color: rgba(255,119,51,0.2);
}
.hl-card.featured .hl-card-title { color: #fff3ec; }
.hl-card.featured .hl-card-text { color: rgba(255,255,255,0.6); }

/* Stats bar */
.hl-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px; margin-top: 48px; overflow: hidden;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}
.hl-stats.revealed { opacity: 1; transform: translateY(0); }
.hl-stat {
  background: rgba(255,255,255,0.02);
  padding: 28px 24px; text-align: center; transition: background 0.3s;
}
.hl-stat:hover { background: rgba(255,119,51,0.06); }
.hl-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 600;
  color: #ff7733; line-height: 1; margin-bottom: 6px;
}
.hl-stat-num sup { font-size: 0.5em; vertical-align: super; color: #ff9966; }
.hl-stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .hl-grid { grid-template-columns: repeat(2, 1fr); }
  .hl-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hl-grid { grid-template-columns: 1fr; }
  .hl-stats { grid-template-columns: repeat(2, 1fr); }
  .highlights-section { padding: 60px 0 70px; }
  .hl-header { margin-bottom: 40px; }
}

        /* Pricing Section */
.pricing-section {
  position: relative;
  background: linear-gradient(170deg, #0d1b35 0%, #1a2744 55%, #0f1e38 100%);
  padding: 90px 0 80px;
  overflow: hidden;
}
.pricing-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}
.pricing-section::after {
  content: 'PRICING';
  position: absolute; bottom: -20px; right: -10px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(80px, 12vw, 160px); font-weight: 800;
  color: rgba(255,119,51,0.03); letter-spacing: 10px;
  pointer-events: none; z-index: 0; white-space: nowrap;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative; z-index: 1;
}

/* ── Header ── */
.pr-header { text-align: center; margin-bottom: 52px; }
.pr-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,119,51,0.12);
  border: 1px solid rgba(255,119,51,0.35);
  color: #ff9966;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 2px; margin-bottom: 18px;
}
.pr-badge::before { content: '✦'; font-size: 7px; }
.pr-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 52px); font-weight: 300;
  color: #ffffff; line-height: 1.1; margin-bottom: 12px;
}
.pr-title em { color: #ff7733; font-style: italic; font-weight: 400; }
.pr-subtitle {
  font-family: 'Montserrat', sans-serif; font-size: 12.5px;
  color: rgba(255,255,255,0.38);
}
.pr-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 18px;
}
.pr-div-line { height: 1px; width: 55px; background: linear-gradient(to right, transparent, #ff7733); }
.pr-div-line.r { background: linear-gradient(to left, transparent, #ff7733); }
.pr-div-diamond { width: 5px; height: 5px; background: #ff7733; transform: rotate(45deg); }

/* ── 4-column grid ── */
.pr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

/* ── Card ── */
.pr-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 30px 24px 26px;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
              border-color 0.35s ease, box-shadow 0.35s ease;

  /* Scroll reveal */
  opacity: 0; transform: translateY(32px);
}
.pr-card.revealed {
  opacity: 1; transform: translateY(0);
  transition:
    opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1),
    border-color 0.35s ease, box-shadow 0.35s ease;
}
.pr-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,119,51,0.45);
  box-shadow: 0 0 0 1px rgba(255,119,51,0.12), 0 20px 50px rgba(0,0,0,0.45), 0 0 40px rgba(255,119,51,0.07);
}
/* Top shimmer line */
.pr-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #ff7733, transparent);
  opacity: 0; transition: opacity 0.35s;
}
.pr-card:hover::before { opacity: 1; }

/* Featured / Popular card */
.pr-card.featured {
  background: rgba(255,119,51,0.07);
  border-color: rgba(255,119,51,0.28);
}
.pr-card.featured::before { opacity: 0.6; }

/* Popular tag */
.pr-popular-tag {
  position: absolute; top: 14px; right: 14px;
  background: linear-gradient(135deg, #e05e1a, #ff7733);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 7.5px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
}

/* BHK type label */
.pr-type {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: #ff7733; margin-bottom: 10px;
}

/* Price */
.pr-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px; font-weight: 600;
  color: #ffffff; line-height: 1; margin-bottom: 4px;
}
.pr-price sup { font-size: 0.5em; vertical-align: super; color: #ff9966; }
.pr-price-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

/* Divider */
.pr-line {
  height: 1px; background: rgba(255,255,255,0.07);
  margin-bottom: 18px;
}

/* Area badge */
.pr-area {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,119,51,0.1);
  border: 1px solid rgba(255,119,51,0.22);
  border-radius: 2px; padding: 6px 12px;
  margin-bottom: 16px; width: fit-content;
}
.pr-area svg { width: 12px; height: 12px; stroke: #ff9966; fill: none; stroke-width: 2; }
.pr-area-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 600;
  color: #ff9966; letter-spacing: 0.5px;
}

/* On Request text */
.pr-on-request {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; flex: 1;
  padding: 0px 0px 20px !important;
  text-align: center;
  color: #ffffff;
}

/* CTA Button */
.pr-btn {
  display: block; width: 100%;
  background: linear-gradient(135deg, #e05e1a 0%, #ff7733 60%, #ff9966 100%);
  color: white !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 13px 20px; border: none;
  border-radius: 3px; cursor: pointer;
  text-align: center; text-decoration: none !important;
  box-shadow: 0 4px 18px rgba(255,119,51,0.35);
  transition: transform 0.25s, box-shadow 0.25s;
  margin-top: auto;
}
.pr-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,119,51,0.55);
}

/* Ghost button for "on request" cards */
.pr-btn.ghost {
  background: transparent !important;
  border: 1px solid rgba(255,119,51,0.45) !important;
  color: #ff9966 !important;
  box-shadow: none !important;
}
.pr-btn.ghost:hover {
  background: rgba(255,119,51,0.1) !important;
  border-color: #ff7733 !important;
  color: #ff7733 !important;
  box-shadow: 0 4px 20px rgba(255,119,51,0.15) !important;
}

/* Disclaimer */
.pr-disclaimer {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; color: rgba(255,255,255,0.25);
  line-height: 1.6; margin-top: 8px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pr-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .pr-grid { grid-template-columns: 1fr; }
  .pricing-section { padding: 60px 0 70px; }
}

        /* Location Section */
        #location {
            background: var(--color-white);
        }

        .location-container {
            max-width: 1300px;
            margin: 0 auto;
        }

        .location-grid {
            display: grid;
            grid-template-columns: 40% 60%;
            gap: 4rem;
        }

        .connectivity-list {
            list-style: none;
        }

        .connectivity-item {
            padding: 1.5rem;
            background: var(--color-light-bg);
            margin-bottom: 1rem;
            border-radius: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .connectivity-item:hover {
            background: var(--color-white);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transform: translateX(10px);
        }

        .connectivity-name {
            font-weight: 500;
            color: var(--color-navy);
            display: flex;
            align-items: center;
        }

        .connectivity-name::before {
            content: '📍';
            margin-right: 1rem;
            font-size: 1.2rem;
        }

        .connectivity-time {
            font-weight: 600;
            color: var(--color-orange);
            font-size: 1.1rem;
        }

        .location-map{
            width: 100%;
            max-width: 650px;
        }

        .location-map img{
            width: 100%;
            height: auto;
            display: block;
        }
        /* Amenities Section */
#amenities {
  background: var(--color-light-bg, #f8f9fa);
  padding: 5rem 0 4rem;
  overflow: hidden;
}
#amenities .section-header {
  padding: 0 2rem;
  max-width: 1300px;
  margin: 0 auto 3rem;
}

.am-row-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.am-row {
  display: flex;
  gap: 16px;
  padding: 6px 20px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Card */
.am-card {
  position: relative;
  width: 280px;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
}
.am-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.am-card:hover img { transform: scale(1.06); }

.am-name {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px 14px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.68), transparent);
  font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  border-radius: 0 0 14px 14px;
}

@media (max-width: 1024px) {
  .am-card { width: 240px; height: 175px; }
}
@media (max-width: 768px) {
  #amenities { padding: 3rem 0 2.5rem; }
  #amenities .section-header { padding: 0 1.5rem; margin-bottom: 1.8rem; }
  .am-card { width: 190px; height: 145px; border-radius: 10px; }
  .am-row  { gap: 12px; padding: 6px 16px; }
  .am-name { font-size: 12px; padding: 22px 10px 10px; }
}
@media (max-width: 480px) {
  .am-card { width: 155px; height: 120px; border-radius: 8px; }
  .am-name { font-size: 11px; }
}

        /* Contact Section */
        #contact {
            background: var(--color-white);
        }
        
        /* Footer */
        footer {
            background: var(--color-navy-dark);
            color: var(--color-white);
            padding: 4rem 3rem 2rem;
        }

        .footer-content {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-about img {
            height: 50px;
            margin-bottom: 1.5rem;
        }

        .footer-about p {
            opacity: 0.8;
            line-height: 1.8;
            font-size: 0.95rem;
        }

        .footer-section h4 {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--color-orange);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--color-orange);
        }

        .footer-bottom {
            max-width: 1300px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            opacity: 0.7;
            font-size: 0.85rem;
        }
        .footer-bottom a{
          color: white;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .header-container {
                padding: 1rem 2rem;
            }

            section {
                padding: 5rem 2rem;
            }

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

            .overview-grid,
            .location-grid,
            .pricing-cards {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

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

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

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            nav {
                position: fixed;
                top: 75px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 75px);
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                transition: left 0.3s ease;
                padding: 2rem;
            }

            nav.active {
                left: 0;
            }

            nav ul {
                flex-direction: column;
                gap: 1.5rem;
                height: auto;
            }

            .hero {
                height: auto;
                min-height: 100vh;
                padding: 8rem 1.5rem 4rem;
            }

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

            .hero-features {
                flex-direction: column;
                gap: 1.5rem;
            }

            .hero-cta-group {
                flex-direction: column;
            }

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

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

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 480px) {
            .logo {
                height: 45px;
            }

            section {
                padding: 3rem 1.5rem;
            }

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

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }


/* Schedule Site Visit */
/* =============================================
   CONTACT SECTION FORM — Page pe direct form
   ============================================= */

#contact .wpcf7 {
  max-width: 700px;
  margin: 40px auto 0;
}

/* Layout */
#contact .me-form-wrap  { display: flex; flex-direction: column; gap: 0; }
#contact .me-field-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
#contact .me-field-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
#contact .me-field-row .me-field-group { margin-bottom: 0; }
#contact .me-consent-wrap { margin-bottom: 16px; }

/* Labels */
#contact .me-label {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 9px !important;
  letter-spacing: 2px !important;
  color: #555555 !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  margin-bottom: 5px !important;
  display: block !important;
}
#contact .req { color: #ff7733 !important; }

/* Inputs */
#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact select,
#contact textarea {
  width: 100% !important;
  background: #f8f7f5 !important;
  border: 1.5px solid #e2ddd8 !important;
  border-radius: 4px !important;
  color: #1a1a1a !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  padding: 12px 16px !important;
  outline: none !important;
  -webkit-appearance: none !important;
  transition: border-color 0.25s, box-shadow 0.25s !important;
  box-shadow: none !important;
  display: block !important;
}
#contact input::placeholder,
#contact textarea::placeholder {
  color: #bbbbbb !important;
  font-size: 12px !important;
}
#contact input:focus,
#contact select:focus,
#contact textarea:focus {
  border-color: #ff7733 !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(255,119,51,0.1) !important;
}

/* Validation error */
#contact input.wpcf7-not-valid,
#contact select.wpcf7-not-valid,
#contact textarea.wpcf7-not-valid {
  border-color: #e53e3e !important;
  background: #fff5f5 !important;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.1) !important;
}
#contact .wpcf7-not-valid-tip {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 10px !important;
  color: #e53e3e !important;
  font-weight: 500 !important;
  margin-top: 4px !important;
  display: block !important;
}
#contact .wpcf7-not-valid-tip::before { content: '⚠ '; }

/* Select arrow */
#contact select {
  cursor: pointer !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ff7733' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-color: #f8f7f5 !important;
  padding-right: 36px !important;
}
#contact select:focus { background-color: #ffffff !important; }
#contact select option { background: white; color: #1a1a1a; }

/* Textarea */
#contact textarea { min-height: 110px !important; resize: vertical !important; }

/* Consent */
#contact .wpcf7-acceptance .wpcf7-list-item {
  display: flex !important; align-items: flex-start !important;
  gap: 10px !important; margin: 0 !important;
}
#contact .wpcf7-acceptance input[type="checkbox"] {
  width: 15px !important; height: 15px !important;
  flex-shrink: 0 !important; margin-top: 2px !important;
  accent-color: #ff7733 !important; cursor: pointer !important;
}
#contact .wpcf7-list-item-label {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 10px !important; color: #888888 !important; line-height: 1.6 !important;
}
#contact .wpcf7-list-item-label a { color: #ff7733 !important; text-decoration: none !important; }

/* Submit Button */
#contact input[type="submit"],
#contact .wpcf7-submit {
  width: 100% !important;
  background: linear-gradient(135deg, #e05e1a 0%, #ff7733 60%, #ff9966 100%) !important;
  color: white !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12px !important; font-weight: 700 !important;
  letter-spacing: 2.5px !important; text-transform: uppercase !important;
  padding: 16px 24px !important;
  border: none !important; cursor: pointer !important; border-radius: 4px !important;
  box-shadow: 0 4px 20px rgba(255,119,51,0.35) !important;
  transition: transform 0.25s, box-shadow 0.25s !important;
  margin-top: 6px !important; display: block !important;
}
#contact input[type="submit"]:hover,
#contact .wpcf7-submit:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(255,119,51,0.5) !important;
}

/* Success / Error messages */
#contact .wpcf7-response-output {
  margin-top: 14px !important; padding: 13px 18px !important;
  font-size: 12px !important; font-family: 'Montserrat', sans-serif !important;
  border-radius: 4px !important; font-weight: 500 !important;
}
#contact .wpcf7-mail-sent-ok {
  background: #f0fff4 !important; border: 1.5px solid #9ae6b4 !important; color: #2f855a !important;
}
#contact .wpcf7-validation-errors {
  background: #fff5f5 !important; border: 1.5px solid #feb2b2 !important; color: #e53e3e !important;
}

/* br tags hide */
#contact .wpcf7 br { display: none !important; }

/* Responsive */
@media (max-width: 600px) {
  #contact .me-field-row { grid-template-columns: 1fr !important; }
}


/* ============================================================
   COMPLETE RESPONSIVE OVERHAUL
   Breakpoints: 1024px (tablet), 768px (mobile), 480px (small)
   ============================================================ */

/* ── Hero Banner — mobile fix ── */
@media (max-width: 1024px) {
  .hero-content {
    left: 50% !important;
    top: 55% !important;
    transform: translate(-50%, -50%) !important;
    width: 85% !important;
    max-width: 100% !important;
  }
  .hero-content h1 { font-size: 38px !important; }
  .hero-content h3 { font-size: 18px !important; }
}

@media (max-width: 768px) {
  .hero-image { height: 100svh; }
  .hero-content {
    left: 50% !important;
    top: 58% !important;
    transform: translate(-50%, -50%) !important;
    width: 90% !important;
    text-align: left !important;
  }
  .hero-content h1 { font-size: 30px !important; line-height: 1.2 !important; }
  .hero-content h3 { font-size: 15px !important; margin-bottom: 14px !important; }

  .mx-price {
    padding: 8px 44px !important;
  }
  .rupee-symbol { font-size: 36px !important; left: 12px !important; }
  .amount { font-size: 20px !important; }
  .price-line { font-size: 11px !important; }

  .price-wrapper { gap: 12px !important; flex-wrap: wrap !important; }
  .brochure-btn { padding: 11px 20px !important; font-size: 14px !important; }

  .hero-highlights li { font-size: 13px !important; }
  .hero-highlights img { height: 16px !important; width: 16px !important; }
  .luxury-tag { font-size: 8px !important; padding: 6px 14px 6px 12px !important; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 24px !important; }
  .hero-content h3 { font-size: 13px !important; }
  .hero-content {
    top: 60% !important;
    width: 92% !important;
  }
  .brochure-btn { width: 100% !important; text-align: center !important; display: block !important; }
  .price-wrapper { flex-direction: column !important; align-items: flex-start !important; }
}

/* ── Header — mobile hamburger ── */
@media (max-width: 768px) {
  .header-container {
    padding: 10px 20px !important;
  }
  .logo-container img { max-height: 44px !important; }

  .menu-toggle { display: flex !important; z-index: 1001; }

  nav {
    position: fixed !important;
    top: 64px !important;
    left: -100% !important;
    width: 100% !important;
    height: calc(100vh - 64px) !important;
    background: rgba(255,255,255,0.99) !important;
    backdrop-filter: blur(12px) !important;
    transition: left 0.3s ease !important;
    padding: 2rem 1.5rem !important;
    z-index: 1000 !important;
    overflow-y: auto !important;
  }
  nav.active { left: 0 !important; }

  nav ul {
    flex-direction: column !important;
    gap: 0 !important;
    align-items: flex-start !important;
  }
  nav ul li { width: 100% !important; border-bottom: 1px solid rgba(30,58,95,0.08) !important; }
  nav ul li:last-child { border-bottom: none !important; margin-top: 1rem !important; }
  nav a {
    display: block !important;
    padding: 1rem 0 !important;
    font-size: 1rem !important;
  }
  .cta-btn {
    display: block !important;
    text-align: center !important;
    padding: 12px 20px !important;
    border-radius: 8px !important;
  }
}

/* ── Overview Section ── */
@media (max-width: 1024px) {
  .overview-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  .overview-image { height: 350px !important; }
  .overview-content h3 { font-size: 2rem !important; }
}

@media (max-width: 768px) {
  .overview-image { height: 260px !important; }
  .overview-content h3 { font-size: 1.6rem !important; }
  .overview-stats { grid-template-columns: 1fr 1fr !important; gap: 1rem !important; }
  .stat-card { padding: 14px !important; }
  .stat-value { font-size: 16px !important; }
  .stat-label { font-size: 0.8rem !important; }
  #overview { padding: 3rem 1.5rem !important; }
}

@media (max-width: 480px) {
  /* .overview-stats { grid-template-columns: 1fr !important; } */
  .overview-image { height: 350px !important; }
}

/* ── Highlights Section — already has responsive, strengthen it ── */
@media (max-width: 1024px) {
  .highlights-section { padding: 70px 0 80px !important; }
  .hl-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .hl-stats { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 600px) {
  .highlights-section { padding: 50px 0 60px !important; }
  .highlights-container { padding: 0 16px !important; }
  .hl-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .hl-card { padding: 28px 22px 26px !important; }
  .hl-header { margin-bottom: 32px !important; }
  .hl-stats { grid-template-columns: 1fr 1fr !important; }
  .hl-stat { padding: 20px 14px !important; }
  .hl-stat-num { font-size: 30px !important; }
}

/* ── Pricing Section ── */
@media (max-width: 1024px) {
  .pr-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
  .pricing-section { padding: 70px 0 60px !important; }
}

@media (max-width: 640px) {
  .pr-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .pricing-container { padding: 0 16px !important; }
  .pricing-section { padding: 50px 0 50px !important; }
  .pr-card { padding: 24px 20px 22px !important; }
  .pr-price { font-size: 28px !important; }
  .pr-title { font-size: 28px !important; }
}

/* ── Location Section ── */
@media (max-width: 1024px) {
  .location-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  .location-map { max-width: 100% !important; }
}

@media (max-width: 768px) {
  #location { padding: 3rem 1.5rem !important; }
  .connectivity-item { padding: 1rem !important; }
  .connectivity-name { font-size: 14px !important; }
  .connectivity-time { font-size: 15px !important; }
}

@media (max-width: 480px) {
  .connectivity-name::before { margin-right: 0.5rem !important; }
  #location { padding: 2.5rem 1rem !important; }
}

/* ── Amenities Section ── */
@media (max-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 1.5rem !important; }
}

@media (max-width: 768px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem !important; }
  .amenity-card { padding: 1.8rem 1rem !important; }
  #amenities { padding: 3rem 1.5rem !important; }
}

@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.8rem !important; }
  .amenity-card { padding: 1.4rem 0.8rem !important; }
  .amenity-card::before { font-size: 1.5rem !important; margin-bottom: 0.6rem !important; }
  .amenity-card p { font-size: 13px !important; }
}

/* ── Contact / Form Section ── */
@media (max-width: 768px) {
  #contact { padding: 3rem 1.5rem !important; }
  #contact .wpcf7 { margin: 20px auto 0 !important; }
  .section-title { font-size: 2rem !important; }
  .section-subtitle { font-size: 1rem !important; }
  .section-header { margin-bottom: 2.5rem !important; }
}

@media (max-width: 600px) {
  #contact .me-field-row { grid-template-columns: 1fr !important; }
  #contact { padding: 2.5rem 1rem !important; }
}

/* ── Footer ── */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr !important;
    gap: 2.5rem !important;
  }
  footer { padding: 3rem 2rem 2rem !important; }
}

@media (max-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  footer { padding: 2.5rem 1.5rem 1.5rem !important; }
  .footer-about img { height: 40px !important; }
  .footer-about p { font-size: 0.88rem !important; }
  .footer-section h4 { font-size: 1.1rem !important; margin-bottom: 1rem !important; }
  .footer-bottom { font-size: 0.78rem !important; padding-top: 1.5rem !important; }
}

/* ── Section common — all devices ── */
@media (max-width: 768px) {
  section { padding: 3rem 1.5rem !important; }
  .section-title { font-size: 1.9rem !important; }
  .section-badge { font-size: 0.75rem !important; letter-spacing: 1.5px !important; }
}

@media (max-width: 480px) {
  section { padding: 2.5rem 1rem !important; }
  .section-title { font-size: 1.6rem !important; }
}

/* ── Touch device improvements ── */
@media (hover: none) {
  .connectivity-item:hover { transform: none !important; }
  .amenity-card:hover { transform: none !important; }
  .stat-card:hover { transform: none !important; }
  .pr-card:hover { transform: none !important; }
  .hl-card:hover { transform: none !important; }
}

/* ── Popup — tablet ── */
@media (max-width: 840px) and (min-width: 681px) {
  .max-popup {
    max-width: 720px !important;
    max-height: 90vh !important;
  }
  .mp-left { padding: 26px 20px !important; }
  .mp-right { padding: 24px 24px 20px !important; }
  .mp-title { font-size: 28px !important; }
}

@media (max-width: 680px) {
  .max-popup {
    grid-template-columns: 1fr !important;
    height: auto !important;
    max-height: 92svh !important;
    overflow-y: auto !important;
  }
  /* Left panel hide on small mobile */
  .mp-left { display: none !important; }
  .mp-right {
    padding: 28px 20px 24px !important;
    overflow-y: visible !important;
  }
  .mp-right .me-field-row { grid-template-columns: 1fr !important; }
  .mp-right .me-field-row .me-field-group { margin-bottom: 12px !important; }
  .mp-form-title { font-size: 22px !important; }
  /* Close button position adjust */
  .mp-close { top: 10px !important; right: 10px !important; }
}






/* ============================================================
   MOBILE HERO — Card Style (768px se kam)
   ============================================================ */

@media (max-width: 768px) {

  /* ── Hero container — vertical stack ── */
  .hero-image {
    height: auto !important;
    min-height: unset !important;
    display: flex !important;
    flex-direction: column !important;
    padding-top: 64px !important;
    background: #fff !important;
  }

  /* ── Banner image — top mein fixed height ── */
  .hero-image > img:first-child {
    position: static !important;
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    object-position: center 30% !important;
    display: block !important;
    flex-shrink: 0 !important;
  }

  /* ── Content — white background, neeche ── */
  .hero-content {
    position: static !important;
    transform: none !important;
    top: auto !important; left: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    color: #1a2744 !important;
    background: #ffffff !important;
    padding: 18px 16px 0 !important;
  }

  /* ── H1 — project name ── */
  .hero-content h1 {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #1a2744 !important;
    margin-bottom: 6px !important;
    line-height: 1.2 !important;
  }
  .hero-content h1 span {
    color: #ff7733 !important;
  }

  /* ── Luxury tag ── */
  .luxury-tag {
    font-size: 7.5px !important;
    padding: 5px 14px 5px 10px !important;
    margin-bottom: 10px !important;
    letter-spacing: 2px !important;
    display: block !important;
    width: fit-content !important;
  }

  /* ── H3 location ── */
  .hero-content h3 {
    font-size: 13px !important;
    color: #444 !important;
    font-weight: 500 !important;
    margin-bottom: 12px !important;
  }
  .hero-content h3 img {
    height: 14px !important;
    width: 14px !important;
    background: linear-gradient(135deg, #e05e1a, #ff7733) !important;
  }

  /* ── Price wrapper ── */
  .price-wrapper {
    margin-bottom: 0 !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
  }

  /* ── mx-price box ── */
  .mx-price {
    padding: 8px 16px 8px 42px !important;
    background-color: #FAD872;
  }
  .rupee-symbol {
    font-size: 32px !important;
    left: 10px !important;
  }
  .price-line { font-size: 11px !important; letter-spacing: 2px !important; }
  .amount { font-size: 20px !important; }

  /* ── Brochure button ── */
  .brochure-btn {
    padding: 10px 18px !important;
    font-size: 13px !important;
    border-radius: 50px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  /* ── Highlights list — divider style ── */
  .hero-highlights {
    margin-top: 14px !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    background: #fff !important;
  }
  .hero-highlights li {
    font-size: 13px !important;
    color: #333 !important;
    padding: 10px 0 !important;
    margin-bottom: 0 !important;
    border-bottom: 1px solid #f0ede8 !important;
    gap: 8px !important;
    font-weight: 500 !important;
  }
  .hero-highlights li:last-child {
    border-bottom: none !important;
  }
  .hero-highlights img {
    height: 16px !important;
    width: 16px !important;
    filter: invert(35%) sepia(90%) saturate(500%) hue-rotate(350deg) !important;
    flex-shrink: 0 !important;
  }
}

@media (max-width: 480px) {
  .hero-image > img:first-child {
    height: 200px !important;
  }
  .hero-content h1 { font-size: 20px !important; }
  .price-wrapper { flex-wrap: wrap !important; }
  .brochure-btn {
    width: 100% !important;
    text-align: center !important;
    display: block !important;
    margin-top: 4px !important;
  }
}








