/*
   SOPANAM CONSTRUCTIONS — Kerala Luxury Builders
   Design Inspired by oryzo.ai / Lusion Studio
   Dark Void + Warm Cream/Gold Accent System
*/

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Inter:wght@100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* ─── Custom Properties ─── */
:root {
    --bg-void: #0a0a08;
    --bg-surface: #111110;
    --bg-card: #161614;
    --bg-card-hover: #1c1c19;

    --cream: #FFEDD6;
    --cream-rgb: 255, 237, 214;
    --gold: #c9a96e;
    --gold-rgb: 201, 169, 110;
    --accent-warm: #e8c88a;
    --terracotta: #c4704b;

    --text-primary: #f5f0e8;
    --text-secondary: #9e9a8f;
    --text-muted: #5a574e;

    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: 0.8s var(--ease-out-expo);
    --transition-med: 0.5s var(--ease-out-expo);
    --transition-fast: 0.25s var(--ease-out-expo);

    --border-subtle: rgba(255, 237, 214, 0.08);
    --border-medium: rgba(255, 237, 214, 0.15);
    --glow-cream: 0 0 40px rgba(255, 237, 214, 0.06);
    --glow-gold: 0 0 60px rgba(201, 169, 110, 0.08);
}

/* ─── Reset ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: var(--bg-void);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: var(--bg-void);
    overflow-x: hidden;
    line-height: 1.65;
    font-weight: 300;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-void); }
::-webkit-scrollbar-thumb { background: rgba(255,237,214,0.12); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--cream); }

/* Selection */
::selection {
    background: rgba(255, 237, 214, 0.2);
    color: var(--cream);
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--text-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img, video { max-width: 100%; height: auto; display: block; }

/* ─── Utility Classes ─── */
.o-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
}

