/* ==========================================================================
   1. CORE VARIABLES & RE-SETS
   ========================================================================== */
:root {
    /* Color Palette */
    --primary-color: #B76E79;      /* Rose Gold */
    --secondary-color: #F8D7DA;    /* Soft Pink */
    --accent-color: #D4AF37;       /* Luxury Gold */
    --bg-main: #FFF8F3;            /* Cream White */
    --bg-alt: #FFFFFF;             /* Pure White Alternative */
    --card-bg: #FFFFFF;            /* Pure White Element Containers */
    --text-main: #2F2F2F;          /* Dark Charcoal */
    --text-muted: #666666;
    --border-color: rgba(183, 110, 121, 0.15);
    
    /* Subtle Glassmorphism Properties */
    --glass-bg: rgba(255, 248, 243, 0.75);
    --glass-border: rgba(212, 175, 55, 0.2);
    --shadow-sm: 0 4px 15px rgba(47, 47, 47, 0.05);
    --shadow-md: 0 10px 30px rgba(183, 110, 121, 0.1);
    --shadow-lg: 0 20px 50px rgba(47, 47, 47, 0.08);

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-btn: 'Montserrat', sans-serif;
    
    /* Layout Rules */
    --radius-standard: 18px;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Dark Theme Palette Inversions */
[data-theme="dark"] {
    --bg-main: #121212;
    --bg-alt: #1a1a1a;
    --card-bg: #1e1e1e;
    --text-main: #e8e8e8;
    --text-muted: #aaaaaa;
    --border-color: rgba(212, 175, 55, 0.15);
    --glass-bg: rgba(18, 18, 18, 0.8);
    --glass-border: rgba(183, 110, 121, 0.25);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   2. REUSABLE SYSTEM LAYOUTS & COMPONENTS
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.bg-alt {
    background-color: var(--bg-alt);
}

.text-center { text-align: center; }
.align-center { align-items: center; }
.align-stretch { align-items: stretch; }
.position-relative { position: relative; }

/* Dynamic Grids */
.grid {
    display: grid;
    gap: 30px;
}
.grid-2-col { grid-template-columns: repeat(2, 1fr); }
.grid-3-col { grid-template-columns: repeat(3, 1fr); }
.grid-4-col { grid-template-columns: repeat(4, 1fr); }

.gap-xs { gap: 15px; }
.gap-sm { gap: 20px; }
.gap-md { gap: 40px; }

/* Structural Cards */
.card {
    background: var(--card-bg);
    border-radius: var(--radius-standard);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

/* Premium Button Architecture */
.btn {
    font-family: var(--font-btn);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 15px 32px;
    border-radius: 50px;
    display: inline-block;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #FFFFFF;
}
.btn-primary:hover {
    background-color: transparent;
    color: var(--text-main);
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border-color: var(--primary-color);
}
.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #FFFFFF;
    border-color: transparent;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Section Header Formats */
.section-header {
    margin-bottom: 60px;
}
.section-subtitle {
    font-family: var(--font-btn);
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 400;
    color: var(--text-main);
    margin-bottom: 20px;
}
.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* ==========================================================================
   3. SYSTEM PRELOADER & SCROLL METRICS
   ========================================================================== */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    width: 0%;
    z-index: 10000;
}

#preloader {
    position: fixed;
    inset: 0;
    background-color: var(--bg-main);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader-content {
    text-align: center;
}
.loader-logo {
    font-family: var(--font-heading);
    font-size: 42px;
    letter-spacing: 8px;
    color: var(--primary-color);
    margin-bottom: 15px;
    animation: pulseLogo 2s infinite ease-in-out;
}
.loader-line {
    width: 80px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.loader-line::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    animation: loadingLine 1.5s infinite linear;
}

@keyframes pulseLogo {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; transform: scale(1.02); }
}
@keyframes loadingLine {
    100% { left: 100%; }
}

/* Floating Actions HUD */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}
.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}
.float-btn:hover {
    transform: scale(1.1) translateY(-3px);
}
.float-btn.whatsapp { background-color: #25D366; }
.float-btn.call { background-color: #34B7F1; }
.float-btn.to-top {
    background-color: var(--primary-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}
.float-btn.to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ==========================================================================
   4. NAVIGATION BAR BAR STYLING
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    padding: 25px 0;
    transition: var(--transition-smooth);
}
.main-header.sticky {
    padding: 15px 0;
    background-color: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    letter-spacing: 4px;
    font-weight: 400;
    color: var(--text-main);
}

.navbar {
    display: flex;
    gap: 30px;
}
.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

#theme-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-main);
    transition: var(--transition-smooth);
    padding: 5px;
}
#theme-toggle:hover { color: var(--primary-color); }

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}
.mobile-menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   5. HERO ARCHITECTURE
   ========================================================================== */
