/* ============================================
   SATTVA CITY — Elegant White + Blue Theme
   Inspired by Sattva Hamlet reference design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --white: #FFFFFF;
    --off-white: #F7F7F3;
    --light-blue: #EEF3FB;
    --accent: #1A3C8F;
    --accent-dark: #0F2660;
    --accent-light: #4B7BE5;
    --dark: #1a1a1a;
    --text-body: #555;
    --text-muted: #999;
    --gold: #C5A55A;
    --shadow-sm: 0 2px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ---------- Utility ---------- */
.section-padding {
    padding: 90px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

.bg-white {
    background: var(--white);
}

.bg-off-white {
    background: var(--off-white);
}

.bg-light-blue {
    background: var(--light-blue);
}

.bg-dark {
    background: var(--dark);
    color: var(--white);
}

.section-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-title .blue {
    color: var(--accent);
}

.bg-dark .section-title {
    color: var(--white);
}

.bg-dark .section-badge {
    color: var(--accent-light);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-body);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.bg-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* ---------- Buttons ---------- */
.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.btn-dark:hover {
    background: #333;
    transform: translateY(-2px);
    color: var(--white);
}

.btn-dark i {
    font-size: 0.85rem;
}

.btn-blue {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(26, 60, 143, 0.25);
}

.btn-blue:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-outline-blue {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--accent);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 13px 30px;
    border: 2px solid var(--accent);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline-blue:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

/* Keep .btn-accent for forms compatibility */
.btn-accent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.btn-accent:hover {
    background: #333;
    transform: translateY(-2px);
    color: var(--white);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

/* ---------- Preloader ---------- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-inner {
    text-align: center;
}

.preloader .brand-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
}

.preloader .brand-text span {
    color: var(--accent);
}

.preloader-bar {
    width: 120px;
    height: 3px;
    background: #eee;
    margin: 16px auto 0;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.preloader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: var(--accent);
    animation: preloaderSlide 1s ease-in-out infinite;
}

@keyframes preloaderSlide {
    to {
        left: 100%;
    }
}

/* ---------- Navbar ---------- */
.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    padding: 14px 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar-custom.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    padding: 10px 0;
}

.navbar-custom .navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 38px;
    width: auto;
    transition: var(--transition);
}

.navbar-custom.scrolled .navbar-logo {
    height: 32px;
}

.footer-logo {
    height: 50px;
    width: auto;
    background: var(--white);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
}

.navbar-custom .nav-link {
    color: var(--dark);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: var(--transition);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--accent);
}

.navbar-custom .navbar-toggler {
    border: none;
    color: var(--dark);
    font-size: 1.3rem;
    padding: 4px 8px;
}

.navbar-custom .navbar-toggler:focus {
    box-shadow: none;
}

.nav-cta {
    background: var(--dark) !important;
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    padding: 9px 22px !important;
    font-weight: 600 !important;
    margin-left: 10px;
}

.nav-cta:hover {
    background: #333 !important;
}

/* ---------- HERO SECTION ---------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 1.5rem;
    font-weight: 900;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(240, 240, 235, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 44px;
    max-width: 560px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-card-divider {
    width: 60px;
    height: 1px;
    background: var(--dark);
    margin: 20px auto;
}

.hero-card h1 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 4px;
}

.hero-card .developer {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-body);
    margin-bottom: 2px;
}

.hero-card .location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-card .location i {
    color: #e74c3c;
    font-size: 0.85rem;
}

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.hero-highlights li {
    position: relative;
    padding: 6px 0 6px 20px;
    font-size: 0.92rem;
    color: var(--text-body);
}

.hero-highlights li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.2rem;
    line-height: 1.4;
}

.hero-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.hero-offer {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-style: italic;
}

.hero-rera {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 16px;
    text-align: center;
}

/* ---------- ABOUT / "Your Home" SECTION ---------- */
.about-section {
    overflow: hidden;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

.about-floating-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--accent);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.about-floating-card .number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.about-floating-card .label {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ---------- PROJECT OVERVIEW ---------- */
.overview-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.overview-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.95rem;
    color: var(--text-body);
}

