:root {
    --primary-color: #2D1B4E;
    --accent-color: #C5A059;
    --bg-light: #F8F9FA;
    --text-main: #333333;
    --text-muted: #666666;
    --white: #FFFFFF;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    --spacing-desktop: 100px;
    --spacing-mobile: 60px;
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;

    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(45, 27, 78, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: var(--spacing-desktop) 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #b38f4a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo a {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.main-header.scrolled .logo a {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    padding: 0;
}

.site-logo {
    height: 44px;
    width: auto;
}

@media (max-width: 480px) {
    .site-logo {
        height: 36px;
    }
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: var(--white);
    font-family: var(--font-heading);
    line-height: 1.2;
    letter-spacing: -0.02em;
    transition: color 0.4s ease;
}

.main-header.scrolled .brand-name {
    color: var(--primary-color);
}

.brand-location {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.4s ease;
}

.main-header.scrolled .brand-location {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.main-header.scrolled .nav-links a {
    color: var(--text-main);
}

.main-header.scrolled .nav-links a:hover {
    color: var(--accent-color);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-cta-mobile {
    display: none !important;
}

.header-phone {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-body);
    transition: color 0.4s ease;
}

.header-phone i {
    color: var(--accent-color);
    margin-right: 4px;
}

.main-header.scrolled .header-phone {
    color: var(--text-main);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.82rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 100;
    padding: 4px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.main-header.scrolled .hamburger-line {
    background: var(--primary-color);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section - Static */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    max-height: 900px;
    margin-top: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 11, 36, 0.92) 0%, rgba(45, 27, 78, 0.75) 40%, rgba(45, 27, 78, 0.35) 70%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 720px;
    padding-top: 72px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    font-family: var(--font-heading);
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--accent-color);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.badge-dot.pulse {
    animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(197, 160, 89, 0); }
}

/* Hero Title */
.hero-title {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.title-accent {
    color: var(--accent-color);
}

/* Hero Subheading */
.hero-subheading {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
    font-weight: 400;
    line-height: 1.7;
    max-width: 580px;
}

/* Hero Highlights */
.hero-highlights {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.highlight-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    font-family: var(--font-heading);
}

.highlight-chip i {
    color: var(--accent-color);
    font-size: 0.85rem;
}

/* Hero Buttons */
.hero-btns {
    display: flex;
    gap: 12px;
}

.btn-outline-hero {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s ease;
}

.btn-outline-hero:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator span {
    font-size: 0.65rem;
    color: var(--white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: 500;
}

.mouse {
    width: 22px;
    height: 34px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--white);
    border-radius: 3px;
    animation: scrollWheel 1.8s ease infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

/* ============ USP Trust Indicators ============ */
.usp-modern-wrapper {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    padding: 0 8px;
}

.usp-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.usp-card {
    background: var(--white);
    border-radius: 14px;
    padding: 22px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.usp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--accent-color);
    transition: height 0.35s ease;
    border-radius: 0 0 3px 0;
}

.usp-card:hover::before {
    height: 100%;
}

.usp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(45, 27, 78, 0.12);
}

.usp-card.highlighted {
    background: var(--primary-color);
    border-color: transparent;
}

.usp-card.highlighted::before {
    background: var(--accent-color);
    height: 100%;
}

.usp-icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.usp-icon-wrap i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.usp-card.highlighted .usp-icon-wrap {
    background: rgba(255, 255, 255, 0.1);
}

.usp-card.highlighted .usp-icon-wrap i {
    color: var(--accent-color);
}

.usp-info h4 {
    margin: 0 0 2px 0;
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

.usp-card.highlighted .usp-info h4 {
    color: var(--accent-color);
}

.usp-info p {
    margin: 0;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 400;
}

.usp-card.highlighted .usp-info p {
    color: rgba(255, 255, 255, 0.7);
}

.usp-pulse {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: uspPulse 2s ease-in-out infinite;
}

@keyframes uspPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}
/* Hero Links - Legacy */
.hero-links {
    margin-top: 15px;
}

.text-link {
    color: var(--white);
    font-size: 0.95rem;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.text-link:hover {
    color: var(--accent-color);
}

/* Full Project Overview Section */
.full-overview {
    background: var(--white);
}

.full-overview-content {
    max-width: 900px;
    margin: 0 auto 50px;
}

.full-overview-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-muted);
}

