/*
  STYLE.CSS - Akeil Khoj Ornaments
  ---------------------------------
  TABLE OF CONTENTS
  1.0  - Imports & Root Variables
  2.0  - Base & Typography
  3.0  - Header & Navigation
  4.0  - Reusable Components
  5.0  - Section Styles
    5.1  - Hero (FIXED VIDEO STYLES)
    5.2  - Founder / About
    5.3  - Heritage Timeline
    5.4  - Featured Products
    5.5  - Craftsmanship
    5.6  - Custom Design & Gallery
    5.7  - Discount Banner
    5.8  - Why Choose Us
    5.9  - Testimonials (ADDED)
    5.10 - Blog
    5.11 - Newsletter
  6.0  - Footer Styles
  7.0  - Animation Keyframes
  8.0  - Responsive Media Queries
*/

/* 1.0 IMPORTS & ROOT VARIABLES
-------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Cormorant+Garamond:wght@400;600&family=Montserrat:wght@400;600&display=swap');

:root {
    --gold: #D4AF37;
    --gold-light: #F4E5C2;
    --gold-dark: #996515;
    --black: #0a0a0a;
    --black-light: #1a1a1a;
    --white: #fdfdfd;
    --gray: #888888;
    --gray-light: #cccccc;
    --bg-tint: #f9f6f0;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Cormorant Garamond', serif;
    --font-accent: 'Montserrat', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-dark: 0 10px 25px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* 2.0 BASE & TYPOGRAPHY
-------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.3; }
a { color: var(--gold); text-decoration: none; transition: var(--transition-smooth); }
a:hover { color: var(--gold-dark); }
p { margin-bottom: 1rem; }
img { max-width: 100%; height: auto; display: block; }


/* 3.0 HEADER & NAVIGATION
-------------------------------------------------- */




#header {
   
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    font-family: var(--font-accent);
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
}

.logo i { color: var(--gold); }
.mobile-menu { display: none; font-size: 1.5rem; cursor: pointer; }

/* 4.0 REUSABLE COMPONENTS
-------------------------------------------------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

.btn-gold {
    display: inline-block; padding: 12px 30px; background: var(--gold); color: var(--black);
    border: 2px solid var(--gold); border-radius: 50px; font-family: var(--font-accent);
    font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 14px;
    transition: var(--transition-smooth); cursor: pointer;
}
.btn-gold:hover { background: transparent; color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.btn-large { padding: 15px 40px; font-size: 16px; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-subtitle {
    display: block; font-family: var(--font-accent); font-size: 14px;
    text-transform: uppercase; letter-spacing: 3px; color: var(--gold); margin-bottom: 15px;
}
.section-title { font-size: 2.8rem; margin-bottom: 20px; }
.gold-line { width: 80px; height: 3px; background: var(--gold); margin: 0 auto; border-radius: 2px; }

/* 5.0 SECTION STYLES
-------------------------------------------------- */

/* 5.1 Hero Section (FIXED VIDEO) */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

/* Mandatory style for video to work */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55); /* Dark overlay to make text pop */
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
    position: relative;
}

.hero-content h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 30px; font-family: var(--font-body); font-weight: 600; }

