/* ==========================================================================
   NAZORA SERAMİK - Premium Glassmorphism Redesign
   ========================================================================== */

/* ==========================================================================
   CSS Custom Properties (Variables)
   ========================================================================== */
:root {
  /* Updated Premium Colors */
  --color-cream: #FAF7F2;
  --color-cream-dark: #E8E2D5;
  --color-terracotta: #B5634B;
  --color-terracotta-dark: #914833;
  --color-terracotta-light: #D1836D;
  --color-brown-dark: #2A1F17;
  --color-brown: #3E3025;
  --color-olive: #6B705C;
  --color-olive-light: #8A8D7B;
  --color-gold: #C9A96E;
  --color-gold-light: #E2C992;
  --color-white: #FFFFFF;
  --color-black: #0F0A07;

  /* Glassmorphism & Glow */
  --color-glass: rgba(255, 255, 255, 0.08);
  --color-glass-dark: rgba(42, 31, 23, 0.4);
  --color-glass-border: rgba(255, 255, 255, 0.15);
  --color-terracotta-glow: rgba(181, 99, 75, 0.4);
  --color-gold-glow: rgba(201, 169, 110, 0.4);

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
  --gradient-accent: linear-gradient(135deg, var(--color-terracotta), var(--color-gold));
  --gradient-mesh: radial-gradient(at 0% 0%, rgba(181,99,75,0.15) 0px, transparent 50%),
                   radial-gradient(at 100% 100%, rgba(201,169,110,0.15) 0px, transparent 50%);

  /* Typography */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-max: 1280px;
  --container-padding: 0 24px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Shadows */
  --shadow-sm: 0 4px 16px rgba(42, 31, 23, 0.06);
  --shadow-md: 0 12px 32px rgba(42, 31, 23, 0.1);
  --shadow-lg: 0 24px 48px rgba(42, 31, 23, 0.15);
  --shadow-glow: 0 0 24px var(--color-terracotta-glow);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.05);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-pill: 9999px;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.8; filter: drop-shadow(0 0 4px var(--color-gold)); }
  50% { opacity: 1; filter: drop-shadow(0 0 12px var(--color-gold)); }
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes slideInStagger {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollWheel {
  0% { top: 6px; opacity: 1; }
  100% { top: 18px; opacity: 0; }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-15px) translateX(-50%); }
  60% { transform: translateY(-7px) translateX(-50%); }
}

/* ==========================================================================
   1. Reset & Base
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--color-olive);
  background-color: var(--color-cream);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; transition: all var(--transition-normal); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ==========================================================================
   2. Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-brown-dark);
  line-height: 1.2;
  font-weight: 600;
}
h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
p { color: var(--color-olive); margin-bottom: 1.5rem; }

/* Gradient Text Utility */
.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   3. Container & Section
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}
.section { padding: var(--section-padding); position: relative; z-index: 1; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-header h2 { position: relative; display: inline-block; margin-bottom: 1.2rem; }
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   4. Loader
   ========================================================================== */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--color-brown-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease;
}
.loader-content { text-align: center; color: var(--color-white); }
.loader-logo { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 20px; }
.loader-logo span { color: var(--color-gold); font-style: italic; }
.loader-spinner {
  width: 50px; height: 50px; margin: 0 auto;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: spin 1s infinite linear;
}
@keyframes spin { 100% { transform: rotate(360deg); } }
body.loaded .page-loader { opacity: 0; pointer-events: none; }