.hero-section {
    height: 100vh;
    min-height: 700px;
    background-image: url('https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255,248,243,0.4), rgba(255,248,243,0.85));
}
[data-theme="dark"] .hero-bg-overlay {
    background: linear-gradient(to bottom, rgba(18,18,18,0.5), rgba(18,18,18,0.92));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}
.hero-tagline {
    font-family: var(--font-btn);
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-color);
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
}
.hero-section h1 {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.15;
    font-weight: 400;
    margin-bottom: 25px;
}
.hero-section p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 40px auto;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Fluid Floating Shapes */
.floating-shape {
    position: absolute;
    background: linear-gradient(45deg, var(--secondary-color), transparent);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    z-index: 1;
    animation: floatAnimation 8s infinite alternate ease-in-out;
}
.shape-1 { width: 300px; height: 300px; top: 15%; left: -5%; }
.shape-2 { width: 250px; height: 250px; bottom: 10%; right: -5%; animation-delay: 2s; }

@keyframes floatAnimation {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(30px) rotate(15deg); }
}

/* ==========================================================================
   6. ABOUT AND SERVICES SECTIONS
   ========================================================================== */
.about-images {
    position: relative;
    padding-bottom: 60px;
}
.image-wrapper {
    overflow: hidden;
    border-radius: var(--radius-standard);
    box-shadow: var(--shadow-lg);
}
.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.image-wrapper:hover img {
    transform: scale(1.06);
}
.main-img {
    width: 85%;
    height: 450px;
}
.sub-img {
    position: absolute;
    width: 50%;
    height: 280px;
    bottom: 0;
    right: 0;
    border: 8px solid var(--bg-main);
    transition: border-color 0.5s ease;
}

.lead-text {
    font-size: 18px;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 20px;
}

.features-mini-grid {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.mini-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.gold-icon {
    font-size: 22px;
    color: var(--accent-color);
    margin-top: 3px;
}
.mini-feature h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}
.mini-feature p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Service Elements Configuration */
.service-card {
    text-align: center;
}
.service-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: var(--transition-smooth);
}
[data-theme="dark"] .service-icon {
    background-color: rgba(183,110,121,0.15);
}
.service-card:hover .service-icon {
    background-color: var(--accent-color);
    color: #FFFFFF;
    transform: rotateY(360deg);
}
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
}
.service-card p {
    font-size: 13.5px;
    color: var(--text-muted);
}

/* ==========================================================================
   7. WHY CHOOSE US & COUNTERS METRICS
   ========================================================================== */
.features-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 35px;
}
.feature-item-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background-color: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
.feature-item-card i {
    color: var(--primary-color);
    font-size: 18px;
}
.feature-item-card span {
    font-size: 14px;
    font-weight: 500;
}
.why-image img {
    border-radius: var(--radius-standard);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 550px;
    object-fit: cover;
}