/* Gold Particles for Hero */
.gold-particle {
    position: absolute;
    background: radial-gradient(circle, #ffd700 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* 5.2 Founder / About Section */
.luxury-section { padding: 100px 0; }
.founder-section { display: flex; align-items: center; gap: 60px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.founder-image { flex: 0 0 400px; border: 5px solid var(--gold); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-dark); }
.founder-image img { transition: transform 0.5s ease; width: 100%; }
.founder-image:hover img { transform: scale(1.05); }
.founder-content { flex: 1; }
.founder-content .section-title{ text-align: left; margin-left: 0; }



/* 5.4 Featured Products Section */

.featured-section { padding: 100px 0; background-image: url('assets/images/diamond-1199183_1280.jpg'); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
.product-card { background: var(--white); border-radius: 10px; overflow: hidden; transition: var(--transition-smooth); box-shadow: var(--shadow-light); }
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-dark); }
.product-image { position: relative; overflow: hidden; height: 350px; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-card .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); display: flex; align-items: flex-end; opacity: 0; transition: var(--transition-smooth); padding: 20px; color: var(--white); }
.product-card:hover .overlay { opacity: 1; }
.overlay-content { transform: translateY(20px); transition: var(--transition-smooth); }
.product-card:hover .overlay-content { transform: translateY(0); }
.overlay-content h3 { font-size: 1.5rem; margin-bottom: 5px; }
.overlay-content .category { color: var(--gold); font-family: var(--font-accent); font-size: 14px; margin-bottom: 15px; }
.btn-view { padding: 8px 20px; background: var(--gold); color: var(--black); border-radius: 30px; font-family: var(--font-accent); font-weight: 600; font-size: 13px; }
.btn-view:hover { background: var(--white); }

/* 5.5 Craftsmanship Section */
.craftsmanship-section { padding: 100px 0; background: var(--black-light); color: var(--white); }
.craftsmanship-section .section-title, .craftsmanship-section .section-subtitle { color: var(--white); }
.craftsmanship-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.craftsmanship-step { background: var(--black); padding: 40px 30px; text-align: center; border-radius: 10px; border-bottom: 3px solid transparent; transition: var(--transition-smooth); }
.craftsmanship-step:hover { transform: translateY(-10px); border-bottom-color: var(--gold); }
.craftsmanship-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; }
.craftsmanship-step h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--gold-light); }
.craftsmanship-step p { color: var(--gray-light); }

/* ===========================================
   5.6 PREMIUM CUSTOM DESIGN SECTION
   =========================================== */

/* Custom Design Section with Gold Background */
.custom-design-section {
    padding: 100px 0;
    background-image: url('../images/bggold.png'); /* your gold image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; 
    position: relative;
    z-index: 1;
}

/* Soft Gold Overlay */
.custom-design-section::before {
    content: "";
    position: absolute;
    inset: 0;
   
    z-index: -1;
}

/* Ensures content stays on top */
.custom-design-section * {
    position: relative;
    z-index: 2;
}


/* Gold glitter floating particles */
.custom-design-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("assets/images/bggold.png");
    background-size: 250px;
    
    
    z-index: 1;
}

@keyframes goldParticles {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-220px) rotate(6deg); }
}

/* Content above overlay */
.custom-design-section * {
    position: relative;
    z-index: 2;
}

/* ===============================
   PROCESS STEPS
   =============================== */

.design-process {
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 90px;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.9s ease;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-step.reverse {
    flex-direction: row-reverse;
}

/* ===============================
   IMAGE
   =============================== */

.step-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.25);
    position: relative;
}

/* Gold shine animation on hover */
.step-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 215, 0, 0.45) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: 0.7s ease;
}

.step-image:hover::after {
    transform: translateX(100%);
}

.step-image img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.8s ease;
}

.step-image:hover img {
    transform: scale(1.08);
}

/* ===============================
   TEXT CONTENT
   =============================== */

.step-content {
    flex: 1;
    position: relative;
    color: white;
}

/* Big background step number */
.step-number {
    font-size: 5rem;
    font-family: var(--font-heading);
    color: rgba(255, 215, 0, 0.12);
    position: absolute;
    top: -40px;
    left: -25px;
    z-index: -1;
}

.process-step.reverse .step-number {
    left: auto;
    right: -25px;
}

/* Step Title */
.step-content h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
}

/* Gold underline shine */
.step-content h3::after {
    content: "";
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    position: absolute;
    bottom: -7px;
    left: 0;
    border-radius: 10px;
}