.full-overview-content p:first-child::first-letter {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-color);
    float: left;
    line-height: 1;
    margin-right: 6px;
    margin-top: 4px;
    font-family: var(--font-heading);
}

/* Project Highlights Table */
.project-table-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.table-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    text-align: center;
    font-family: var(--font-heading);
}

.project-table-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(45, 27, 78, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.project-table {
    width: 100%;
    border-collapse: collapse;
}

.project-table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.2s ease;
}

.project-table tr:last-child {
    border-bottom: none;
}

.project-table tr:hover {
    background: rgba(197, 160, 89, 0.04);
}

.project-table tr:nth-child(even) {
    background: var(--bg-light);
}

.project-table tr:nth-child(even):hover {
    background: rgba(197, 160, 89, 0.06);
}

.project-table td {
    padding: 16px 24px;
    font-size: 0.95rem;
    vertical-align: middle;
}

.table-label {
    width: 40%;
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--font-heading);
    white-space: nowrap;
}

.table-label i {
    color: var(--accent-color);
    width: 20px;
    margin-right: 10px;
    text-align: center;
    font-size: 0.85rem;
}

.table-value {
    color: var(--text-main);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.price-card {
    background: var(--white);
    padding: 40px 24px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.price-card.featured::before {
    content: 'Phase 4';
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent-color);
    color: var(--white);
    padding: 4px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-hover);
}

.p-type {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.p-size {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.p-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 24px;
}

/* Floor Plans */
.floor-plans {
    background: var(--white);
}

.floor-plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.fp-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.fp-card:hover {
    box-shadow: var(--shadow-hover);
}

.fp-img {
    height: 350px;
    background-color: #eaeaea;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.fp-info {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fp-info h3 {
    margin: 0;
    font-size: 1.3rem;
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.amenity-item {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.amenity-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.amenity-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.amenity-item h4 {
    margin: 0;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.amenity-item:hover h4,
.amenity-item:hover i {
    color: var(--white);
}

/* Master Plan */
.master-plan {
    background: var(--primary-color);
    color: var(--white);
    position: relative;
}

.master-plan .section-title h2,
.master-plan .section-title p {
    color: var(--white);
}

.mp-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.mp-stat-item {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.mp-stat-item h3 {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.mp-stat-item p {
    font-weight: 500;
}

/* Location */
.location {
    background: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 450px;
    background: #eaeaea;
    box-shadow: var(--shadow-soft);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-content h3 {
    margin-bottom: 24px;
    font-size: 1.8rem;
}

.dist-table {
    width: 100%;
    border-collapse: collapse;
}

.dist-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.dist-table td {
    padding: 16px 0;
    color: var(--text-main);
}

.dist-table td i {
    color: var(--accent-color);
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.dist-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--primary-color);
}

/* North Bengaluru Info */
.north-blr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.n-blr-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius-md);
    border: 1px solid #eee;
}

.n-blr-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.n-blr-card h4 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.n-blr-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Form Section */
.contact-section {
    background: var(--bg-light);
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-hover);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--bg-light);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(45, 27, 78, 0.1);
}

.btn-block {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

/* FAQ */
.faq-section {
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--border-radius-md);
    margin-bottom: 16px;
    border: 1px solid #eee;
}

.faq-q {
    padding: 24px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-color);
}

.faq-q i {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-q i {
    transform: rotate(180deg);
}

.faq-a {
    padding: 0 24px 24px;
    color: var(--text-muted);
    display: none;
    line-height: 1.8;
}

/* Footer & Floating */
.site-footer {
    background: #140b24;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.footer-logo {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    font-weight: 800;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 56px;
    width: auto;
}

@media (max-width: 480px) {
    .footer-logo-img {
        height: 48px;
    }
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.rera-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    margin-top: 20px;
    font-size: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

.floating-enquiry {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(45, 27, 78, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.floating-enquiry:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============ Phase Overview Section ============ */
.phases-section {
    background: var(--bg-light);
}

.phases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.phase-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.phase-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(197, 160, 89, 0.2);
}

.phase-card.featured-phase {
    border: 2px solid var(--accent-color);
}

.phase-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.phase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.phase-card:hover .phase-img img {
    transform: scale(1.06);
}

.phase-status {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.phase-status.sold-out {
    background: rgba(100, 100, 100, 0.85);
    color: #fff;
}

.phase-status.limited {
    background: rgba(234, 179, 8, 0.9);
    color: #1a1a1a;
}

.phase-status.eoi {
    background: rgba(74, 222, 128, 0.9);
    color: #064e3b;
}

.phase-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: var(--accent-color);
    color: var(--white);
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(197, 160, 89, 0); }
}

.phase-body {
    padding: 22px 20px;
}

.phase-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.phase-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.phase-meta span {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.phase-meta span i {
    color: var(--accent-color);
    font-size: 0.72rem;
}

.phase-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* ============ Devanahalli Location Guide ============ */
.devanahalli-section {
    background: var(--white);
}

.deva-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.deva-point {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.deva-point:last-child {
    margin-bottom: 0;
}

.deva-point-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.12), rgba(197, 160, 89, 0.04));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197, 160, 89, 0.15);
}

.deva-point-icon i {
    font-size: 1.1rem;
    color: var(--accent-color);
}

.deva-point h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary-color);
}

