/* Style System & Core Variables */
:root {
    --primary-dark: #3a2224;      /* Deep Plum / Rose Maroon */
    --primary: #5c3538;           /* Rose Wood */
    --primary-light: #834f53;     /* Muted Rose */
    --primary-rgb: 92, 53, 56;
    --accent-gold: #c77a7e;       /* Logo Dusty Rose Script */
    --accent-gold-dark: #a95c60;
    --accent-gold-light: #fcebeb;  /* Logo Blush Monogram Pink */
    --accent-gold-rgb: 199, 122, 126;
    --bg-light: #fdf8f7;          /* Warm Delicate Rose Cream */
    --bg-light-alt: #f5e6e5;      /* Soft Dusty Rose Gray */
    --text-dark: #331f20;         /* Deep Plum Gray */
    --text-muted: #73595b;        /* Dusty Gray Pink */
    --text-light: #fdf8f7;
    --text-light-muted: #d0b2b4;
    --white: #ffffff;
    --error: #cc3333;
    
    /* Layout Tokens */
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius: 12px;
    --border-radius-lg: 24px;
    
    /* Typography Pairs */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    /* Transitions & Shadow System */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 10px 25px rgba(199, 122, 126, 0.15);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

input, select, textarea, button {
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

ul {
    list-style: none;
}

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

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-light { color: var(--text-light-muted); }
.text-gold { color: var(--accent-gold); }

/* Common Headings */
.pre-heading {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 0 auto 50px;
    border-radius: 2px;
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

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

.btn-primary:hover {
    background-color: var(--accent-gold-dark);
    border-color: var(--accent-gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-gold-outline {
    background-color: transparent;
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.btn-gold-outline:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.btn-insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    border: none;
    border-radius: 30px;
    padding: 12px 24px;
}

.btn-insta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.3);
}

/* Header & Navigation */
.header {
    height: var(--header-height);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background-color: rgba(58, 34, 36, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(199, 122, 126, 0.15);
    height: 70px;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

/* Logo Styling */
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 46px;
    width: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
    background-color: var(--white);
    transition: var(--transition);
}

.header.scrolled .logo-img {
    border-color: var(--accent-gold-light);
}

.logo {
    display: flex;
    color: var(--white);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.header.scrolled .logo-text {
    color: var(--accent-gold-light);
}

.logo-sub {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent-gold-light);
    font-weight: 700;
    margin-top: 2px;
}

.header.scrolled .logo-sub {
    color: var(--white);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--white);
}

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

.header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.header.scrolled .nav-link:hover {
    color: var(--accent-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-btn {
    background-color: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
}

.nav-btn:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    transform: none;
}

.nav-btn-mobile {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

/* Mobile Nav Styles */
@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-btn {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--primary-dark);
        border-left: 1px solid rgba(212, 175, 55, 0.2);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 50px 40px;
        gap: 30px;
        transition: var(--transition-slow);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .nav-btn-mobile {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px;
        background-color: var(--accent-gold);
        color: var(--primary-dark);
        border-radius: 4px;
        font-weight: 600;
        margin-top: 20px;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-color: var(--primary-dark);
    background-image: radial-gradient(circle at 80% 20%, rgba(26, 80, 52, 0.15) 0%, transparent 60%);
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 80px;
    color: var(--white);
    z-index: 1;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54 48c-2 0-3 1-4 2v4c0 1-1 2-2 2h-4c-1 0-2-1-2-2v-4c-1-1-2-2-4-2h-4c-2 0-3 1-4 2v4c0 1-1 2-2 2H22c-1 0-2-1-2-2v-4c-1-1-2-2-4-2h-4c-2 0-3 1-4 2v4c0 1-1 2-2 2H2c-1 0-2-1-2-2v-4c0-2 1-3 2-4h4c1-1 2-2 2-4v-4c0-2-1-3-2-4H2c-1 0-2-1-2-2v-4c0-1 1-2 2-2h4c1-1 2-2 2-4v-4c0-2-1-3-2-4H2c-1 0-2-1-2-2v-4c0-1 1-2 2-2h4c2 0 3-1 4-2v-4C16 1 17 0 18 0h4c1 0 2 1 2 2v4c1 1 2 2 4 2h4c2 0 3-1 4-2v-4c0-1 1-2 2-2h4c1 0 2 1 2 2v4c1 1 2 2 4 2h4c2 0 3-1 4-2v-4c0-1 1-2 2-2h4c1 0 2 1 2 2v4c0 2-1 3-2 4h-4c-1 1-2 2-2 4v4c0 2 1 3 2 4h4c1 0 2 1 2 2v4c0 1-1 2-2 2h-4c-1 1-2 2-2 4v4c0 2 1 3 2 4h4c1 0 2 1 2 2v4c0 1-1 2-2 2zM30 20c-3 0-5 2-5 5v4c0 3 2 5 5 5h4c3 0 5-2 5-5v-4c0-3-2-5-5-5h-4zm0 24c-3 0-5 2-5 5v4c0 3 2 5 5 5h4c3 0 5-2 5-5v-4c0-3-2-5-5-5h-4zm-24 0c-3 0-5 2-5 5v4c0 3 2 5 5 5h4c3 0 5-2 5-5v-4c0-3-2-5-5-5H6zm48 0c-3 0-5 2-5 5v4c0 3 2 5 5 5h4c3 0 5-2 5-5v-4c0-3-2-5-5-5h-4zM6 20c-3 0-5 2-5 5v4c0 3 2 5 5 5h4c3 0 5-2 5-5v-4c0-3-2-5-5-5H6zm48 0c-3 0-5 2-5 5v4c0 3 2 5 5 5h4c3 0 5-2 5-5v-4c0-3-2-5-5-5h-4zM24 0h-4c-3 0-5 2-5 5v4c0 3 2 5 5 5h4c3 0 5-2 5-5V5c0-3-2-5-5-5zm24 0h-4c-3 0-5 2-5 5v4c0 3 2 5 5 5h4c3 0 5-2 5-5V5c0-3-2-5-5-5zM0 8h4c1-1 2-2 4-2h4c1 1 2 2 2 4v4c-1 1-2 2-2 4H8c-2 0-3-1-4-2H0v4c0 2 1 3 2 4h4c1 1 2 2 2 4v4c-1 1-2 2-2 4H2c-1 0-2 1-2 2v4c0 1 1 2 2 2h4c2 0 3 1 4 2v4c0 1 1 2 2 2h4c1 0 2-1 2-2v-4c1-1 2-2 4-2h4c2 0 3 1 4 2v4c0 1 1 2 2 2h4c1 0 2-1 2-2v-4c1-1 2-2 4-2h4c2 0 3 1 4 2v4c0 1 1 2 2 2h4c1 0 2-1 2-2v-4c0-2-1-3-2-4h-4c-1-1-2-2-2-4v-4c0-2 1-3 2-4h4c1 0 2-1 2-2v-4c0-1-1-2-2-2h-4c-1-1-2-2-2-4v-4c0-2 1-3 2-4h4c1 0 2-1 2-2V8h-4c-1 1-2 2-4 2h-4c-1-1-2-2-2-4V4c0-1-1-2-2-2h-4c-1 0-2 1-2 2v4c-1 1-2 2-2 4h-4c-2 0-3-1-4-2H0V8zm14 16c2 0 3-1 4-2v-4c0-1-1-2-2-2h-4c-1 0-2 1-2 2v4c1 1 2 2 4 2zm24 0c2 0 3-1 4-2v-4c0-1-1-2-2-2h-4c-1 0-2 1-2 2v4c1 1 2 2 4 2zM14 40c2 0 3-1 4-2v-4c0-1-1-2-2-2h-4c-1 0-2 1-2 2v4c1 1 2 2 4 2zm24 0c2 0 3-1 4-2v-4c0-1-1-2-2-2h-4c-1 0-2 1-2 2v4c1 1 2 2 4 2zM14 56c2 0 3-1 4-2v-4c0-1-1-2-2-2h-4c-1 0-2 1-2 2v4c1 1 2 2 4 2zm24 0c2 0 3-1 4-2v-4c0-1-1-2-2-2h-4c-1 0-2 1-2 2v4c1 1 2 2 4 2zM30 8c2 0 3-1 4-2v-4C34 1 33 0 32 0h-4c-1 0-2 1-2 2v4c1 1 2 2 4 2z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.8;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 5;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--accent-gold-light);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--white) 60%, var(--accent-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light-muted);
    margin-bottom: 40px;
    max-width: 580px;
    line-height: 1.5;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-features {
    display: flex;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.h-feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-light-muted);
    font-weight: 600;
}

.h-feat-item i {
    color: var(--accent-gold);
    font-size: 1rem;
}

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

.hero-card-stack {
    position: relative;
    width: 320px;
    height: 420px;
}

.hero-card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-card {
    z-index: 3;
    transform: rotate(-3deg);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.main-card:hover {
    transform: rotate(0deg) scale(1.03);
    z-index: 10;
}

.back-card-1 {
    z-index: 2;
    transform: translate(25px, -15px) rotate(4deg);
    opacity: 0.7;
}

.back-card-2 {
    z-index: 1;
    transform: translate(-30px, 20px) rotate(-8deg);
    opacity: 0.4;
}

.hero-card-stack:hover .back-card-1 {
    transform: translate(50px, -30px) rotate(8deg);
    opacity: 0.85;
}

.hero-card-stack:hover .back-card-2 {
    transform: translate(-60px, 40px) rotate(-12deg);
    opacity: 0.6;
}

.card-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--primary);
    color: var(--accent-gold);
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    border-left: 3px solid var(--accent-gold);
    box-shadow: var(--shadow-md);
}

/* SVG Wave Shape */
.wave-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.wave-shape svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.wave-shape .shape-fill {
    fill: var(--bg-light);
}

@media (max-width: 991px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: 20px;
    }
}

/* Brand Introduction Section */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
}

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