/* ==========================================================================
   5. Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 36px; border-radius: var(--radius-pill);
  text-transform: uppercase; letter-spacing: 2px;
  font-size: 0.85rem; font-weight: 600;
  transition: all var(--transition-normal);
  text-align: center; position: relative; overflow: hidden;
  z-index: 1;
}
.btn-primary {
  background: var(--gradient-accent);
  color: var(--color-white);
  box-shadow: 0 10px 20px -10px var(--color-terracotta);
  border: none;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient-gold); opacity: 0;
  transition: opacity var(--transition-normal); z-index: -1;
}
.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover::before { opacity: 1; }

.btn-outline-light {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover {
  background: var(--color-white);
  color: var(--color-brown-dark);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

/* ==========================================================================
   6. NAVBAR (.navbar) Glassmorphism
   ========================================================================== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 24px 0; background-color: transparent;
  transition: all var(--transition-normal);
}
.navbar.scrolled {
  padding: 16px 0;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(181, 99, 75, 0.1);
  box-shadow: var(--shadow-glass);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 700;
  color: var(--color-white); z-index: 1001; transition: var(--transition-normal);
}
.nav-logo span { color: var(--color-gold); font-style: italic; }
.nav-logo:hover { text-shadow: 0 0 15px rgba(255, 255, 255, 0.4); }
.navbar.scrolled .nav-logo { color: var(--color-brown-dark); }
.navbar.scrolled .nav-logo:hover { text-shadow: 0 0 15px rgba(42, 31, 23, 0.2); }

.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a:not(.btn) {
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px;
  color: var(--color-white); position: relative; font-weight: 500;
  padding-bottom: 6px;
}
.navbar.scrolled .nav-links a:not(.btn) { color: var(--color-brown-dark); }

/* Gradient Underline */
.nav-links a:not(.btn)::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-gold);
  transition: width var(--transition-normal) var(--ease-spring);
}
.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after { width: 100%; }

.navbar.scrolled .btn-outline-light {
  background: var(--gradient-accent); color: var(--color-white); border: none;
  box-shadow: 0 4px 15px rgba(181, 99, 75, 0.3);
}
.navbar.scrolled .btn-outline-light:hover {
  transform: translateY(-2px); box-shadow: 0 8px 25px rgba(181, 99, 75, 0.4);
}

.hamburger {
  display: none; flex-direction: column; justify-content: space-between;
  width: 32px; height: 22px; z-index: 1001;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background-color: var(--color-white);
  transition: all var(--transition-normal);
  border-radius: 2px;
}
.navbar.scrolled .hamburger span { background-color: var(--color-brown-dark); }
.hamburger.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); background-color: var(--color-cream); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); background-color: var(--color-cream); }

/* Mobile Menu Stagger */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(42, 31, 23, 0.98);
  backdrop-filter: blur(15px);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  z-index: 999; opacity: 0; visibility: hidden; transition: all var(--transition-normal);
  gap: 30px;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-heading); font-size: 2.5rem; color: var(--color-cream);
  opacity: 0; transform: translateY(20px); transition: color var(--transition-normal);
}
.mobile-menu.active a { animation: slideInStagger 0.5s forwards var(--ease-spring); }
.mobile-menu a:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu a:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu a:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu a:nth-child(4) { animation-delay: 0.4s; }
.mobile-menu a:nth-child(5) { animation-delay: 0.5s; font-size: 1.5rem; margin-top: 20px; border: 1px solid var(--color-gold); padding: 12px 30px; border-radius: var(--radius-pill); }
.mobile-menu a:hover { color: var(--color-gold); }

/* ==========================================================================
   7. HERO (.hero) Cinematic
   ========================================================================== */
.hero {
  position: relative; height: 100vh; min-height: 800px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background-color: var(--color-brown-dark);
}
.hero-bg-image {
  position: absolute; inset: -5%;
  background-size: cover; background-position: center;
  background-image: url('../images/hero-bg.jpg');
  z-index: 0;
  animation: kenBurns 25s ease-out infinite alternate;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(42,31,23,0.6) 0%, rgba(42,31,23,0.4) 50%, rgba(42,31,23,0.8) 100%),
              radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}
/* Floating circles */
.hero::before, .hero::after {
  content: ''; position: absolute; border-radius: 50%;
  background: var(--gradient-gold); filter: blur(60px); opacity: 0.15; z-index: 1;
  animation: float 10s ease-in-out infinite;
}
.hero::before { width: 300px; height: 300px; top: -100px; left: -100px; }
.hero::after { width: 400px; height: 400px; bottom: -150px; right: -100px; animation-delay: -5s; }