.body1 {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

.body2 {
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

.sub1 {
    font-size: clamp(0.75rem, 1vw, 0.85rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--cream);
}

.sub2 {
    font-size: clamp(0.65rem, 0.8vw, 0.72rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

/* Dashed line dividers (oryzo style) */
.o-dashline {
    width: 100%;
    height: 1px;
    background-image: repeating-linear-gradient(
        to right,
        var(--border-medium),
        var(--border-medium) 6px,
        transparent 6px,
        transparent 12px
    );
}

/* ─── Preloader ─── */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: var(--bg-void);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 1.2s var(--ease-out-expo), visibility 1.2s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-counter {
    font-family: var(--font-display);
    font-size: clamp(5rem, 14vw, 12rem);
    font-weight: 900;
    color: var(--cream);
    line-height: 0.85;
    letter-spacing: -0.05em;
}

.preloader-label {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

.preloader-bar {
    width: 120px;
    height: 2px;
    background: var(--border-subtle);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.preloader-bar-fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 0%;
    background: var(--cream);
    transition: width 0.1s linear;
}

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    padding: 1.8rem 3rem;
    z-index: 1000;
    transition: var(--transition-med);
    mix-blend-mode: difference;
}

.nav.scrolled {
    mix-blend-mode: normal;
    padding: 1rem 3rem;
    background: rgba(10, 10, 8, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.nav-logo-mark {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cream);
    transition: var(--transition-med);
}

.nav-logo:hover .nav-logo-mark {
    background: var(--cream);
    color: var(--bg-void);
    transform: rotate(45deg);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-logo-text h3 {
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    color: var(--cream);
}

.nav-logo-text span {
    font-size: 0.55rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
}

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

.nav-links a {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    position: relative;
    padding: 0.4rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--cream);
    transition: width 0.4s var(--ease-out-expo);
}

.nav-links a:hover {
    color: var(--cream);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}

.nav-cta-btn:hover {
    background: var(--gold);
    color: var(--bg-void);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--cream);
    transition: var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── HERO Section (oryzo.ai style) ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-void);
    padding: 7rem 0 5rem;
}

.hero-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Top tagline row */
.hero-top {
    width: 100%;
    margin-bottom: 2rem;
    opacity: 0;
    animation: heroFadeIn 1s 0.6s var(--ease-out-expo) forwards;
}

.hero-top-tagline {
    color: var(--text-secondary);
    font-size: clamp(0.6rem, 0.9vw, 0.75rem);
}

/* Massive centered brand text (like ORYZO logo) */
.hero-logo-wrapper {
    width: 100%;
    text-align: center;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: heroFadeIn 1.2s 0.8s var(--ease-out-expo) forwards;
}

.hero-brand-text {
    font-family: var(--font-display);
    font-size: clamp(5rem, 16vw, 14rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--cream);
    text-shadow: 0 0 80px rgba(255, 237, 214, 0.08);
    /* Subtle stroke for extra drama like oryzo */
    -webkit-text-stroke: 0;
}

/* Body copy below brand */
.hero-copy {
    max-width: 520px;
    text-align: center;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: heroFadeIn 1s 1.1s var(--ease-out-expo) forwards;
}

/* Floating card (right side, like oryzo) */
.hero-card {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 320px;
    z-index: 5;
    opacity: 0;
    animation: heroFadeIn 1s 1.4s var(--ease-out-expo) forwards;
}

.hero-card-inner {
    background: rgba(255, 237, 214, 0.03);
    border: 1px solid var(--border-medium);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.hero-card-header {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.hero-card-header .gold {
    color: var(--gold);
}

.hero-card-desc {
    display: flex;
    flex-direction: column;
}

.hero-card-desc span {
    color: var(--text-secondary);
}

/* Hero video/image showcase with glow border (oryzo signature) */
.hero-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    animation: heroFadeIn 1.2s 1.6s var(--ease-out-expo) forwards;
}

/* Outer glow behind the video/image */
.hero-video-glow {
    position: absolute;
    top: -30%;
    left: -10%;
    right: -10%;
    bottom: -30%;
    background: radial-gradient(
        ellipse at center,
        rgba(201, 169, 110, 0.12) 0%,
        rgba(255, 237, 214, 0.04) 40%,
        transparent 70%
    );
    z-index: 0;
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

/* Animated border (oryzo style) */
.hero-video-border {
    position: absolute;
    top: 0; left: 0;
    right: 0; bottom: 0;
    border: 1px solid var(--border-medium);
    border-radius: 12px;
    z-index: 3;
    pointer-events: none;
    transition: border-color 0.4s ease;
}

.hero-video-wrapper:hover .hero-video-border {
    border-color: rgba(255, 237, 214, 0.3);
}

.hero-video-thumbnail-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 16 / 9;
}

.hero-video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo), filter 0.6s ease;
    filter: brightness(0.75) saturate(0.7);
}

.hero-video-wrapper:hover .hero-video-thumbnail {
    transform: scale(1.03);
    filter: brightness(0.9) saturate(0.9);
}

/* PLAY / EXPLORE label overlay */
.hero-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--cream);
    padding: 1.2rem 2.5rem;
    border: 1px solid rgba(255, 237, 214, 0.3);
    background: rgba(10, 10, 8, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 4px;
    transition: var(--transition-med);
    pointer-events: none;
}

.hero-video-wrapper:hover .hero-video-play {
    background: var(--cream);
    color: var(--bg-void);
    border-color: var(--cream);
    transform: translate(-50%, -50%) scale(1.05);
}

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

/* Keep the old fadeInUp for other sections */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0) translate(0, 0);
    }
}

/* ─── Section Common ─── */
.section {
    padding: 8rem 0;
    position: relative;
    background: var(--bg-void);
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.section-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    display: block;
    flex-shrink: 0;
}

.section-title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    line-height: 0.95;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-title .serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    color: var(--gold);
}

/* ─── ABOUT / Intro Section ─── */
.about {
    border-top: 1px solid var(--border-subtle);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-visual {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    aspect-ratio: 4/5;
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.6);
    transition: var(--transition-slow);
}

.about-visual:hover img {
    transform: scale(1.05);
    filter: saturate(1);
}

