/* =========================================================
   Aarti Fashion Boutique - Custom Premium CSS Stylesheet
   Unique Modern Aesthetics, Color Animations & Multi-Page Layout
   ========================================================= */

/* Core Theme Custom Variables */
:root {
    --primary-gold: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --gold-light: #f3e5ab;
    --emerald-green: #097969;
    --emerald-dark: #044a3e;
    --emerald-glow: rgba(9, 121, 105, 0.25);
    --rose-gold: #b76e79;
    --rose-glow: rgba(183, 110, 121, 0.3);
    
    --bg-cream: #faf9f5;
    --bg-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #555555;
    --text-light: #ffffff;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition-fast: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-normal: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-slow: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    
    --shadow-premium: 0 10px 40px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 10px 30px rgba(9, 121, 105, 0.12);
    --border-gold: rgba(212, 175, 55, 0.2);
}

/* Base resets & layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Page Loader Fade Transition */
.page-fade-in {
    animation: pageFadeIn 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

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

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

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

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

ul {
    list-style: none;
}

/* Headings */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
}

/* ---------------------------------------------------------
   Unique Color Animations & Interactive Elements
   --------------------------------------------------------- */

/* Dynamic Shifting Gradient Background */
.animated-gradient-bg {
    background: linear-gradient(135deg, #044a3e 0%, #097969 35%, #b76e79 70%, #044a3e 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Color-Shifting Gradient Text */
.gradient-text-animate {
    background: linear-gradient(to right, var(--emerald-green), var(--primary-gold), var(--rose-gold), var(--emerald-green));
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradientShift 6s linear infinite;
}

@keyframes textGradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

/* Color-Shifting Glow Hover Card Effect */
.glow-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-normal);
}

.glow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--emerald-green), var(--primary-gold), var(--rose-gold));
    opacity: 0;
    z-index: -1;
    transition: var(--transition-normal);
}

.glow-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    color: var(--text-light);
    box-shadow: 0 15px 35px var(--emerald-glow), 0 5px 15px var(--gold-glow);
}

.glow-card:hover::before {
    opacity: 0.95;
}

.glow-card:hover h1, 
.glow-card:hover h2, 
.glow-card:hover h3, 
.glow-card:hover h4, 
.glow-card:hover p, 
.glow-card:hover a {
    color: var(--text-light) !important;
}

/* Animated Underline Nav Items */
.nav-menu ul li a {
    position: relative;
    padding: 6px 0;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--emerald-green), var(--primary-gold));
    transition: var(--transition-normal);
}

.nav-menu ul li a:hover::after,
.nav-menu ul li a.active::after {
    width: 100%;
}

/* Custom Cursor styling */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--emerald-green);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
}

.custom-cursor.hovered {
    width: 44px;
    height: 44px;
    background-color: rgba(9, 121, 105, 0.15);
    border-color: var(--emerald-green);
}

/* Hide native cursor for support screens (only desktop) */
@media (min-width: 1025px) {
    a, button, select, input, textarea, .gallery-item {
        cursor: none;
    }
    body {
        cursor: none;
    }
}

/* Interactive Color-Switching Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: var(--transition-normal);
}

.btn-primary {
    background-color: var(--emerald-green);
    color: var(--text-light);
    border: 1px solid var(--emerald-green);
    box-shadow: 0 4px 15px var(--emerald-glow);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-gold), var(--rose-gold));
    z-index: -1;
    opacity: 0;
    transition: var(--transition-normal);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--gold-glow);
    border-color: var(--primary-gold);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-secondary {
    background-color: transparent;
    color: var(--emerald-green);
    border: 2px solid var(--emerald-green);
}

.btn-secondary:hover {
    background-color: var(--emerald-green);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: var(--transition-normal);
}

.float-call {
    background-color: var(--emerald-green);
}

.float-call:hover {
    background-color: var(--emerald-dark);
    transform: translateY(-5px);
}

.float-whatsapp {
    background-color: #25d366;
    animation: pulseWhatsapp 2s infinite;
}

.float-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-5px);
}

@keyframes pulseWhatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}


/* ---------------------------------------------------------
   Global Header & Footer Section
   --------------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(250, 249, 245, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition-normal);
}

.main-header.scrolled {
    padding: 8px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-premium);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--emerald-green);
    line-height: 1.1;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-gold);
}

.nav-menu ul {
    display: flex;
    gap: 28px;
}

.nav-menu ul li a {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.nav-menu ul li a.active, 
.nav-menu ul li a:hover {
    color: var(--emerald-green);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-call-now {
    animation: btnPulse 2.5s infinite;
}

@keyframes btnPulse {
    0% { box-shadow: 0 0 0 0 rgba(9, 121, 105, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(9, 121, 105, 0); }
    100% { box-shadow: 0 0 0 0 rgba(9, 121, 105, 0); }
}

.phone-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    margin-right: 8px;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* Footer Section */
.main-footer {
    background-color: var(--emerald-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0 0;
    border-top: 4px solid var(--primary-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--bg-cream);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary-gold);
    bottom: 0;
    left: 0;
}