/* Step text */
.step-content p {
    color: #e8e8e8;
    line-height: 1.8;
    font-size: 1rem;
    margin-top: 10px;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 900px) {
    .process-step,
    .process-step.reverse {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        left: 50%;
        transform: translateX(-50%);
    }

    .step-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Design Gallery */
.design-gallery { margin-top: 80px; }
.gallery-title { text-align: center; font-size: 2.2rem; color: var(--gold-dark); margin-bottom: 40px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.gallery-item { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 1/1; box-shadow: var(--shadow-light); transition: var(--transition-smooth); }
.gallery-item:hover { transform: translateY(-10px); box-shadow: var(--shadow-dark); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: var(--white); opacity: 0; transition: var(--transition-smooth); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-size: 1.3rem; color: var(--gold); margin-bottom: 5px; }
.gallery-overlay p { font-size: 0.9rem; color: var(--white); margin-bottom: 0; }

/* 5.7 Discount Banner Section */
.gold-discount-section { position: relative; background: url('https://images.unsplash.com/photo-1558470598-a5dda9640f68?auto=format&fit=crop&w=1471') no-repeat center center; background-size: cover; padding: 100px 20px; color: var(--white); text-align: center; }
.gold-discount-section .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(153, 101, 21, 0.4) 100%); }
.gold-discount-section .container { position: relative; z-index: 2; }
.discount-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin: 50px 0; }
.feature-card { background: rgba(0,0,0,0.6); border: 1px solid rgba(212, 175, 55, 0.3); border-radius: 10px; padding: 30px 20px; transition: var(--transition-smooth); backdrop-filter: blur(5px); }
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3); }
.feature-icon { font-size: 24px; color: var(--gold); margin-bottom: 20px; }
.feature-card h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--gold-light); }
.limited-offer { display: inline-block; background: var(--gold); color: var(--black); padding: 5px 15px; border-radius: 30px; font-weight: 600; margin-bottom: 20px; animation: pulse 2s infinite; }
.guarantee-text { color: var(--gold); font-style: italic; margin-top: 20px; }

/* 5.8 Why Choose Us Section */
/* Why Choose Us Section */
.choose-us-section {
    padding: 100px 0;
    background-color: var(--black-light);
    color: var(--white);
}

.choose-us-section .section-title,
.choose-us-section .section-subtitle {
    color: var(--white);
}

/* Layout */
.choose-us-container {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.video-column {
    flex: 1;
    position: relative;
}

.reasons-column {
    flex: 1;
}

/* Image Wrapper */
.animated-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--gold);
}

/* Image replacing video */
.animated-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 4s ease;
    position: absolute;
    top: 0;
    left: 0;
}

/* Smooth zoom animation */
.animated-image-wrapper:hover .animated-image {
    transform: scale(1.08);
}

/* Overlay Text */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.video-overlay p {
    color: var(--white);
    font-size: 1.4rem;
    font-family: var(--font-heading);
    margin: 0;
}

/* Reason Cards */
.reason-card {
    display: flex;
    gap: 20px;
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.reason-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
}

.reason-icon {
    font-size: 2rem;
    color: var(--gold);
}

.reason-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--gold-light);
}