.hero-pattern {
  position: absolute; inset: 0; opacity: 0.05;
  background-image: radial-gradient(var(--color-gold) 1px, transparent 1px);
  background-size: 30px 30px; z-index: 1;
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 900px; padding: 0 24px;
}
.hero-badge {
  display: inline-block; padding: 8px 28px;
  background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 169, 110, 0.4); border-radius: var(--radius-pill);
  color: var(--color-gold-light); font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 4px; margin-bottom: 32px; position: relative; overflow: hidden;
  animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) backwards 0.2s;
}
.hero-badge::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 3s infinite;
}
.hero-title {
  color: var(--color-white); margin-bottom: 30px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) backwards 0.4s;
}
.hero-title .highlight { position: relative; display: inline-block; }
.hero-title .highlight span {
  color: var(--color-gold); font-style: italic;
  text-shadow: 0 0 20px rgba(201, 169, 110, 0.4);
}
.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem); color: rgba(255, 255, 255, 0.85);
  max-width: 600px; margin: 0 auto 50px auto; font-weight: 300;
  animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) backwards 0.6s;
}
.hero-buttons {
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
  animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) backwards 0.8s;
}

.scroll-indicator {
  position: absolute; bottom: 50px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(255, 255, 255, 0.5); z-index: 2; font-size: 0.8rem;
  letter-spacing: 2px; text-transform: uppercase; animation: bounce 2.5s infinite;
}
.scroll-indicator .mouse {
  width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px; position: relative;
}
.scroll-indicator .mouse::after {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background-color: var(--color-gold);
  border-radius: 2px; animation: scrollWheel 2s infinite cubic-bezier(0.15, 0.41, 0.69, 0.94);
}

/* ==========================================================================
   8. FEATURED PRODUCTS & FILTER
   ========================================================================== */
.featured-section { background-color: var(--color-cream); }

.filter-buttons {
  display: flex; justify-content: center; align-items: center;
  gap: 16px; flex-wrap: wrap; margin-bottom: 60px;
}
.filter-btn {
  padding: 12px 32px; border-radius: var(--radius-pill);
  background: var(--color-white); color: var(--color-olive);
  font-size: 0.9rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 1px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.03);
  transition: all var(--transition-normal);
}
.filter-btn:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md);
  color: var(--color-terracotta);
}
.filter-btn.active {
  background: var(--gradient-accent); color: var(--color-white);
  box-shadow: var(--shadow-glow); border-color: transparent;
}

.featured-grid, .products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 40px;
}

/* ==========================================================================
   9. PRODUCT CARDS (.product-card) Premium Glassmorphism
   ========================================================================== */
.product-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); cursor: pointer;
  transition: all var(--transition-slow);
  position: relative;
}
.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(181, 99, 75, 0.15);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(181, 99, 75, 0.2);
}
.product-image {
  position: relative; height: 380px; overflow: hidden;
  background-color: var(--color-cream-dark);
}
.product-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-spring);
}
.product-card:hover .product-image img { transform: scale(1.1); }

.product-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42,31,23,0.8), transparent 70%);
  backdrop-filter: blur(2px); opacity: 0;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 30px; transition: all var(--transition-normal);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay .btn { transform: translateY(20px); transition: all 0.5s var(--ease-spring); }
.product-card:hover .product-overlay .btn { transform: translateY(0); }

.product-price-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--gradient-accent); color: var(--color-white);
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: bold;
  box-shadow: 0 4px 15px rgba(181,99,75,0.3); z-index: 2;
}

.product-info { padding: 30px; text-align: center; }
.product-category {
  display: inline-block; font-size: 0.75rem; color: var(--color-olive-light);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
  position: relative;
}
.product-category::after {
  content: ''; display: block; width: 20px; height: 1px;
  background: var(--color-gold); margin: 6px auto 0;
}
.product-info h3 {
  font-size: 1.5rem; margin-bottom: 0; transition: color var(--transition-normal);
}
.product-card:hover .product-info h3 { color: var(--color-terracotta); }

