/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES (JEWAR JEWELLERS DURG)
   ========================================================================== */
:root {
    /* Color Palette */
    --gold-primary: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #AA7C11;
    --gold-metallic: linear-gradient(135deg, #AA7C11 0%, #D4AF37 50%, #F3E5AB 80%, #D4AF37 100%);
    --black-primary: #111111;
    --black-secondary: #1a1a1a;
    --black-light: #2c2c2c;
    --white: #FFFFFF;
    --ivory: #F8F6F2;
    --text-dark: #333333;
    --text-muted: #777777;
    --text-white-muted: #dcdcdc;
    
    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Poppins', sans-serif;
    
    /* Borders & Shadow Tokens */
    --border-gold-alpha: rgba(212, 175, 55, 0.25);
    --border-light: 1px solid rgba(0, 0, 0, 0.08);
    --shadow-soft: 0 15px 35px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 15px 30px rgba(212, 175, 55, 0.15);
    --shadow-inset-gold: inset 0 0 10px rgba(212, 175, 55, 0.3);
    
    /* Animation Tokens */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   RESET & BASE STYLING
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

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

button {
    cursor: pointer;
    background: none;
    border: none;
}

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

.section-padding {
    padding: 100px 0;
}

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

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
.section-header {
    margin-bottom: 60px;
}

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

.section-tag {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-dark);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--black-primary);
    line-height: 1.3;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 15px auto 0;
}

.gold-divider {
    height: 2px;
    width: 80px;
    background: var(--gold-metallic);
    margin: 15px 0;
    position: relative;
}

.gold-divider.margin-center {
    margin: 20px auto;
}

.gold-divider::after {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold-primary);
    background-color: inherit;
    font-size: 0.6rem;
    padding: 0 4px;
}

.gold-text {
    color: var(--gold-primary);
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

/* Grids */
.grid {
    display: grid;
    gap: 30px;
}

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

.align-center { align-items: center; }
.w-100 { width: 100%; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--black-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 14px 30px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0; /* Strict luxury sharp borders */
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

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

.btn-gold:hover {
    background: var(--black-primary);
    color: var(--gold-primary);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

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

.btn-gold-outline:hover {
    background: var(--gold-primary);
    color: var(--black-primary);
    box-shadow: var(--shadow-gold);
}

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

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

.btn-sm {
    padding: 8px 18px;
    font-size: 0.75rem;
}

.btn-text-gold {
    font-family: var(--font-sans);
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
}

.btn-text-gold i {
    transition: var(--transition-fast);
}

.btn-text-gold:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   PRELOADER SCREEN
   ========================================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--black-primary);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

.luxury-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}

.gold-logo-text {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 8px;
    color: var(--gold-primary);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    animation: goldGlow 3s infinite alternate;
}

.gold-logo-sub {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 6px;
    color: var(--white);
    margin-top: -5px;
}

.loader-bar-container {
    width: 200px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 20px auto;
    position: relative;
    overflow: hidden;
}

.loader-bar {
    width: 0;
    height: 100%;
    background: var(--gold-metallic);
    position: absolute;
    top: 0;
    left: 0;
    animation: loadingFill 2s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

.loader-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--text-white-muted);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

@keyframes goldGlow {
    0% { text-shadow: 0 0 10px rgba(212, 175, 55, 0.2); }
    100% { text-shadow: 0 0 25px rgba(212, 175, 55, 0.7); }
}

@keyframes loadingFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.top-bar {
    background-color: var(--black-primary);
    color: var(--white);
    font-size: 0.75rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 20px;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
}

.top-info i {
    color: var(--gold-primary);
}

.top-socials a {
    color: var(--text-white-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-socials a:hover {
    color: var(--gold-primary);
}

/* Main Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    transition: var(--transition-smooth);
}

/* Sticky Class triggered via JS */
.header.sticky .top-bar {
    margin-top: -35px; /* Hides top-bar smoothly */
    opacity: 0;
    pointer-events: none;
}

.header.sticky .navbar {
    padding: 12px 0;
    background-color: rgba(17, 17, 17, 0.96); /* Darker themed navigation on scroll */
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header.sticky .logo-main {
    color: var(--gold-primary);
}

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

.header.sticky .nav-links a {
    color: var(--white);
}

.header.sticky .nav-links a.active {
    color: var(--gold-primary);
}

.header.sticky .nav-links a::after {
    background-color: var(--gold-primary);
}

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

.brand-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--black-primary);
    transition: var(--transition-smooth);
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition-smooth);
}

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

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--black-primary);
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--gold-primary);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-dark);
}

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

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

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