.about-visual-badge {
    position: absolute;
    bottom: -1px;
    right: -1px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    padding: 1.8rem 2rem;
}

.about-visual-badge h4 {
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
}

.about-visual-badge p {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-point {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.about-point-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-med);
}

.about-point:hover .about-point-icon {
    border-color: var(--cream);
    background: var(--cream);
    box-shadow: var(--glow-cream);
}

.about-point-icon svg {
    width: 20px;
    height: 20px;
    color: var(--cream);
    transition: var(--transition-fast);
}

.about-point:hover .about-point-icon svg {
    color: var(--bg-void);
}

.about-point-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: none;
    letter-spacing: 0;
}

.about-point-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ─── FEATURES Section (3-column oryzo style) ─── */
.features {
    border-top: 1px solid var(--border-subtle);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border-subtle);
}

.feature-item {
    padding: 3rem 2.5rem;
    border-right: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: background var(--transition-med);
    position: relative;
    overflow: hidden;
}

.feature-item:last-child {
    border-right: none;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,237,214,0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-med);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item-top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

.feature-item-icon svg {
    width: 100%;
    height: 100%;
}

.feature-item-tagline {
    font-size: 0.72rem;
    color: var(--cream);
    opacity: 0.7;
}

.feature-item-desc {
    flex: 1;
    position: relative;
    z-index: 1;
}

.feature-item-title {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    line-height: 1.1;
    text-transform: none;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

/* ─── PORTFOLIO Section ─── */
.portfolio {
    border-top: 1px solid var(--border-subtle);
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.portfolio-filters {
    display: flex;
    gap: 0.5rem;
    list-style: none;
}

.portfolio-filters button {
    padding: 0.5rem 1.2rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.portfolio-filters button.active,
.portfolio-filters button:hover {
    border-color: var(--cream);
    color: var(--cream);
    background: rgba(255, 237, 214, 0.04);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: var(--transition-med);
}

.portfolio-item.col-8 { grid-column: span 8; }
.portfolio-item.col-4 { grid-column: span 4; }
.portfolio-item.col-6 { grid-column: span 6; }

.portfolio-item-inner {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.portfolio-item.col-4 .portfolio-item-inner {
    aspect-ratio: 4/5;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.5) brightness(0.8);
    transition: var(--transition-slow);
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
    filter: saturate(1) brightness(1);
}

.portfolio-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(10,10,8,0.85) 0%, transparent 50%);
    z-index: 1;
}

.portfolio-details {
    position: absolute;
    bottom: 0; left: 0;
    padding: 2rem;
    z-index: 2;
    width: 100%;
}

.port-tag {
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: block;
}

.port-title {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0.5rem;
}

.port-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.port-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.port-meta svg {
    width: 14px;
    height: 14px;
}

/* ─── STATS / Metrics Bar ─── */
.stats-bar {
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-surface);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    padding: 4rem 2rem;
    text-align: center;
    border-right: 1px solid var(--border-subtle);
    position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gold);
    opacity: 0;
    transition: opacity var(--transition-med);
}

.stat-item:hover::after {
    opacity: 1;
}

/* ─── PROCESS Section ─── */
.process {
    border-top: 1px solid var(--border-subtle);
}

.process-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        var(--border-medium) 0px,
        var(--border-medium) 6px,
        transparent 6px,
        transparent 12px
    );
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5rem;
    position: relative;
}

.process-step:last-child { margin-bottom: 0; }

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--bg-void);
    border: 2px solid var(--border-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--gold);
    z-index: 2;
    transition: var(--transition-med);
}

.process-step:hover .process-step-badge {
    border-color: var(--cream);
    background: var(--cream);
    color: var(--bg-void);
}

.process-step-content {
    width: calc(50% - 50px);
    padding: 2rem;
    background: rgba(255, 237, 214, 0.02);
    border: 1px solid var(--border-subtle);
    transition: var(--transition-med);
}

.process-step:hover .process-step-content {
    border-color: var(--border-medium);
    background: rgba(255, 237, 214, 0.04);
}