.about-tagline .section-title {
    max-width: 350px;
}

.about-text-content .lead-text {
    font-size: 1.4rem;
    font-family: var(--font-serif);
    color: var(--primary-light);
    line-height: 1.5;
    margin-bottom: 24px;
    font-weight: 600;
}

.about-text-content .body-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.shipping-banner {
    display: flex;
    gap: 20px;
    background-color: var(--white);
    padding: 24px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--accent-gold);
}

.banner-icon {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-top: 4px;
}

.banner-info h4 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 6px;
    font-weight: 700;
}

.banner-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-tagline .section-title {
        max-width: 100%;
    }
    
    .shipping-banner {
        flex-direction: column;
        gap: 15px;
    }
}

/* Signature Saree Revamps Section */
.signature-section {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.signature-bg-deco {
    position: absolute;
    top: 50%;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(199, 122, 126, 0.08) 0%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
}

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

/* Before After Display */
.sig-image-wrapper {
    position: relative;
}

.before-after-container {
    position: relative;
    height: 480px;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}

.sig-img-box {
    position: absolute;
    width: 260px;
    height: 360px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-slow);
}

.sig-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sig-img-box .label {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(58, 34, 36, 0.85);
    backdrop-filter: blur(4px);
    color: var(--white);
    padding: 6px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
}

