

 /* ==========================================
   BHAGIRTHI CREATIVE - ROOT & HEADER CSS
   ========================================== */
:root {
  --clay-terracotta: #C85A32;       /* Primary Action Color */
  --sculpture-charcoal: #1F1D1A;  /* Deep Dark Base */
  --antique-bronze: #A48243;      /* Luxury Gold Accent */
  --warm-stone: #7A756D;          /* Muted Stone */

  --gallery-ivory: #F9F6F0;       /* Soft Organic Background */
  --surface-white: #FFFFFF;       /* Container White */
  --panel-dark: #2D2A26;          /* Dark Panel Background */

  --text-main: #222222;           /* Primary Text */
  --text-subtle: #66625D;         /* Secondary Text */
  --text-inverse: #F9F6F0;        /* Light Text */

  --clay-border: #E5DFD5;         /* Subtle Border */
  --shadow-subtle: 0 4px 20px rgba(31, 29, 26, 0.05);
  --shadow-glow: 0 8px 25px rgba(200, 90, 50, 0.15);
}

.clay-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: var(--shadow-subtle);
  background: var(--surface-white);
}

.header-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ==========================================
   1. TOP TICKER BAR
   ========================================== */
.topbar {
  background: linear-gradient(135deg, var(--sculpture-charcoal), var(--panel-dark));
  color: var(--text-inverse);
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 2px solid var(--antique-bronze);
  overflow: hidden;
  white-space: nowrap;
}

.topbar-ticker-container {
  width: 100%;
  overflow: hidden;
  display: flex;
}

.topbar-ticker-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: tickerScroll 30s linear infinite;
}

.topbar-ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-inverse);
  font-weight: 500;
}

.ticker-item i {
  color: var(--antique-bronze);
  font-size: 13px;
}

@keyframes tickerScroll {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

/* ==========================================
   2. MAIN NAVBAR (Centered Logo Layout)
   ========================================== */
.main-navbar {
  background: var(--surface-white);
  border-bottom: 2px solid var(--clay-border);
  padding: 12px 0;
  position: relative;
}

.nav-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

/* Navigation Links */
.nav-menu-links {
  display: flex;
  list-style: none;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.left-links {
  justify-content: flex-start;
}

.right-links {
  justify-content: flex-end;
  align-items: center;
}

.nav-right-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.nav-menu-links li a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu-links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: var(--clay-terracotta);
  transition: width 0.3s ease;
}

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

.nav-menu-links li a:hover,
.nav-menu-links li a.active {
  color: var(--clay-terracotta);
}

/* Center Logo */
.header-brand-logo {
  text-align: center;
}

.brand-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.brand-logo-img:hover {
  transform: scale(1.03);
}

/* CTA Button */
.clay-action-btn {
  background: var(--clay-terracotta);
  color: var(--text-inverse);
  padding: 9px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
  display: inline-block;
  white-space: nowrap;
}

.clay-action-btn:hover {
  background: #B04D28;
  color: var(--text-inverse);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle Icon */
.mobile-menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-main);
  background: var(--surface-white);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--clay-border);
}


/* ==========================================
   3. MOBILE DRAWER STYLES
   ========================================== */
.mobile-nav-drawer {
  display: none;
  background: var(--surface-white);
  border-bottom: 2px solid var(--clay-border);
  padding: 20px;
  box-shadow: 0 10px 25px rgba(31, 29, 26, 0.1);
}

.mobile-nav-drawer.active {
  display: block;
}

.mobile-nav-drawer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav-drawer ul li a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  display: block;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--clay-border);
}

.mobile-nav-drawer ul li a:hover,
.mobile-nav-drawer ul li a.active {
  color: var(--clay-terracotta);
}


/* ==========================================
   4. RESPONSIVE RULES & DESKTOP SAFETY OVERRIDE
   ========================================== */
@media (max-width: 991px) {
  .header-container {
    padding: 0 20px;
  }

  .nav-grid {
    grid-template-columns: auto 1fr auto;
    gap: 15px;
  }

  .left-links, 
  .right-links {
    display: none; /* Hide desktop links on mobile */
  }

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

  .brand-logo-img {
    height: 52px;
  }
}

/* --- IMPORTANT SAFETY FIX FOR DESKTOP VIEW --- */
@media (min-width: 992px) {
  .mobile-nav-drawer {
    display: none !important; /* Force hide mobile drawer on desktop screens */
  }
}
/* ==========================================
   7. PREMIUM HERO CAROUSEL / SLIDER
   ========================================== */
.hero-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.carousel-container {
  position: relative;
  width: 100%;
  height: auto;
  max-height: none;
}

.carousel-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1); /* Ultra smooth look */
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-light);
}

.carousel-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Carousel Control Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(5px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 6px 20px rgba(255, 85, 0, 0.4);
}

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

/* Navigation Dots */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 6px;
  background: rgba(15, 15, 15, 0.25);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary-color);
  width: 24px; /* Sleek pill shape design for the active slide */
  border-radius: 4px;
}

/* ==========================================
   CLAY FEATURES SECTION STYLING
   ========================================== */
/* ==========================================
   COMPACT TRUST SLIDER STYLING
   ========================================== */