.process-step-label {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.process-step-content h3 {
    font-size: 1.3rem;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0.75rem;
}

.process-step-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ─── TESTIMONIALS Section (oryzo table style) ─── */
.testimonials {
    border-top: 1px solid var(--border-subtle);
}

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

.testimonials-table {
    border: 1px solid var(--border-subtle);
}

.testimonials-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 237, 214, 0.02);
    border-bottom: 1px solid var(--border-subtle);
}

.testimonials-table-header-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.testimonials-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonials-stars {
    display: flex;
    gap: 3px;
}

.testimonials-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--cream);
}

.testimonials-rating-text {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.testimonial-item {
    display: grid;
    grid-template-columns: 1fr 280px;
    border-bottom: 1px solid var(--border-subtle);
    transition: background var(--transition-med);
}

.testimonial-item:last-child { border-bottom: none; }

.testimonial-item:hover {
    background: rgba(255, 237, 214, 0.02);
}

.testimonial-content {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: var(--text-primary);
}

.testimonial-quote strong {
    color: var(--cream);
    font-weight: 700;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
    border: 1px solid var(--border-subtle);
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-author-name {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cream);
}

.testimonial-author-title {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.testimonial-image {
    border-left: 1px solid var(--border-subtle);
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.4) brightness(0.7);
    transition: var(--transition-slow);
}

.testimonial-item:hover .testimonial-image img {
    filter: saturate(0.8) brightness(0.9);
    transform: scale(1.05);
}

/* ─── CONTACT Section ─── */
.contact {
    border-top: 1px solid var(--border-subtle);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

.contact-detail h4 {
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0.3rem;
}

.contact-detail p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.contact-detail a {
    color: var(--text-secondary);
}

.contact-detail a:hover {
    color: var(--cream);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 1.2rem 1rem 0.6rem;
    background: rgba(255, 237, 214, 0.03);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-input:focus {
    border-color: var(--cream);
}

.form-label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: 0.6rem;
    transform: translateY(0);
    font-size: 0.6rem;
    color: var(--gold);
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

textarea.form-input ~ .form-label {
    top: 1.2rem;
    transform: none;
}

textarea.form-input:focus ~ .form-label,
textarea.form-input:not(:placeholder-shown) ~ .form-label {
    top: 0.6rem;
    font-size: 0.6rem;
    color: var(--gold);
}

.form-select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 237, 214, 0.03);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    appearance: none;
    cursor: pointer;
}

.form-select:focus {
    border-color: var(--cream);
}

.btn-submit {
    padding: 1.2rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--cream);
    color: var(--bg-void);
    border: 1px solid var(--cream);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-submit:hover {
    background: transparent;
    color: var(--cream);
}

.btn-submit svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.btn-submit:hover svg {
    transform: translateX(4px);
}

/* ─── TICKER / Marquee ─── */
.ticker {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.5rem 0;
    white-space: nowrap;
    background: var(--bg-void);
}

.ticker-track {
    display: inline-block;
    animation: tickerScroll 35s linear infinite;
}

.ticker-item {
    display: inline-block;
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 900;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 237, 214, 0.1);
    padding: 0 3rem;
    letter-spacing: 0.05em;
}

.ticker-item span {
    color: var(--cream);
    -webkit-text-stroke: 0;
    opacity: 0.6;
}

@keyframes tickerScroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* ─── FOOTER ─── */
footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    color: var(--cream);
}

.footer-about p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.5rem;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer-social-icon:hover {
    border-color: var(--cream);
    color: var(--cream);
    background: rgba(255, 237, 214, 0.05);
}

.footer-social-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--cream);
}