.img-before {
    top: 0;
    left: 0;
    z-index: 1;
}

.img-after {
    bottom: 0;
    right: 0;
    z-index: 2;
    border-color: rgba(212, 175, 55, 0.3);
}

.before-after-container:hover .img-before {
    transform: translate(-15px, -15px) scale(0.98);
    opacity: 0.8;
}

.before-after-container:hover .img-after {
    transform: translate(15px, 15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 0 20px rgba(212,175,55,0.2);
}

.sig-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 5;
    box-shadow: var(--shadow-lg);
    pointer-events: none;
    border: 2px solid var(--white);
}

.sig-text-wrapper .body-text {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.sig-quote {
    border-left: 3px solid var(--accent-gold);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--accent-gold-light);
    line-height: 1.5;
}

@media (max-width: 991px) {
    .sig-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .before-after-container {
        height: 440px;
        max-width: 400px;
    }
    
    .sig-img-box {
        width: 220px;
        height: 320px;
    }
}

/* What We Design Section */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.2);
}

.service-icon {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 24px;
    display: inline-block;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-light);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-list {
    margin-bottom: 30px;
}

.service-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-list li i {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.service-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.service-link:hover {
    color: var(--accent-gold-dark);
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* How It Works Section */
.process-section {
    padding: 100px 0;
    background-color: #faf8f5;
    position: relative;
}

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

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background-color: var(--accent-gold-light);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    margin-bottom: 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 25px;
    left: 100%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary);
    border: 3px solid var(--accent-gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 5;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    transform: translate(-50%, -50%) scale(1.15);
}

.timeline-item:nth-child(even) .timeline-dot {
    left: 0;
}

.timeline-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.timeline-item:hover .timeline-content {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.step-num {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.step-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 50px;
        padding-right: 0;
    }
    
    .timeline-dot {
        left: 20px !important;
    }
}

/* Why Slit & Tucks (Dark Grid) */
.why-section {
    background-color: var(--primary-dark);
    padding: 100px 0;
}

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

.why-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.why-feat-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.why-feat-card:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.why-feat-card .w-icon {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.why-feat-card h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 12px;
}

.why-feat-card p {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    line-height: 1.5;
}

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

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

/* Portfolio Lookbook Section */
.portfolio-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.filter-btn {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-muted);
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 380px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
}

.gallery-item.hidden {
    display: none;
}

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

.gallery-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(58, 34, 36, 0.9) 0%, rgba(58, 34, 36, 0.4) 60%, transparent 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: var(--transition);
    transform: translateY(10px);
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
}

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

