/* Poppins Local Fonts */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-300.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-400.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-500.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-600.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-700.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    /* Color Palette */
    --color-bg: #F9F7F2;
    /* Soft beige / off-white */
    --color-bg-alt: #F1EFE9;
    --color-primary: #6B705C;
    /* Olive green / muted sage */
    --color-secondary: #A5A58D;
    --color-text: #333333;
    /* Charcoal for text */
    --color-text-light: #666666;
    --color-accent: #B79455;
    /* Subtle gold */
    --color-white: #FFFFFF;
    --color-error: #E63946;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: clamp(60px, 10vw, 100px) 20px;
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 20px;
    }
}


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

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.02em;
    line-height: 1.25;
    /* Refined for Poppins */
}

h2 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
}

@media (max-width: 480px) {
    h2 {
        font-size: 2rem;
    }
}


p {
    line-height: 1.7;
    /* Lighter/Airier feel */
    max-width: 65ch;
    /* Optimized for readability */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
    border-top: 1px solid rgba(107, 112, 92, 0.05);
    /* Subtle editorial divider */
}

/* Sections that don't need top border */
#portfolio,
.alt-bg,
.why-immersive,
.emotional-cta,
.map-section {
    border-top: none !important;
}

.section-subtitle {
    display: block;
    font-family: var(--font-heading);
    color: var(--color-accent);
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.text-center {
    text-align: center;
}

.alt-bg {
    background-color: var(--color-bg-alt);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

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

.mb-60 {
    margin-bottom: 60px;
}

.mt-50 {
    margin-top: 50px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 2px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 1px solid var(--color-primary);
}

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

.btn-secondary {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.scrolled {
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--color-accent);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateX(-50%);
}

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

.nav-links a.active {
    color: var(--color-accent);
}

/* Updated Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

/* Header CTA Button */
.btn-nav {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid var(--color-primary);
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

header:not(.scrolled) .btn-nav {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

header:not(.scrolled) .btn-nav:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

header.scrolled .btn-nav {
    background-color: var(--color-primary);
    color: var(--color-white);
}

header.scrolled .btn-nav:hover {
    background-color: transparent;
    color: var(--color-primary);
}

/* Visibility Helpers */
.mobile-only {
    display: none !important;
}

@media (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    height: 100vh;
    background-color: var(--color-bg);
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15vh;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    pointer-events: none;
    z-index: 3;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
        /* Shorter hero for mobile */
    }
}


/* About Image styling */
.about-image .image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1 / 1;
    max-width: 500px;
    margin: 0 auto;
}

.about-image .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.reveal-zoom {
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-reveal.active .reveal-zoom {
    transform: scale(1.05);
}


/* Cards */
.card {
    background: var(--color-white);
    padding: 40px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--color-bg-alt);
}

.card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
}

/* Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Placeholder for images */
.placeholder-img {
    background-color: #ddd;
    width: 100%;
    height: 400px;
    position: relative;
}

/* Premium Services Section */
.services-premium {
    padding: 120px 0;
}

.premium-services-list {
    margin-top: 80px;
    border-top: 1px solid rgba(107, 112, 92, 0.1);
}

.premium-service-item {
    display: flex;
    align-items: center;
    padding: 50px 0;
    border-bottom: 1px solid rgba(107, 112, 92, 0.1);
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    gap: 40px;
    cursor: pointer;
}

.premium-service-item:hover {
    padding-left: 40px;
    background-color: rgba(107, 112, 92, 0.02);
}

.service-number {
    font-size: 1.2rem;
    color: var(--color-accent);
    min-width: 50px;
    opacity: 0.6;
    font-weight: 500;
}

.service-info {
    flex-grow: 1;
}

.service-info h3 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--color-primary);
    margin-bottom: 10px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), color 0.4s ease;
    line-height: 1.1;
}

.service-info p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (max-width: 768px) {
    .service-info p {
        opacity: 1;
        height: auto;
        transform: none;
        margin-top: 15px;
    }
}