.deva-point p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.deva-img {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.deva-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 440px;
}

.deva-img-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 14px;
    text-align: center;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.deva-img-badge h4 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 2px;
}

.deva-img-badge p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin: 0;
}

/* ============ Why Invest Section ============ */
.why-invest-section {
    background: var(--bg-light);
}

.invest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.invest-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 32px 24px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.invest-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transition: width 0.4s ease;
}

.invest-card:hover::after {
    width: 100%;
}

.invest-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.invest-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.08), rgba(45, 27, 78, 0.03));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 1px solid rgba(45, 27, 78, 0.06);
}

.invest-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.invest-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.invest-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ============ Master Plan Detailed Section ============ */
.masterplan-section {
    background: var(--white);
}

.masterplan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.masterplan-img {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.masterplan-img img {
    width: 100%;
    min-height: 500px;
    object-fit: cover;
}

.mp-overlay-label {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(45, 27, 78, 0.85);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
}

.mp-feature {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.mp-feature:last-of-type {
    border-bottom: none;
    margin-bottom: 8px;
    padding-bottom: 0;
}

.mp-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.12), rgba(197, 160, 89, 0.04));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197, 160, 89, 0.12);
}

.mp-feature-icon i {
    font-size: 1rem;
    color: var(--accent-color);
}

.mp-feature h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.mp-feature p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============ Builder / About Section ============ */
.builder-section {
    background: var(--bg-light);
}

.builder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.builder-img {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.builder-img img {
    width: 100%;
    min-height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.builder-img:hover img {
    transform: scale(1.03);
}

.builder-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--primary-color);
}

.builder-content > p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.builder-trust-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.trust-item:hover {
    border-color: rgba(197, 160, 89, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.trust-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.1), rgba(45, 27, 78, 0.03));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon i {
    font-size: 1rem;
    color: var(--primary-color);
}

.trust-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--primary-color);
}