.reason-content p {
    color: var(--gray-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive Fix */
@media (max-width: 992px) {
    .choose-us-container {
        flex-direction: column;
    }

    .animated-image-wrapper {
        height: 300px;
    }
}
.gold-line {
    width: 100px;
    height: 2px;
    background: var(--gold);
    margin: 15px auto 0;
}

/* 5.9 Testimonials / Reviews Section */
   
.luxury-reviews {
    position: relative;
    padding: 100px 0;
    background-color: #050505;
    color: #fff;
    overflow: hidden;
}

.gold-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}
.glow-left { top: -100px; left: -100px; }
.glow-right { bottom: -100px; right: -100px; }

.review-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 2; }
.review-subtitle { display: block; font-family: 'Montserrat', sans-serif; color: #D4AF37; font-size: 0.9rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.review-title { font-family: 'Playfair Display', serif; font-size: 3rem; margin-bottom: 15px; color: #ffffff; }
.header-gold-bar { width: 60px; height: 3px; background: #D4AF37; margin: 0 auto; border-radius: 2px; }

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.4s ease, border-color 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.review-card:hover { transform: translateY(-5px); border-color: #D4AF37; background: rgba(255, 255, 255, 0.06); }
.review-icon i { font-size: 2rem; color: rgba(212, 175, 55, 0.3); margin-bottom: 20px; }
.review-stars { margin-bottom: 20px; }
.review-stars .filled { color: #D4AF37; }
.review-stars .empty { color: #444; }
.review-text { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; line-height: 1.6; font-style: italic; color: #e0e0e0; margin-bottom: 30px; min-height: 80px; }
.review-author { display: flex; align-items: center; justify-content: center; gap: 15px; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 20px; width: 100%; }
.author-avatar { width: 50px; height: 50px; background: #D4AF37; color: #000; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: 'Playfair Display', serif; font-size: 1.2rem; }
.author-info h4 { font-family: 'Montserrat', sans-serif; font-size: 0.95rem; color: #fff; margin-bottom: 2px; text-transform: uppercase; letter-spacing: 1px; }
.review-date { font-size: 0.8rem; color: #888; }
.swiper-pagination-bullet { background: #fff; opacity: 0.4; }
.swiper-pagination-bullet-active { background: #D4AF37; opacity: 1; }
.custom-nav { color: #D4AF37 !important; transition: transform 0.3s ease; }
.custom-nav:hover { color: #fff !important; transform: scale(1.1); }

/* 5.10 Blog Section */


/* 5.11 Newsletter Section */
.newsletter-section { padding: 80px 0; background: var(--black-light); color: var(--white); }
.newsletter-content { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.newsletter-text h3 { font-size: 1.8rem; margin-bottom: 15px; color: var(--gold); }
.newsletter-text p { color: var(--gray-light); }
.newsletter-form form { display: flex; }
.newsletter-form input { flex: 1; padding: 15px 20px; background: var(--black); border: 1px solid rgba(255,255,255,0.1); color: var(--white); font-family: var(--font-accent); border-radius: 50px 0 0 50px; outline: none; font-size: 1rem; }
.newsletter-form button { padding: 0 30px; background: var(--gold); color: var(--black); border: none; border-radius: 0 50px 50px 0; font-family: var(--font-accent); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: var(--transition-smooth); }
.newsletter-form button:hover { background: var(--gold-light); }

/* 6.0 FOOTER STYLES
-------------------------------------------------- */
.site-footer {
    background-color: var(--black);
    color: var(--gray);
    padding: 4rem 0 0 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col { display: flex; flex-direction: column; }
.footer-logo { color: var(--gold); font-size: 1.5rem; font-weight: 700; text-decoration: none; margin-bottom: 1rem; display: inline-block; font-family: var(--font-heading); }
.brand-desc { line-height: 1.6; margin-bottom: 1.5rem; font-size: 0.95rem; }

.footer-heading { color: var(--white); font-size: 1.1rem; font-weight: 600; margin-bottom: 1.2rem; text-transform: uppercase; letter-spacing: 1px; position: relative; font-family: var(--font-accent); }
.footer-heading::after { content: ''; display: block; width: 40px; height: 2px; background: var(--gold); margin-top: 8px; }

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a { color: var(--gray); text-decoration: none; transition: all 0.3s ease; font-size: 0.95rem; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 5px; }

.contact-details li { display: flex; align-items: flex-start; gap: 15px; }
.contact-details i { color: var(--gold); margin-top: 5px; }

.social-links { display: flex; gap: 15px; }
.social-links a { display: flex; justify-content: center; align-items: center; width: 40px; height: 40px; background: rgba(255, 255, 255, 0.1); color: var(--gold); border-radius: 50%; text-decoration: none; transition: all 0.3s ease; }
.social-links a:hover { background: var(--gold); color: var(--black); transform: translateY(-3px); }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 1.5rem 0; text-align: center; font-size: 0.9rem; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; }

/* 7.0 ANIMATION KEYFRAMES
-------------------------------------------------- */
@keyframes float-particle { 0% { transform: translateY(0) translateX(0); opacity: 0.7; } 50% { transform: translateY(-20px) translateX(10px); opacity: 1; } 100% { transform: translateY(0) translateX(0); opacity: 0.7; } }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }
@keyframes float { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(10px, -10px); } }
@keyframes kenBurns { 0% { transform: scale(1) translate(0, 0); } 50% { transform: scale(1.15) translate(5%, -5%); } 100% { transform: scale(1) translate(0, 0); } }
@keyframes heartbeat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }

/* 8.0 RESPONSIVE MEDIA QUERIES
-------------------------------------------------- */
@media (max-width: 992px) {
    .founder-section, .choose-us-container, .newsletter-content { flex-direction: column; gap: 40px; text-align: center; }
    .founder-content .section-title { text-align: center; }
    .process-step, .process-step.reverse { flex-direction: column; }
    .process-step.reverse .step-image { order: -1; }
    .step-number { top: -10px; left: 50%; transform: translateX(-50%); }
}

@media (max-width: 768px) {
    /* Fonts & Grid */
    .section-title { font-size: 2.2rem; }
    .products-grid, .blog-grid, .craftsmanship-grid, .gallery-grid { grid-template-columns: 1fr; }
    .newsletter-content { grid-template-columns: 1fr; }
    .choose-us-container { text-align: center; }
    .reason-card { flex-direction: column; }
    .footer-bottom { flex-direction: column; gap: 10px; }
    
    /* Timeline Adjustments */
    .timeline-container::after { left: 10px; }
    .timeline-item, .timeline-item:nth-child(even) { width: 100%; padding-left: 50px; padding-right: 0; left: 0; }
    .timeline-item::after, .timeline-item:nth-child(even)::after { left: -10px; }

    /* MOBILE MENU */
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 60%;
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        z-index: 998;
    }

    .nav-links.nav-active { transform: translateX(0%); }
    
    .mobile-menu { display: block; z-index: 999; }
    .mobile-menu i { font-size: 1.8rem; color: #333; }
}

@media (max-width: 576px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1rem; }
    .btn-gold { padding: 10px 20px; font-size: 12px; }
    .newsletter-form form { flex-direction: column; }
    .newsletter-form input, .newsletter-form button { border-radius: 50px; }
    .newsletter-form input { margin-bottom: 10px; text-align: center; }
}


/* Background with parallax + gold glitter particles */


/* contact */

  .contact-header {
            background: linear-gradient(135deg, rgba(212,175,55,0.8), rgba(0,0,0,0.9));
            padding: 100px 0;
            text-align: center;
        }

        .contact-header h1 {
            font-size: 3.5rem;
            color: #D4AF37;
            animation: fadeInDown 1.2s ease-out;
        }

        .contact-header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .contact-form-wrapper {
            background: #111;
            border: 1px solid #333;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 0 15px rgba(212,175,55,0.3);
            
        }

        .contact-form label {
            color: #D4AF37;
        }

        .form-control,
        textarea {
            background-color: #1a1a1a;
            border: 1px solid #555;
            color: #fff;
        }

        .btn-gold {
            background: #D4AF37;
            color: #000;
            font-weight: bold;
            border-radius: 50px;
            transition: all 0.3s ease-in-out;
        }

        .btn-gold:hover {
            background: #b7962c;
            transform: scale(1.05);
        }

        .contact-info {
            background-color: #1b1b1b;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 0 10px rgba(212,175,55,0.2);
        }

        .contact-info h5 {
            color: #D4AF37;
        }

        .contact-icon {
            font-size: 1.8rem;
            color: #D4AF37;
            margin-right: 15px;
        }

        .map-container {
            overflow: hidden;
            border-radius: 15px;
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }



        /* Fix header hidden on mobile */
header {
    position: relative;
    z-index: 9999 !important;
}
/* ============================================
   BLOG SECTION – FIXED, CLEAN & RESPONSIVE
=============================================== */

/* Background with parallax + gold glitter particles */
.blog-section {
    padding: 120px 0;
    background-image: url("../images/image.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* parallax for desktop */
    position: relative;
    overflow: hidden;
}

/* Dark overlay */
.blog-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.45);
    z-index: 1;
}

/* Floating glitter particles */
.blog-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-size: 250px;
    opacity: 0.25;
    animation: glitterMove 18s linear infinite;
    z-index: 1;
}

@keyframes glitterMove {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-200px) rotate(5deg); }
}

/* Ensure only main wrapper content stays above overlays */
.blog-section > * {
    position: relative;
    z-index: 2;
}

/* ============================================
   SECTION HEADER
=============================================== */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--gold);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

/* Gold shine animation */
.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: shineLine 2s ease-in-out infinite;
}

@keyframes shineLine {
    0% { width: 0%; left: 0; }
    50% { width: 100%; left: 0; }
    100% { width: 0%; left: 100%; }
}

.gold-line {
    width: 100px;
    height: 2px;
    background: var(--gold);
    margin: 15px auto 0;
}

/* ============================================
   BLOG GRID
=============================================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 35px;
}

/* ============================================
   BLOG POST CARD
=============================================== */

.blog-post-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s ease;
    position: relative;
}

.blog-post-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 45px rgba(255, 215, 0, 0.28);
}

/* Gold glow border on hover */
.blog-post-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: 0.4s ease;
}

.blog-post-card:hover::after {
    border-color: var(--gold);
}

/* ============================================
   IMAGE
=============================================== */

.blog-post-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.08);
}