.premium-service-item:hover .service-info h3 {
    transform: translateX(10px);
    color: var(--color-accent);
}

.premium-service-item:hover .service-info p {
    opacity: 1;
    height: auto;
    margin-top: 15px;
    transform: translateY(0);
}

.service-arrow {
    width: 40px;
    height: 40px;
    color: var(--color-accent);
    opacity: 0.3;
    transition: all 0.5s ease;
}

.premium-service-item:hover .service-arrow {
    opacity: 1;
    transform: rotate(45deg) translateX(5px);
}

/* Responsive adjustment for Services */
@media (max-width: 991px) {
    .service-info h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .premium-service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        padding: 40px 0;
    }

    .premium-service-item:hover {
        padding-left: 0;
    }

    .service-info h3 {
        font-size: 2rem;
    }

    .service-info p {
        opacity: 1;
        height: auto;
        transform: none;
        margin-top: 10px;
        margin-left: auto;
        margin-right: auto;
    }

    .service-arrow {
        display: none;
    }
}


/* Portfolio Mosaic Lookbook */
.portfolio-mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 140px;
    grid-auto-flow: dense;
    gap: 30px;
    width: 100%;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--color-bg-alt);
    border-radius: 4px;
    grid-column: span 4;
    grid-row: span 2;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Specific Mosaic Spans for 12-Column Grid */
.item-large {
    grid-column: span 8;
    grid-row: span 4;
}

.item-tall {
    grid-column: span 4;
    grid-row: span 4;
}

.item-wide {
    grid-column: span 8;
    grid-row: span 2;
}

.item-half {
    grid-column: span 6;
    grid-row: span 3;
}

.portfolio-img-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0) 50%,
            rgba(0, 0, 0, 0.8) 100%);
    opacity: 0.6;
    transition: opacity 0.6s ease;
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px 30px;
    color: var(--color-white);
    z-index: 5;
    transform: translateY(15px);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.portfolio-info .category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    display: block;
    margin-bottom: 10px;
    opacity: 0.8;
}

.portfolio-info h4 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.view-project {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-white);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.5s ease;
}

.view-project::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--color-accent);
    margin-left: 10px;
    transition: width 0.3s ease;
}

/* Hover States: Focus Mode */
.portfolio-mosaic:hover .portfolio-item:not(:hover) {
    opacity: 0.4;
    filter: blur(2px) grayscale(50%);
    transform: scale(0.98);
}