.compact-trust-section {
  background-color: var(--gallery-ivory, #F9F6F0);
  border-bottom: 1px solid var(--clay-border, #E5DFD5);
  padding: 16px 0;
  overflow: hidden;
  width: 100%;
}

.trust-slider-container {
  width: 100%;
  overflow: hidden;
  display: flex;
}

.trust-slider-track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: trustTickerScroll 25s linear infinite;
}

.trust-slider-track:hover {
  animation-play-state: paused;
}

.trust-slide-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: var(--text-main, #222222);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.trust-slide-item i {
  color: var(--clay-terracotta, #C85A32);
  font-size: 16px;
}

@keyframes trustTickerScroll {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* Responsive adjustment */
@media (max-width: 767px) {
  .compact-trust-section {
    padding: 12px 0;
  }
  .trust-slide-item {
    font-size: 12px;
  }
}


/* Section */
/* ================= CATEGORIES ================= */


/* ==========================================
   LUXURY GALLERY SHOWCASE STYLING
   ========================================== */
.studio-luxury-gallery {
  padding: 50px 0;
  background-color: var(--gallery-ivory, #F9F6F0);
}

.category-pretitle {
  color: var(--clay-terracotta, #C85A32);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.category-main-title {
  color: var(--sculpture-charcoal, #1F1D1A);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.category-main-title span {
  color: var(--clay-terracotta, #C85A32);
}

.title-divider-premium {
  width: 50px;
  height: 2px;
  background-color: var(--antique-bronze, #A48243);
  margin: 0 auto;
  position: relative;
}

.divider-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: var(--clay-terracotta, #C85A32);
  border-radius: 50%;
}

/* Staggered Modern Grid Layout */
.luxury-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

/* Card Styling */
.luxury-art-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #141210; /* Rich dark museum background */
  box-shadow: 0 10px 30px rgba(31, 29, 26, 0.08);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1px solid var(--clay-border, #E5DFD5);
}

/* Varied heights for artistic layout */
.art-frame-box {
  width: 100%;
  height: 350px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

.featured-vertical .art-frame-box {
  height: 420px; /* Thoda lamba card visual contrast ke liye */
}

/* Image containment - No cutting */
.art-frame-box img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Image bilkul nahi kategi */
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.luxury-art-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(200, 90, 50, 0.15);
  border-color: rgba(200, 90, 50, 0.4);
}

.luxury-art-card:hover .art-frame-box img {
  transform: scale(1.06);
}

/* Art Number Badge Top Left */
.art-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(31, 29, 26, 0.7);
  backdrop-filter: blur(6px);
  color: var(--antique-bronze, #D4AF37);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 3;
}

/* Glassmorphism Hover Info Overlay */
.art-overlay-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px 20px;
  background: linear-gradient(to top, rgba(20, 18, 16, 0.95) 20%, rgba(20, 18, 16, 0.6) 70%, transparent 100%);
  transform: translateY(10px);
  opacity: 0.9;
  transition: all 0.4s ease;
  z-index: 2;
}

.luxury-art-card:hover .art-overlay-info {
  transform: translateY(0);
  opacity: 1;
  background: linear-gradient(to top, rgba(20, 18, 16, 0.98) 30%, rgba(20, 18, 16, 0.7) 80%, transparent 100%);
}

.art-overlay-info h4 {
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.art-overlay-info p {
  color: #C85A32;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: 0;
  text-transform: uppercase;
}

/* Responsive Grid Adjustments */
/* ==========================================
   UPDATED MOBILE RESPONSIVE FIX (2 Items per row)
   ========================================== */

/* Tablet & Mobile Screens */
@media (max-width: 991px) {
  .luxury-gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important; /* Mobile view mein 2 columns */
    gap: 15px !important;
  }
  
  .art-frame-box, 
  .featured-vertical .art-frame-box {
    height: 220px !important; /* Mobile ke liye proper balanced height */
  }

  .category-main-title {
    font-size: 24px !important;
  }
}

/* Extra Small Mobile Screens (Agar screen bohot choti ho toh text padding adjust karne ke liye) */
@media (max-width: 480px) {
  .luxury-gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .art-frame-box {
    height: 180px !important;
    padding: 10px !important;
  }

  .art-overlay-info h4 {
    font-size: 13px !important;
  }

  .art-overlay-info p {
    font-size: 10px !important;
  }

  .art-badge {
    font-size: 9px !important;
    padding: 3px 6px !important;
  }
}


.about-banner {
  width: 100%;
  height: 350px; /* Slightly taller banner */
  background: url('../../assets/img/about1.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

/* Dark overlay for text readability */
.banner-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.55), rgba(0,0,0,0.25));
  display: flex;
  align-items: center;
}

/* Text Styling */
.about-banner h1 {
  color: white;
  font-size: 48px; /* Larger heading for impact */
  font-weight: 600;
  margin-bottom: 6px;
}

.about-banner h1 span {
  color: var(--accent-color);
  font-family: "Josefin Sans", sans-serif;
}

.about-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  max-width: 520px;
}

/* MOBILE RESPONSIVE */
@media(max-width: 768px) {
  .about-banner {
    height: 250px;
  }

  .about-banner h1 {
    font-size: 28px;
  }

  .about-banner p {
    font-size: 14px;
  }
}

/* Story */
/* PREMIUM ARTISAN SECTION */
/* ===== SECTION (PREMIUM BACKGROUND) ===== */
/* ==========================================
   REFINED ABOUT SECTION STYLING
   ========================================== */
.refined-about-section {
  padding: 50px 0;
  background-color: #F4EFE6; /* Rich warm gallery paper background */
  color: #1F1D1A;
}

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

/* Left Image Showcase */
.refined-image-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: center;
}

.art-display-box {
  background: #1A1816;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 12px 30px rgba(31, 29, 26, 0.1);
  border: 1px solid rgba(200, 90, 50, 0.2);
  display: flex;
  flex-direction: column;
}

.main-box {
  margin-bottom: -30px;
  z-index: 2;
}

.sub-box {
  margin-top: 40px;
  z-index: 1;
}

.img-frame {
  width: 100%;
  height: 260px;
  background-color: #12100E;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.main-box .img-frame {
  height: 320px;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Yeh ensure karega ki image ka ek bhi pixel kate nahi */
  transition: transform 0.5s ease;
}

.art-display-box:hover .img-frame img {
  transform: scale(1.03);
}

.img-caption {
  color: #D4AF37;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
  text-align: center;
}

/* Right Content Area */
.section-tag {
  color: #C85A32;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 15px;
  background: rgba(200, 90, 50, 0.08);
  padding: 5px 12px;
  border-radius: 4px;
}

.refined-title {
  color: #1F1D1A;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.refined-title span {
  color: #C85A32;
}

.refined-lead {
  color: #38332E;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 15px;
}

.refined-text {
  color: #665C54;
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Highlights Grid */
.refined-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 35px;
  border-top: 1px solid #E5DFD5;
  border-bottom: 1px solid #E5DFD5;
  padding: 20px 0;
}

.highlight-box h4 {
  color: #C85A32;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2px;
}

.highlight-box p {
  color: #554D46;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}

/* Button Styling */
.refined-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #1F1D1A;
  color: #FFFFFF;
  padding: 14px 30px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.refined-btn:hover {
  background-color: #C85A32;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(200, 90, 50, 0.25);
  gap: 14px;
}

/* Responsive Design */
@media (max-width: 991px) {
  .refined-about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .refined-image-col {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .refined-about-section {
    padding: 60px 0;
  }
  .refined-title {
    font-size: 28px;
  }
  .refined-highlights {
    grid-template-columns: 1fr 1fr;
  }
  .main-box .img-frame {
    height: 240px;
  }
  .img-frame {
    height: 200px;
  }
}

/* ================= BANNER ================= */
/* ================= BANNER ================= */
/* ===== ULTRA-ATTRACTIVE FULL WIDTH THEME BANNER ===== */
.section-fullwidth-banner {
  position: relative;
  width: 100%;
  background: #0f0f12; /* Ultra rich dark base matching your bar theme */
  padding: 50px 0;
  overflow: hidden;
}

/* Subtle luxury fabric thread effect across the entire width */
.banner-fabric-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: radial-gradient(var(--primary-color, #ff5500) 0.5px, transparent 0.5px), 
                    radial-gradient(var(--primary-color, #ff5500) 0.5px, #0f0f12 0.5px);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
  pointer-events: none;
  z-index: 1;
}

/* Background Soft Ambient Light Glow */
.section-fullwidth-banner::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 85, 0, 0.06) 0%, transparent 70%);
  bottom: -200px;
  left: -100px;
  pointer-events: none;
}

/* ===== LEFT CONTENT SIDE ===== */
.fullwidth-banner-content {
  position: relative;
  z-index: 5;
  padding: 0 8% 0 12%; /* Elegant offset asymmetrical padding */
}

/* Theme Matching Animated Badge */
.banner-badge-theme {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 85, 0, 0.08);
  border: 1px solid rgba(255, 85, 0, 0.2);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 25px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--primary-color, #ff5500);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-color, #ff5500);
  animation: badgePulse 2s infinite;
}

.badge-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-color, #ff5500);
}

/* Main Cinematic Typography */
.theme-banner-heading {
  font-family: "Playfair Display", "Josefin Sans", serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 25px;
}

.theme-banner-heading span {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: #b5b5be; /* Soft premium grey contrast */
}

.theme-banner-desc {
  font-size: clamp(15px, 1.8vw, 17px);
  color: #a3a3a3;
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 40px;
}

/* Eco-Fabric Value Pills */
.banner-metrics-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 45px;
}

.metric-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 10px 20px;
  border-radius: 8px;
}

.metric-pill i {
  color: var(--primary-color, #ff5500);
  font-size: 14px;
}

.metric-pill span {
  font-size: 13px;
  color: #e2e8f0;
  font-weight: 500;
}

/* High Contrast Orange-Accent Dynamic Button */
.btn-theme-premium {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  background: var(--primary-color, #ff5500);
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 12px 12px 12px 35px; /* Clean unequal padding for asymmetric button feel */
  border-radius: 60px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 30px rgba(255, 85, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-arrow-icon {
  width: 44px;
  height: 44px;
  background: #ffffff;
  color: #0f0f12;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-theme-premium:hover {
  background: #ffffff;
  color: #0f0f12 !important;
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
}

.btn-theme-premium:hover .btn-arrow-icon {
  background: var(--primary-color, #ff5500);
  color: #ffffff;
  transform: rotate(-45deg); /* Classy sleek diagonal rotate arrow */
}

/* ===== RIGHT VISUAL SIDE ===== */
.fullwidth-banner-visual {
  position: relative;
  width: 100%;
  padding-right: 10%;
  display: flex;
  justify-content: flex-end;
}

.visual-image-box {
  position: relative;
  width: 85%;
  aspect-ratio: 1 / 1.1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.visual-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.image-gradient-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0f0f12 0%, transparent 30%); /* Blends image left border to layout smoothly */
  pointer-events: none;
}

/* Floating Authentication Label Element */
.floating-motif-card {
  position: absolute;
  left: 5%;
  bottom: 12%;
  background: rgba(25, 25, 30, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.motif-card-inner {
  display: flex;
  align-items: center;
  gap: 15px;
}

.motif-card-inner i {
  font-size: 24px;
  color: var(--primary-color, #ff5500);
}

.motif-card-inner h6 {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2px;
}

.motif-card-inner p {
  font-size: 11px;
  color: #a3a3a3;
  margin: 0;
}

/* Hover Effect for Right Column */
.fullwidth-banner-visual:hover .visual-image-box img {
  transform: scale(1.04) rotate(0.5deg);
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes badgePulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 85, 0, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 85, 0, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 85, 0, 0); }
}

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 991.98px) {
  .section-fullwidth-banner {
    padding: 60px 0;
  }
  .fullwidth-banner-content {
    padding: 50px 30px 0 30px;
  }
  .fullwidth-banner-visual {
    padding-right: 0;
    justify-content: center;
    margin-bottom: 20px;
  }
  .visual-image-box {
    width: 90%;
    aspect-ratio: 1.6 / 1; /* Horizontal scale on tablets & phones */
  }
  .image-gradient-shimmer {
    background: linear-gradient(to top, #0f0f12 0%, transparent 40%);
  }
  .floating-motif-card {
    left: 10%;
    bottom: -15px;
  }
}

@media (max-width: 576px) {
  .theme-banner-heading {
    font-size: 34px;
  }
  .banner-metrics-row {
    gap: 10px;
  }
  .metric-pill {
    padding: 8px 14px;
  }
  .metric-pill span {
    font-size: 12px;
  }
  .btn-theme-premium {
    width: 100%;
    justify-content: space-between;
    padding: 8px 8px 8px 24px;
  }
}
/*---------------------------------------------
new arrival
-------------------------------------------------*/
/* ==========================================
   BESTSELLER AUTO-SLIDER STYLING
   ========================================== */
.bestseller-slider-section {
  padding: 50px 0;
  background-color: #1A1816; /* Rich dark museum studio backdrop */
  color: #FFFFFF;
  overflow: hidden;
}

.bestseller-badge {
  color: #E06D46;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  background: rgba(224, 109, 70, 0.1);
  padding: 5px 12px;
  border-radius: 4px;
  border: 1px solid rgba(224, 109, 70, 0.2);
}

.bestseller-title {
  font-size: 38px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.bestseller-title span {
  color: #E06D46;
}

.bestseller-subtitle {
  color: #A8A29E;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

/* Infinite Marquee Track Setup */
.bestseller-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 40px;
  display: flex;
}

.bestseller-marquee-wrapper::before,
.bestseller-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.bestseller-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #1A1816, transparent);
}

.bestseller-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #1A1816, transparent);
}

.bestseller-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollMarquee 35s linear infinite;
}

/* Pause animation on hover */
.bestseller-track:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 15px));
  }
}

/* Individual Product Card */
.bestseller-card {
  width: 320px;
  background: #23201D;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

.bestseller-card:hover {
  transform: translateY(-8px);
  border-color: rgba(224, 109, 70, 0.4);
  box-shadow: 0 15px 35px rgba(224, 109, 70, 0.15);
}

/* Image Container (No-Crop Guarantee) */
.bs-img-box {
  width: 100%;
  height: 300px;
  background-color: #12100E;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  overflow: hidden;
}

.bs-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Image bilkul nahi kategi */
  transition: transform 0.5s ease;
}

.bestseller-card:hover .bs-img-box img {
  transform: scale(1.05);
}

/* Card Tag */
.bs-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(28, 26, 23, 0.85);
  backdrop-filter: blur(6px);
  color: #D4AF37;
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Card Content Details */
.bs-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  background: #23201D;
}