.overview-list li:last-child {
    border-bottom: none;
}

.overview-list li strong {
    min-width: 140px;
    color: var(--dark);
    font-weight: 600;
}

/* ---------- CTA BANNER ---------- */
.cta-banner-section {
    background: var(--dark);
    padding: 50px 0;
}

.cta-banner-section h3 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0;
}

.cta-banner-section p {
    color: rgba(255, 255, 255, 0.7);
    margin: 8px 0 0;
    font-size: 0.95rem;
}

.cta-banner-section .btn-blue {
    background: var(--accent-light);
}

.cta-banner-section .btn-blue:hover {
    background: var(--accent);
}

/* ---------- AMENITIES ---------- */
.amenity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.amenity-card {
    text-align: center;
    padding: 28px 16px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.amenity-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(26, 60, 143, 0.15);
}

.amenity-card .amenity-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amenity-card .amenity-icon i {
    font-size: 1.2rem;
    color: var(--accent);
}

.amenity-card h6 {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

@media (max-width: 991px) {
    .amenity-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .amenity-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .amenity-card {
        padding: 20px 10px;
    }
}

/* ---------- PRICING TABLE ---------- */
.pricing-main-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.pricing-table-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}

.pricing-header {
    background: var(--off-white);
    padding: 0;
}

.pricing-header .pricing-col {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    padding: 18px 24px;
}

.pricing-data-row {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-data-row:last-of-type {
    border-bottom: none;
}

.pricing-col {
    padding: 16px 24px;
    font-size: 0.95rem;
    color: var(--dark);
}

.col-type {
    font-weight: 600;
}

.price-visible {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--accent);
    font-size: 1.05rem;
}

.btn-unlock-price {
    background: var(--dark);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-unlock-price::before {
    content: '\f023';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
}

.btn-unlock-price:hover {
    background: var(--accent);
    transform: translateY(-1px);
}

.pricing-cta-row {
    padding: 24px;
    text-align: center;
    background: var(--off-white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-cost-sheet {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cost-sheet:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.pricing-disclaimer {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
}

.pricing-dividers {
    display: none;
}

@media (max-width: 575px) {
    .pricing-row {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .pricing-col {
        padding: 12px 10px;
        font-size: 0.8rem;
    }

    .pricing-header .pricing-col {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }
}

/* ---------- SITE VISIT CTA ---------- */
.site-visit-section {
    position: relative;
    padding: 70px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.6)),
        url('../officialassets/sattva-city-outdoor-pool-night-view.jpg') center/cover no-repeat;
}

.site-visit-section h2 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.site-visit-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 24px;
}

/* ---------- GALLERY ---------- */
.gallery-section {
    overflow: hidden;
}

.gallery-swiper .swiper-slide {
    width: 80%;
}

.gallery-slide {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.gallery-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-slide:hover img {
    transform: scale(1.05);
}

.gallery-slide .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 30px 24px 24px;
    color: var(--white);
}

.gallery-slide .overlay h6 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.gallery-slide .overlay p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ---------- FLOOR PLANS ---------- */
.floorplan-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.floorplan-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.floorplan-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    filter: blur(3px);
    transition: var(--transition);
}

.floorplan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.floorplan-overlay h5 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 12px;
}

/* ---------- LOCATION ---------- */
.location-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.location-item:last-child {
    border-bottom: none;
}

.location-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-icon i {
    color: var(--accent);
    font-size: 1rem;
}

.location-item h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.location-item p {
    font-size: 0.85rem;
    color: var(--text-body);
    margin: 0;
}

.location-map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 380px;
}

.location-map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: none;
}

/* ---------- MASTER PLAN / CITY MAP ---------- */
.masterplan-fullwidth,
.citymap-fullwidth {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-top: 20px;
}

.masterplan-img,
.citymap-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.masterplan-fullwidth:hover .masterplan-img,
.citymap-fullwidth:hover .citymap-img {
    transform: scale(1.02);
}