.header.sticky .mobile-menu-toggle .bar {
    background-color: var(--gold-primary);
}

/* Mobile Drawer Links */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: var(--black-primary);
    z-index: 1500;
    padding: 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.mobile-menu-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.drawer-header .logo-main {
    color: var(--gold-primary);
    font-size: 1.8rem;
    letter-spacing: 3px;
}

.drawer-close {
    color: var(--white);
    font-size: 1.5rem;
}

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

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer-link {
    color: var(--white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    padding: 5px 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.drawer-link:hover {
    color: var(--gold-primary);
    padding-left: 8px;
}

.drawer-footer {
    margin-top: auto;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 25px;
}

.drawer-footer p {
    color: var(--text-white-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.drawer-cta {
    width: 100%;
}

/* ==========================================================================
   LUXURY HERO SLIDER SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: var(--black-primary);
}

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

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 1.2s;
    z-index: 1;
}

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

.hero-content {
    color: var(--white);
    max-width: 750px;
    padding-top: 80px; /* offset header space */
    position: relative;
    z-index: 5;
}

.gold-subtitle {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4.2rem;
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero-desc {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    color: var(--text-white-muted);
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 600px;
}

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

/* Animations for slider entries */
.hero-slide.active .animate-up {
    animation: slideUpFade 1.2s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

.hero-slide.active .delay-1 { animation-delay: 0.3s; opacity: 0; }
.hero-slide.active .delay-2 { animation-delay: 0.6s; opacity: 0; }
.hero-slide.active .delay-3 { animation-delay: 0.9s; opacity: 0; }

@keyframes slideUpFade {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Slide controls */
.slider-btn {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 10;
    transition: var(--transition-smooth);
    background-color: rgba(0, 0, 0, 0.3);
}

.slider-btn:hover {
    background-color: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--black-primary);
    box-shadow: var(--shadow-gold);
}

.prev-btn { left: 40px; }
.next-btn { right: 40px; }

/* Slide dots */
.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dots .dot {
    width: 30px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dots .dot.active {
    background-color: var(--gold-primary);
    width: 50px;
}

/* Mouse Scroll Down Animation */
.scroll-down-wrapper {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    display: block;
    position: relative;
}

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

@keyframes scrollMouse {
    0% { top: 6px; opacity: 1; }
    50% { top: 18px; opacity: 0.3; }
    100% { top: 6px; opacity: 1; }
}

/* ==========================================================================
   ABOUT US & TRUST COUNTERS
   ========================================================================== */
.about-text-content {
    padding-right: 40px;
}

.about-p-main {
    font-size: 1.15rem;
    color: var(--black-primary);
    margin-bottom: 20px;
    font-weight: 500;
}

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

.about-badges {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.badge-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.badge-icon {
    width: 50px;
    height: 50px;
    background-color: var(--ivory);
    border: 1px solid var(--border-gold-alpha);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold-dark);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.badge-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black-primary);
    margin-bottom: 3px;
}

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

/* Image overlays */
.about-image-wrapper {
    position: relative;
    padding-bottom: 120px;
}

.about-image-container {
    position: relative;
    z-index: 2;
}

.image-border-gold {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold-primary);
    z-index: -1;
}

.about-img {
    box-shadow: var(--shadow-medium);
    border-radius: 0;
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}

/* Stats overlay card */
.about-stats-grid {
    position: absolute;
    bottom: 0;
    right: 20px;
    left: 20px;
    background-color: var(--black-primary);
    border: 1px solid var(--gold-primary);
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 25px 15px;
    box-shadow: var(--shadow-medium);
}

.stat-card {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--gold-primary);
    font-weight: 500;
}

.stat-plus {
    font-size: 1.2rem;
    color: var(--gold-primary);
    font-weight: 600;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-white-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.stat-icon-gold {
    color: var(--gold-primary);
    font-size: 1.4rem;
}

.gold-accent-text {
    color: var(--gold-primary);
}

.font-bold {
    font-weight: 600;
}

/* ==========================================================================
   JEWELLERY COLLECTIONS (TABS & GRID)
   ========================================================================== */
.filter-tabs-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-tab {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 24px;
    border: 1px solid var(--border-gold-alpha);
    background-color: var(--white);
    color: var(--black-primary);
    transition: var(--transition-smooth);
}

.filter-tab:hover,
.filter-tab.active {
    background-color: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--black-primary);
    box-shadow: var(--shadow-gold);
}

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

.product-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
    border-color: var(--border-gold-alpha);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    background-color: var(--ivory);
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--black-primary);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    z-index: 2;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.4);
    backdrop-filter: blur(2px);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    z-index: 3;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}