.bs-content h4 {
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.bs-content p {
  color: #A8A29E;
  font-size: 13px;
  margin-bottom: 18px;
}

.bs-link {
  color: #E06D46;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.bs-link:hover {
  color: #FF8559;
  gap: 10px;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .bestseller-slider-section {
    padding: 70px 0;
  }
  .bestseller-title {
    font-size: 28px;
  }
  .bestseller-card {
    width: 270px;
  }
  .bs-img-box {
    height: 250px;
  }
}



/* ==========================================
   ELEGANT LIGHT WHY CHOOSE US STYLING
   ========================================== */
/* ==========================================
   MODERN WHY CHOOSE US STYLING
   ========================================== */
.modern-why-section {
  padding: 50px 0;
  background-color: #F7F4EE; /* Rich warm ivory studio background */
  color: #1F1D1A;
  position: relative;
  overflow: hidden;
}

.modern-why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

/* Left Content Styles */
.modern-badge {
  color: #C85A32;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 15px;
  background: rgba(200, 90, 50, 0.08);
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid rgba(200, 90, 50, 0.2);
}

.modern-why-content h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1F1D1A;
  line-height: 1.25;
  margin-bottom: 15px;
}

.modern-why-content h2 span {
  color: #C85A32;
}

.modern-lead {
  color: #554D46;
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* Feature Rows */
.modern-features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.modern-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.m-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: #FFFFFF;
  border: 1px solid #E5DFD5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #C85A32;
  box-shadow: 0 6px 15px rgba(31, 29, 26, 0.04);
  transition: all 0.3s ease;
}