/* ============================================
   DATE BADGE
=============================================== */

.post-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: #000;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* ============================================
   CONTENT
=============================================== */

.blog-post-content {
    padding: 28px;
    color: #fff;
}

.blog-post-content h3 a {
    color: #fff;
    font-weight: 600;
    transition: 0.3s ease;
}

.blog-post-content h3 a:hover {
    color: var(--gold);
}

.excerpt {
    margin: 15px 0 20px;
    color: #ddd;
}

/* Meta */
.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 15px;
}

.author {
    color: var(--gold);
    font-size: 13px;
}

.read-more {
    color: var(--gold);
    font-weight: 600;
}

.read-more i {
    margin-left: 5px;
    transition: 0.3s ease;
}

.read-more:hover i {
    transform: translateX(6px);
}

/* ============================================
   SCROLL REVEAL
=============================================== */

.reveal-animation {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.reveal-animation.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE FIXES
=============================================== */

/* Remove fixed background on mobile */
@media (max-width: 992px) {
    .blog-section {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center !important;
    }

    .section-title {
        font-size: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* new hero section main page  */
/* ===== HERO CONTAINER ===== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Forces full screen height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    background: #000; /* Black background to hide glitches */
}

/* ===== BACKGROUND HANDLING ===== */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%); /* Centers video perfectly */
    z-index: 1;
    object-fit: cover; /* Crucial: Covers the grey space */
}