/* Counter Metrics Layout */
.stats-section {
    background-image: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: #FFFFFF;
}
.stats-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(47, 47, 47, 0.85);
}
.stat-item { z-index: 2; }
.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 10px;
}
.stat-label {
    font-family: var(--font-btn);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ==========================================================================
   8. PRICING AND MATRIX TABLES
   ========================================================================== */
.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.pricing-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.03);
}
.pricing-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: #000000;
    padding: 5px 20px;
    font-family: var(--font-btn);
    font-size: 10px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 25px;
    margin-bottom: 30px;
}
.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 15px;
}
.pricing-header .price {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}
.pricing-header .price span {
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text-muted);
}
.pricing-header .duration {
    font-size: 12px;
    color: var(--text-muted);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 35px;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}
.pricing-features li i.fa-check { color: #25D366; }
.pricing-features li i.fa-times { color: var(--text-muted); }
.pricing-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.6;
}

/* ==========================================================================
   9. CUSTOM MASONRY LOOKBOOK & LIGHTBOX
   ========================================================================== */
.masonry-gallery {
    columns: 3 300px;
    column-gap: 20px;
}
.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    border-radius: var(--radius-standard);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}
.masonry-item img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(47,47,47,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition-smooth);
}
.gallery-overlay span {
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 20px;
}
.masonry-item:hover img { transform: scale(1.05); }
.masonry-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox Modal Elements */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background-color: rgba(18, 18, 18, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
}
.lightbox-content {
    max-width: 85%;
    max-height: 75vh;
    border-radius: 6px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.4s ease;
}
.lightbox.show .lightbox-content {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #FFFFFF;
    font-size: 40px;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.lightbox-close:hover { color: var(--primary-color); }
#lightbox-caption {
    color: var(--secondary-color);
    margin-top: 20px;
    font-family: var(--font-heading);
    font-size: 18px;
}

/* ==========================================================================
   10. JOURNEY PROCESS & TESTIMONIALS SLIDER
   ========================================================================== */
.process-card {
    position: relative;
    padding: 20px;
}
.process-num {
    font-family: var(--font-heading);
    font-size: 54px;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 15px;
    font-weight: 700;
    transition: var(--transition-smooth);
}
[data-theme="dark"] .process-num {
    color: rgba(183, 110, 121, 0.15);
}
.process-card:hover .process-num {
    color: var(--accent-color);
    transform: translateY(-5px);
}
.process-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;
}
.process-card p {
    color: var(--text-muted);
    font-size: 13.5px;
}

/* Slider System Blueprint */
.slider-wrapper {
    max-width: 800px;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}
.testimonial-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.testimonial-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 0 40px;
    text-align: center;
}
.testimonial-slide.active { opacity: 1; }

.rating {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 14px;
}
.review-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
}
.client-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.client-meta img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}
.client-meta h5 {
    font-size: 15px;
    font-weight: 600;
    text-align: left;
}
.client-meta span {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
    text-align: left;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}
.slider-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-main);
    transition: var(--transition-smooth);
}
.slider-btn:hover {
    background-color: var(--primary-color);
    color: #FFFFFF;
    border-color: transparent;
}
.slider-dots {
    display: flex;
    gap: 8px;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition-smooth);
}
.dot.active {
    background-color: var(--primary-color);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================================================
   11. BLOG & ACCORDION ELEMENTS
   ========================================================================== */
.blog-card {
    padding: 0;
    overflow: hidden;
}
.blog-img-wrapper {
    height: 220px;
    overflow: hidden;
}
.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-img-wrapper img { transform: scale(1.05); }

.blog-content {
    padding: 25px;
}
.blog-tag {
    font-family: var(--font-btn);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}
.blog-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 12px;
    font-weight: 400;
}
.blog-content p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.read-more-link {
    font-family: var(--font-btn);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
}
.read-more-link:hover { color: var(--accent-color); }

/* Accordion Engine Styling */
.faq-accordion-wrapper {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.accordion-item {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-smooth);
}
.accordion-trigger {
    width: 100%;
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
}
.accordion-trigger i {
    font-size: 13px;
    transition: transform 0.4s ease;
    color: var(--primary-color);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), padding 0.4s ease;
    padding: 0 30px;
    color: var(--text-muted);
    font-size: 14px;
}
.accordion-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}
.accordion-item.active .accordion-trigger i {
    transform: rotate(45deg);
}