.modern-feature-row:hover .m-icon {
  background: #C85A32;
  color: #FFFFFF;
  border-color: #C85A32;
  transform: translateY(-3px);
}

.m-text h4 {
  font-size: 17px;
  font-weight: 600;
  color: #1F1D1A;
  margin-bottom: 4px;
}

.m-text p {
  font-size: 14px;
  color: #665C54;
  margin: 0;
  line-height: 1.5;
}

/* Right Side Visual Cards */
.modern-why-visuals {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.art-floating-card {
  background: #FFFFFF;
  border: 1px solid #E5DFD5;
  padding: 22px 25px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(31, 29, 26, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.art-floating-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 90, 50, 0.4);
  box-shadow: 0 15px 35px rgba(200, 90, 50, 0.12);
}

.card-one {
  transform: translateX(0);
}
.card-two {
  transform: translateX(25px);
}
.card-three {
  transform: translateX(0);
}

.af-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background: rgba(200, 90, 50, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #C85A32;
}

.af-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1F1D1A;
  margin-bottom: 3px;
}

.af-info p {
  font-size: 13px;
  color: #665C54;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
  .modern-why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .modern-why-visuals {
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
  }
  .card-two {
    transform: translateX(0);
  }
  .modern-why-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .modern-why-section {
    padding: 70px 0;
  }
  .art-floating-card {
    padding: 18px 20px;
  }
}
/* ===== SECTION ===== */