.product-image-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; background: linear-gradient(135deg, var(--color-cream-dark), var(--color-cream));
  color: var(--color-olive-light); opacity: 0.6; position: relative; overflow: hidden;
}
.product-image-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: shimmer 2.5s infinite; background-size: 200% 100%;
}
.product-card.hidden { display: none; }

/* ==========================================================================
   10. ABOUT SECTION (.about-section)
   ========================================================================== */
.about-section { background-color: var(--color-white); position: relative; overflow: hidden; }
.about-section::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(var(--color-cream-dark), transparent 70%); z-index: 0;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px;
  align-items: center; position: relative; z-index: 1;
}
.about-image {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-lg);
}
.about-image::before {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,0.5); border-radius: var(--radius-xl); z-index: 2; pointer-events: none;
}
.about-image-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; background: linear-gradient(135deg, #E8E2D5, #FAF7F2);
  color: var(--color-olive-light);
}
.about-image-placeholder svg { width: 64px; height: 64px; margin-bottom: 16px; opacity: 0.5; }

.about-text h2 { position: relative; display: inline-block; margin-bottom: 30px; }
.about-text p { font-size: 1.1rem; color: var(--color-brown); margin-bottom: 24px; }

.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 50px;
}
.stat-item {
  background: rgba(250, 247, 242, 0.6);
  backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-lg); padding: 30px 20px;
  text-align: center; box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}
.stat-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stat-number {
  font-family: var(--font-heading); font-size: 3rem; font-weight: 700;
  background: var(--gradient-gold); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; margin-bottom: 10px; line-height: 1;
}
.stat-label {
  font-size: 0.85rem; font-weight: 600; color: var(--color-olive);
  text-transform: uppercase; letter-spacing: 1px;
}

/* ==========================================================================
   11. TESTIMONIALS (.testimonials-section) Glassmorphism
   ========================================================================== */
.testimonials-section {
  position: relative; background: var(--color-brown-dark); color: var(--color-white);
  overflow: hidden;
}
.testimonials-section::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient-mesh); background-size: 200% 200%;
  animation: gradient-shift 15s ease infinite; opacity: 0.6;
}
.testimonials-section .section-header h2 { color: var(--color-white); }
.testimonials-section .section-header p { color: rgba(255,255,255,0.7); font-size: 1.1rem; }

.testimonials-wrapper { position: relative; max-width: 900px; margin: 0 auto; z-index: 2; }
.testimonials-track { display: flex; transition: transform 0.6s var(--ease-spring); }
.testimonial-card {
  min-width: 100%; padding: 50px; text-align: center;
  background: var(--color-glass-dark); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px); border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-xl); position: relative;
}
.testimonial-card::before {
  content: '”'; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-heading); font-size: 8rem; line-height: 1;
  background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  opacity: 0.15; z-index: -1;
}
.testimonial-stars {
  color: var(--color-gold); font-size: 1.5rem; margin-bottom: 24px; letter-spacing: 4px;
  animation: pulse-glow 3s infinite;
}
.testimonial-quote {
  font-family: var(--font-heading); font-size: 1.8rem; font-style: italic;
  color: var(--color-white); line-height: 1.6; margin-bottom: 30px;
}
.testimonial-author-name {
  display: block; font-size: 1rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: var(--color-gold-light);
}

.carousel-controls {
  position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%);
  display: flex; justify-content: space-between; pointer-events: none; z-index: 10;
}
.carousel-btn {
  width: 50px; height: 50px; border-radius: 50%; pointer-events: auto;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.2); color: var(--color-white); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition-normal); transform: translateX(-25px);
}
.carousel-btn.next-btn { transform: translateX(25px); }
.carousel-btn:hover { background: var(--color-gold); border-color: var(--color-gold); transform: scale(1.1) translateX(-22px); }
.carousel-btn.next-btn:hover { transform: scale(1.1) translateX(22px); }

.carousel-dots {
  display: flex; justify-content: center; gap: 12px; margin-top: 40px;
}
.carousel-dot {
  width: 10px; height: 10px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.2); transition: all 0.4s var(--ease-spring);
}
.carousel-dot.active { width: 30px; background: var(--color-gold); }

