/* ==========================================================================
   HOUSE OF DINORA - STYLESHEET
   Luxury Light Theme, Premium Responsive Layout, Elegant Animations
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design System Variables
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --bg-primary: #FCFAF5;       /* Premium Ivory Cream */
    --bg-secondary: #F6F2E9;     /* Soft Champagne / Pearl */
    --bg-tertiary: #ECE6D9;      /* Warm Canvas Sand */
    --accent-gold: #C5A880;      /* Luxury Gold */
    --accent-gold-hover: #A5875E;/* Deep Gold */
    --accent-gold-light: #F2EDE2;/* Very Light Gold Tint */
    --text-primary: #1A1A1A;     /* Ebony / Charcoal */
    --text-secondary: #5A544A;   /* Muted Warm Gray */
    --text-light: #8E877C;       /* Soft Light Gray */
    --border-color: #E6DFD3;     /* Fine gold-tinted divider */
    --white: #FFFFFF;
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', system-ui, -apple-system, sans-serif;
    
    /* Layout Constants */
    --max-width: 1280px;
    --header-height: 100px;
    --header-height-scrolled: 80px;
    
    /* Animation Timing */
    --transition-smooth: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.3s ease;
}

/* --------------------------------------------------------------------------
   2. Reset & General Options
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Selection Highlight */
::selection {
    background-color: var(--accent-gold-light);
    color: var(--text-primary);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.25;
}

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

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

address {
    font-style: normal;
}

/* --------------------------------------------------------------------------
   3. Continuous Animated Canvas Background
   -------------------------------------------------------------------------- */
#silk-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10; /* Bring above solid section backgrounds but below header (100) */
    pointer-events: none;
    opacity: 0.75;
}

/* --------------------------------------------------------------------------
   4. Layout Containers & Utility Classes
   -------------------------------------------------------------------------- */
.section-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .section-container {
        padding: 0 20px;
    }
}

.center {
    text-align: center;
}

/* Section Header Typography */
.section-tag {
    font-family: var(--font-sans);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-transform: capitalize;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.title-divider {
    width: 50px;
    height: 1px;
    background-color: var(--accent-gold);
    margin: 0 auto 25px;
}

.section-header:not(.center) .title-divider {
    margin-left: 0;
    margin-right: 0;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: -10px auto 40px;
    font-weight: 300;
}

/* --------------------------------------------------------------------------
   5. Buttons (Luxury Styling)
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    border-radius: 0;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

/* Primary Button Gold Shimmer Sweep Effect */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.75s;
    animation: goldShimmer 4s infinite ease-in-out;
}

@keyframes goldShimmer {
    0% { left: -150%; }
    30% { left: 150%; }
    100% { left: 150%; }
}

.btn-primary:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--white);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(6px);
}

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

.btn-secondary:hover {
    background-color: var(--accent-gold-light);
    border-color: var(--accent-gold);
    color: var(--text-primary);
}

.btn-block {
    width: 100%;
}

.btn-arrow {
    margin-left: 12px;
    transition: var(--transition-fast);
}

/* --------------------------------------------------------------------------
   6. Main Header & Navigation (Light Background)
   -------------------------------------------------------------------------- */
.main-header {
    width: 100%;
    height: var(--header-height);
    background-color: var(--bg-primary); /* Ensuring NO dark background where logo exists */
    border-bottom: 1px solid rgba(230, 223, 211, 0.4);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition-fast);
}

.main-header.scrolled {
    height: var(--header-height-scrolled);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.header-container {
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the logo beautifully */
}

.brand-logo {
    height: 50px;
    width: auto;
    transition: var(--transition-smooth);
    display: block;
}

.main-header.scrolled .brand-logo {
    height: 40px;
}

/* --------------------------------------------------------------------------
   7. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
    padding: 80px 0 140px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    min-height: calc(100vh - var(--header-height));
    position: relative;
}

@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 60px 20px 100px;
        gap: 40px;
        text-align: center;
    }
}

.hero-content {
    max-width: 620px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 1024px) {
    .hero-content {
        margin: 0 auto;
        align-items: center;
    }
}

.hero-badge {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 24px;
    display: inline-block;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 300;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.6rem;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 300;
}

.hero-cta {
    display: inline-block;
}

/* Hero Visual & Border Floating Element */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-frame {
    position: relative;
    width: 80%;
    max-width: 420px;
    aspect-ratio: 4 / 5;
    background-color: var(--bg-secondary);
    box-shadow: 0 20px 50px rgba(26, 26, 26, 0.05);
    animation: floatAnimation 6s ease-in-out infinite alternate;
}

.parallax-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.image-frame:hover .parallax-img {
    transform: scale(1.04);
}

/* Offset Floating Border Overlay */
.frame-border {
    position: absolute;
    top: -15px;
    left: 15px;
    right: -15px;
    bottom: 15px;
    border: 1px solid var(--accent-gold);
    z-index: -1;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.image-frame:hover .frame-border {
    transform: translate(-10px, 10px);
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-light);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    z-index: 10;
}

.scroll-text {
    margin-bottom: 15px;
    transition: var(--transition-fast);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background-color: var(--border-color);
    position: relative;
    overflow: hidden;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background-color: var(--accent-gold);
    animation: scrollAnimation 2.2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes scrollAnimation {
    0% { top: -40%; }
    60% { top: 100%; }
    100% { top: 100%; }
}

.scroll-indicator:hover .scroll-text {
    color: var(--accent-gold);
    transform: translateY(3px);
}

/* --------------------------------------------------------------------------
   8. Brand Introduction Section
   -------------------------------------------------------------------------- */
.intro-section {
    padding: 120px 0;
    background-color: var(--white);
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 900px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.intro-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .intro-text {
        font-size: 1.4rem;
    }
}

.intro-subtext {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* --------------------------------------------------------------------------
   9. What We Offer (Collections Section)
   -------------------------------------------------------------------------- */
.offers-section {
    padding: 120px 0;
    background-color: var(--bg-primary);
}

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

@media (max-width: 960px) {
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 500px;
        margin: 0 auto;
    }
}

.luxury-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.luxury-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(197, 168, 128, 0.08);
    border-color: var(--accent-gold);
}

.card-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.luxury-card:hover .card-img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.1) 0%, rgba(26, 26, 26, 0) 100%);
}