/* Fallback Image (In case video breaks) */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1573408301185-9146fe634ad0?q=80&w=2075&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* ===== OVERLAY (The Magic Fix) ===== */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient: Darker at top (for menu) and bottom, lighter in middle */
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

/* ===== CONTENT ===== */
.hero-content {
    position: relative;
    z-index: 3; /* Puts text above everything */
    max-width: 900px;
    padding: 0 20px;
    margin-top: 60px; /* PUSHES CONTENT DOWN so it doesn't hit the header */
    color: white;
}

/* Typography */
.hero-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ddd;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

/* The Gold Gradient Text */
.gold-text {
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 0px 0px rgba(0,0,0,0); /* Removes shadow from gradient text so it shines */
}

.hero-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn-container {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(45deg, #D4AF37, #C5A028);
    color: #000;
    padding: 15px 40px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s;
    border: 1px solid #D4AF37;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.4);
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary:hover {
    background: white;
    color: black;
    border-color: white;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 38px;
    }
    
    .hero-content p {
        font-size: 14px;
        padding: 0 15px;
    }

    .btn-container {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        box-sizing: border-box;
    }
}
/* hero end */

/* lagacy start */
.legacy-section {
    position: relative;
    /* REPLACE URL BELOW WITH YOUR IMAGE */
    background-image: url('https://images.unsplash.com/photo-1601121141461-9d6647bca1ed?q=80&w=2515&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    padding: 100px 5%;
    text-align: center;
    overflow: hidden;
    font-family: 'Poppins', sans-serif; /* Applies font only to this section */
}

/* The dark overlay on top of the image */
.legacy-section .legacy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85); /* Darkens the background image */
    z-index: 1;
}