.product-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--black-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-short-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.product-card-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 15px;
    margin-top: auto;
}

/* ==========================================================================
   BRIDAL SHOWCASE SECTION
   ========================================================================== */
.bridal-fluid-bg {
    background-color: var(--black-primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.bridal-fluid-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.bridal-content-container {
    position: relative;
    z-index: 2;
}

.bridal-image-gallery {
    display: flex;
    justify-content: center;
    position: relative;
}

.main-bridal-frame {
    position: relative;
    border: 1px solid var(--gold-primary);
    padding: 15px;
}

.bridal-main-img {
    max-height: 520px;
    width: auto;
    object-fit: cover;
    box-shadow: var(--shadow-medium);
}

.bridal-overlay-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: rgba(17, 17, 17, 0.9);
    border: 1px solid var(--gold-primary);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    box-shadow: var(--shadow-medium);
    max-width: 280px;
}

.bridal-overlay-card h4 {
    font-family: var(--font-serif);
    color: var(--gold-primary);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.bridal-overlay-card p {
    color: var(--text-white-muted);
    font-size: 0.8rem;
    line-height: 1.4;
}

.bridal-text-box {
    padding-left: 50px;
}

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

.text-white-muted {
    color: var(--text-white-muted);
    font-size: 1rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.bridal-categories-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.b-cat-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.b-cat-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-gold-alpha);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.b-cat-item h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 3px;
}

.b-cat-item p {
    font-size: 0.8rem;
    color: var(--text-white-muted);
}

.bridal-cta-block {
    display: flex;
}

/* ==========================================================================
   SERVICES SECTION (3D HOVER CARDS)
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Specific styling to distribute the 10 services nicely */
.services-grid > *:nth-child(n+7) {
    grid-column: span 1;
}

.service-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-bottom-color: var(--gold-primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--ivory);
    color: var(--gold-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    border: 1px solid var(--border-gold-alpha);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background-color: var(--gold-primary);
    color: var(--black-primary);
    transform: rotateY(180deg);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--black-primary);
    margin-bottom: 12px;
}

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

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-text {
    padding-right: 30px;
}

.why-main-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 25px;
}