/* ---------- VIDEO SECTION ---------- */
.project-video-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-container {
    position: relative;
    width: 100%;
}

.video-container video {
    width: 100%;
    display: block;
    border-radius: var(--radius-lg);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius-lg);
}

.video-play-overlay:hover {
    background: rgba(0, 0, 0, 0.45);
}

.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-btn-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-play-overlay:hover .play-btn-ring {
    border-color: var(--white);
    transform: scale(1.1);
}

.play-btn-inner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn-inner i {
    color: var(--dark);
    font-size: 1.2rem;
    margin-left: 3px;
}

.play-label {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ---------- WHY INVEST ---------- */
.invest-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: var(--transition);
    height: 100%;
}

.invest-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(26, 60, 143, 0.15);
}

.invest-card .step-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--light-blue);
    margin-bottom: 14px;
    line-height: 1;
}

.invest-card h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.invest-card p {
    font-size: 0.88rem;
    color: var(--text-body);
    margin: 0;
}

/* ---------- DEVELOPER SECTION ---------- */
.developer-section {
    overflow: hidden;
}

.hero-stat {
    text-align: left;
    padding: 20px 0;
}

.hero-stat .number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

.hero-stat .label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* ---------- CONTACT SECTION ---------- */
.contact-section {
    overflow: hidden;
}

.contact-info-card {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    color: var(--white);
    height: 100%;
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-info-card>p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.ci-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ci-icon i {
    color: var(--accent-light);
    font-size: 0.9rem;
}

.contact-info-item h6 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--white);
}

.contact-info-item span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: 100%;
}

.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.contact-form-card .sub {
    color: var(--text-body);
    font-size: 0.88rem;
    margin-bottom: 24px;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(26, 60, 143, 0.1);
}

/* ---------- HIGHLIGHTS ---------- */
.highlight-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(26, 60, 143, 0.12);
}

.highlight-card .icon-wrap {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-card .icon-wrap i {
    font-size: 1.2rem;
    color: var(--accent);
}

.highlight-card h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.highlight-card p {
    font-size: 0.85rem;
    color: var(--text-body);
    margin: 0;
}

/* ---------- FAQ ---------- */
.faq-section .faq-tabs .nav-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-body);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    padding: 8px 18px;
    margin: 4px;
    transition: var(--transition);
    background: var(--white);
}

.faq-section .faq-tabs .nav-link.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.faq-compact .accordion-item {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: transparent;
}

.faq-compact .accordion-button {
    background: transparent;
    box-shadow: none;
    padding: 18px 0;
    font-size: 0.95rem;
}

.faq-compact .accordion-button h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

.faq-compact .accordion-button:not(.collapsed) {
    color: var(--accent);
}

.faq-compact .accordion-button::after {
    filter: none;
}

.faq-compact .accordion-body {
    padding: 0 0 18px;
}

.faq-compact .accordion-body p {
    font-size: 0.88rem;
    color: var(--text-body);
    margin: 0;
}

/* ---------- CTA BANNER (footer) ---------- */
.cta-banner {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    text-align: center;
}

.cta-banner h3 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 13px 30px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
    font-size: 0.88rem;
}

.footer h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.footer-links {
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-links a i {
    font-size: 0.6rem;
    color: var(--accent-light);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 40px;
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ---------- MODALS ---------- */
.modal-premium .modal-content {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: none;
    box-shadow: var(--shadow-lg);
}

.modal-premium .btn-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    opacity: 0.5;
    filter: none;
}

.modal-premium .modal-body {
    padding: 0;
}

.modal-left {
    background: var(--dark);
    color: var(--white);
    display: flex;
    flex-direction: column;
    padding: 40px 36px;
    height: 100%;
}

.modal-left h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.modal-left p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.modal-left .offer-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-light);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    margin-top: 8px;
}

.modal-right {
    padding: 40px 36px;
}

.modal-right h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-right p {
    color: var(--text-body);
    font-size: 0.88rem;
    margin-bottom: 20px;
}

.modal-right .form-control,
.modal-right .form-select {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    font-size: 0.9rem;
}