.footer-newsletter p {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer-newsletter-form {
    display: flex;
    gap: 0;
}

.footer-newsletter-input {
    flex: 1;
    padding: 0.8rem 1rem;
    background: rgba(255, 237, 214, 0.03);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.8rem;
    outline: none;
}

.footer-newsletter-input:focus {
    border-color: var(--cream);
}

.footer-newsletter-btn {
    padding: 0.8rem 1.2rem;
    background: var(--cream);
    border: 1px solid var(--cream);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer-newsletter-btn svg {
    width: 16px;
    height: 16px;
    color: var(--bg-void);
}

.footer-newsletter-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.footer-bottom-links a:hover {
    color: var(--cream);
}

/* ─── Scroll Reveal Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Ambient Glow Blobs ─── */
.glow-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* ─── VASTU COMPASS Section ─── */
.vastu-compass {
    border-top: 1px solid var(--border-subtle);
}

.vastu-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.compass-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.compass-wheel-wrapper {
    position: relative;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1/1;
}

.compass-wheel {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--border-medium);
    background: rgba(255, 237, 214, 0.02);
    box-shadow: var(--glow-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.compass-center-ring {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px dashed var(--border-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-void);
    z-index: 5;
}

.compass-center-ring span {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.25em;
    color: var(--gold);
}

.compass-needle {
    position: absolute;
    width: 4px;
    height: 150px;
    background: linear-gradient(to bottom, var(--gold) 50%, var(--text-muted) 50%);
    border-radius: 4px;
    z-index: 4;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform: rotate(0deg);
}

.compass-needle::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 12px solid var(--gold);
}

.compass-pad {
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    background: var(--bg-surface);
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 6;
}

.compass-pad:hover,
.compass-pad.active {
    border-color: var(--cream);
    color: var(--cream);
    background: var(--gold);
    box-shadow: 0 0 15px rgba(201, 169, 110, 0.3);
}

/* Position points around the circle */
.compass-pad.n  { top: 5%; left: 50%; transform: translateX(-50%); }
.compass-pad.ne { top: 18%; right: 18%; }
.compass-pad.e  { top: 50%; right: 5%; transform: translateY(-50%); }
.compass-pad.se { bottom: 18%; right: 18%; }
.compass-pad.s  { bottom: 5%; left: 50%; transform: translateX(-50%); }
.compass-pad.sw { bottom: 18%; left: 18%; }
.compass-pad.w  { top: 50%; left: 5%; transform: translateY(-50%); }
.compass-pad.nw { top: 18%; left: 18%; }

.vastu-details-card {
    background: rgba(255, 237, 214, 0.02);
    border: 1px solid var(--border-medium);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 3rem;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.vastu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
}

.vastu-element {
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid var(--border-medium);
    padding: 0.35rem 0.8rem;
    border-radius: 4px;
    font-size: 0.65rem;
    color: var(--gold);
}

.vastu-list {
    margin: 0 0 1.5rem;
    padding-left: 0;
}

.vastu-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.vastu-list.positive li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.vastu-list.negative li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--terracotta);
    font-weight: 700;
}

/* ─── EXPLODED VIEW Section ─── */
.exploded-breakdown {
    border-top: 1px solid var(--border-subtle);
}

.breakdown-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.video-showcase {
    position: relative;
    border: 1px solid var(--border-subtle);
    background: rgba(255, 237, 214, 0.01);
    border-radius: 12px;
    overflow: hidden;
}

.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

.layers-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.layer-card {
    padding: 1.8rem;
    background: rgba(255, 237, 214, 0.02);
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: var(--transition-med);
}

.layer-card.active,
.layer-card:hover {
    border-color: var(--border-medium);
    background: rgba(255, 237, 214, 0.04);
}

.layer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.layer-num {
    color: var(--gold);
}

.layer-card h3 {
    font-size: 1.2rem;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0.6rem;
    transition: color var(--transition-fast);
}

.layer-card.active h3 {
    color: var(--cream);
}

.layer-desc {
    display: none;
    line-height: 1.6;
    color: var(--text-secondary);
}