/* Wrapper to bring text above the overlay */
.legacy-section .legacy-content {
    position: relative;
    z-index: 2;
}

/* Typography */
.legacy-section .legacy-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin: 0 0 10px 0;
    background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c); /* Gold Gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.legacy-section .legacy-sub {
    color: #dcdcdc;
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 60px;
    text-transform: uppercase;
    display: inline-block;
}

/* Cards Container */
.legacy-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Individual Card Styling */
.legacy-card {
    background: rgba(255, 255, 255, 0.05); /* Glass effect */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: 40px 25px;
    border-radius: 15px;
    width: 260px;
    transition: all 0.4s ease;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Card Hover Effects */
.legacy-card:hover {
    transform: translateY(-10px);
    background: rgba(20, 20, 20, 0.95);
    border-color: #D4AF37; /* Gold border on hover */
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
}

/* Year Badge inside card */
.legacy-card .legacy-year {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 15px;
    transition: 0.3s;
}

.legacy-card:hover .legacy-year {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Card Text */
.legacy-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: white;
    margin: 10px 0;
}

.legacy-card p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .legacy-section .legacy-title { font-size: 32px; }
    .legacy-card { width: 100%; margin-bottom: 20px; }
}



/* --- LUXURY REVIEWS SECTION --- */
.luxury-reviews {
    position: relative;
    padding: 100px 0;
    background-color: #050505; /* Deep Black/Grey */
    color: #fff;
    overflow: hidden;
}

/* Background Glow Effects */
.gold-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}
.glow-left { top: -100px; left: -100px; }
.glow-right { bottom: -100px; right: -100px; }

/* Header Styling */
.review-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.review-subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    color: #D4AF37; /* Gold */
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.review-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.header-gold-bar {
    width: 60px;
    height: 3px;
    background: #D4AF37;
    margin: 0 auto;
    border-radius: 2px;
}

/* Review Card Styling */
.review-card {
    background: rgba(255, 255, 255, 0.03); /* Glass effect */
    border: 1px solid rgba(212, 175, 55, 0.2); /* Subtle Gold Border */
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.4s ease, border-color 0.4s ease;
    height: 100%;
    user-select: none;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.06);
}

/* Quote Icon */
.review-icon i {
    font-size: 2rem;
    color: rgba(212, 175, 55, 0.3);
    margin-bottom: 20px;
}

/* Stars */
.review-stars {
    margin-bottom: 20px;
}
.review-stars .filled { color: #D4AF37; }
.review-stars .empty { color: #444; }
.review-stars i { margin: 0 2px; font-size: 1rem; }

/* Review Text */
.review-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 30px;
    min-height: 80px; /* Ensures consistent height */
}

/* Author Section */
.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #D4AF37;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-date {
    font-size: 0.8rem;
    color: #888;
}

/* Swiper Navigation Customization */
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.4;
}
.swiper-pagination-bullet-active {
    background: #D4AF37;
    opacity: 1;
}