.card-content {
    padding: 35px 30px;
}

.card-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 12px;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.luxury-card:hover .card-title::after {
    width: 60px;
}

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

.card-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-weight: 400;
}

.card-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    margin-right: 12px;
}

/* --------------------------------------------------------------------------
   10. Why House of Dinora (Features Section)
   -------------------------------------------------------------------------- */
.why-section {
    padding: 120px 0;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

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

.feature-item {
    padding: 40px 30px;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-item:hover {
    border-color: var(--accent-gold-light);
    background-color: var(--bg-primary);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon {
    background-color: var(--accent-gold);
    color: var(--white);
}

.feature-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

/* --------------------------------------------------------------------------
   11. Launch Announcement Banner (No Countdown, Coming Very Soon)
   -------------------------------------------------------------------------- */
.launch-banner {
    padding: 140px 0;
    position: relative;
    background-image: url('assets/hero_fabric.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--text-primary);
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(253, 251, 247, 0.94); /* Keeping it light themed */
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-weight: 500;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
    animation: simplePulse 1.8s infinite ease-in-out;
}

@keyframes simplePulse {
    0% { transform: scale(0.9); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.5; }
}

.banner-headline {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .banner-headline {
        font-size: 2.5rem;
    }
}

.banner-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

/* --------------------------------------------------------------------------
   12. Exclusive Waitlist Form
   -------------------------------------------------------------------------- */
.form-section {
    padding: 120px 0;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.form-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

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

.form-headline {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .form-headline {
        font-size: 2.2rem;
    }
}

.form-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
}

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

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.benefit-check {
    color: var(--accent-gold);
    margin-right: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Modern Input Controls */
.form-container {
    background-color: var(--white);
    padding: 60px;
    border: 1px solid var(--border-color);
    box-shadow: 0 30px 60px rgba(197, 168, 128, 0.05);
}

@media (max-width: 768px) {
    .form-container {
        padding: 40px 20px;
    }
}

.form-group {
    position: relative;
    margin-bottom: 35px;
}

.form-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.form-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-primary);
    background: transparent;
    border-radius: 0;
    outline: none;
    transition: var(--transition-fast);
}

.form-input::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.form-input:focus ~ .input-line {
    width: 100%;
}

.form-input:focus {
    border-color: transparent;
}

.form-privacy {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 20px;
}

/* --------------------------------------------------------------------------
   13. Sneak Peek Gallery
   -------------------------------------------------------------------------- */
.gallery-section {
    padding: 120px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

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

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

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

.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.gallery-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(253, 251, 247, 0.95); /* Light themed overlay */
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-icon {
    color: var(--accent-gold);
    margin-bottom: 16px;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.gallery-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 6px;
    transform: translateY(15px);
    transition: var(--transition-smooth);
    transition-delay: 0.05s;
}

.gallery-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transform: translateY(15px);
    transition: var(--transition-smooth);
    transition-delay: 0.10s;
}

.gallery-item:hover .gallery-icon,
.gallery-item:hover .gallery-title,
.gallery-item:hover .gallery-desc {
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   14. Brand Values
   -------------------------------------------------------------------------- */
.values-section {
    padding: 120px 0;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

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

@media (max-width: 900px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.value-card {
    background-color: var(--white);
    padding: 50px 40px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 30px rgba(197, 168, 128, 0.05);
}

.value-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 15px;
}

.value-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background-color: var(--accent-gold);
}

.value-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

/* --------------------------------------------------------------------------
   15. Instagram Preview Section
   -------------------------------------------------------------------------- */
.instagram-section {
    padding: 120px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

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

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

.insta-post {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.insta-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.insta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 26, 0.4);
    opacity: 0;
    transition: var(--transition-fast);
    display: flex;
    justify-content: center;
    align-items: center;
}

.insta-tag {
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    border: 1px solid var(--white);
    padding: 8px 16px;
    background-color: rgba(0,0,0,0.1);
}

.insta-post:hover .insta-overlay {
    opacity: 1;
}

.insta-post:hover .insta-img {
    transform: scale(1.05);
}

.insta-info {
    padding: 24px 20px;
}

.insta-date {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.insta-caption {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
    font-weight: 300;
}

.insta-cta {
    margin-top: 20px;
}

/* --------------------------------------------------------------------------
   16. Customer Promise Banner
   -------------------------------------------------------------------------- */
.promise-banner {
    padding: 150px 0;
    background-color: var(--bg-secondary);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.promise-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

.promise-text {
    font-family: var(--font-serif);
    font-size: 2.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .promise-text {
        font-size: 1.5rem;
    }
}

.gold-signature {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    letter-spacing: 0.25em;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-style: normal;
}

/* --------------------------------------------------------------------------
   17. Contact Details (Bahria Town Lahore, No Number)
   -------------------------------------------------------------------------- */
.contact-section {
    padding: 120px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

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

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

.contact-title {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.contact-intro {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-primary);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.contact-card-info {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    margin-bottom: 6px;
}

.contact-value {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 400;
    word-break: break-all;
}

.contact-value:hover {
    color: var(--accent-gold);
}

.contact-value-address {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 300;
    line-height: 1.5;
}

/* Beautiful Minimal Location Map Mockup */
.location-visual {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.map-mockup {
    width: 100%;
    height: 100%;
    background-color: #F3ECE1;
    background-image: 
        radial-gradient(var(--border-color) 1px, transparent 0),
        linear-gradient(rgba(230, 223, 211, 0.4) 1px, transparent 0),
        linear-gradient(90deg, rgba(230, 223, 211, 0.4) 1px, transparent 0);
    background-size: 24px 24px, 48px 48px, 48px 48px;
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-pin {
    position: relative;
    width: 24px;
    height: 24px;
    margin-bottom: 12px;
}

.pin-dot {
    width: 12px;
    height: 12px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 6px;
    z-index: 2;
    border: 2px solid var(--white);
}

.pin-pulse {
    width: 24px;
    height: 24px;
    background-color: rgba(197, 168, 128, 0.4);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    animation: mapPulse 2s infinite ease-out;
}

@keyframes mapPulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.map-label {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text-primary);
    font-weight: 500;
}

.map-city {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   18. Footer Section
   -------------------------------------------------------------------------- */
.main-footer {
    background-color: var(--white);
    color: var(--text-primary);
    border-top: 1px solid var(--border-color);
}

.footer-top {
    padding: 80px 0 60px;
}

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

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

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

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-heading {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    background-color: var(--bg-primary);
}

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

@media (max-width: 600px) {
    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

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

.footer-bottom-links {
    font-size: 0.75rem;
    color: var(--accent-gold);
    letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   19. Lightbox Modal Gallery Viewer
   -------------------------------------------------------------------------- */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(253, 251, 247, 0.98); /* Light luxury background */
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox-modal.show {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: var(--text-primary);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1010;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}

.lightbox-content-wrapper {
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 1100px;
    height: 80%;
    position: relative;
}

.lightbox-nav {
    background: none;
    border: none;
    font-size: 3rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 20px;
    z-index: 1005;
    transition: var(--transition-fast);
}

.lightbox-nav:hover {
    color: var(--accent-gold);
    transform: scale(1.1);
}

.lightbox-image-container {
    flex-grow: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 20px;
}

#lightbox-img {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(26,26,26,0.06);
    background-color: var(--white);
}

.lightbox-caption {
    margin-top: 25px;
    text-align: center;
}

#lightbox-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

#lightbox-desc {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   20. Waitlist Success Modal Dialog
   -------------------------------------------------------------------------- */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.success-modal.show {
    display: flex;
    opacity: 1;
}

.success-modal-content {
    background-color: var(--bg-primary);
    border: 1px solid var(--accent-gold);
    width: 90%;
    max-width: 500px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.success-modal.show .success-modal-content {
    transform: scale(1);
}

.success-modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--accent-gold-light);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.success-headline {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.success-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 35px;
}

/* --------------------------------------------------------------------------
   21. Scroll Reveal Interactive Effect States
   -------------------------------------------------------------------------- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.fade-in-element {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.fade-in-element:nth-child(1) { animation-delay: 0.1s; }
.fade-in-element:nth-child(2) { animation-delay: 0.3s; }
.fade-in-element:nth-child(3) { animation-delay: 0.5s; }
.fade-in-element:nth-child(4) { animation-delay: 0.7s; }

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