.feat-item {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--black-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feat-item i {
    color: var(--gold-primary);
    font-size: 1.1rem;
}

.why-image {
    display: flex;
    justify-content: center;
}

.why-frame-wrapper {
    position: relative;
    border: 2px solid var(--gold-primary);
    padding: 15px;
}

.why-img {
    max-height: 420px;
    width: auto;
    object-fit: cover;
    box-shadow: var(--shadow-medium);
}

.why-floating-stamp {
    position: absolute;
    top: -25px;
    left: -25px;
    background: var(--gold-metallic);
    color: var(--black-primary);
    padding: 15px;
    box-shadow: var(--shadow-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-floating-stamp i {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.why-floating-stamp p {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* ==========================================================================
   TESTIMONIALS SLIDER SECTION
   ========================================================================== */
.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.testimonial-slider {
    position: relative;
    min-height: 280px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    text-align: center;
    padding: 20px;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.stars-gold {
    color: var(--gold-primary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--black-primary);
    line-height: 1.7;
    margin-bottom: 30px;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: var(--gold-metallic);
    color: var(--black-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-soft);
}

.client-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black-primary);
}

.client-role {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.t-control-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-gold-alpha);
    color: var(--gold-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.t-control-btn:hover {
    background-color: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--black-primary);
    box-shadow: var(--shadow-gold);
}

/* ==========================================================================
   MASONRY GALLERY & LIGHTBOX
   ========================================================================== */
.gallery-masonry {
    column-count: 3;
    column-gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.6);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold-primary);
    font-size: 1.8rem;
    transition: var(--transition-smooth);
}

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

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

/* Lightbox overlay styling */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
}

.lightbox-overlay.open {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 2.2rem;
    z-index: 10;
}

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

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    color: var(--white);
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.4);
}

.lightbox-nav:hover {
    background-color: var(--gold-primary);
    color: var(--black-primary);
}

.lightbox-nav.prev { left: 40px; }
.lightbox-nav.next { right: 40px; }

.lightbox-container {
    text-align: center;
    max-width: 80%;
    max-height: 80%;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--gold-primary);
}

.lightbox-caption {
    color: var(--gold-primary);
    font-family: var(--font-serif);
    font-size: 1.15rem;
    margin-top: 15px;
    letter-spacing: 1px;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-soft);
}

.faq-trigger {
    width: 100%;
    text-align: left;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--black-primary);
    background: none;
    border: none;
}

.faq-trigger:hover {
    color: var(--gold-dark);
}

.faq-icon {
    font-size: 0.95rem;
    color: var(--gold-primary);
    transition: var(--transition-smooth);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--black-primary);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-content-inner {
    padding: 0 24px 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    padding-top: 15px;
}

/* ==========================================================================
   NEWSLETTER SECTION
   ========================================================================== */
.newsletter-card {
    background-color: var(--black-primary);
    border: 1px solid var(--gold-primary);
    padding: 60px 40px;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.newsletter-icon {
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.newsletter-content h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 12px;
}

.newsletter-content p {
    color: var(--text-white-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.news-input {
    flex-grow: 1;
    padding: 16px 24px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.news-input:focus {
    border-color: var(--gold-primary);
    background-color: rgba(255, 255, 255, 0.1);
}

.newsletter-form .btn {
    flex-shrink: 0;
}

/* ==========================================================================
   CONTACT SECTION & INTERACTIVE MAP
   ========================================================================== */
.contact-info-block {
    padding-right: 40px;
}

.contact-block-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--black-primary);
    font-weight: 500;
    margin-bottom: 15px;
}

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

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

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

.c-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-gold-alpha);
    background-color: var(--ivory);
    color: var(--gold-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.c-detail-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black-primary);
    margin-bottom: 4px;
}

.c-detail-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.c-detail-item a:hover {
    color: var(--gold-dark);
}

/* Styled Map Frame */
.map-placeholder-card {
    height: 200px;
    border: 1px solid var(--gold-primary);
    background-color: var(--black-primary);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 20px;
}

.map-placeholder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(212, 175, 55, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.7;
}

.map-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
}

.map-logo {
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 10px;
    animation: bounceMap 2s infinite alternate;
}