.custom-nav {
    color: #D4AF37 !important;
    transition: transform 0.3s ease;
}

.custom-nav:hover {
    color: #fff !important;
    transform: scale(1.1);
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .review-title { font-size: 2.2rem; }
    .review-text { font-size: 1.1rem; }
    .luxury-reviews { padding: 60px 0; }
}


/* custom page */
 /* Navigation Arrows */
    .swiper-button-next, .swiper-button-prev { color: var(--gold-primary) !important; }

    /* --- 2. PROCESS SECTION (How it Works) --- */
    .process-section {
        padding: 100px 0;
        background: #0a0a0a;
    }

    .section-header { text-align: center; margin-bottom: 60px; }
    .section-header h2 { font-family: var(--font-serif); color: var(--gold-primary); font-size: 2.5rem; }

    .process-step {
        display: flex;
        align-items: center;
        gap: 50px;
        margin-bottom: 80px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }
    .process-step.visible { opacity: 1; transform: translateY(0); }
    .process-step.reverse { flex-direction: row-reverse; }

    .step-image {
        flex: 1;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        border: 1px solid #222;
    }
    .step-image img { width: 100%; display: block; transition: 0.5s; }
    .step-image:hover img { transform: scale(1.05); }

    .step-content { flex: 1; padding: 20px; }
    .step-number {
        font-family: var(--font-serif);
        font-size: 4rem;
        color: rgba(212, 175, 55, 0.2);
        line-height: 1;
    }
    .step-content h3 { font-family: var(--font-serif); font-size: 2rem; color: #fff; margin: 10px 0; }
    .step-content p { color: #aaa; font-size: 1.1rem; line-height: 1.6; }

    /* --- 3. FORM SECTION --- */
    .form-section {
        padding: 100px 0;
        background: url('assets/images/dark-texture.jpg') center/cover fixed; /* Parallax effect */
        position: relative;
    }
    .form-section::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.85); }

    .custom-form-card {
        background: rgba(20, 20, 20, 0.95);
        border: 1px solid rgba(212, 175, 55, 0.3);
        border-radius: 12px;
        padding: 50px;
        position: relative;
        z-index: 2;
        box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    }

    .form-label { color: var(--gold-primary); margin-bottom: 8px; font-weight: 500; }
    .form-control {
        background: #080808;
        border: 1px solid #333;
        color: #fff;
        padding: 15px;
        border-radius: 4px;
        width: 100%;
        margin-bottom: 20px;
    }
    .form-control:focus { outline: none; border-color: var(--gold-primary); }

    .file-upload-box {
        border: 2px dashed #444;
        padding: 30px;
        text-align: center;
        border-radius: 6px;
        cursor: pointer;
        transition: 0.3s;
    }
    .file-upload-box:hover { border-color: var(--gold-primary); background: rgba(212,175,55,0.05); }

    .submit-btn {
        background: var(--gold-primary);
        color: #000;
        width: 100%;
        padding: 18px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        border: none;
        cursor: pointer;
        transition: 0.3s;
        margin-top: 10px;
    }
    .submit-btn:hover { background: #fff; }

    /* --- 4. GALLERY --- */
    .design-gallery { padding: 80px 0; text-align: center; }
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }
    .gallery-item {
        position: relative;
        aspect-ratio: 1/1;
        overflow: hidden;
        border-radius: 8px;
    }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
    .gallery-item:hover img { transform: scale(1.1); }
    .gallery-overlay {
        position: absolute; bottom: 0; left: 0; width: 100%;
        background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
        padding: 20px;
        opacity: 0; transition: 0.3s;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }

    /* --- RESPONSIVE --- */
    @media (max-width: 992px) {
        .process-step, .process-step.reverse { flex-direction: column; text-align: center; }
        .custom-form-card { padding: 30px 20px; }
        .swiper-button-next, .swiper-button-prev { display: none; } /* Hide arrows on mobile */
        .hero-slider-section { height: 75vh; }
    }