/* ==========================================================================
   12. CONTACT SECTION (.contact-section)
   ========================================================================== */
.contact-section { background-color: var(--color-cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form-wrapper, .contact-info-wrapper {
  background: var(--color-white); border-radius: var(--radius-xl);
  padding: 50px; box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.02);
}
.contact-form-wrapper h3, .contact-info-wrapper h3 { margin-bottom: 15px; }
.contact-form-wrapper p, .contact-info-wrapper p { margin-bottom: 30px; font-size: 1.05rem; }

.form-group { margin-bottom: 24px; position: relative; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600; color: var(--color-olive);
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px;
  transition: color var(--transition-fast);
}
.form-group input, .form-group textarea {
  width: 100%; padding: 16px 20px; border-radius: var(--radius-md);
  border: 1px solid var(--color-cream-dark); background: var(--color-cream);
  font-family: inherit; font-size: 1rem; color: var(--color-brown-dark);
  transition: all var(--transition-normal); outline: none;
}
.form-group textarea { height: 150px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--color-terracotta); background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(181, 99, 75, 0.1);
}
.form-group input:focus + label, .form-group textarea:focus + label { color: var(--color-terracotta); }

.contact-info-item {
  display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px;
  padding: 20px; border-radius: var(--radius-lg);
  background: rgba(250, 247, 242, 0.5); transition: all var(--transition-normal);
  border: 1px solid transparent;
}
.contact-info-item:hover {
  background: var(--color-white); transform: translateX(10px);
  box-shadow: var(--shadow-sm); border-color: var(--color-cream-dark);
}
.contact-icon {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--gradient-accent); color: var(--color-white);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  flex-shrink: 0; box-shadow: 0 4px 10px rgba(181,99,75,0.2);
}
.contact-details h4 { font-family: var(--font-body); font-size: 1rem; margin-bottom: 5px; }
.contact-details p { margin: 0; font-size: 1.1rem; color: var(--color-olive); }
.contact-details a:hover { color: var(--color-terracotta); }

.social-links { display: flex; gap: 15px; margin-top: 40px; }
.social-link {
  width: 45px; height: 45px; border-radius: 50%;
  background: var(--color-cream); color: var(--color-olive);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  transition: all var(--transition-normal); border: 1px solid var(--color-cream-dark);
}
.social-link:hover {
  background: var(--gradient-accent); color: var(--color-white);
  transform: translateY(-5px); border-color: transparent; box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   13. FOOTER (.footer) Premium
   ========================================================================== */
.footer {
  background-color: var(--color-brown-dark); color: var(--color-white);
  padding: 100px 0 30px; position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 50px;
  background: var(--color-cream);
  clip-path: polygon(100% 0, 0 0, 0 100%, 100% 0);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 80px;
}
.footer-brand .nav-logo { display: inline-block; margin-bottom: 20px; }
.footer-brand p { color: rgba(255,255,255,0.7); max-width: 300px; }

.footer-col h4 {
  color: var(--color-gold); font-family: var(--font-body); font-size: 1.1rem;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 15px; }
.footer-col a {
  color: rgba(255,255,255,0.7); position: relative; display: inline-block; padding-bottom: 2px;
}
.footer-col a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--color-gold); transition: width var(--transition-normal);
}
.footer-col a:hover { color: var(--color-white); }
.footer-col a:hover::after { width: 100%; }

.newsletter-form {
  display: flex; margin-top: 20px; position: relative;
  background: rgba(255,255,255,0.05); border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(5px);
  padding: 5px; transition: border-color var(--transition-normal);
}
.newsletter-form:focus-within { border-color: var(--color-gold); }
.newsletter-form input {
  flex: 1; background: transparent; border: none; padding: 12px 20px;
  color: var(--color-white); font-family: inherit; outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
  background: var(--gradient-gold); color: var(--color-brown-dark);
  padding: 10px 24px; border-radius: var(--radius-pill); font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem;
  transition: transform var(--transition-normal);
}
.newsletter-form button:hover { transform: scale(1.05); }