/* ==========================================================================
   12. APPOINTMENT RESERVATIONS & INTEL HUBS
   ========================================================================== */
.form-container h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 8px;
}
.form-container > p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}
.form-group label {
    display: block;
    font-size: 12px;
    font-family: var(--font-btn);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--text-main);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-smooth);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background-color: var(--card-bg);
    box-shadow: 0 0 0 3px rgba(183,110,121,0.1);
}

.form-group.invalid input,
.form-group.invalid select {
    border-color: #e63946;
}
.error-msg {
    color: #e63946;
    font-size: 11px;
    position: absolute;
    bottom: -18px;
    left: 5px;
    display: none;
}
.form-group.invalid .error-msg { display: block; }

.form-feedback {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
}
.form-feedback.success { background-color: rgba(37, 211, 102, 0.15); color: #1e7e34; }
.form-feedback.error { background-color: rgba(230, 57, 70, 0.15); color: #c92a2a; }
.hidden { display: none !important; }

/* Contact Details Matrix Columns */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.info-block h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}
.info-link-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 15px;
}
.info-link-item p { font-size: 14px; }

.timing-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px dashed var(--border-color);
}
.timing-row.holiday { color: var(--primary-color); font-weight: 500; }
.map-iframe-container { padding: 8px; overflow: hidden; height: auto;}
.map-iframe-container iframe { border-radius: 12px; }

/* ==========================================================================
   13. FOOTER SIGN-OFF SYSTEM
   ========================================================================== */
.main-footer-section {
    background-color: #1a1a1a;
    color: #ffffff;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}
[data-theme="dark"] .main-footer-section { background-color: #0b0b0b; }

.footer-brand-col h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    letter-spacing: 5px;
    margin-bottom: 20px;
    color: var(--primary-color);
}
.footer-brand-col p {
    font-size: 13.5px;
    color: #b0b0b0;
    margin-bottom: 25px;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #ffffff;
}
.social-links a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-links-col h4 {
    font-family: var(--font-btn);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--accent-color);
}
.footer-links-col ul {display:  flex; flex-direction: column; gap: 12px;}
.footer-links-col ul li a {
    font-size: 13.5px;
    color: #b0b0b0;
}
.footer-links-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}
.footer-links-col p {
    font-size: 13.5px;
    color: #b0b0b0;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom-bar {
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 12px;
    color: #888888;
}

/* ==========================================================================
   14. INTERSECTION OBSERVER ANIMATION ENGINE
   ========================================================================== */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, opacity;
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-active {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Ripple Canvas Overlay Mechanics */
.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: scale(0);
    animation: rippleEffect 0.6s linear;
    pointer-events: none;
}
@keyframes rippleEffect {
    to { transform: scale(4); opacity: 0; }
}

/* ==========================================================================
   15. RESPONSIVE MATRIX MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .grid-4-col { grid-template-columns: repeat(2, 1fr); }
    .grid-3-col { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.featured { transform: scale(1); }
    .masonry-gallery { columns: 2; }
}

@media (max-width: 768px) {
    .section-padding { padding: 70px 0; }
    .grid-2-col, .grid-3-col, .grid-4-col { grid-template-columns: 1fr; }
    
    .section-title { font-size: 30px; }
    
    /* Responsive Mobile Navigation Overlay Menu */
    .mobile-menu-toggle { display: flex; }
    
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--card-bg);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        padding: 100px 40px;
        transition: right 0.5s ease-in-out;
        z-index: 999;
    }
    .navbar.open { right: 0; }
    
    .main-header.menu-open .mobile-menu-toggle .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .main-header.menu-open .mobile-menu-toggle .bar:nth-child(2) { opacity: 0; }
    .main-header.menu-open .mobile-menu-toggle .bar:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

    .nav-btn { display: none !important; }
    .main-img, .sub-img { width: 100%; position: relative; height: 300px; border: none; }
    .why-image img { height: 350px; }
}