.modal-right .form-control:focus,
.modal-right .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(26, 60, 143, 0.12);
}

/* ---------- FLOATING ELEMENTS ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: floatPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

@keyframes floatPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}

.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.scroll-top.show {
    display: flex;
}

.scroll-top:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* Sticky CTA Mobile */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1040;
    display: flex;
    gap: 0;
    background: var(--white);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
}

.sticky-cta .btn {
    flex: 1;
    text-align: center;
    padding: 14px;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 0;
    border: none;
}

.btn-call {
    background: var(--accent);
    color: var(--white) !important;
}

.btn-call:hover {
    background: var(--accent-dark);
}

.btn-enquire-sticky {
    background: var(--dark);
    color: var(--white) !important;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
    .hero-section {
        display: block;
        padding-top: 60px;
        /* Adjust for navbar */
        min-height: auto;
    }

    .hero-bg-image {
        position: relative;
        height: 40vh;
        min-height: 250px;
        width: 100%;
        z-index: 1;
    }

    .hero-overlay {
        display: none;
    }

    .hero-content {
        position: relative;
        z-index: 2;
    }

    .hero-card {
        padding: 40px 20px;
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
        text-align: center;
        background: var(--white);
    }

    .hero-card .location {
        justify-content: center;
    }

    .hero-card-divider {
        width: 100%;
        margin: 15px auto;
    }

    .hero-highlights {
        display: inline-block;
        text-align: left;
    }

    .hero-card h1 {
        font-size: 2.2rem;
    }

    .hero-price {
        font-size: 1.6rem;
    }

    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 575px) {
    .gallery-slide img {
        height: 260px;
    }

    .hero-card h1 {
        font-size: 1.8rem;
    }

    .hero-price {
        font-size: 1.4rem;
    }

    .btn-dark {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .btn-blue,
    .btn-outline-blue,
    .btn-accent,
    .btn-cost-sheet,
    .btn-unlock-price {
        justify-content: center;
        text-align: center;
    }

    .hero-bg-image {
        height: 35vh;
    }

    .section-padding {
        padding: 50px 0;
    }
}

/* ---------- ABOUT FEATURES (from original) ---------- */
.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.about-feature-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light-blue);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--dark);
}

.about-feature-item i {
    color: var(--accent);
    font-size: 0.8rem;
}

/* Hero lead form (used in hero) */
.hero-lead-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-form-offer {
    background: var(--accent);
    color: var(--white);
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: var(--radius) var(--radius) 0 0;
    margin: -36px -28px 20px;
    letter-spacing: 0.5px;
}

.hero-lead-form h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.hero-lead-form p {
    color: var(--text-body);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.hero-lead-form .form-control,
.hero-lead-form .form-select {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    color: var(--dark);
    padding: 13px 16px;
    font-size: 0.9rem;
    background: var(--white);
    transition: var(--transition);
}

.hero-lead-form .form-control::placeholder {
    color: var(--text-muted);
}

.hero-lead-form .form-control:focus,
.hero-lead-form .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(26, 60, 143, 0.1);
}

.input-group-hero {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group-hero>i {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    font-size: 0.82rem;
    z-index: 2;
    pointer-events: none;
}

.input-group-hero .form-control,
.input-group-hero .form-select {
    padding-left: 42px !important;
}

.hero-form-footer {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.hero-form-footer span {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
}

.hero-form-footer span i {
    color: var(--accent);
    margin-right: 4px;
    font-size: 0.65rem;
}

/* Blog section compatibility */
.blog-carousel-section {
    background: var(--off-white);
}

/* Elevate floating buttons on mobile to avoid overlapping sticky CTA */
@media (max-width: 767px) {

    .video-container {
        aspect-ratio: 16 / 9;
        background: #000;
    }

    .video-container video {
        height: 100%;
        object-fit: cover;
    }

    .video-play-overlay {
        inset: 0;
        padding: 24px 16px;
        text-align: center;
    }

    .whatsapp-float,
    .scroll-top {
        bottom: 80px;
    }
}