@keyframes bounceMap {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.map-overlay h4 {
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.map-overlay p {
    color: var(--text-white-muted);
    font-size: 0.75rem;
    margin-bottom: 15px;
}

/* Large Inquiry Form */
.contact-form-block {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 50px 40px;
    box-shadow: var(--shadow-medium);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Custom Floating Input Styling */
.form-group {
    position: relative;
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 14px 0;
    font-size: 0.9rem;
    color: var(--black-primary);
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    background-color: transparent;
    transition: var(--transition-smooth);
}

.form-input:focus {
    border-bottom-color: var(--gold-primary);
}

.form-label {
    position: absolute;
    top: 14px;
    left: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-smooth);
}

/* Select input adjustments */
.select-input {
    cursor: pointer;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
}

.select-label {
    top: 14px;
}

/* Trigger label shift on focus and input fill */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label,
.select-input:valid ~ .select-label,
.active-date {
    top: -10px;
    font-size: 0.75rem;
    color: var(--gold-dark);
    font-weight: 500;
}

.text-area {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Feedback messages styling */
.form-feedback-message {
    font-size: 0.85rem;
    margin-top: 12px;
    display: none;
}

.form-feedback-message.success {
    display: block;
    color: #27ae60;
}

.form-feedback-message.error {
    display: block;
    color: #c0392b;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--black-primary);
    border-top: 2px solid var(--gold-primary);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.footer-logo .logo-main {
    color: var(--gold-primary);
    font-size: 2rem;
    letter-spacing: 5px;
}

.footer-logo .logo-sub {
    color: var(--white);
    letter-spacing: 4px;
}

.footer-brand-desc {
    color: var(--text-white-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 320px;
}

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

.footer-social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.footer-social-links a:hover {
    background-color: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--black-primary);
}

.footer-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--gold-primary);
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

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

.footer-links a {
    color: var(--text-white-muted);
    font-size: 0.85rem;
}

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

.contact-col .footer-links {
    gap: 15px;
}

.footer-contact-item {
    font-size: 0.85rem;
    color: var(--text-white-muted);
    display: flex;
    gap: 12px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.footer-contact-item a:hover {
    color: var(--gold-primary);
}

.footer-contact-item i {
    color: var(--gold-primary);
    margin-top: 3px;
}

.footer-bottom {
    background-color: #0b0b0b;
    padding: 25px 0;
    font-size: 0.75rem;
    color: var(--text-muted);
}

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

.footer-tagline {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-dark);
    font-weight: 500;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS & INTERFACE
   ========================================================================== */
.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: var(--shadow-medium);
    z-index: 999;
    animation: floatBob 3s infinite ease-in-out;
}

.whatsapp-floating {
    right: 30px;
    background-color: #25D366;
}

.whatsapp-floating:hover {
    background-color: #128C7E;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.call-floating {
    right: 100px;
    background-color: var(--black-primary);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
}

.call-floating:hover {
    background-color: var(--gold-primary);
    color: var(--black-primary);
    box-shadow: var(--shadow-gold);
}

/* Tooltip on Float hover */
.floating-tooltip {
    position: absolute;
    right: 65px;
    background-color: var(--black-primary);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
}

/* Scroll-to-Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 44px;
    height: 44px;
    background-color: var(--black-primary);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: var(--transition-smooth);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--gold-primary);
    color: var(--black-primary);
    box-shadow: var(--shadow-gold);
}

@keyframes floatBob {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

/* ==========================================================================
   MODALS (CONSULTATION & QUICK VIEW DETAILS)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background-color: var(--white);
    border: 1px solid var(--gold-primary);
    width: 100%;
    max-width: 550px;
    box-shadow: var(--shadow-medium);
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal-overlay.open .modal-card {
    transform: scale(1);
}

.modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--black-primary);
}

.modal-close {
    color: var(--text-muted);
    font-size: 1.3rem;
    transition: var(--transition-fast);
}

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

.modal-body {
    padding: 30px;
}

.modal-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.5;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

/* Quick View Detail Card Specifics */
.product-detail-card {
    max-width: 850px;
    border-radius: 0;
}

.details-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.details-body {
    padding: 40px;
}

.details-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
}

.details-img-container {
    border: 1px solid rgba(0, 0, 0, 0.05);
    background-color: var(--ivory);
    position: relative;
    overflow: hidden;
}

.details-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.details-info h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--black-primary);
    font-weight: 500;
    margin-bottom: 5px;
}