.gallery-item:hover .gallery-hover {
    opacity: 1;
    transform: translateY(0);
}

.gal-cat {
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.gal-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 600;
}

.gallery-zoom-btn {
    align-self: flex-start;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    background-color: rgba(255,255,255,0.15);
    padding: 6px 14px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(4px);
}

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

.insta-callout {
    margin-top: 60px;
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212,175,55,0.15);
}

.insta-callout p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.insta-link {
    font-weight: 700;
    color: var(--primary);
    border-bottom: 1.5px solid var(--accent-gold);
}

/* Contact and Order Form Section */
.contact-section {
    padding: 100px 0;
    background-color: #f1ebd9;
    position: relative;
    z-index: 1;
}

.contact-card {
    background-color: var(--primary-dark);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212,175,55,0.15);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
}

.contact-info-panel {
    padding: 60px 50px;
    background-image: radial-gradient(circle at 10% 10%, rgba(26, 80, 52, 0.25) 0%, transparent 60%);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-panel .section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.contact-info-panel .body-text {
    margin-bottom: 40px;
}

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

.meta-item {
    display: flex;
    gap: 20px;
}

.meta-item .m-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    background-color: rgba(255,255,255,0.03);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.m-text strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.m-text span {
    font-size: 0.85rem;
    color: var(--text-light-muted);
}

/* Contact Form Side */
.contact-form-panel {
    padding: 60px 50px;
    background-color: rgba(255, 255, 255, 0.02);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 8px;
}

.form-sub {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    margin-bottom: 35px;
}

.design-form .form-group {
    margin-bottom: 24px;
}

.design-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.design-form .form-label {
    display: block;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.design-form .form-input,
.design-form .form-select,
.design-form .form-textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 12px 16px;
    border-radius: 4px;
    transition: var(--transition);
}

.design-form .form-input:focus,
.design-form .form-select:focus,
.design-form .form-textarea:focus {
    border-color: var(--accent-gold);
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.design-form .form-select option {
    background-color: var(--primary-dark);
    color: var(--white);
}

.form-radio-group {
    display: flex;
    gap: 24px;
    margin-top: 6px;
}

.radio-label {
    color: var(--text-light-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.radio-label:hover {
    color: var(--white);
}

.radio-label input[type="radio"] {
    accent-color: var(--accent-gold);
    cursor: pointer;
}

/* Custom File Upload */
.file-upload-wrapper {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

.file-upload-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    color: var(--text-light-muted);
    padding: 16px;
    border-radius: 4px;
    transition: var(--transition);
    text-align: center;
}

.file-upload-wrapper:hover .file-upload-btn {
    border-color: var(--accent-gold);
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.06);
}

.file-name-text {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light-muted);
    margin-top: 6px;
}

/* Submit Button Loading state */
.btn-loading {
    display: none;
}

#contactForm.submitting #submitBtn {
    pointer-events: none;
    opacity: 0.8;
}

#contactForm.submitting .btn-text {
    display: none;
}

#contactForm.submitting .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-panel {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 40px;
    }
    
    .contact-form-panel {
        padding: 40px;
    }
}

@media (max-width: 576px) {
    .design-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Success Modal Overlay */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background-color: rgba(58, 34, 36, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-slow);
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 50px 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transform: scale(0.9);
    transition: var(--transition-slow);
    border-top: 5px solid var(--accent-gold);
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 1.25rem;
    color: var(--text-muted);
    cursor: pointer;
}

.modal-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.modal-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.modal-summary {
    background-color: var(--bg-light-alt);
    border-radius: 4px;
    padding: 16px 20px;
    text-align: left;
    margin-bottom: 24px;
    font-size: 0.9rem;
    border-left: 3px solid var(--accent-gold);
}

.modal-summary p {
    margin-bottom: 6px;
}

.modal-summary p:last-child {
    margin-bottom: 0;
}

.modal-next-steps {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Footer Section */
.footer {
    background-color: #030f09;
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

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

.footer-brand-tag {
    color: var(--text-light-muted);
    font-size: 0.9rem;
    margin-top: 20px;
}

.footer-links-group {
    display: flex;
    gap: 60px;
}

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--accent-gold-light);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 0.9rem;
    color: var(--text-light-muted);
}

.footer-col a:hover {
    color: var(--accent-gold);
    transform: translateX(2px);
}

.contact-info-direct {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-info {
    display: flex;
    gap: 24px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light-muted);
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links-group {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

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

/* Micro animations for Load */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.animate-slide-left {
    animation: slideLeft 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