/******** PREMIUM FAQ SECTION ********/
/******** FAQ GRID PREMIUM ********/
/* ==========================================
   CLAY STUDIO FAQ SECTION STYLING
   ========================================== */
.clay-faq-section {
  padding: 50px 0;
  background-color: var(--gallery-ivory);
  color: var(--text-main);
  position: relative;
}

.faq-badge {
  color: var(--clay-terracotta);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  background: rgba(200, 90, 50, 0.08);
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid rgba(200, 90, 50, 0.2);
}

.clay-faq-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.clay-faq-title span {
  color: var(--clay-terracotta);
}

.clay-faq-subtitle {
  color: var(--text-subtle);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Accordion Wrapper */
.clay-faq-wrapper {
  max-width: 850px;
  margin: 50px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* FAQ Item Box */
.clay-faq-item {
  background: var(--surface-white);
  border: 1px solid var(--clay-border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-subtle);
}

.clay-faq-item:hover {
  border-color: rgba(200, 90, 50, 0.3);
}

.clay-faq-item.active {
  border-color: var(--clay-terracotta);
  box-shadow: var(--shadow-glow);
}

/* Question Header */
.faq-question {
  padding: 22px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 20px;
}

.faq-question h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-main);
  margin: 0;
  transition: color 0.3s ease;
}

.clay-faq-item.active .faq-question h3 {
  color: var(--clay-terracotta);
}

/* Toggle Icon */
.faq-toggle-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(200, 90, 50, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clay-terracotta);
  font-size: 18px;
  transition: all 0.4s ease;
}

.clay-faq-item.active .faq-toggle-icon {
  background: var(--clay-terracotta);
  color: var(--text-inverse);
  transform: rotate(45deg);
}

/* Answer Body */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.4s ease;
}

.clay-faq-item.active .faq-answer {
  max-height: 200px; /* Adjust as per content length */
  padding: 0 25px 24px 25px;
  transition: max-height 0.4s ease-in-out, padding 0.4s ease;
}

.faq-answer p {
  color: var(--text-subtle);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
  border-top: 1px solid var(--clay-border);
  padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 767px) {
  .clay-faq-section {
    padding: 70px 0;
  }
  .clay-faq-title {
    font-size: 28px;
  }
  .faq-question {
    padding: 18px 20px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .clay-faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }
}


/******** PREMIUM BULK SECTION ********/
/* ==========================================================================
   CLAY STUDIO LUXURY PREFOOTER - STYLING OVERHAUL
   ========================================================================== */
/* ==========================================================================
   CLAY STUDIO LUXURY PREFOOTER - REFINED TYPOGRAPHY & SPACING
   ========================================================================== */
.clay-luxury-prefooter {
  position: relative;
  padding: 50px 24px;
  background-image: url("../img/preimg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Rich Cinematic Studio Overlay */
.clay-lux-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg, 
    rgba(25, 23, 20, 0.80) 0%, 
    rgba(15, 14, 12, 0.75) 50%, 
    rgba(25, 23, 20, 0.82) 100%
  );
  z-index: 1;
}

.clay-lux-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

/* Elegant Tagline */
.clay-lux-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #D4AF37;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  margin-bottom: 18px;
  background: rgba(212, 175, 55, 0.08);
  padding: 5px 14px;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Clean, Premium Heading Font Setup */