.details-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.details-p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.details-attributes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.attr-item {
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
}

.attr-name {
    color: var(--text-muted);
    font-weight: 500;
}

.attr-val {
    color: var(--black-primary);
    font-weight: 600;
}

.details-cta {
    display: flex;
    gap: 15px;
}

.details-cta .btn {
    flex-grow: 1;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (Triggered via JS class injection)
   ========================================================================== */
.reveal-left, .reveal-right, .reveal-up {
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s ease;
}

.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-up { transform: translateY(50px); }

.reveal-left.active, .reveal-right.active, .reveal-up.active {
    transform: translate(0);
    opacity: 1;
}

/* Delay classes for staggered items */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

/* Checkbox consent form styling */
.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 15px 0 5px;
    width: 100%;
}

.form-checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold-primary);
    margin-top: 3px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label {
    font-size: 0.85rem;
    color: var(--black-primary);
    font-weight: 500;
    line-height: 1.4;
    cursor: pointer;
    user-select: none;
}

.legal-detail {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 300;
    line-height: 1.5;
    text-align: justify;
}

.legal-link {
    color: var(--gold-dark);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition-fast);
}

.legal-link:hover {
    color: var(--black-primary);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Large Laptops / Desktops */
@media (max-width: 1199px) {
    .container { max-width: 960px; }
    .hero-title { font-size: 3.5rem; }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid > *:nth-child(n+7) { grid-column: auto; }
}

/* Tablets (Portrait) */
@media (max-width: 991px) {
    .container { max-width: 720px; }
    .section-padding { padding: 80px 0; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    
    .top-bar { display: none; } /* Hide top-bar to conserve tablet screen space */
    .mobile-menu-toggle { display: flex; }
    
    .nav-links { display: none; }
    .nav-btn { display: none; } /* Hide book consultation btn from main navbar (accessible inside mobile drawer) */
    
    /* Hero */
    .hero-section { height: 75vh; }
    .hero-title { font-size: 2.8rem; }
    .slider-btn { display: none; } /* Hide prev/next buttons on smaller devices */
    
    /* About */
    .about-text-content { padding-right: 0; }
    .about-image-wrapper { padding-bottom: 140px; }
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .stat-card { border-right: none; }
    .stat-card:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.1); }
    
    /* Bridal */
    .bridal-text-box { padding-left: 0; margin-top: 40px; }
    .bridal-overlay-card { bottom: -20px; right: 0; }
    
    /* Why Choose Us */
    .why-text { padding-right: 0; }
    .why-image { order: -1; margin-bottom: 40px; } /* Pull image to top on mobile */
    .features-list { grid-template-columns: 1fr; }
    
    /* Masonry */
    .gallery-masonry { column-count: 2; }
    
    /* Contact */
    .contact-info-block { padding-right: 0; margin-bottom: 50px; }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* Floating Buttons */
    .call-floating { right: 85px; }
}

/* Mobile Phones (Landscape/Portrait) */
@media (max-width: 767px) {
    .container { max-width: 540px; }
    .section-title { font-size: 2rem; }
    .hero-section { height: 65vh; }
    .hero-title { font-size: 2.2rem; }
    .hero-desc { font-size: 0.95rem; }
    .hero-actions { flex-direction: column; gap: 10px; width: 100%; }
    .hero-actions .btn { width: 100%; }
    
    .products-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        bottom: -20px;
    }
    
    .gallery-masonry { column-count: 1; }
    
    .newsletter-card { padding: 40px 20px; }
    .newsletter-form { flex-direction: column; gap: 10px; }
    
    .contact-form-block { padding: 30px 20px; }
    .form-row { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    
    .lightbox-nav { display: none; } /* Disable nav arrows inside lightbox on small touch screens */
    .lightbox-img { max-height: 50vh; }
    
    .product-detail-card .details-body { padding: 20px; }
    .details-grid { grid-template-columns: 1fr; gap: 20px; }
}