.footer-bottom {
  text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5); font-size: 0.9rem; position: relative;
}
.footer-bottom a { color: var(--color-gold); margin-left: 5px; }
.footer-bottom a:hover { color: var(--color-white); text-decoration: underline; }

/* ==========================================================================
   14. UTILITIES (Back to Top, Toast, Animations)
   ========================================================================== */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px;
  background: var(--gradient-accent); color: var(--color-white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; z-index: 99;
  transition: all var(--transition-normal); transform: translateY(20px);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-5px); box-shadow: var(--shadow-glow); }

.toast {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: rgba(42, 31, 23, 0.95); color: var(--color-white); padding: 16px 32px;
  border-radius: var(--radius-pill); box-shadow: var(--shadow-lg); font-size: 0.95rem;
  z-index: 1000; opacity: 0; transition: all 0.5s var(--ease-spring);
  backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1);
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

.reveal, .reveal-left, .reveal-right,
.reveal.active, .reveal-left.active, .reveal-right.active {
  opacity: 1 !important;
  transform: none !important;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section { background: var(--bg-color); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(181,99,75,0.15);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.faq-item:hover { border-color: var(--primary); box-shadow: 0 4px 20px rgba(181,99,75,0.1); }
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  color: var(--text);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ==========================================================================
   PROCESS / CASE STUDY SECTION
   ========================================================================== */
.process-section { background: var(--dark); color: #fff; }
.process-section .section-header h2 { color: #fff; }
.process-section .section-header p { color: rgba(255,255,255,0.6); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}
.process-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.1);
  border-color: var(--accent);
}
.process-number {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(201,169,110,0.2);
}
.process-icon { font-size: 3rem; margin-bottom: 16px; }
.process-card h3 {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 12px;
}
.process-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.6; }

/* ==========================================================================
   MAP SECTION
   ========================================================================== */
.map-section { background: var(--bg-color); }
.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  margin-bottom: 24px;
}
.map-container iframe { display: block; width: 100%; min-height: 350px; }
.map-address {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 20px;
  text-align: center;
}
.map-address p { font-size: 0.95rem; color: var(--text); }
.map-address a { color: var(--primary); text-decoration: none; }
.map-address a:hover { text-decoration: underline; }

/* ==========================================================================
   FLOATING CTA BAR
   ========================================================================== */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.floating-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  text-decoration: none;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.phone-btn { background: var(--primary); color: #fff; }
.phone-btn:hover { background: #a0543e; }
.shop-btn { background: var(--accent); color: var(--dark); }
.shop-btn:hover { background: #b8985f; }
.cta-icon { font-size: 1.2rem; }

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--text);
}
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* ==========================================================================
   15. RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
  .about-grid, .contact-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 15px; }
}

@media (max-width: 768px) {
  :root { --section-padding: 80px 0; }
  
  .hamburger { display: flex; }
  .nav-links { display: none; }
  
  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 500px; margin: 0 auto 30px; }
  
  .contact-grid { grid-template-columns: 1fr; }
  
  .testimonial-card { padding: 30px 20px; }
  .testimonial-quote { font-size: 1.3rem; }
  
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-col ul { align-items: center; }
  .footer-brand p { margin: 0 auto; }
}

@media (max-width: 576px) {
  :root { --section-padding: 60px 0; }
  
  .about-stats { grid-template-columns: 1fr; }
  .stat-item { padding: 20px; }
  
  .contact-form-wrapper, .contact-info-wrapper { padding: 30px 20px; }
  
  .filter-btn { padding: 8px 20px; font-size: 0.8rem; }
  
  .carousel-btn { display: none; } /* Hide arrows on very small screens, keep dots */
}

@media (max-width: 768px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .process-card { padding: 24px 16px; }
  .map-address { flex-direction: column; gap: 8px; }
  .footer { padding-bottom: 70px; } /* Space for floating CTA */
  .back-to-top { bottom: 70px; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .faq-question { font-size: 0.95rem; padding: 16px 20px; }
  .floating-cta-btn { padding: 12px; font-size: 0.85rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