.layer-card.active .layer-desc {
    display: block;
    animation: slideDown 0.4s var(--ease-out-expo) forwards;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── COST ESTIMATOR Section ─── */
.estimator {
    border-top: 1px solid var(--border-subtle);
}

.estimator-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

.estimator-controls {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.estimator-group {
    display: flex;
    flex-direction: column;
}

.estimator-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.estimator-label span {
    font-weight: 700;
}

.slider-input {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: var(--border-subtle);
    border-radius: 2px;
    outline: none;
    transition: var(--transition-fast);
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    border: 1px solid var(--cream);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(201, 169, 110, 0.4);
    transition: var(--transition-fast);
}

.slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: var(--cream);
}

.style-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.style-option {
    background: rgba(255, 237, 214, 0.02);
    border: 1px solid var(--border-subtle);
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-med);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.style-option svg {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.style-option h4 {
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-secondary);
}

.style-option p {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.style-option:hover,
.style-option.active {
    border-color: var(--border-medium);
    background: rgba(255, 237, 214, 0.04);
}

.style-option.active svg {
    color: var(--gold);
}

.style-option.active h4 {
    color: var(--cream);
}

.location-select-wrapper {
    position: relative;
    width: 100%;
}

.location-select-wrapper::after {
    content: '▼';
    font-size: 0.6rem;
    color: var(--text-muted);
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.location-select {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 237, 214, 0.03);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    appearance: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.location-select:focus {
    border-color: var(--border-medium);
    color: var(--cream);
}

.estimator-results {
    background: rgba(255, 237, 214, 0.02);
    border: 1px solid var(--border-medium);
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.dash-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.dash-val {
    font-size: 1.25rem;
}

/* ─── CINEMATIC VIDEO MODAL ─── */
.video-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

.video-modal.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.video-modal-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(6, 6, 5, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1;
}

.video-modal-container {
    position: relative;
    width: 90%;
    max-width: 960px;
    aspect-ratio: 16/9;
    z-index: 2;
    transform: scale(0.95);
    transition: transform 0.6s var(--ease-out-expo);
}

.video-modal.open .video-modal-container {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: -3.5rem; right: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--cream);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.video-modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--gold);
}

.video-modal-close svg {
    width: 28px;
    height: 28px;
}

.video-modal-wrapper {
    width: 100%;
    height: 100%;
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    box-shadow: var(--glow-gold);
}

.video-modal-wrapper iframe {
    width: 100%;
    height: 100%;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-card {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 2rem auto 3rem;
        max-width: 100%;
    }

    .hero-video-wrapper {
        max-width: 100%;
    }

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

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

    .feature-item {
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
    }

    .feature-item:last-child { border-bottom: none; }

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

    .portfolio-item.col-8,
    .portfolio-item.col-4,
    .portfolio-item.col-6 {
        grid-column: span 1;
    }

    .portfolio-item.col-4 .portfolio-item-inner {
        aspect-ratio: 16/10;
    }

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

    .stat-item:nth-child(2) { border-right: none; }

    .process-timeline::before {
        left: 24px;
    }

    .process-step,
    .process-step:nth-child(even) {
        flex-direction: column;
        padding-left: 70px;
    }

    .process-step-badge {
        left: 0;
        transform: none;
    }

    .process-step-content {
        width: 100%;
    }

    .testimonial-item {
        grid-template-columns: 1fr;
    }

    .testimonial-image {
        border-left: none;
        border-top: 1px solid var(--border-subtle);
        height: 200px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background: rgba(10, 10, 8, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .nav-cta-btn {
        padding: 1rem 2rem;
        font-size: 0.85rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    /* Interactive Sections Responsive */
    .vastu-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .estimator-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .section { padding: 5rem 0; }

    .hero { padding: 6rem 0 3rem; }

    .hero-brand-text {
        font-size: clamp(3rem, 14vw, 5rem);
    }

    .hero-copy {
        padding: 0 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Mobile overrides for new interactive sections */
    .compass-wheel-wrapper {
        max-width: 280px;
    }

    .compass-pad {
        width: 32px;
        height: 32px;
        font-size: 0.65rem;
    }

    .compass-needle {
        height: 110px;
    }

    .vastu-details-card {
        padding: 1.5rem;
    }

    .vastu-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

    .estimator-results {
        padding: 1.5rem;
    }

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