.brand-col .logo {
    margin-bottom: 20px;
}

.brand-col .logo-text {
    color: var(--bg-cream);
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-cream);
    font-weight: 700;
    font-size: 0.85rem;
}

.social-icon:hover {
    background-color: var(--primary-gold);
    color: var(--emerald-dark);
}

.links-col ul li, .seo-links-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a, .seo-links-col ul li a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.links-col ul li a:hover, .seo-links-col ul li a:hover {
    color: var(--primary-gold);
    padding-left: 4px;
}

.address-col address {
    font-style: normal;
    font-size: 0.85rem;
    line-height: 1.6;
}

.address-col address a {
    color: var(--primary-gold);
    font-weight: 600;
}

.footer-bottom {
    background-color: rgba(0,0,0,0.25);
    padding: 24px 0;
    font-size: 0.75rem;
}

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


/* ---------------------------------------------------------
   Page Specific Components & Structures
   --------------------------------------------------------- */

/* Inner Page Hero Header */
.inner-hero-header {
    height: 45vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    color: var(--text-light);
}

.inner-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(4, 74, 62, 0.95) 0%, rgba(35, 35, 35, 0.5) 100%);
    z-index: 1;
}

.inner-hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.inner-hero-title {
    font-size: 3.2rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.breadcrumb {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-gold);
}

.breadcrumb a {
    color: var(--text-light);
}
.breadcrumb a:hover {
    color: var(--primary-gold);
}

.breadcrumb span {
    margin: 0 8px;
    color: rgba(255,255,255,0.4);
}

/* 1. HOME PAGE SPECIFIC */
.hero-home {
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    color: var(--text-light);
}

.hero-home-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-home-container {
    position: relative;
    z-index: 2;
}

.hero-home-content {
    max-width: 700px;
}

.hero-home-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-gold);
    margin-bottom: 16px;
}

.hero-home-title {
    font-size: 3.8rem;
    margin-bottom: 24px;
    color: var(--text-light);
}

.hero-home-description {
    font-size: 1.05rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-actions .btn-cta {
    background-color: var(--primary-gold);
    color: var(--text-dark);
}
.hero-actions .btn-cta:hover {
    background-color: var(--bg-cream);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

.mouse-icon {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary-gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.5s infinite;
}

@keyframes scrollMouse {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* Section Common Structure */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tagline {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-gold);
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.title-divider {
    width: 80px;
    height: 3px;
    background-color: var(--primary-gold);
    margin: 0 auto;
    border-radius: 2px;
}

/* Home About Intro Card */
.home-about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.home-about-img-box {
    position: relative;
}

.home-about-img-box img {
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--emerald-green);
    color: var(--text-light);
    padding: 24px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px var(--emerald-glow);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.experience-badge .years {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-gold);
}

.experience-badge .text {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.home-about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

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

/* Testimonials Carousel */
.testimonials-section {
    background-color: var(--bg-white);
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-cream);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
    position: relative;
}

.rating-stars {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 24px;
    text-align: center;
}

.testimonial-slide {
    display: none;
    text-align: center;
}

.testimonial-slide.active {
    display: block;
    animation: pageFadeIn 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.6;
}

.testimonial-author {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.testimonial-location {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.slider-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.slider-btn:hover {
    background-color: var(--emerald-green);
    color: var(--text-light);
    border-color: var(--emerald-green);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    background-color: rgba(9, 121, 105, 0.2);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.slider-dots .dot.active {
    background-color: var(--emerald-green);
    transform: scale(1.3);
}


/* 2. ABOUT PAGE SPECIFIC */
.about-history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-history-content h3 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--emerald-green);
}

.about-history-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.about-history-img img {
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
}

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

.value-box {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-gold);
}

.value-box h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--emerald-green);
}

.value-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
}


/* 3. COLLECTIONS PAGE SPECIFIC */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.collection-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-gold);
    transition: var(--transition-normal);
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.card-img-wrapper {
    overflow: hidden;
    position: relative;
    height: 350px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.collection-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--emerald-green);
}

.card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.card-link {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--emerald-green);
}

.card-link:hover {
    color: var(--primary-gold);
}


/* 4. SERVICES PAGE SPECIFIC */
.services-intro-text {
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-muted);
}

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

.service-box {
    background-color: var(--bg-white);
    padding: 45px 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-normal);
}

.service-box:hover {
    transform: translateY(-8px);
    border-color: var(--emerald-green);
    box-shadow: 0 15px 30px var(--emerald-glow);
}