.portfolio-item:hover {
    z-index: 10;
    transform: scale(1.02);
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 0.9;
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-item:hover .view-project {
    opacity: 1;
    transform: translateX(0);
}

.portfolio-item:hover .view-project::after {
    width: 40px;
}

/* Staggered Entrance (Enhanced) */
.scroll-reveal.active.portfolio-item {
    animation: mosaicReveal 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes mosaicReveal {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Mosaic */
@media (max-width: 991px) {
    .portfolio-mosaic {
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
    }

    .item-large,
    .item-tall,
    .item-wide {
        grid-column: span 6;
        grid-row: span 4;
    }

    .portfolio-item {
        grid-column: span 3;
        grid-row: span 3;
    }
}

@media (max-width: 768px) {
    .portfolio-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .portfolio-item,
    .item-large,
    .item-tall,
    .item-wide {
        grid-column: span 1;
        grid-row: auto;
        aspect-ratio: 4/5;
    }

    .portfolio-info {
        padding: 30px;
    }

    .portfolio-info h4 {
        font-size: 1.6rem;
    }

    /* Disable Focus Mode on touch */
    .portfolio-mosaic:hover .portfolio-item:not(:hover) {
        opacity: 1;
        filter: none;
        transform: none;
    }
}

/* Venue Partnerships Horizontal Layout */
#venues {
    overflow: hidden;
}

.venue-marquee {
    overflow: hidden;
    position: relative;
    padding: 10px 0;
    /* Masking for fade effect at left/right */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.venue-track {
    display: flex;
    gap: 30px;
    width: max-content;
    /* User requested Left to Right scroll */
    animation: scrollRight 40s linear infinite;
}

/* Animation Keyframes */
@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Card Styling */
.venue-card {
    background: var(--color-white);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    min-width: 250px;
}

.venue-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.venue-location {
    display: block;
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-text-light);
    margin-top: 5px;
    text-transform: none;
    letter-spacing: 0.5px;
}

/* Card Styling */
.venue-card {
    background: var(--color-white);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.venue-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.venue-location {
    display: block;
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-text-light);
    margin-top: 5px;
    text-transform: none;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .venue-scroll-layout {
        grid-template-columns: 1fr;
        height: auto;
    }

    .venue-col-wrapper {
        display: none;
        /* Hide scrolling columns on mobile for simplicity, or change to horizontal */
    }

    .venue-center-text {
        background: none;
    }

    /* Fallback for mobile: Simple list or similar (Currently hiding to focus on text as requested layout is complex for mobile) */
    /* Alternatively, we can show a static grid on mobile. For now, hiding scroll logic to keep text visible. */
}

/* Why Choose Us */
.mt-30 {
    margin-top: 30px;
}

.why-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.overlay-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.overlay-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.why-visual:hover .overlay-img {
    transform: scale(1.05);
}

.thread-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.kahani-thread {
    width: 100%;
    height: 100%;
    opacity: 0.6;
    color: var(--color-white);
    /* Setup context for currentColor */
}

.why-list {
    text-align: left;
}

.why-list li {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 1px solid var(--color-accent);
}

.why-list strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

/* Emotional CTA */
.emotional-cta {
    position: relative;
    background-image: url('../assets/bg2.jpeg');
    /* Sunset Serenity */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0;
}

.emotional-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Overlay for legibility */
    z-index: 1;
}

.emotional-cta .container {
    position: relative;
    z-index: 2;
}

.emotional-cta h2 {
    color: white;
    font-size: 3rem;
}

.emotional-cta p {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    opacity: 0.9;
}

.emotional-cta .btn-primary {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.emotional-cta .btn-primary:hover {
    background-color: transparent;
    color: var(--color-white);
}

/* Contact Form */
.gap-20 {
    gap: 20px;
}

.full-width {
    width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    background-color: transparent;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

.form-group textarea {
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.contact-details .detail-item {
    margin-bottom: 30px;
}

.contact-details strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 5px;
}

.contact-details p {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
}

/* Professional Footer Styles */
.footer {
    background-color: var(--color-bg-alt);
    padding: 100px 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-top {
    padding-bottom: 40px;
}

.footer-divider {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    color: var(--color-accent);
    opacity: 0.5;
}

.kahani-thread-horizontal {
    width: 100%;
    max-width: 800px;
    height: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-primary);
    display: block;
    margin-bottom: 15px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.brand-col {
    text-align: center;
}

.brand-desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
    max-width: 320px;
    line-height: 1.8;
    margin-left: auto;
    margin-right: auto;
}

.footer-social-v2 {
    display: flex;
    gap: 20px;
}

.footer-social-v2 a {
    color: var(--color-primary);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-social-v2 a:hover {
    opacity: 1;
    color: var(--color-accent);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--color-text);
    font-weight: 600;
}

.footer-nav li {
    margin-bottom: 15px;
}

.footer-nav a {
    font-size: 0.9rem;
    color: var(--color-text-light);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--color-accent);
}

.footer-address p {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 15px;
    max-width: none;
}

.footer-address a {
    transition: color 0.3s ease;
}

.footer-address a:hover {
    color: var(--color-accent);
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-text-light);
    transition: color 0.3s ease-in-out;
}

.social-link-item:hover {
    color: var(--color-accent);
}

.social-link-item svg {
    color: var(--color-primary);
    transition: color 0.3s ease-in-out;
    flex-shrink: 0;
    display: block;
    margin-top: -2px;
}

.social-link-item:hover svg {
    color: var(--color-accent);
}

.social-link-item span {
    line-height: 1.2;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin: 0;
}

.footer-credit {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.footer-credit a {
    color: var(--color-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: var(--color-accent);
}

@media (max-width: 1200px) {
    .footer-grid {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .brand-col,
    .newsletter-col {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding-top: 60px;
    }

    .footer-divider {
        margin-bottom: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .brand-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social-v2 {
        justify-content: center;
    }

    .footer-newsletter {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-legal {
        justify-content: center;
    }

    .social-col .footer-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-nav {
        text-align: center;
    }
}

.section-padding-small {
    padding: 60px 0;
}

.footer.section-padding-small {
    padding-bottom: 20px;
}

/* TABLET SCALE (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 20px;
    }

    body {
        font-size: 15px;
    }

    .section {
        padding: 80px 40px;
    }
}

/* DESKTOP SCALE (≥1025px) */
@media (min-width: 1025px) {
    h1 {
        font-size: 60px;
    }

    h2 {
        font-size: 34px;
        font-weight: 600;
    }

    h3 {
        font-size: 22px;
        font-weight: 500;
    }

    body {
        font-size: 16px;
        font-weight: 300;
        /* Luxury font weight */
    }

    .section {
        padding: 90px 20px;
        /* Reduced vertical padding by ~7% */
    }

    .container p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-text p,
    .why-text p,
    .contact-info p {
        margin-left: 0;
        /* Keep left-aligned where appropriate */
    }
}

@media (max-width: 768px) {
    header nav {
        padding: 0 5%;
    }

    .section {
        padding: 60px 20px;
        text-align: center;
    }

    .section-subtitle,
    .section h2 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Mobile Menu - Professional Minimalist Revamp */
    .mobile-menu-btn {
        display: flex;
        position: relative;
        z-index: 1001;
        /* Ensure above the full-screen menu */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(249, 248, 244, 0.9);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        display: flex;
        padding: 50px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        /* Larger, more significant text */
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--color-text);
        font-weight: 500;
        position: relative;
        opacity: 0;
        /* Animate in */
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
        /* Stagger effect handled in CSS or simplified here */
    }

    /* Stagger delays manually for a few items */
    .nav-links.active li:nth-child(1) a {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) a {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(3) a {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(4) a {
        transition-delay: 0.4s;
    }

    .nav-links a::after {
        display: none;
    }

    /* Mobile Social Links */
    .mobile-socials {
        display: flex;
        gap: 30px;
        margin-top: 40px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s ease 0.5s;
    }

    .nav-links.active .mobile-socials {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-socials a {
        font-size: 0.8rem;
        letter-spacing: 2px;
        color: var(--color-text-light);
    }

    /* Mobile CTA in Menu */
    .mobile-nav-cta {
        margin-top: 20px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s ease 0.6s;
    }

    .nav-links.active .mobile-nav-cta {
        opacity: 1;
        transform: translateY(0);
    }

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

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    /* Standardize Item Alignment */
    .card,
    .service-item,
    .contact-info,
    .contact-details {
        text-align: center;
    }

    .why-list {
        text-align: left;
        max-width: 450px;
        margin: 30px auto 0;
    }

    .emotional-cta h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .portfolio-item.tall {
        grid-row: span 1;
    }

    .venue-logos {
        gap: 30px;
    }

    .thread-overlay {
        display: none !important;
    }
}

/* Testimonials */
/* Testimonials - Carousel */
.testimonial-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0 60px;
    /* Space for shadow and buttons */
}

.testimonial-container {
    overflow: hidden;
    margin: 0 -15px;
    /* Offset padding */
}

.testimonial-display {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.testimonial-item {
    flex: 0 0 50%;
    /* 2 items per view on desktop */
    max-width: 50%;
    padding: 0 15px;
    /* Gutter */
    text-align: left;
}

.testimonial-item .card-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover .card-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.quote-icon {
    color: var(--color-accent);
    opacity: 0.8;
    margin-bottom: 20px;
    display: block;
    /* Left align */
}

.testimonial-text {
    font-size: 1.1rem;
    font-family: var(--font-body);
    /* More readable for card */
    font-style: normal;
    color: var(--color-text);
    margin-bottom: 30px;
    line-height: 1.6;
    flex-grow: 1;
}

.author-info {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 5px;
    font-weight: 600;
}

.testimonial-date {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Buttons */
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover:not(:disabled) {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 1024px) {
    .testimonial-item {
        flex: 0 0 100%;
        /* 1 item on tablet/mobile */
        max-width: 100%;
    }

    .testimonial-item .card-content {
        padding: 30px;
    }
}

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

.insta-img-placeholder {
    aspect-ratio: 1;
    background-color: var(--color-primary);
    opacity: 0.1;
    transition: all 0.4s ease;
    border-radius: 4px;
}

.insta-item:hover .insta-img-placeholder {
    opacity: 0.3;
}

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

@media (max-width: 768px) {
    #hero h1 {
        font-size: 3.2rem;
    }

    .section-subtitle {
        font-size: 0.8rem;
        letter-spacing: 0.1em;
    }

    .thread-overlay {
        display: none !important;
    }
}

/* Kahani Thread & Overlay Visuals */
.overlay-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

.overlay-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.9);
    /* Added for thread legibility */
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.overlay-visual-container:hover .overlay-img {
    transform: scale(1.03);
}

.thread-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 50px;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.1) 100%);
}

.kahani-thread {
    width: 60px;
    height: auto;
    color: var(--color-accent);
    /* Muted Gold */
    opacity: 0.9;
    /* Increased for contrast on image */
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.thread-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.active .thread-path {
    stroke-dashoffset: 0;
}

.thread-node {
    opacity: 0;
    transition: opacity 0.8s ease 3s;
}

.scroll-reveal.active .thread-node {
    opacity: 1;
}

@media (max-width: 1024px) {
    .kahani-thread {
        width: 40px;
    }

    .overlay-visual-container {
        min-height: 400px;
    }
}

/* Gallery Modal Styles */
.gallery-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal.active {
    opacity: 1;
}

.modal-content-premium {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
    z-index: 2000;
}

.modal-header {
    margin-bottom: 20px;
    text-align: center;
}

#modal-title {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.modal-gallery-main {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    max-height: 70vh;
}

.modal-main-viewer {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#modal-main-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
    transition: opacity 0.4s ease, transform 0.4s ease;
    animation: zoomInFade 0.5s ease forwards;
}

@keyframes zoomInFade {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-nav {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: scale(1.1);
}

.modal-nav svg {
    width: 24px;
    height: 24px;
}

.modal-thumbnails-container {
    width: 100%;
    max-width: 900px;
    margin-top: 30px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    position: relative;
    z-index: 2005;
}

.modal-thumbnails {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 10px;
    overflow-x: auto;
    scrollbar-width: none;
}

.modal-thumbnails::-webkit-scrollbar {
    display: none;
}

.thumb-item {
    width: 90px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    flex-shrink: 0;
    opacity: 0.4;
    transform: scale(0.9);
}

.thumb-item:hover {
    opacity: 0.8;
    transform: scale(1);
}

.thumb-item.active {
    border-color: var(--color-accent);
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(183, 148, 85, 0.4);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--color-white);
    font-size: 35px;
    cursor: pointer;
    z-index: 2100;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--color-accent);
}

@media (max-width: 768px) {
    .modal-content-premium {
        padding: 20px;
    }

    .modal-gallery-main {
        gap: 10px;
    }

    .modal-nav {
        width: 40px;
        height: 40px;
        position: absolute;
        z-index: 5;
    }

    .modal-nav.prev {
        left: 0;
    }

    .modal-nav.next {
        right: 0;
    }

    .modal-nav svg {
        width: 20px;
        height: 20px;
    }

    .thumb-item {
        width: 50px;
        height: 50px;
    }

    .modal-thumbnails {
        justify-content: flex-start;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Instagram Gallery */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.insta-item {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.insta-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.insta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.insta-item:hover .insta-img {
    transform: scale(1.1);
}

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

@media (max-width: 576px) {
    .insta-grid {
        grid-template-columns: 1fr;
    }
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-primary);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Cursor Hover State */
body.hovering .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(107, 112, 92, 0.1);
    border-color: transparent;
}

body.portfolio-hover .cursor-outline {
    width: 80px;
    height: 80px;
    background-color: var(--color-accent);
    border-color: transparent;
    mix-blend-mode: normal;
}

body.portfolio-hover .cursor-outline::after {
    content: 'VIEW STORY';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-white);
    white-space: nowrap;
}

body.portfolio-hover .cursor-dot {
    opacity: 0;
}

/* Hide default cursor */
@media (hover: hover) and (pointer: fine) {
    body {
        cursor: none;
    }

    a,
    button,
    .btn,
    input,
    textarea,
    .scroller-item,
    .card,
    .portfolio-item,
    .service-item,
    .insta-item {
        cursor: none;
    }
}

@media (hover: none) {

    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* Text Reveal Animation */
.word-reveal {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.word-reveal span {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-reveal.active .word-reveal span {
    transform: translateY(0);
}

/* Button Shimmer Effect */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transform: skewX(-25deg);
    animation: shimmer 5s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    10% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* Premium Our Story Section */
.story-premium {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.watermark-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 20vw;
    font-weight: 300;
    /* Thinner for elegance */
    letter-spacing: 50px;
    /* Sophisticated spacing */
    color: rgba(107, 112, 92, 0.02);
    /* Extremely subtle */
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    line-height: 1;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.story-visual-container {
    position: relative;
    z-index: 1;
}

.story-img {
    width: 100%;
    height: 400px;
    /* Specific height constraints */
    object-fit: cover;
    /* Maintain aspect ratio */
    border-radius: 4px;
    /* Slightly softer corners */
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    transform: translateY(30px);
    /* Initial offset for design */
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: floatBadge 6s ease-in-out infinite;
    z-index: 2;
}

.floating-badge svg {
    animation: rotateText 20s linear infinite;
    width: 100%;
    height: 100%;
}

.center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 24px;
}

.est-text {
    display: inline-block;
    margin-top: 10px;
    font-family: 'Dancing Script', cursive;
    /* Authentic handwritten font */
    font-size: 3.5rem;
    /* Larger and more prominent */
    color: #9c7b45;
    /* Deeper, richer gold for legibility on light bg */
    letter-spacing: 0;
    /* No letter spacing for cursive */
    border: none;
    padding: 0;
    transform: rotate(-2deg);
    /* Artistic tilt */
}

@keyframes rotateText {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 991px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .watermark-text {
        font-size: 30vw;
        top: 20%;
        letter-spacing: 20px;
    }

    .story-img {
        transform: none;
        height: 350px;
    }

    .floating-badge {
        width: 100px;
        height: 100px;
        bottom: -20px;
        left: -20px;
    }

    .signature {
        text-align: center;
        width: 100%;
    }

    .est-text {
        font-size: 2.5rem;
    }
}

/* Map Section */
.map-section {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Premium Philosophy Section */
.philosophy-premium {
    padding: 120px 0;
}

.philosophy-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.phil-sticky {
    position: sticky;
    top: 150px;
}

.phil-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.phil-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(107, 112, 92, 0.1);
}

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

.phil-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease;
}

.phil-item:hover .phil-icon {
    transform: scale(1.1) rotate(5deg);
}

.phil-text h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.phil-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

@media (max-width: 768px) {
    .phil-text p {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
}


/* Responsive Philosophy */
@media (max-width: 991px) {
    .philosophy-split {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .phil-sticky {
        position: static;
    }
}

@media (max-width: 768px) {
    .phil-item {
        flex-direction: column;
        gap: 15px;
        padding: 40px 0;
        text-align: center;
        align-items: center;
    }

    .phil-icon {
        width: 50px;
        height: 50px;
        background: transparent;
        box-shadow: none;
        justify-content: center;
        display: flex;
        align-items: center;
        opacity: 1;
        margin: 0 auto;
    }

    .phil-icon img {
        height: 40px;
        width: auto;
        object-fit: contain;
    }

    .phil-text h3 {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .phil-sticky {
        text-align: center;
        margin-bottom: 40px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(107, 112, 92, 0.1);
    }
}

/* Premium Cinematic Testimonials */
.testimonials-premium {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    background-color: var(--color-bg);
}

.cinematic-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
}

.cinematic-slides-track {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
}

.cinematic-slide {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.cinematic-slide.active {
    opacity: 1;
    visibility: visible;
}

.cinematic-slide blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    line-height: 1.4;
    color: var(--color-primary);
    font-style: italic;
    margin-bottom: 40px;
    position: relative;
    padding: 0 40px;
    border: none;
    background: transparent;
}

.cinematic-slide blockquote::before {
    content: '\201C';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    color: var(--color-accent);
    opacity: 0.1;
    font-family: var(--font-heading);
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.author-name {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-text);
}

.author-meta {
    font-size: 0.85rem;
    color: var(--color-accent);
    letter-spacing: 1px;
}

/* Slider Controls */
.cinematic-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.cin-nav {
    background: transparent;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
    padding: 15px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cin-nav:hover {
    opacity: 1;
    color: var(--color-accent);
    background: rgba(107, 112, 92, 0.05);
    transform: scale(1.1);
}

.cin-index {
    font-family: var(--font-heading);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--color-primary);
    letter-spacing: 2px;
}

.cin-index .current {
    font-size: 2rem;
    color: var(--color-accent);
    font-weight: 600;
}

.cin-index .separator {
    opacity: 0.3;
}

/* Mobile Adjustments for Testimonials */
@media (max-width: 768px) {
    .testimonials-premium {
        padding: 80px 0;
    }

    .cinematic-slides-track {
        height: 450px;
    }

    .cinematic-slide blockquote {
        font-size: 1.4rem;
        padding: 0 10px;
    }

    .cinematic-controls {
        gap: 20px;
    }
}

/* Immersive Why Section */
.why-immersive {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-color: #000;
    /* Backdrop for parallax */
}

.why-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* Extra height for parallax */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Fallback parallax */
    filter: brightness(0.5) grayscale(20%);
    z-index: 1;
}

.why-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.6) 0%,
            transparent 30%,
            transparent 70%,
            rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.white-text {
    color: var(--color-white) !important;
}

.why-header {
    position: relative;
    z-index: 10;
}

.why-cards-grid {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 40px;
    border-radius: 4px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.card-num {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--color-accent);
    opacity: 0.15;
    position: absolute;
    top: -10px;
    right: 20px;
    line-height: 1;
    pointer-events: none;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Premium Thread winding through cards */
.why-thread-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.2;
}

.kahani-thread-immersive {
    width: 100%;
    height: 100%;
    color: var(--color-accent);
}

.thread-path-premium {
    stroke-dasharray: 12;
    animation: dashWorkflow 30s linear infinite;
}

@keyframes dashWorkflow {
    to {
        stroke-dashoffset: -1000;
    }
}

/* Mobile Immersive Adjustments */
@media (max-width: 991px) {
    .why-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .why-immersive {
        padding: 100px 0;
    }

    .glass-card {
        padding: 40px 30px;
        text-align: center;
    }

    .card-num {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 20px;
        opacity: 0.3;
    }

    .why-bg-layer {
        height: 100%;
        background-attachment: scroll;
        /* Handled better by some mobile Browsers */
    }
}

@media (max-width: 480px) {
    .why-card h3 {
        font-size: 1.6rem;
    }

    .card-num {
        font-size: 3.5rem;
    }
}