.trust-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============ Brochure Download Section ============ */
.brochure-section {
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.brochure-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.brochure-wrapper {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.brochure-content .section-title h2 {
    color: var(--white);
    font-size: 2rem;
}

.brochure-content .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.brochure-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.brochure-includes li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brochure-includes li i {
    color: var(--accent-color);
    font-size: 0.85rem;
}

.brochure-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-outline-dark {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-dark:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.brochure-visual {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.brochure-visual img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 1024px) {
    .usp-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .north-blr-grid {
        grid-template-columns: 1fr 1fr;
    }

    .phases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .invest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: var(--spacing-mobile) 0;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(20, 11, 36, 0.97);
        backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        gap: 24px;
        z-index: 99;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .nav-links a:hover {
        color: var(--accent-color) !important;
    }

    .nav-cta-mobile {
        display: inline-flex !important;
        margin-top: 8px;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subheading {
        font-size: 0.88rem;
    }

    .hero-badge {
        font-size: 0.68rem;
    }

    .hero-highlights {
        flex-direction: column;
        gap: 8px;
    }

    .highlight-chip {
        font-size: 0.78rem;
    }

    .hero-section {
        min-height: 600px;
        max-height: none;
    }

    .scroll-indicator {
        display: none;
    }

    .table-label {
        white-space: normal;
        width: 35%;
    }

    .project-table td {
        padding: 12px 16px;
        font-size: 0.88rem;
    }

    .floor-plans-grid,
    .location-grid,
    .footer-grid,
    .deva-grid,
    .masterplan-grid,
    .builder-grid,
    .brochure-wrapper {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mp-stats {
        grid-template-columns: 1fr 1fr;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn,
    .hero-btns .btn-outline-hero {
        width: 100%;
        justify-content: center;
    }

    .usp-modern-wrapper {
        margin-top: -30px;
    }

    .north-blr-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        padding: 30px 20px;
    }

    .phases-grid {
        grid-template-columns: 1fr 1fr;
    }

    .invest-grid {
        grid-template-columns: 1fr;
    }

    .deva-img img {
        min-height: 280px;
    }

    .masterplan-img img {
        min-height: 300px;
    }

    .builder-img img {
        min-height: 280px;
    }

    .brochure-content .section-title h2 {
        font-size: 1.6rem;
        text-align: center !important;
    }

    .brochure-content .section-title p {
        text-align: center !important;
    }

    .brochure-content .section-title {
        text-align: center !important;
    }

    .brochure-btns {
        justify-content: center;
    }

    .brochure-includes {
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .brochure-visual {
        order: -1;
    }

    .brochure-visual img {
        height: 240px;
    }

    .builder-trust-grid {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .usp-grid-modern {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .usp-card {
        padding: 16px 14px;
        gap: 10px;
    }

    .usp-icon-wrap {
        width: 36px;
        height: 36px;
    }

    .usp-icon-wrap i {
        font-size: 1rem;
    }

    .usp-info h4 {
        font-size: 0.82rem;
    }

    .usp-info p {
        font-size: 0.7rem;
    }

    .pricing-grid,
    .amenities-grid,
    .mp-stats {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-content {
        padding-top: 60px;
    }

    .table-label {
        width: auto;
    }

    .project-table td {
        padding: 10px 12px;
        font-size: 0.82rem;
    }

    .table-label i {
        display: none;
    }

    .full-overview-content p {
        font-size: 0.95rem;
    }

    .phases-grid {
        grid-template-columns: 1fr;
    }

    .brochure-btns {
        flex-direction: column;
    }

    .brochure-btns .btn,
    .brochure-btns .btn-outline-dark {
        width: 100%;
        justify-content: center;
    }

    .floating-whatsapp {
        bottom: 80px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .floating-enquiry {
        bottom: 20px;
        left: 20px;
        right: 20px;
        justify-content: center;
    }
}
/* Modern Phases Section */
.phases-section { position: relative; background: #0f172a; overflow: hidden; }
.phases-bg-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at center, rgba(45, 27, 78, 0.4) 0%, rgba(15, 23, 42, 0.95) 80%); z-index: 0; pointer-events: none; }
.relative-z { position: relative; z-index: 1; }
.text-white h2 { color: #fff; }
.text-white p { color: rgba(255, 255, 255, 0.7) !important; }

.phases-grid-modern { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
.phase-card-modern { position: relative; height: 420px; border-radius: 20px; overflow: hidden; cursor: pointer; transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.phase-card-modern.featured { border: 2px solid var(--accent-color); transform: scale(1.02); box-shadow: 0 15px 40px rgba(197, 160, 89, 0.3); }
.phase-card-modern:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.phase-card-modern.featured:hover { transform: translateY(-10px) scale(1.04); }

.phase-card-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.8s ease; }
.phase-card-modern:hover .phase-card-bg { transform: scale(1.1); }
.phase-card-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0) 100%); display: flex; flex-direction: column; justify-content: flex-end; height: 100%; transition: all 0.4s ease; }
.phase-card-modern:hover .phase-card-content { background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 80%, rgba(0,0,0,0) 100%); }

.phase-badges { display: flex; gap: 8px; margin-bottom: auto; padding-top: 20px; align-items: flex-start; flex-wrap: wrap; }
.p-badge { padding: 6px 12px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; border-radius: 50px; letter-spacing: 0.5px; backdrop-filter: blur(4px); }
.p-badge.sold { background: rgba(255, 255, 255, 0.15); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.p-badge.limited { background: rgba(250, 204, 21, 0.9); color: #000; }
.p-badge.new { background: #22c55e; color: #fff; box-shadow: 0 0 15px rgba(34, 197, 94, 0.5); }
.p-badge.highlight { background: var(--accent-color); color: #fff; }

.phase-card-content h3 { font-size: 1.5rem; color: #fff; margin-bottom: 12px; font-weight: 700; letter-spacing: -0.5px; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }

.phase-points { list-style: none; padding: 0; margin-bottom: 20px; opacity: 0.85; transition: opacity 0.3s ease; }
.phase-card-modern:hover .phase-points { opacity: 1; }
.phase-points li { color: rgba(255,255,255,0.9); font-size: 0.9rem; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; font-weight: 500; }
.phase-points li i { color: var(--accent-color); font-size: 0.85rem; width: 16px; text-align: center; }

.btn-phase-action { display: inline-flex; align-items: center; gap: 6px; font-size: 0.9rem; font-weight: 600; color: var(--accent-color); text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; opacity: 0; transform: translateY(10px); transition: all 0.4s ease; }
.phase-card-modern:hover .btn-phase-action { opacity: 1; transform: translateY(0); }
.btn-phase-action:hover { color: #fff; gap: 10px; }

/* Responsive for Modern Grid */
@media (max-width: 1024px) {
    .phases-grid-modern { grid-template-columns: repeat(2, 1fr); }
    .phase-card-modern { height: 380px; }
}
@media (max-width: 600px) {
    .phases-grid-modern { grid-template-columns: 1fr; }
    .phase-card-modern { height: 360px; }
    .phase-card-content { padding: 24px; }
    .btn-phase-action { opacity: 1; transform: translateY(0); }
}

/* =========================================
   11. Modern Builder Section
   ========================================= */
.builder-section-modern {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.builder-modern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Image Side */
.builder-visual {
    position: relative;
    z-index: 1;
}

.builder-visual .img-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
    transform: perspective(1000px) rotateY(2deg);
    transition: transform 0.5s ease;
}

.builder-visual:hover .img-frame {
    transform: perspective(1000px) rotateY(0deg);
}

.builder-visual img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.builder-visual:hover img {
    transform: scale(1.05);
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-left: 4px solid var(--accent-color); /* Assuming accent color exists, else fallback to #c5a47e */
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.experience-badge .label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
    font-weight: 500;
}

/* Decorative Pattern */
.pattern-dots {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#ddd 2px, transparent 2px);
    background-size: 15px 15px;
    z-index: -1;
    opacity: 0.6;
}

/* Content Side */
.builder-info {
    padding-left: 20px;
}

.sub-tag {
    display: inline-block;
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    background: rgba(197, 164, 126, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
}

.builder-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    color: #555;
    margin-bottom: 25px;
    font-family: var(--font-heading); /* Inherit if set */
    position: relative;
    padding-left: 15px;
    border-left: 3px solid var(--accent-color);
}

.builder-info .description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.stat-box {
    text-align: center;
}

.stat-box .icon-circle {
    width: 50px;
    height: 50px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 50%;
    display: flex; /* Centering fix */
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.2rem;
    color: var(--accent-color);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.stat-box:hover .icon-circle {
    background: var(--accent-color);
    color: white;
    transform: translateY(-5px);
}

.stat-box .stat-text {
    display: flex;
    flex-direction: column;
}

.stat-box strong {
    font-size: 1.1rem;
    color: var(--primary-color);
    display: block;
}

.stat-box span {
    font-size: 0.85rem;
    color: #888;
}

/* Responsive */
@media (max-width: 992px) {
    .builder-modern-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .builder-visual {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .builder-info {
        padding-left: 0;
        text-align: center;
    }
    
    .tagline {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .builder-info h2 {
        font-size: 2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: left; /* Align left on mobile for better read list feel? or stick to center */
    }

    .stat-box {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 15px;
        background: white;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .stat-box .icon-circle {
        margin: 0;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .experience-badge {
        padding: 15px 20px;
        right: 10px;
        bottom: 10px;
    }
    
    .experience-badge .years {
        font-size: 1.8rem;
    }
}

/* =========================================
   12. Quick Navigation Bar
   ========================================= */
.quick-nav-wrapper {
    background: #fff;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    box-shadow: 0 5px 25px rgba(0,0,0,0.03);
    position: relative;
    z-index: 10;
}

.quick-nav-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--text-muted); /* Fallback #666 */
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}

.nav-pill i {
    color: var(--accent-color); /* Fallback #c5a47e */
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-pill:hover,
.nav-pill.active {
    background: var(--primary-color); /* Fallback #2d1b4e */
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(45, 27, 78, 0.2);
}

.nav-pill:hover i,
.nav-pill.active i {
    color: #fff;
}

/* Highlight style for CTA buttons */
.nav-pill.highlight {
    background: var(--accent-color);
    color: #fff;
}

.nav-pill.highlight i {
    color: #fff;
}

.nav-pill.highlight:hover {
    background: #b08d4b; /* Darker accent */
}

/* New Title Style */
.quick-nav-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .quick-nav-wrapper {
        padding: 20px 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .quick-nav-grid {
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 5px; /* Scrollbar padding */
        padding-left: 20px; /* Offset for first item */
        padding-right: 20px;
        width: max-content; /* Ensure container expands */
    }
    
    .quick-nav-title {
        display: none; /* Hide on scrollable view if preferred, or keep */
        /* If keeping: text-align: left; padding-left: 20px; */
    }
    
    /* Hide scrollbar but keep functionality */
    .quick-nav-wrapper::-webkit-scrollbar {
        display: none;
    }
    .quick-nav-wrapper {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* Or simpler mobile grid if explicit table requested */
@media (max-width: 600px) {
    /* If user wants a table view on mobile, wrap instead of scroll */
    .quick-nav-wrapper {
        overflow-x: visible; /* Disable scroll for grid */
    }
    
    .quick-nav-title {
        display: block; /* Show on mobile grid */
        margin-bottom: 15px;
        font-size: 1.1rem;
    }

    .quick-nav-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
        padding: 0;
        justify-items: stretch;
    }
    
    .nav-pill {
        justify-content: center;
        padding: 10px 15px;
        border-radius: 12px; /* Less rounded for grid feel */
        font-size: 0.85rem;
        background: #fff;
        border: 1px solid #eee;
        box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    }
    
    /* Make the last item (Brochure) full width */
    .nav-pill:last-child {
        grid-column: 1 / -1;
        background-color: var(--accent-color);
        color: #fff;
        font-weight: 700;
        border: none;
        box-shadow: 0 4px 10px rgba(197, 160, 89, 0.3);
    }
    
    .nav-pill:last-child i {
        color: #fff;
    }

    .nav-pill i {
        font-size: 0.9rem;
    }
}