.clay-lux-heading {
  font-family: 'Playfair Display', Georgia, serif; /* High-end editorial serif font */
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

/* Terracotta Gradient Highlight */
.clay-lux-highlight {
  background: linear-gradient(135deg, #E06D46 0%, #FFB088 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-style: italic; /* Editorial accent touch */
}

/* Crisp, Readable Subheading */
.clay-lux-subheading {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: #C5BFB5;
  line-height: 1.65;
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto 36px auto;
}

/* Bespoke Studio Button */
.clay-lux-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: #E06D46;
  color: #FFFFFF;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(224, 109, 70, 0.25);
}

.clay-lux-btn svg {
  transition: transform 0.3s ease;
}

.clay-lux-btn:hover {
  background: #FFFFFF;
  color: #1F1D1A;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.15);
}

.clay-lux-btn:hover svg {
  transform: translateX(4px);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .clay-luxury-prefooter {
    padding: 70px 20px;
  }
  .clay-lux-heading {
    font-size: 2.2rem;
  }
}

/*------------------------------------------------
About Section
-------------------------------------------------*/
/* ================= ABOUT SECTION ================= */

/* ==========================================================================
   ALTERNATING SECTIONS STYLING - BHAGIRTHICREATIVE
   ========================================================================== */

.about-page-main {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* ----------------------------------
   THEME 1: DARK / RICH STUDIO SECTIONS
   ---------------------------------- */
.dark-section {
  background-color: #12100E;
  color: #C5BFB5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.about-hero {
  padding: 80px 0 100px 0;
  text-align: center;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #D4AF37;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 8px 18px;
  border-radius: 40px;
  margin-bottom: 25px;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: #FFFFFF;
  font-weight: 700;
  max-width: 900px;
  margin: 0 auto 25px auto;
  line-height: 1.15;
}

.gold-text {
  color: #D4AF37;
  font-style: italic;
}

.hero-desc {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: #C5BFB5;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

.about-section {
  padding: 50px 0;
}

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

.section-header.center {
  text-align: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  color: #E06D46;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: inline-block;
  margin-bottom: 12px;
}

.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 15px 0;
}

.section-subtext {
  color: #8C857E;
  font-size: 1.05rem;
  margin: 0;
}

/* Dark Pillars Cards */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.pillar-card-dark {
  background: #1A1816;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 35px;
  border-radius: 12px;
  transition: all 0.35s ease;
}

.pillar-card-dark:hover {
  background: #221F1C;
  border-color: rgba(224, 109, 70, 0.4);
  transform: translateY(-6px);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  background: rgba(224, 109, 70, 0.1);
  border: 1px solid rgba(224, 109, 70, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #E06D46;
  margin-bottom: 22px;
}

.pillar-card-dark h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.pillar-card-dark p {
  color: #8C857E;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Dark Mission Cards */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.mission-card-dark {
  background: #1A1816;
  padding: 45px 40px;
  border-radius: 14px;
}

.mission-card-dark.border-terracotta {
  border: 1px solid rgba(224, 109, 70, 0.3);
}

.mission-card-dark.border-gold {
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.card-icon-tag {
  color: #E06D46;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-icon-tag.gold-tag {
  color: #D4AF37;
}

.mission-card-dark h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.7rem;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.mission-card-dark p {
  color: #C5BFB5;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}


/* ----------------------------------
   THEME 2: LIGHT / CLEAN CONTRAST SECTIONS
   ---------------------------------- */
.light-section {
  background-color: #F8F6F2; /* Soft premium warm white / cream tone */
  color: #2C2825;
  border-bottom: 1px solid #E6E2DA;
}

.section-tag-light {
  color: #D05830;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: inline-block;
  margin-bottom: 12px;
}

.section-heading-dark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: #1A1816;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 15px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.lead-text-dark {
  font-size: 1.15rem;
  color: #1A1816;
  line-height: 1.7;
  margin-bottom: 18px;
  font-weight: 500;
}

.body-text-dark {
  font-size: 0.98rem;
  color: #55514C;
  line-height: 1.8;
  margin-bottom: 25px;
}

.story-highlights-dark {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-item-dark {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2C2825;
  font-size: 0.95rem;
  font-weight: 500;
}

.highlight-item-dark i {
  color: #D05830;
  font-size: 1.1rem;
}

.story-image-box-light {
  width: 100%;
  height: 400px;
  background: #FFFFFF;
  border: 1px solid #E6E2DA;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

/* Light Process Timeline Cards */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-card-light {
  background: #FFFFFF;
  border: 1px solid #E6E2DA;
  border-radius: 12px;
  padding: 30px 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.process-card-light:hover {
  border-color: #D05830;
  transform: translateY(-5px);
}

.process-step-no-light {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #D05830;
  margin-bottom: 15px;
}

.process-body-light h4 {
  color: #1A1816;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.process-body-light p {
  color: #55514C;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}


/* ----------------------------------
   RESPONSIVE LAYOUTS
   ---------------------------------- */
@media (max-width: 991px) {
  .story-grid, .pillars-grid, .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .process-timeline {
    grid-template-columns: 1fr;
  }
  .about-hero {
    padding: 100px 0 40px 0;
  }
}
/*-------------------------------------------------
Contact Section
-------------------------------------------------*/
/* ================= CONTACT BANNER ================= */
/* ================= BANNER ================= */
/* ==========================================================================
   CONTACT US PAGE STYLING - BHAGIRTHICREATIVE
   ========================================================================== */

/* Main wrapper */
.contact-page-main {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* 1. Dark Hero Section */
.contact-hero {
  padding: 40px 0 40px 0;
  background-color: #12100E;
  color: #C5BFB5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #D4AF37;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 8px 18px;
  border-radius: 40px;
  margin-bottom: 25px;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: #FFFFFF;
  font-weight: 700;
  max-width: 900px;
  margin: 0 auto 25px auto;
  line-height: 1.15;
}

.gold-text {
  color: #D4AF37;
  font-style: italic;
}

.hero-desc {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: #C5BFB5;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* 2. Light Form & Info Section */
.light-section {
  background-color: #F8F6F2;
  color: #2C2825;
  padding: 100px 0;
  border-bottom: 1px solid #E6E2DA;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: flex-start;
}

.section-tag-light {
  color: #D05830;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: inline-block;
  margin-bottom: 12px;
}

.section-heading-dark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: #1A1816;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 15px 0;
}

.body-text-dark {
  font-size: 0.98rem;
  color: #55514C;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* Info Cards inside Light Section */
.contact-info-boxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card-light {
  background: #FFFFFF;
  border: 1px solid #E6E2DA;
  padding: 20px 25px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.info-icon-light {
  width: 45px;
  height: 45px;
  background: rgba(208, 88, 48, 0.1);
  color: #D05830;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-card-light h4 {
  font-size: 1rem;
  color: #1A1816;
  margin: 0 0 4px 0;
  font-weight: 600;
}

.info-card-light p {
  font-size: 0.9rem;
  color: #55514C;
  margin: 0;
}

/* Contact Form Card (Light Theme) */
.contact-form-card-light {
  background: #FFFFFF;
  border: 1px solid #E6E2DA;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.04);
}

.contact-form-card-light h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  color: #1A1816;
  margin-bottom: 25px;
}

.studio-form .form-group {
  margin-bottom: 20px;
}

.studio-form .form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.studio-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2C2825;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.studio-form input,
.studio-form select,
.studio-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: #FDFCFB;
  border: 1px solid #DCD6CD;
  border-radius: 8px;
  color: #1A1816;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease;
}

.studio-form input:focus,
.studio-form select:focus,
.studio-form textarea:focus {
  border-color: #D05830;
  background: #FFFFFF;
}

.studio-submit-btn {
  width: 100%;
  padding: 14px;
  background: #1A1816;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 10px;
}

.studio-submit-btn:hover {
  background: #D05830;
  transform: translateY(-2px);
}

/* 3. Dark Section Footer-Top Trust Bar */
.dark-section {
  background-color: #12100E;
  color: #C5BFB5;
  padding: 90px 0;
}

.section-tag {
  color: #E06D46;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: inline-block;
  margin-bottom: 12px;
}

.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-subtext {
  color: #8C857E;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.transit-badge-box {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.transit-badge-box span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #FFFFFF;
  font-weight: 500;
  background: #1A1816;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 22px;
  border-radius: 30px;
}

.text-gold { color: #D4AF37; }
.text-terracotta { color: #E06D46; }

/* Responsive adjustments */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .studio-form .form-group-row {
    grid-template-columns: 1fr;
  }
}
/*---------------------------------------------
Shop Section
--------------------------------------------*/
/* ==========================================================================
   GALLERY PAGE STYLING (DIRECT IMAGES & WHATSAPP ENQUIRY)
   ========================================================================== */

.gallery-page-main {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* 1. Dark Hero Section */
.gallery-hero {
  padding: 130px 0 100px 0;
  background-color: #12100E;
  color: #C5BFB5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #D4AF37;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 8px 18px;
  border-radius: 40px;
  margin-bottom: 25px;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: #FFFFFF;
  font-weight: 700;
  max-width: 900px;
  margin: 0 auto 25px auto;
  line-height: 1.15;
}

.gold-text {
  color: #D4AF37;
  font-style: italic;
}

.hero-desc {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: #C5BFB5;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* 2. Light Section */
.light-section {
  background-color: #F8F6F2;
  color: #2C2825;
  padding: 90px 0;
  border-bottom: 1px solid #E6E2DA;
}

/* --- ATTRACTIVE PRODUCT CARDS GRID --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card-item {
  background: #FFFFFF;
  border: 1px solid #E6E2DA;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
}

.product-card-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: #D05830;
}

/* Image Box Container with Real Images */
.product-image-box {
  position: relative;
  width: 100%;
  height: 280px;
  background: #E5E1DA;
  overflow: hidden;
}

.product-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card-item:hover .product-real-img {
  transform: scale(1.06);
}

/* Badges on Product Image */
.product-tag-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(26, 24, 22, 0.85);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  z-index: 2;
}

.product-tag-badge.gold-badge {
  background: rgba(212, 175, 55, 0.95);
  color: #1A1816;
}

/* Hover Overlay with WhatsApp Button */
.product-overlay-action {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 24, 22, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

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

.whatsapp-enquiry-btn {
  background: #E06D46; /* Official WhatsApp Green */
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateY(15px);
  transition: transform 0.3s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 5px 20px rgba(224, 109, 70, 0.3);
}

.product-card-item:hover .whatsapp-enquiry-btn {
  transform: translateY(0);
}

.whatsapp-enquiry-btn:hover {
  background: #E06D46;
  color: #FFFFFF;
}

/* Product Info Content */
.product-details {
  padding: 22px 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  color: #D05830;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.product-details h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  color: #1A1816;
  margin: 0;
  line-height: 1.4;
}

/* 3. Dark Section Footer Callout */
.dark-section {
  background-color: #12100E;
  color: #C5BFB5;
  padding: 90px 0;
}

.section-tag {
  color: #E06D46;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: inline-block;
  margin-bottom: 12px;
}

.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-subtext {
  color: #8C857E;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.studio-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #E06D46;
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 20px;
  transition: transform 0.2s ease, background 0.3s ease;
  box-shadow: 0 5px 20px rgba(224, 109, 70, 0.3);
}

.studio-cta-btn:hover {
  background: #E06D46;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Responsive Grid Adjustments */
@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
/*-------------------------------------------------
product detail page
-----------------------------------------------*/

/* PRODUCT DETAILS SECTION */
.product-details-section {
  background: var(--ivory);
  padding: 60px 20px;
}

/* CONTAINER */
.product-details-section .container {
  max-width: 1200px;
  margin: auto;
}

/* GRID LAYOUT */
.product-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* LEFT IMAGE */
.product-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}

.product-image img:hover {
  transform: scale(1.04);
}

/* RIGHT INFO */
.product-info {
  color: var(--charcoal);
}

/* CATEGORY TAG */
.product-category {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 6px;
}

/* PRODUCT NAME */
.product-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* DESCRIPTION */
.product-description {
  line-height: 1.7;
  font-size: 15px;
  color: #555;
}

/* META DETAILS */
.product-meta {
  margin-top: 18px;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.product-meta strong {
  color: var(--charcoal);
}

/* ENQUIRY BUTTON */
.btn-enquiry {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 28px;
  background: var(--terracotta);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s ease;
}

.btn-enquiry:hover {
  background: var(--charcoal);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .product-details-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-title {
    font-size: 26px;
  }

  .btn-enquiry {
    padding: 10px 22px;
    font-size: 13px;
  }
}




/* Footer */
/* ================= FOOTER ================= */
/* ================= PREMIUM FOOTER ================= */
/* ==========================================================================
   PREMIUM MODERNISED WHITE FOOTER
   ========================================================================== */

/* ==========================================
   COMPLETE FOOTER & SCROLL FIX CSS
   ========================================== */

/* Page layout ko lock karne ke liye taaki extra scroll na aaye */


/* Main Footer */
.clay-main-footer {
  background-color: #1A1816;
  color: #C5BFB5;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.clay-main-footer .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.clay-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

/* About Column */
.clay-footer-logo img {
  max-height: 75px;
  margin-bottom: 15px;
  filter: brightness(0.9);
}

.clay-footer-about p {
  color: #A8A29E;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Links & Headings */
.clay-footer-links h4,
.clay-footer-contact h4 {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
  letter-spacing: 0.5px;
}

.clay-footer-links h4::after,
.clay-footer-contact h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 25px;
  height: 2px;
  background-color: #E06D46;
}

.clay-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.clay-footer-links ul li a {
  color: #A8A29E;
  font-size: 13.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.clay-footer-links ul li a:hover {
  color: #E06D46;
  transform: translateX(4px);
}

/* Contact Info */
.clay-contact-info {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.clay-contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #A8A29E;
  font-size: 13.5px;
}

.clay-contact-info li i {
  color: #E06D46;
  font-size: 15px;
}

.clay-contact-info li a {
  color: #A8A29E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.clay-contact-info li a:hover {
  color: #FFFFFF;
}

/* Social Icons */
.clay-footer-social {
  display: flex;
  gap: 10px;
}

.clay-footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 15px;
  transition: all 0.3s ease;
}

.clay-footer-social a:hover {
  background: #E06D46;
  border-color: #E06D46;
  transform: translateY(-2px);
}

/* Bottom Bar - Footer ke neeche ka extra space hatane ke liye strict padding aur margin */
.clay-footer-bottom {
  background-color: #12100E;
  padding: 16px 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
  box-sizing: border-box;
}

.clay-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #8C857E;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.clay-footer-bottom-inner p {
  margin: 0;
  color: #8C857E;
}

.clay-footer-bottom-inner strong {
  color: #D4AF37;
}

.clay-footer-bottom-inner a {
  color: #E06D46;
  text-decoration: none;
  font-weight: 500;
}

.clay-footer-bottom-inner a:hover {
  text-decoration: underline;
}

/* ==========================================
   SCROLL TO TOP BUTTON - CLAY THEME STYLING
   ========================================== */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 25px;
  bottom: 25px;
  z-index: 99999;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #E06D46; /* Terracotta Theme Color */
  color: #FFFFFF;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(224, 109, 70, 0.3);
  text-decoration: none;
}

.scroll-top i {
  font-size: 22px;
  line-height: 0;
}

.scroll-top:hover {
  background: #D4AF37; /* Gold touch on hover */
  color: #1F1D1A;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

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

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 90px;
  z-index: 9998;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.floating-whatsapp:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
}

@media (max-width: 576px) {
  .floating-whatsapp {
    right: 16px;
    bottom: 80px;
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}
/* Responsive Adjustments */
@media (max-width: 991px) {
  .clay-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .clay-footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .clay-main-footer {
    padding-top: 40px;
  }
  .clay-footer-bottom-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}