.service-icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(9, 121, 105, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    color: var(--emerald-green);
    transition: var(--transition-normal);
}

.service-box:hover .service-icon-box {
    background-color: var(--emerald-green);
    color: var(--text-light);
    transform: scale(1.1);
}

.service-icon-box svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.service-box h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Custom Stitching Pricing Guide Table */
.pricing-section {
    background-color: var(--bg-white);
    padding: 100px 0;
}

.pricing-table-container {
    max-width: 800px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-gold);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-white);
    text-align: left;
}

.pricing-table th, .pricing-table td {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.pricing-table th {
    background-color: var(--emerald-green);
    color: var(--text-light);
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table td strong {
    color: var(--emerald-green);
}


/* 5. GALLERY LOOKBOOK PAGE SPECIFIC */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--bg-white);
    border: 1px solid var(--border-gold);
    padding: 10px 24px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-normal);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--emerald-green);
    color: var(--text-light);
    border-color: var(--emerald-green);
}

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

.gallery-item {
    display: none;
}

.gallery-item.show {
    display: block;
    animation: pageFadeIn 0.5s ease forwards;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(4, 74, 62, 0.95) 0%, rgba(35, 35, 35, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

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

.gallery-overlay h4 {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.gallery-overlay p {
    color: var(--primary-gold);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Lightbox popup */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 74, 62, 0.98);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    animation: pageFadeIn 0.4s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--bg-cream);
    font-size: 40px;
    font-weight: 300;
    transition: var(--transition-normal);
}

.lightbox-close:hover {
    color: var(--primary-gold);
}

.lightbox-caption {
    margin-top: 20px;
    color: var(--bg-cream);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-align: center;
}


/* 6. CONTACT PAGE SPECIFIC */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-card {
    background-color: var(--bg-white);
    padding: 50px 40px;
    border-radius: 12px;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-premium);
}

.contact-info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--emerald-green);
}

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

.contact-details-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-details-list li:last-child {
    margin-bottom: 0;
}

.detail-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(9, 121, 105, 0.08);
    color: var(--emerald-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.detail-text {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.detail-text strong {
    color: var(--emerald-green);
    font-weight: 700;
}

.detail-text a {
    color: var(--text-dark);
}
.detail-text a:hover {
    color: var(--primary-gold);
}

/* Contact Form container */
.contact-form-box {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-premium);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

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

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

.form-group label .required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background-color: var(--bg-cream);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: transparent;
    background-color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.08);
}

.btn-submit-form {
    width: 100%;
    padding: 16px;
    background-color: var(--emerald-green);
    color: var(--text-light);
}

.btn-submit-form:hover {
    background-color: var(--emerald-dark);
}

.form-feedback-message {
    margin-top: 20px;
    padding: 12px;
    border-radius: 4px;
    text-align: center;
    font-size: 0.9rem;
    display: none;
}

.form-feedback-message.success {
    display: block;
    background-color: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.form-feedback-message.error {
    display: block;
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

/* Google Map page wrap */
.map-section {
    padding: 0 0 100px 0;
}

.map-card {
    border-radius: 12px;
    overflow: hidden;
    border: 6px solid var(--bg-white);
    box-shadow: var(--shadow-premium);
}

/* FAQs styling */
.faq-section {
    background-color: var(--bg-white);
    padding: 100px 0;
}

.faqs-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-card {
    border-radius: 8px;
    border: 1px solid var(--border-gold);
    overflow: hidden;
    background-color: var(--bg-cream);
    transition: var(--transition-normal);
}

.faq-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    user-select: none;
    transition: var(--transition-normal);
}

.faq-header:hover {
    color: var(--emerald-green);
}

.faq-toggle-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--primary-gold);
    transition: var(--transition-normal);
}

.faq-card.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-card.active .faq-content {
    max-height: 300px;
    padding: 0 24px 24px 24px;
}


/* ---------------------------------------------------------
   Responsive Breakpoints Adjustments
   --------------------------------------------------------- */

@media (max-width: 1024px) {
    .home-about-grid, 
    .about-history-grid, 
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .home-about-img-box,
    .about-history-img {
        max-width: 600px;
        margin: 0 auto;
    }

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

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

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

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .header-container {
        height: 70px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-white);
        padding: 40px 24px;
        transition: var(--transition-normal);
        border-top: 1px solid rgba(212, 175, 55, 0.1);
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .nav-menu ul li a {
        font-size: 1.1rem;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-home-title {
        font-size: 2.6rem;
    }

    .inner-hero-title {
        font-size: 2.4rem;
    }

    .collections-grid,
    .values-grid,
    .services-detail-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-container,
    .contact-form-box {
        padding: 40px 20px;
    }

    .testimonial-text {
        font-size: 1.15rem;
    }

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

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

    .experience-badge {
        padding: 16px 20px;
    }
}
