/* ========================================
   VHEORA.CO — Global Luxury Jewelry Brand
   Design System & Styles
   ======================================== */

/* Fonts loaded via <link> in HTML for performance */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors — Luxury Green & Cream Palette */
  --color-black: #FBF6F0;
  --color-dark: #FBF6F0;
  --color-dark-surface: #F0EAE2;
  --color-dark-card: #FFFFFF;
  --color-dark-border: #D4D9D6;
  --color-gold: #0D3A35;
  --color-gold-light: #276152;
  --color-gold-dark: #082420;
  --color-amber: #B1B7AB;
  --color-white: #0D3A35;
  --color-charcoal: #0D3A35;
  --color-white-soft: #276152;
  --color-gray: #7A8A85;
  --color-accent-blue: #276152;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #0D3A35 0%, #276152 50%, #0D3A35 100%);
  --gradient-gold-horizontal: linear-gradient(90deg, #082420, #276152, #0D3A35);
  --gradient-dark: linear-gradient(180deg, #FBF6F0 0%, #F0EAE2 100%);
  --gradient-hero: linear-gradient(135deg, #FBF6F0 0%, #F0EAE2 40%, #E8E2DA 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(251, 246, 240, 0.9));
  --gradient-glass: linear-gradient(135deg, rgba(13, 58, 53, 0.04), rgba(255, 255, 255, 0.03));

  /* Typography */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --font-accent: 'Montserrat', sans-serif;
  --font-heading: var(--font-display);

  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;
  --nav-offset: 88px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Borders */
  --border-gold: 1px solid rgba(13, 58, 53, 0.2);
  --border-subtle: 1px solid rgba(13, 58, 53, 0.06);

  /* Shadows */
  --shadow-gold: 0 4px 30px rgba(13, 58, 53, 0.1);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.04);
  --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.06);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* i18n: Prevent text overflow in translated content */
h1, h2, h3, h4, h5, h6, p, a, span, li, td, th, label, button, div {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  touch-action: manipulation;
  -ms-touch-action: manipulation;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-black);
  color: var(--color-white);
  line-height: 1.7;
  font-weight: 300;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
  -webkit-tap-highlight-color: rgba(13, 58, 53, 0.15);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

img.blur-up {
  filter: blur(10px);
  transition: filter 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
}

img.blur-up.loaded {
  filter: blur(0);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-body);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

input, textarea, select {
  font-family: var(--font-body);
  outline: none;
  border: none;
}

section[id] {
  scroll-margin-top: var(--nav-offset);
}

/* ---------- Utility Classes ---------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gradient-gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.section-title .gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-gray);
  line-height: 1.8;
  max-width: 560px;
  letter-spacing: 0.02em;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gradient-gold);
  margin: 32px 0;
  border-radius: 2px;
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
  will-change: auto;
}

.reveal.staggered {
  transition-delay: var(--reveal-delay, 0s);
}

.reveal-left.staggered {
  transition-delay: var(--reveal-delay, 0s);
}

.reveal-right.staggered {
  transition-delay: var(--reveal-delay, 0s);
}

.reveal-scale.staggered {
  transition-delay: var(--reveal-delay, 0s);
}

/* ---------- New Reveal Variants ---------- */
.reveal-rotate {
  opacity: 0;
  transform: rotate(-3deg) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}
.reveal-rotate.revealed {
  opacity: 1;
  transform: rotate(0) scale(1);
  will-change: auto;
}
.reveal-rotate.staggered {
  transition-delay: var(--reveal-delay, 0s);
}

.reveal-blur {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}
.reveal-blur.revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  will-change: auto;
}
.reveal-blur.staggered {
  transition-delay: var(--reveal-delay, 0s);
}

.line-draw {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.line-draw.revealed {
  transform: scaleX(1);
  will-change: auto;
}

.char-rise {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform, opacity;
}
.char-rise.revealed {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* Parallax items */
[data-parallax-speed] {
  will-change: transform;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
  will-change: auto;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
  will-change: auto;
}

/* ---------- Premium Micro-Animations ---------- */
@keyframes premium-fadeUp {
  from { opacity: 0; transform: translateY(60px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes premium-fadeLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes premium-fadeRight {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes premium-scale {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes premium-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes premium-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(13, 58, 53, 0.0); }
  50%      { box-shadow: 0 0 40px rgba(13, 58, 53, 0.12); }
}
@keyframes premium-float {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-14px); }
}
@keyframes premium-borderGlow {
  0%, 100% { border-color: rgba(13, 58, 53, 0.1); }
  50%      { border-color: rgba(13, 58, 53, 0.3); }
}
@keyframes premium-textReveal {
  from { clip-path: inset(0 100% 0 0); opacity: 0; }
  to   { clip-path: inset(0 0% 0 0); opacity: 1; }
}
@keyframes premium-imageReveal {
  from { clip-path: inset(100% 0 0 0); }
  to   { clip-path: inset(0 0 0 0); }
}
@keyframes premium-lineGrow {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); transform-origin: left; }
}
@keyframes premium-counterGlow {
  0%, 100% { text-shadow: 0 0 10px rgba(13, 58, 53, 0); }
  50%      { text-shadow: 0 0 20px rgba(13, 58, 53, 0.35); }
}

/* Cream theme soft pulse */
@keyframes cream-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 0.8; transform: scale(1.05); }
}
@keyframes cream-breathe {
  0%, 100% { box-shadow: 0 0 0 0 rgba(13, 58, 53, 0); }
  50%      { box-shadow: 0 0 0 12px rgba(13, 58, 53, 0.06); }
}
@keyframes cream-goldShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Animation classes — triggered by JS */
.anim-ready { opacity: 0; }
.anim-ready.anim-fadeUp      { animation: premium-fadeUp 1s cubic-bezier(0.16,1,0.3,1) forwards; }
.anim-ready.anim-fadeLeft    { animation: premium-fadeLeft 1s cubic-bezier(0.16,1,0.3,1) forwards; }
.anim-ready.anim-fadeRight   { animation: premium-fadeRight 1s cubic-bezier(0.16,1,0.3,1) forwards; }
.anim-ready.anim-scale       { animation: premium-scale 1s cubic-bezier(0.16,1,0.3,1) forwards; }
.anim-ready.anim-float       { animation: premium-float 4s ease-in-out infinite; }
.anim-ready.anim-glow        { animation: premium-glow 3s ease-in-out infinite; }
.anim-ready.anim-borderGlow  { animation: premium-borderGlow 3s ease-in-out infinite; }
.anim-ready.anim-shimmer     { background: linear-gradient(90deg,transparent,rgba(13,58,53,0.06),transparent); background-size: 200% 100%; animation: premium-shimmer 3s ease-in-out infinite; }
.anim-ready.anim-textReveal  { animation: premium-textReveal 1.2s cubic-bezier(0.16,1,0.3,1) forwards; }
.anim-ready.anim-imageReveal { animation: premium-imageReveal 1.2s cubic-bezier(0.16,1,0.3,1) forwards; }
.stat-number.counting { animation: premium-counterGlow 1.5s ease-in-out infinite; }

.anim-delay-1 { animation-delay: 0.1s !important; }
.anim-delay-2 { animation-delay: 0.2s !important; }
.anim-delay-3 { animation-delay: 0.3s !important; }
.anim-delay-4 { animation-delay: 0.4s !important; }
.anim-delay-5 { animation-delay: 0.5s !important; }
.anim-delay-6 { animation-delay: 0.6s !important; }
.anim-delay-7 { animation-delay: 0.7s !important; }
.anim-delay-8 { animation-delay: 0.8s !important; }

/* ---------- Navigation — Cartier Style ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 50px;
  background-color: #FBF6F0;
  border-bottom: 1px solid rgba(13, 58, 53, 0.15);
  transition: all var(--transition-base);
}

.navbar.scrolled {
  padding: 14px 50px;
  background: #FBF6F0;
  border-bottom: 1px solid rgba(13, 58, 53, 0.15);
  box-shadow: 0 2px 20px rgba(13, 58, 53, 0.04);
}

/* Scroll Progress Bar */
.nav-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(13, 58, 53, 0.4);
  z-index: 1001;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.gold-ticker {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1002;
  pointer-events: none;
}
.gold-ticker-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  background: rgba(13,58,53,0.08);
  border: 1px solid rgba(13,58,53,0.15);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
}
.gold-ticker-icon {
  font-size: 0.75rem;
}
.gold-ticker-label {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0.8;
}
.gold-ticker-value {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-gold);
  text-shadow: 0 0 8px rgba(13,58,53,0.3);
}
.gold-ticker-unit {
  font-size: 0.55rem;
  color: var(--color-gold);
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.gold-ticker-source {
  font-size: 0.5rem;
  padding: 1px 5px;
  background: rgba(13,58,53,0.2);
  border-radius: 3px;
  color: var(--color-gold);
  font-weight: 400;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .gold-ticker { top: 2px; }
  .gold-ticker-inner { padding: 3px 10px; gap: 4px; }
  .gold-ticker-label { font-size: 0.5rem; }
  .gold-ticker-value { font-size: 0.8rem; }
  .gold-ticker-source { display: none; }
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 6px;
  color: #0D3A35;
  text-decoration: none;
  background: none;
  -webkit-text-fill-color: initial;
}

.nav-logo span {
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 6px;
  display: block;
  text-align: center;
  margin-top: -4px;
  color: #7A8A85;
}

.nav-links {
  display: flex;
  gap: 0;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-charcoal);
  text-decoration: none;
  margin: 0 20px;
  transition: color 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #C5A880;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #C5A880;
}

.nav-links a:hover::after,
.nav-links a.active-link::after {
  width: 100%;
}

.nav-links a.active-link {
  color: #C5A880;
}

.nav-cta {
  padding: 10px 28px !important;
  background: transparent !important;
  border: 1px solid #0D3A35 !important;
  color: #0D3A35 !important;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.72rem !important;
  font-weight: 300;
  letter-spacing: 3px !important;
  text-transform: uppercase;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background: #0D3A35 !important;
  color: #FBF6F0 !important;
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  z-index: 1002;
  touch-action: manipulation;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: #0D3A35;
  transition: all var(--transition-base);
  border-radius: 1px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -5px);
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
}

/* Below-fold sections */
.services, .testimonials, .share-experience, .contact, .footer {
  will-change: auto;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: 0;
  width: 100%;
  max-width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(13, 58, 53, 0.06) 0%, transparent 70%);
  animation: pulse-glow 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 0;
  width: 100%;
  max-width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 58, 53, 0.03) 0%, transparent 70%);
  animation: pulse-glow 8s ease-in-out 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 1; }
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-content {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(13, 58, 53, 0.08);
  border: 1px solid rgba(13, 58, 53, 0.2);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 32px;
  animation: fadeInUp 1s 0.3s both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 200;
  line-height: 1.08;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  animation: fadeInUp 1s 0.5s both;
}

.hero-title .line {
  display: block;
}

.hero-title .gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .italic {
  font-style: italic;
  font-family: var(--font-accent);
  font-weight: 300;
  color: var(--color-white-soft);
}

.hero-description {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--color-gray);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 460px;
  animation: fadeInUp 1s 0.7s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
  animation: fadeInUp 1s 0.9s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: var(--gradient-gold);
  color: #FBF6F0;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary .btn-ripple,
.btn-secondary .btn-ripple,
.form-submit .btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: ripple-effect 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-effect {
  0% { transform: scale(0); opacity: 0.6; }
  100% { transform: scale(4); opacity: 0; }
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.04), transparent);
  transition: left 0.6s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--color-white-soft);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition-base);
}

.btn-secondary:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  animation: fadeInRight 1.2s 0.6s both;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 650px;
  padding: 4px;
  background: linear-gradient(145deg, #0D3A35, #276152);
  border-radius: 4px;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 2px;
  position: relative;
  z-index: 2;
  display: block;
}

.hero-frame-border {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  z-index: 3;
  pointer-events: none;
  border: 2px solid #D4A853;
  animation: frameCheetah 4s ease-in-out infinite;
}
@keyframes frameCheetah {
  0%, 100% {
    border-color: #D4A853;
    box-shadow:
      inset 0 0 8px rgba(212, 168, 83, 0.3),
      0 0 12px rgba(13, 58, 53, 0.2);
  }
  25% {
    border-color: #B1B7AB;
    box-shadow:
      inset 0 0 8px rgba(177, 183, 171, 0.3),
      0 0 12px rgba(13, 58, 53, 0.25);
  }
  50% {
    border-color: #0D3A35;
    box-shadow:
      inset 0 0 8px rgba(13, 58, 53, 0.4),
      0 0 12px rgba(13, 58, 53, 0.3);
  }
  75% {
    border-color: #276152;
    box-shadow:
      inset 0 0 8px rgba(39, 97, 82, 0.3),
      0 0 12px rgba(13, 58, 53, 0.25);
  }
}

.about-image-placeholder {
  width: 100%;
  border-radius: 4px;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #276152, #0D3A35);
  position: relative;
  z-index: 1;
}

.about-image-accent-placeholder {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 60%;
  aspect-ratio: 4/5;
  border-radius: 4px;
  border: 2px solid rgba(13, 58, 53, 0.2);
  background: linear-gradient(145deg, #0D3A35, #276152);
  z-index: 2;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(13, 58, 53, 0.15), transparent);
  filter: blur(15px);
  z-index: 0;
}

.hero-badge-circle {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 100px;
  height: 100px;
  background: rgba(251, 246, 240, 0.92);
  backdrop-filter: blur(4px);
  border: 3px solid #0D3A35;
  outline: 2px solid #276152;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  animation: badgePulse 3s ease-in-out infinite;
}
.hero-badge-circle span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: #0D3A35;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(13,58,53,0.2); }
  50% { transform: scale(1.05); box-shadow: 0 8px 30px rgba(13,58,53,0.3); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  animation: fadeInUp 1s 1.5s both;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(13, 58, 53, 0.3);
  border-radius: 14px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 2px;
  animation: scroll-dot 2s infinite;
  will-change: transform, opacity;
}

@keyframes scroll-dot {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(14px); opacity: 0; }
}

.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gray);
}


/* ---------- SHOWCASE / COLLECTION STRIP ---------- */
.showcase {
  padding: 80px 0;
  background: #F0EAE2;
  border-top: 1px solid rgba(13, 58, 53, 0.12);
  border-bottom: var(--border-subtle);
  position: relative;
}

.showcase-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(13, 58, 53, 0.3);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  color: var(--color-gold);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
}

.showcase-arrow:hover {
  background: rgba(13, 58, 53, 0.15);
  border-color: var(--color-gold);
  box-shadow: 0 0 20px rgba(13, 58, 53, 0.2);
}

.showcase-arrow-left {
  left: 16px;
}

.showcase-arrow-right {
  right: 16px;
}

.showcase-track {
  display: flex;
  gap: 40px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase-item {
  flex: 0 0 280px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.showcase-item img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  padding: 16px;
  background: #F0EAE2;
  transition: transform var(--transition-slow);
}

.showcase-item:hover img {
  transform: scale(1.08);
}

.showcase-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.showcase-item:hover .showcase-item-overlay {
  transform: translateY(0);
}

.showcase-item-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 4px;
}

.showcase-item-category {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
}

.showcase-item-price {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  font-family: var(--font-display);
}
.showcase-item-price .price-val {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-gold-light);
}
.showcase-item-price .price-unit {
  font-size: 0.55rem;
  color: var(--color-gold);
  opacity: 0.7;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- ABOUT SECTION ---------- */
.about {
  padding: var(--section-padding);
  background: var(--gradient-dark);
  position: relative;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  overflow: visible;
  border-radius: 4px;
}

.about-image {
  width: 100%;
  border-radius: 4px;
  position: relative;
  z-index: 1;
  border: 2px solid #0D3A35;
  outline: 3px solid #276152;
  outline-offset: 4px;
  animation: frameSlide 3s ease-in-out infinite;
}

@keyframes frameSlide {
  0%, 100% {
    outline-color: #276152;
    outline-offset: 4px;
    transform: scale(1);
  }
  50% {
    outline-color: #B1B7AB;
    outline-offset: 7px;
    transform: scale(1.005);
  }
}

.about-image-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 60%;
  border-radius: 4px;
  border: 2px solid rgba(13, 58, 53, 0.2);
  z-index: 2;
}

.about-experience-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(251, 246, 240, 0.92);
  backdrop-filter: blur(16px);
  border: 2px solid #0D3A35;
  outline: 2px solid #276152;
  outline-offset: 2px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(13, 58, 53, 0.18);
}

.about-experience-badge .number {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.about-experience-badge .label {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gray);
  text-align: center;
}

.about-content {
  max-width: 520px;
  text-align: center;
  margin: 0 auto;
}

.about-content .section-title {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.about-text {
  font-size: 1rem;
  color: var(--color-gray);
  line-height: 1.9;
  margin-bottom: 40px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(13, 58, 53, 0.12);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-top: 4px;
}

/* ---------- SERVICES SECTION ---------- */
.services {
  position: relative;
  padding: var(--section-padding);
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 58, 53, 0.04), transparent 70%);
  pointer-events: none;
}

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}

.services-header .section-label {
  justify-content: center;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  padding: 48px 32px;
  background: rgb(39, 97, 82);
  border: 1px solid rgba(251, 246, 240, 0.2);
  border-radius: 12px;
  text-align: center;
  transition: all var(--transition-base);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #FBF6F0, #D4A853);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  border-color: rgba(251, 246, 240, 0.4);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(13, 58, 53, 0.25);
}

.service-title {
  color: #FBF6F0;
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 20px;
  font-size: 1.8rem;
  transition: all var(--transition-base);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card:nth-child(1) .service-icon {
  background: linear-gradient(135deg, #C89B3C, #F0D080, #EDD9A8);
}

.service-card:nth-child(2) .service-icon {
  background: linear-gradient(135deg, #276152, #5A9E8E, #B1B7AB);
}

.service-card:nth-child(3) .service-icon {
  background: linear-gradient(135deg, #B8736D, #D49A94, #F0D8D0);
}

.service-card:nth-child(4) .service-icon {
  background: linear-gradient(135deg, #8B6F47, #B8986E, #D4C4A8);
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 8px 25px rgba(13, 58, 53, 0.25);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: #FBF6F0;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #FBF6F0 0%, #D4A853 50%, #FBF6F0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-description {
  font-size: 0.9rem;
  color: #FBF6F0;
  line-height: 1.7;
}

/* ---------- FEATURED PRODUCTS ---------- */
.featured {
  padding: var(--section-padding);
  background: var(--gradient-dark);
}

.featured-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 60px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(13, 58, 53, 0.2);
  transition: all var(--transition-base);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.product-card {
  perspective: 800px;
}

.product-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  transform-style: preserve-3d;
}

.product-card:hover .product-card-inner {
  transform: translateY(-8px);
}

.product-card:hover {
  border-color: rgba(13, 58, 53, 0.4);
  box-shadow: 0 20px 60px rgba(13, 58, 53, 0.2);
}

/* Skeleton loading cards */
.product-card.skeleton {
  pointer-events: none;
  min-height: 320px;
}
.skeleton-img {
  width: 100%;
  height: 220px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.skeleton-text {
  height: 14px;
  margin: 12px 16px 0;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}
.skeleton-text.short {
  width: 60%;
  height: 12px;
  margin-bottom: 16px;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Shimmer border on hover */
.product-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, transparent 0%, rgba(13, 58, 53, 0) 40%, rgba(13, 58, 53, 0.3) 50%, rgba(13, 58, 53, 0) 60%, transparent 100%);
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  pointer-events: none;
}

.product-card:hover::before {
  opacity: 1;
  animation: border-shimmer 1.5s ease infinite;
}

@keyframes border-shimmer {
  0% { background-position: 200% 50%; }
  100% { background-position: -200% 50%; }
}

/* Glow overlay on product image */
.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(13, 58, 53, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.product-card:hover .product-image::after {
  opacity: 1;
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: #E8E2DA;
  padding: 24px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--gradient-gold);
  color: var(--color-dark);
  font-size: 0.65rem;
  font-weight: 200;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.product-info {
  padding: 24px;
  background: linear-gradient(to bottom, transparent, rgba(13, 58, 53, 0.03));
  border-top: 1px solid rgba(13, 58, 53, 0.15);
}

.product-category {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 10px;
  opacity: 0.8;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 15px;
  letter-spacing: 0.04em;
}

.featured-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 14px;
  background: linear-gradient(135deg, rgba(200,155,60,0.12), rgba(200,155,60,0.04));
  border: 1px solid rgba(200,155,60,0.25);
  border-radius: 6px;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: #C89B3C;
  letter-spacing: 0.02em;
}

.product-price-btn {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.product-price-btn:hover {
  background: var(--color-gold);
  color: var(--color-dark);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: var(--section-padding);
  background: #F0EAE2;
  position: relative;
  overflow-x: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: 60px;
  right: 10%;
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(13, 58, 53, 0.03);
  line-height: 1;
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
}

.testimonials-header .section-label {
  justify-content: center;
}

.testimonials-slider-wrapper {
  position: relative;
  padding: 20px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  min-height: 200px;
}

.testimonial-card {
  padding: 32px 28px;
  background: var(--gradient-glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(13, 58, 53, 0.15);
  border-radius: 12px;
  transition: all var(--transition-base);
  opacity: 1;
  transform: none;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: rgba(13, 58, 53, 0.2);
  transform: translateY(-4px);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13, 58, 53, 0.08);
  border: 1px solid rgba(13, 58, 53, 0.25);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.slider-btn:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  border-color: var(--color-gold);
  transform: scale(1.1);
}

/* ---------- TESTIMONIAL PAGINATION DOTS ---------- */
.testimonials-pages {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(13, 58, 53, 0.35);
  border: 1px solid rgba(13, 58, 53, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonial-dot.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  transform: scale(1.2);
}

.testimonial-dot:hover {
  background: rgba(13, 58, 53, 0.5);
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 24px 20px;
  }
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--color-gold);
  font-size: 0.9rem;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-white-soft);
  line-height: 1.7;
  margin-bottom: 24px;
  letter-spacing: 0.2px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--color-dark);
  font-size: 1.1rem;
}

.testimonial-name {
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--color-white);
}

.testimonial-location {
  font-size: 0.78rem;
  color: var(--color-gray);
  margin-top: 2px;
}

/* ---------- SHARE EXPERIENCE SECTION ---------- */
.share-experience {
  padding: var(--section-padding);
  background: var(--color-dark-surface);
  position: relative;
  overflow: hidden;
}

.share-header {
  text-align: center;
  margin-bottom: 60px;
}

.share-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}

.share-content {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
}

.share-form-container {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px;
  background: var(--gradient-glass);
  backdrop-filter: blur(15px);
  border: var(--border-subtle);
  border-radius: 12px;
  box-shadow: var(--shadow-elevated);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  min-width: 0;
}

.share-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 100%;
}

.share-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.share-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.share-form-group label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
}

.share-form-group input,
.share-form-group textarea {
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(13, 58, 53, 0.15);
  border-radius: 4px;
  color: var(--color-white-soft);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all var(--transition-fast);
  width: 100%;
  box-sizing: border-box;
}

.share-form-group input:focus,
.share-form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(13, 58, 53, 0.06);
  box-shadow: 0 0 0 3px rgba(13, 58, 53, 0.08);
}

.share-form-group input::placeholder,
.share-form-group textarea::placeholder {
  color: rgba(13, 58, 53, 0.35);
}

.share-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.share-form .form-submit {
  align-self: center;
  min-width: 200px;
}

/* Star rating */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 6px;
}

.star-rating input {
  display: none;
}

.star-rating .star {
  cursor: pointer;
  font-size: 2rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--color-gold);
  text-stroke: 1.5px var(--color-gold);
  transition: color 0.3s ease, transform 0.3s ease, -webkit-text-stroke 0.3s ease;
  line-height: 1;
}

.star-rating .star:hover,
.star-rating .star:hover ~ .star {
  color: var(--color-gold-dark);
  -webkit-text-stroke: 0;
  text-stroke: 0;
  transform: scale(1.2);
}

.star-rating input:checked + .star,
.star-rating input:checked ~ .star {
  color: var(--color-gold-dark);
  -webkit-text-stroke: 0;
  text-stroke: 0;
  transform: scale(1.1);
  animation: star-pop 0.3s ease;
}

@keyframes star-pop {
  0% { transform: scale(0.8); }
  50% { transform: scale(1.25); }
  100% { transform: scale(1.1); }
}

.share-visual {
  flex: 0 0 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-visual-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.share-diamond-icon {
  width: 160px;
  height: 160px;
  animation: shareDiamondFloat 3s ease-in-out infinite;
}

.share-diamond-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 30px rgba(13, 58, 53, 0.2));
}

@keyframes shareDiamondFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.share-visual-text {
  color: var(--color-gray);
  font-size: 0.95rem;
  font-style: italic;
  max-width: 220px;
  line-height: 1.6;
}

.share-visual-stars {
  font-size: 1.3rem;
  letter-spacing: 4px;
  color: var(--color-gold);
  animation: shareStarsPulse 2s ease-in-out infinite;
}

@keyframes shareStarsPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.luxury-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%; /* Take full container width */
}

.luxury-form .form-group {
  width: 100%;
}

.luxury-form textarea {
  width: 100%;
  min-height: 150px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(13, 58, 53, 0.15);
  border-radius: 4px;
  color: var(--color-white);
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
  transition: all var(--transition-fast);
}

.luxury-form .form-group input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(13, 58, 53, 0.15);
  border-radius: 4px;
  color: var(--color-white-soft);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.luxury-form .form-group input::placeholder {
  color: rgba(13, 58, 53, 0.35);
}

.luxury-form .form-group input:focus {
  border-color: var(--color-gold);
  background: rgba(13, 58, 53, 0.06);
  box-shadow: 0 0 0 3px rgba(13, 58, 53, 0.08);
}

.luxury-form .form-group select,
#revCountry {
  width: 100%;
  padding: 14px 40px 14px 18px;
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
  background-color: rgba(0, 0, 0, 0.03);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%230D3A35' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  border: 1px solid rgba(13, 58, 53, 0.15);
  border-radius: 4px;
  color: var(--color-white-soft);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.luxury-form .form-group select:invalid,
#revCountry:invalid {
  color: rgba(255, 255, 255, 0.35);
}

.luxury-form .form-group select:focus,
#revCountry:focus {
  outline: none;
  border-color: var(--color-gold);
  background-color: rgba(26, 26, 36, 0.98);
  box-shadow: 0 0 0 3px rgba(13, 58, 53, 0.1);
}

.luxury-form .form-group select option,
#revCountry option {
  background-color: #FFFFFF;
  color: var(--color-white-soft);
  padding: 10px;
}

.luxury-form .form-group select option:checked,
#revCountry option:checked {
  background-color: #2a2438;
  color: var(--color-gold-light);
}

.luxury-form .form-group select option[disabled],
#revCountry option[disabled] {
  color: rgba(0, 0, 0, 0.35);
}

.luxury-form textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(0, 0, 0, 0.05);
}

.luxury-form .form-submit {
  align-self: center; /* Center the submit button */
  min-width: 200px;
}

@media (max-width: 768px) {
  .share-experience {
    padding: 80px 0;
  }
  .share-content {
    flex-direction: column;
    gap: 32px;
  }
  .share-form-container {
    padding: 32px 20px;
    margin: 0 15px;
    max-width: calc(100% - 30px);
    overflow-x: hidden;
  }
  .share-visual {
    flex: none;
    order: -1;
  }
  .share-diamond-icon {
    width: 120px;
    height: 120px;
  }
  .share-form-row {
    grid-template-columns: 1fr;
  }
  .share-form-container {
    padding: 28px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .star-rating .star {
    font-size: 1.5rem;
  }
}

/* ---------- CONTACT SECTION ---------- */
.contact {
  padding: var(--section-padding);
  background: var(--gradient-dark);
  position: relative;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  max-width: 480px;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 58, 53, 0.08);
  border: 1px solid rgba(13, 58, 53, 0.15);
  border-radius: 12px;
  font-size: 1.1rem;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
}

.contact-item-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 0.95rem;
  color: var(--color-white-soft);
  line-height: 1.5;
  overflow-wrap: break-word;
  word-break: break-word;
}

.contact-socials {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(13, 58, 53, 0.15);
  border-radius: 50%;
  color: var(--color-gray);
  font-size: 1rem;
  transition: all var(--transition-base);
}

.social-link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(13, 58, 53, 0.2);
}

.whatsapp-link {
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  border: none !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  position: relative;
}

.whatsapp-link:hover {
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  transform: translateY(-5px) scale(1.1);
}

.whatsapp-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: whatsapp-pulse 2s infinite;
  pointer-events: none;
}

@keyframes whatsapp-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Contact Form */
.contact-form-wrapper {
  padding: 48px;
  background: var(--gradient-glass);
  backdrop-filter: blur(15px);
  border: var(--border-subtle);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
}

/* Float Label Styles */
.form-group {
  position: relative;
}

.form-group.float-label input:focus + label,
.form-group.float-label input:not(:placeholder-shown) + label,
.form-group.float-label textarea:focus + label,
.form-group.float-label textarea:not(:placeholder-shown) + label {
  transform: translateY(-28px) scale(0.85);
  opacity: 0.8;
}

.form-group.float-label label {
  position: absolute;
  top: 14px;
  left: 18px;
  font-size: 0.85rem;
  color: var(--color-gray);
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.3px;
  text-transform: none;
  font-weight: 400;
}

.form-group.float-label input,
.form-group.float-label textarea {
  padding-top: 18px;
  padding-bottom: 10px;
}

/* Form success state */
.form-submit.success {
  background: linear-gradient(135deg, #2ecc71, #27ae60) !important;
  pointer-events: none;
}

.form-submit.success svg {
  animation: success-check 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes success-check {
  0% { transform: scale(0) rotate(-45deg); }
  100% { transform: scale(1) rotate(0); }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  min-width: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  min-width: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(13, 58, 53, 0.15);
  border-radius: 6px;
  color: var(--color-white);
  font-size: 0.95rem;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  transition: all var(--transition-fast);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%230D3A35' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(13, 58, 53, 0.4);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(13, 58, 53, 0.4);
  background: rgba(13, 58, 53, 0.04);
  box-shadow: 0 0 0 3px rgba(13, 58, 53, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  padding: 16px 48px;
  background: var(--gradient-gold);
  color: #FBF6F0;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  align-self: flex-start;
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.04), transparent);
  transition: left 0.6s;
}

.form-submit:hover::before {
  left: 100%;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 60px 0 30px;
  background: var(--color-dark-surface);
  border-top: 1px solid rgba(13, 58, 53, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo {
  margin-bottom: 20px;
  display: inline-block;
}

.footer-brand-text {
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--color-gray);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 8px;
}

.footer-bottom {
  position: relative;
  padding-top: 30px;
  border-top: 1px solid rgba(13, 58, 53, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 0.82rem;
  color: var(--color-gray);
}

.footer-copyright a {
  color: var(--color-gold);
}

.footer-legal {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--color-gray);
}

.footer-legal a:hover {
  color: var(--color-gold);
}

.footer-legal .admin-link {
  opacity: 0.15;
  text-decoration: none;
  margin-left: 16px;
  transition: none;
}

.footer-legal .admin-link:hover {
  opacity: 0.15;
}

/* ---------- MOBILE NAV OVERLAY ---------- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 999;
  touch-action: none;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

/* ---------- FLOATING WHATSAPP BUTTON ---------- */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: wa-float 3s ease-in-out infinite;
}

.float-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}

.float-wa svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.float-wa-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ff4d4d;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(255, 77, 77, 0.4);
  animation: wa-pulse 2s infinite;
}

@keyframes wa-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes wa-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.float-wa-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 400;
  white-space: nowrap;
  border: 1px solid rgba(13, 58, 53, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.float-wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid rgba(5, 5, 5, 0.95);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.float-wa:hover .float-wa-tooltip {
  opacity: 1;
  right: 78px;
}

@media (max-width: 768px) {
  .float-wa {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }
  .float-wa svg {
    width: 24px;
    height: 24px;
  }
  .float-wa-tooltip {
    display: none;
  }
}

/* ---------- TOAST NOTIFICATION ---------- */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(13, 58, 53, 0.2);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  min-width: 300px;
  max-width: 440px;
  animation: toast-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.toast.toast-out {
  animation: toast-out 0.3s ease both;
}

.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.toast-icon.success { background: rgba(0, 230, 118, 0.15); color: #00e676; }
.toast-icon.error { background: rgba(255, 77, 77, 0.15); color: #ff4d4d; }
.toast-icon.info { background: rgba(41, 121, 255, 0.15); color: #2979ff; }

.toast-body { flex: 1; }
.toast-title { font-size: 0.85rem; font-weight: 400; color: #fff; }
.toast-message { font-size: 0.78rem; color: var(--color-gray); margin-top: 2px; }

.toast-close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  color: var(--color-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s;
  flex-shrink: 0;
}

.toast-close:hover {
  background: rgba(0, 0, 0, 0.04);
  color: #fff;
}

@keyframes toast-in {
  from { transform: translateX(120%) scale(0.9); opacity: 0; }
  to { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes toast-out {
  from { transform: translateX(0) scale(1); opacity: 1; }
  to { transform: translateX(120%) scale(0.9); opacity: 0; }
}

@media (max-width: 480px) {
  .toast-container {
    top: 12px;
    right: 12px;
    left: 12px;
  }
  .toast {
    min-width: unset;
    max-width: unset;
  }
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 1200px) {
  :root {
    --container-width: 960px;
  }
}

@media (max-width: 1024px) {
  :root {
    --section-padding: 100px 0;
    --container-width: 720px;
  }

  .nav-links a {
    margin: 0 12px;
    font-size: 10px;
    letter-spacing: 2px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
    padding-top: calc(var(--nav-offset) + 80px);
  }

  .hero-content {
    max-width: 700px;
    margin: 0 auto;
  }

  .hero-description {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    max-width: 450px;
    margin: 0 auto;
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 72px 0;
    --container-padding: 0 20px;
    --nav-offset: 76px;
  }

  /* ===== MOBİL BÖLÜM ASİMETRİ DÜZELTMELERİ ===== */
  .about-visual {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
  }

  .about-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
  }

  .about-image-accent {
    width: 50%;
    right: 0;
    bottom: -10px;
    position: absolute;
    border-radius: 6px;
  }

  .about .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }

  .about-visual {
    width: 100%;
    max-width: 380px;
    order: 0;
  }

  .about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .about-content .section-label {
    justify-content: center;
  }

  .about-text {
    text-align: center;
    max-width: 480px;
  }

  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .about-stats .stat-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .services-header {
    margin-bottom: 40px;
  }

  .service-card {
    padding: 28px 18px;
    text-align: center;
    overflow: hidden;
  }

  .service-icon {
    margin: 0 auto 18px;
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .service-title {
    font-size: 0.88rem;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .service-description {
    font-size: 0.78rem;
    line-height: 1.5;
    margin-bottom: 0;
  }

  .featured-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-bottom: 24px;
  }

  .featured-header > div {
    max-width: 100%;
  }

  .featured-header .section-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
    line-height: 1.2;
    word-break: break-word;
  }

  .featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .product-card {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }

  .product-image {
    aspect-ratio: 1/1;
    padding: 16px;
  }

  .product-card:hover .product-card-inner {
    transform: none;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonial-card {
    padding: 24px 20px;
    font-size: 0.9rem;
    text-align: center;
  }

  .testimonials-header {
    text-align: center;
    margin-bottom: 36px;
  }

  .testimonials-header .section-label {
    justify-content: center;
  }

  .slider-controls {
    justify-content: center;
    margin-top: 20px;
  }

  .share-header {
    margin-bottom: 40px;
  }

  .share-content {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }

  .share-visual {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .share-visual-inner {
    flex-direction: row;
    gap: 16px;
    align-items: center;
  }

  .share-diamond-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
  }

  .share-visual-text {
    font-size: 0.88rem;
  }

  .share-form-container {
    padding: 24px 20px;
    border-radius: 12px;
    max-width: 100%;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 28px;
    width: 100%;
    max-width: 400px;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .contact-item-icon {
    width: 44px;
    height: 44px;
  }

  .contact-socials {
    justify-content: center;
  }

  .contact-form-wrapper {
    order: 2;
    padding: 28px 20px;
    background: #FFFFFF;
    border: 1px solid rgba(13, 58, 53, 0.15);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(13,58,53,0.4), transparent);
  }

  .form-row {
    gap: 12px;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 32px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand-text {
    max-width: 100%;
    font-size: 0.85rem;
    margin-bottom: 16px;
  }

  .contact-socials {
    justify-content: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-heading {
    font-size: 0.72rem;
    margin-bottom: 10px;
    padding-bottom: 8px;
    display: inline-block;
  }

  .footer-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 16px;
  }

  .footer-links a {
    font-size: 0.8rem;
    padding: 4px 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
  }

  .navbar {
    padding: 18px 20px;
  }

  .navbar.scrolled {
    padding: 12px 20px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(88vw, 360px);
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: calc(80px + env(safe-area-inset-top)) 28px calc(32px + env(safe-area-inset-bottom));
    background: #FBF6F0;
    border-left: 1px solid #B1B7AB;
    transition: right 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 3px;
    width: 100%;
    padding: 16px 0;
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(13, 58, 53, 0.15);
    color: var(--color-charcoal);
  }

  .nav-links a::after {
    display: none;
  }

  .lang-selector {
    width: 100%;
    margin: 16px 0 8px;
  }

  .lang-btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding: 12px 16px;
  }

  .lang-dropdown {
    position: static;
    display: none;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
  }

  .lang-dropdown.active {
    display: flex;
  }

  .lang-dropdown a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: none;
    padding: 12px 16px;
  }

  .nav-cta {
    margin-top: 16px;
    width: 100%;
    text-align: center;
    min-height: 48px;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .menu-toggle {
    display: flex;
  }

  .hero .container {
    padding-top: calc(var(--nav-offset) + 70px);
    padding-bottom: 80px;
    gap: 40px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }

  .hero-description {
    font-size: 0.98rem;
    margin-bottom: 32px;
  }

  .hero-badge {
    padding: 6px 16px;
    font-size: 0.62rem;
    letter-spacing: 2px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    gap: 12px;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    padding: 14px 24px;
  }

  .hero-visual {
    max-width: 100%;
    width: 100%;
  }

  .hero-image-wrapper {
    max-width: min(340px, 85vw);
    margin: 0 auto;
  }

  .hero-badge-circle {
    width: 72px;
    height: 72px;
    top: 10px;
    left: 10px;
  }
  .hero-badge-circle span {
    font-size: 0.5rem;
    letter-spacing: 1px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .showcase {
    padding: 48px 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }

  .showcase::-webkit-scrollbar {
    display: none;
  }

  .showcase-track {
    animation: none;
    gap: 16px;
    padding: 0 20px;
    transition: transform 0.1s ease-out;
  }

  .showcase-item {
    flex: 0 0 220px;
    scroll-snap-align: center;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
  }

  .showcase-item img {
    height: 280px;
    padding: 12px;
  }

  .showcase-item-overlay {
    transform: translateY(0);
    padding: 16px;
  }

  .about-image-accent {
    width: 55%;
    right: -10px;
    bottom: -20px;
  }

  .about-experience-badge {
    width: 90px;
    height: 90px;
    top: -10px;
    left: -10px;
  }

  .about-experience-badge .number {
    font-size: 1.3rem;
  }

  .about-experience-badge .label {
    font-size: 0.55rem;
  }

  .testimonials::before {
    font-size: 10rem;
    top: 40px;
    right: 5%;
  }

  .testimonial-card {
    padding: 28px 24px;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .slider-btn {
    width: 48px;
    height: 48px;
  }

  .form-group input,
  .form-group textarea,
  .luxury-form textarea,
  .luxury-form .form-group input,
  .luxury-form .form-group select,
  #revCountry,
  .form-group select {
    font-size: 16px;
    min-height: 48px;
    padding: 14px 16px;
  }

  .luxury-form .form-group select,
  #revCountry {
    padding-right: 40px;
    background-color: rgba(0, 0, 0, 0.03);
    color: var(--color-white-soft);
  }

  .form-submit {
    width: 100%;
    min-height: 52px;
    align-self: stretch;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .luxury-form .form-submit {
    width: 100%;
    min-width: unset;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
  }

  .about-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .section-label {
    letter-spacing: 3px;
    font-size: 0.7rem;
  }

  .section-label::before {
    width: 28px;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 0 16px;
    --section-padding: 64px 0;
  }

  .nav-logo {
    font-size: 20px;
    letter-spacing: 4px;
  }

  .nav-logo span {
    font-size: 0.55rem;
    letter-spacing: 3px;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero .container {
    min-height: auto;
    padding-top: calc(var(--nav-offset) + 60px);
  }

  .section-title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-item {
    justify-content: center;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-image {
    aspect-ratio: 1/1;
    padding: 12px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .testimonial-card {
    padding: 16px 14px;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    margin-bottom: 24px;
  }

  .footer-heading {
    font-size: 0.7rem;
  }

  .footer-links a {
    font-size: 0.8rem;
  }

  .showcase-item {
    flex: 0 0 180px;
  }

  .showcase-item img {
    height: 220px;
    padding: 8px;
  }

  .product-info {
    padding: 20px;
  }

  .contact-item-icon {
    width: 44px;
    height: 44px;
  }

  .social-link {
    width: 48px;
    height: 48px;
  }

  .loader-logo {
    font-size: 1.8rem;
    letter-spacing: 4px;
  }

  .loader-bar {
    width: 160px;
  }

  .quote-header h2 {
    font-size: 1.6rem;
    letter-spacing: 0.5px;
  }

  .order-track-container {
    padding: 24px 16px;
    width: 95%;
  }

  .about-experience-badge {
    width: 72px;
    height: 72px;
  }

  .about-experience-badge .number {
    font-size: 1.1rem;
  }

  .about-experience-badge .label {
    font-size: 0.48rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    letter-spacing: 1px;
  }

  .section-subtitle {
    font-size: 0.88rem;
    padding: 0 4px;
  }

  .support-body {
    padding: 20px;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-item-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .contact-item-label {
    font-size: 0.6rem;
    letter-spacing: 1.5px;
  }

  .contact-item-value {
    font-size: 0.85rem;
  }

  .contact-form-wrapper {
    padding: 20px 16px;
  }

  .star-rating .star {
    font-size: 1.3rem;
  }

  .testimonial-card {
    padding: 20px 16px;
  }

  .about-visual {
    max-width: 300px;
  }

  .about-stats {
    max-width: 320px;
    gap: 12px;
  }
}

/* Reduce motion for accessibility & mobile battery */
@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;
  }

  .showcase-track {
    animation: none;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-rotate,
  .reveal-blur,
  .line-draw,
  .char-rise,
  .anim-ready,
  [data-parallax-speed] {
    opacity: 1;
    transform: none;
    filter: none;
  }

  #loaderCanvas,
  #heroCanvas {
    display: none;
  }
}

/* Fix for iOS Safari viewport height */
@supports (-webkit-touch-callout: none) {
  .hero {
    min-height: -webkit-fill-available;
  }

  .nav-links {
    height: -webkit-fill-available;
  }
}

/* ---------- CUSTOM SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(13, 58, 53, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(13, 58, 53, 0.5);
}

/* ---------- ADMIN SECRET TRIGGER ---------- */
.admin-secret-trigger {
  position: absolute;
  right: 0;
  bottom: 0;
  background: none;
  border: none;
  color: rgba(0,0,0,0.06);
  cursor: pointer;
  padding: 8px;
  transition: color 0.4s ease;
  z-index: 1;
}
.admin-secret-trigger:hover {
  color: rgba(13,58,53,0.35);
}

/* ---------- ADMIN SECRET MODAL ---------- */
.admin-secret-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}
.admin-secret-overlay.active {
  opacity: 1;
  visibility: visible;
}
.admin-secret-modal {
  background: linear-gradient(145deg, #FFFFFF, #FBF6F0);
  border: 1px solid rgba(13,58,53,0.2);
  border-radius: 16px;
  padding: 40px 32px 32px;
  width: min(90vw, 420px);
  text-align: center;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 0 40px rgba(13,58,53,0.06);
}
.admin-secret-overlay.active .admin-secret-modal {
  transform: translateY(0) scale(1);
}
.admin-secret-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,58,53,0.08);
  border: 1px solid rgba(13,58,53,0.2);
  border-radius: 50%;
  color: var(--color-gold);
}
.admin-secret-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.admin-secret-subtitle {
  font-size: 0.85rem;
  color: var(--color-gray);
  margin-bottom: 24px;
}
.admin-secret-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  color: var(--color-white);
  font-size: 1rem;
  font-family: inherit;
  letter-spacing: 2px;
  text-align: center;
  outline: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}
.admin-secret-input:focus {
  border-color: rgba(13,58,53,0.5);
}
.admin-secret-error {
  color: #e74c3c;
  font-size: 0.82rem;
  min-height: 20px;
  margin-top: 8px;
}
.admin-secret-btn {
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  background: var(--gradient-gold);
  color: #0a0a0f;
  font-family: inherit;
  font-weight: 400;
  font-size: 0.95rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: opacity 0.3s ease, transform 0.2s ease;
}
.admin-secret-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.admin-secret-cancel {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  background: none;
  border: none;
  color: var(--color-gray);
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  transition: color 0.3s ease;
}
.admin-secret-cancel:hover {
  color: var(--color-white);
}

/* ---------- SELECTION ---------- */
::selection {
  background: rgba(13, 58, 53, 0.3);
  color: var(--color-white);
}

/* ==========================================
   CUSTOM CURSOR
   ========================================== */
/* Custom cursor - removed, using native cursor */

/* ---------- LOADING SCREEN ---------- */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #FBF6F0 0%, #FBF6F0 25%, #0D3A35 50%, #FBF6F0 75%, #FBF6F0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s ease;
}

.loader, .loader * {
  --color-white: #ffffff;
  --color-white-soft: rgba(255, 255, 255, 0.7);
  --color-gray: rgba(255, 255, 255, 0.5);
  --color-gold: #C89B3C;
  --color-gold-light: #F0D080;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 0.8s 0.2s both;
}

.loader-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}

.loader-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.loader-logo-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C89B3C, transparent);
  animation: loader-line-grow 1.5s 0.8s both;
}

@keyframes loader-line-grow {
  0% { transform: scaleX(0); opacity: 0; }
  100% { transform: scaleX(1); opacity: 1; }
}

.loader-logo {
  position: relative;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 200;
  letter-spacing: 12px;
  display: flex;
  gap: 2px;
  overflow: hidden;
  padding: 8px 0;
}

.loader-char {
  display: inline-block;
  background: linear-gradient(135deg, #C89B3C, #F0D080, #C89B3C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: loader-char-reveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(0.1s + var(--i) * 0.12s);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

@keyframes loader-char-reveal {
  0% { opacity: 0; transform: translateY(30px) rotateX(40deg); }
  100% { opacity: 1; transform: translateY(0) rotateX(0); }
}

.loader-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200, 155, 60, 0.12), transparent);
  animation: shimmer-slide 2.5s 1.5s infinite;
  pointer-events: none;
  will-change: transform;
}

@keyframes shimmer-slide {
  0% { left: -100%; }
  100% { left: 200%; }
}

.loader-sub {
  font-size: 0.65rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(200, 155, 60, 0.7);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeInUp 0.6s 1.2s both;
}

.loader-bar {
  width: 220px;
  height: 2px;
  background: rgba(200, 155, 60, 0.15);
  border-radius: 2px;
  position: relative;
  overflow: visible;
}

.loader-bar-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #C89B3C, #F0D080);
  border-radius: 2px;
  position: relative;
  transform-origin: left;
  transform: scaleX(0);
  animation: load-progress 2.2s 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  box-shadow: 0 0 12px rgba(200, 155, 60, 0.6);
  will-change: transform;
}

.loader-diamond-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 5px;
  animation: diamond-slide 2.2s 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  will-change: transform, opacity;
}

@keyframes diamond-slide {
  0% { left: 0; transform: translate(-50%, -50%); opacity: 0; }
  8% { opacity: 1; }
  100% { left: 100%; transform: translate(-50%, -50%); opacity: 1; }
}

.loader-diamond {
  width: 10px;
  height: 10px;
  background: #F0D080;
  transform: rotate(45deg);
  box-shadow: 0 0 12px #F0D080, 0 0 24px #C89B3C;
  animation: diamond-glow 2s 1s infinite alternate;
  will-change: transform, box-shadow;
}

@keyframes diamond-glow {
  0% { box-shadow: 0 0 12px #F0D080, 0 0 24px #C89B3C; }
  100% { box-shadow: 0 0 24px #F0D080, 0 0 48px #C89B3C, 0 0 72px rgba(200, 155, 60, 0.4); }
}

.loader-arrow {
  color: #F0D080;
  font-family: monospace;
  font-size: 14px;
  font-weight: 300;
  text-shadow: 0 0 10px #C89B3C;
  margin-left: -2px;
  animation: pulse-arrow 0.8s infinite alternate;
}

.loader-status {
  margin-top: 24px;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(200, 155, 60, 0.75);
  opacity: 0;
  animation: fadeInUp 0.6s 1.8s both;
}

@keyframes pulse-arrow {
  0% { transform: translateX(0); }
  100% { transform: translateX(4px); }
}

@keyframes load-progress {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

@media (max-width: 480px) {
  .loader-logo { font-size: 2rem; letter-spacing: 4px; }
  .loader-logo-wrapper { gap: 12px; }
  .loader-logo-line { width: 40px; }
  .loader-sub { font-size: 0.55rem; letter-spacing: 4px; }
  .loader-bar { width: 160px; }
}


/* ---------- LANGUAGE SELECTOR ---------- */
.lang-selector {
  position: relative;
  display: inline-block;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(13, 58, 53, 0.3);
  color: var(--color-white-soft);
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.lang-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--color-dark-card);
  border: var(--border-gold);
  border-radius: 4px;
  min-width: 140px;
  display: none;
  flex-direction: column;
  padding: 8px 0;
  margin-top: 8px;
  z-index: 1002;
  box-shadow: var(--shadow-card);
}

.lang-dropdown.active {
  display: flex;
}

.lang-dropdown a {
  padding: 10px 16px;
  font-size: 0.8rem;
  color: var(--color-white-soft);
  text-align: left;
  transition: all var(--transition-fast);
  letter-spacing: 0.5px;
  display: block;
}

.lang-dropdown a:hover {
  background: rgba(13, 58, 53, 0.08);
  color: var(--color-gold);
  padding-left: 20px;
}

/* Hide Google Translate UI Elements */
body {
  top: 0 !important;
}
.skiptranslate, .goog-te-banner-frame, #goog-gt-tt, .goog-te-balloon-frame {
  display: none !important;
  visibility: hidden !important;
}
font {
  background-color: transparent !important;
  box-shadow: none !important;
}

/* ---------- QUOTE MODAL ---------- */
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.quote-modal.active {
  opacity: 1;
  visibility: visible;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
}

.quote-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: #FFFFFF;
  border: 1px solid var(--color-dark-border);
  border-radius: 16px;
  padding: 50px 40px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
  transform: translateY(30px);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.quote-modal.active .quote-container {
  transform: translateY(0);
}

.quote-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.quote-close:hover {
  transform: rotate(90deg);
  color: var(--color-gold-light);
}

.quote-header {
  text-align: center;
  margin-bottom: 35px;
}

.quote-header h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--color-gold);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.quote-product-name {
  font-size: 1.1rem;
  color: var(--color-white-soft);
  font-weight: 400;
  font-family: var(--font-accent);
  font-style: italic;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quote-form input {
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(13, 58, 53, 0.2);
  border-radius: 8px;
  color: var(--color-white);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.quote-form input::placeholder {
  color: rgba(13, 58, 53, 0.4);
}

.quote-form input:focus {
  border-color: var(--color-gold);
  background: rgba(13, 58, 53, 0.05);
  box-shadow: 0 0 15px rgba(13, 58, 53, 0.1);
  outline: none;
}

.quote-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(13, 58, 53, 0.08);
  border: 1px solid rgba(13, 58, 53, 0.15);
  border-radius: 8px;
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.4);
  line-height: 1.4;
}

.quote-notice span {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-quote-submit {
  background: linear-gradient(135deg, #C89B3C, #F0D080);
  color: #0D3A35;
  padding: 15px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  cursor: pointer;
  width: 100%;
  min-height: 50px;
  box-sizing: border-box;
}

.btn-quote-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 155, 60, 0.35);
  background: linear-gradient(135deg, #F0D080, #C89B3C);
}

.btn-quote-submit:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 12px rgba(200, 155, 60, 0.3);
}

.btn-quote-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.quote-success {
  text-align: center;
  padding: 20px 0;
}

.quote-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: white;
  font-size: 1.8rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.quote-success h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.quote-success p {
  color: rgba(0, 0, 0, 0.4);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .quote-form-row {
    grid-template-columns: 1fr;
  }
  .quote-container {
    padding: 40px 24px;
  }
}

/* Update original product cards for Teklif Al button */
.product-price-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-price-btn:hover {
  background: var(--color-gold);
  color: var(--color-dark);
}

/* ========== ORDER TRACK MODAL ========== */
.order-track-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}
.order-track-modal.active {
  display: flex;
}
.order-track-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
}
.order-track-container {
  position: relative;
  background: var(--color-dark-surface);
  border: var(--border-gold);
  border-radius: 16px;
  padding: 40px;
  width: 90%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-elevated);
  animation: modalFadeIn 0.3s ease;
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.order-track-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--color-gray);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition-fast);
  line-height: 1;
}
.order-track-close:hover {
  color: var(--color-gold);
}
.order-track-header {
  margin-bottom: 28px;
  text-align: center;
}
.order-track-header h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-gold);
  margin-bottom: 8px;
}
.order-track-header p {
  color: var(--color-gray);
  font-size: 0.85rem;
}
.order-track-form .form-group {
  margin-bottom: 18px;
}
.order-track-form label {
  display: block;
  margin-bottom: 6px;
  color: var(--color-white-soft);
  font-size: 0.8rem;
  font-weight: 400;
}
.order-track-form input {
  width: 100%;
  padding: 12px 14px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  color: var(--color-white);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}
.order-track-form input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(13,58,53,0.1);
}
.order-track-form .form-submit {
  width: 100%;
  margin-top: 8px;
}
.track-result-card {
  text-align: left;
}
.track-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.track-result-header h3 {
  font-family: var(--font-display);
  color: var(--color-gold);
  font-size: 1.1rem;
}
.track-status-badge {
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.track-status-badge.status-pending { background: rgba(255,193,7,0.15); color: #ffc107; }
.track-status-badge.status-confirmed { background: rgba(33,150,243,0.15); color: #42a5f5; }
.track-status-badge.status-preparing { background: rgba(156,39,176,0.15); color: #ce93d8; }
.track-status-badge.status-shipped { background: rgba(13,58,53,0.15); color: var(--color-gold); }
.track-status-badge.status-delivered { background: rgba(76,175,80,0.15); color: #66bb6a; }
.track-status-badge.status-cancelled { background: rgba(244,67,54,0.15); color: #ef5350; }
.track-result-body {
  background: rgba(0,0,0,0.03);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 16px;
}
.track-info {
  padding: 6px 0;
  color: var(--color-white-soft);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.track-info:last-child {
  border-bottom: none;
}
.track-info strong {
  color: var(--color-white);
}
.track-items h4 {
  font-family: var(--font-display);
  color: var(--color-gold);
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.track-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: rgba(0,0,0,0.03);
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 0.85rem;
  color: var(--color-white-soft);
}
.track-item span:last-child {
  color: var(--color-gold);
  font-weight: 400;
}

/* ========== SUPPORT MODAL ========== */
.support-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.support-modal.active {
  opacity: 1;
  visibility: visible;
}
.support-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
}
.support-container {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: min(85vh, 700px);
  background: #FFFFFF;
  border: 1px solid var(--color-dark-border);
  border-radius: 16px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}
.support-modal.active .support-container {
  transform: translateY(0);
}
.support-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 1;
}
.support-close:hover {
  transform: rotate(90deg);
  color: var(--color-gold-light);
}
.support-header {
  text-align: center;
  padding: 40px 40px 0;
}
.support-header h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--color-gold);
  letter-spacing: 1px;
}
.support-header svg {
  display: block;
  margin: 0 auto 16px;
  width: 64px;
  height: 64px;
}
.support-body {
  padding: 28px 40px 40px;
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(13,58,53,0.3) transparent;
}
.support-body::-webkit-scrollbar {
  width: 6px;
}
.support-body::-webkit-scrollbar-thumb {
  background: rgba(13,58,53,0.3);
  border-radius: 3px;
}

/* -- Support Inner Content -- */
.support-section p {
  color: var(--color-white-soft);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.support-section p:last-child {
  margin-bottom: 0;
}

/* SSS Accordion */
.sss-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sss-item {
  border: 1px solid rgba(13, 58, 53, 0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.sss-item:hover {
  border-color: rgba(13, 58, 53, 0.35);
}
.sss-question {
  width: 100%;
  background: rgba(13, 58, 53, 0.04);
  border: none;
  color: var(--color-white);
  font-size: 0.88rem;
  font-weight: 400;
  padding: 16px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.3s;
}
.sss-question:hover {
  background: rgba(13, 58, 53, 0.08);
}
.sss-question .sss-icon {
  font-size: 0.7rem;
  color: var(--color-gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.sss-item.open .sss-question .sss-icon {
  transform: rotate(180deg);
}
.sss-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--color-white-soft);
  font-size: 0.85rem;
  line-height: 1.7;
}
.sss-item.open .sss-answer {
  max-height: 600px;
  padding: 4px 24px 16px;
}

/* Kargo Iade grid */
.kargo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.kargo-card {
  border: 1px solid rgba(13, 58, 53, 0.15);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: border-color 0.3s;
}
.kargo-card:hover {
  border-color: rgba(13, 58, 53, 0.4);
}
.kargo-card svg {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
.kargo-card h4 {
  color: var(--color-gold);
  font-size: 0.88rem;
  font-weight: 400;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.kargo-card p {
  color: var(--color-white-soft);
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
}
.kargo-card p:last-child {
  margin-bottom: 0;
}
.iade-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.iade-list li {
  color: var(--color-white-soft);
  font-size: 0.85rem;
  line-height: 1.6;
  padding-left: 24px;
  position: relative;
}
.iade-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 0.5rem;
  top: 6px;
}
.support-section h3 {
  color: var(--color-gold);
  font-size: 1rem;
  font-weight: 400;
  margin: 24px 0 12px;
  letter-spacing: 0.5px;
}
.support-section h3:first-child {
  margin-top: 0;
}

/* Bakim Rehberi cards */
.bakim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
.bakim-card {
  border-radius: 10px;
  padding: 18px;
  text-align: center;
}
.bakim-card.do {
  border: 1px solid rgba(76, 175, 80, 0.25);
  background: rgba(76, 175, 80, 0.06);
}
.bakim-card.dont {
  border: 1px solid rgba(244, 67, 54, 0.25);
  background: rgba(244, 67, 54, 0.06);
}
.bakim-card svg {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}
.bakim-card h4 {
  font-size: 0.82rem;
  font-weight: 400;
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}
.bakim-card.do h4 { color: #66bb6a; }
.bakim-card.dont h4 { color: #ef5350; }
.bakim-card p {
  color: var(--color-white-soft);
  font-size: 0.78rem;
  line-height: 1.5;
  margin: 0;
}
.bakim-extra {
  border-top: 1px solid rgba(13,58,53,0.15);
  padding-top: 16px;
  margin-top: 4px;
}
.bakim-extra h4 {
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.bakim-extra p {
  color: var(--color-white-soft);
  font-size: 0.82rem;
  line-height: 1.7;
  margin: 0;
}

/* Beden Rehberi table */
.beden-intro {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.beden-intro svg {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.beden-intro p {
  color: var(--color-white-soft);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}
.beden-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin-bottom: 20px;
}
.beden-table th {
  color: var(--color-gold);
  font-weight: 400;
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(13,58,53,0.2);
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}
.beden-table td {
  color: var(--color-white-soft);
  padding: 9px 12px;
  border-bottom: 1px solid rgba(13,58,53,0.08);
}
.beden-table tr:hover td {
  background: rgba(13,58,53,0.04);
}
.beden-ek {
  margin-top: 16px;
}
.beden-ek h4 {
  color: var(--color-gold);
  font-size: 0.88rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.beden-ek-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(13,58,53,0.06);
}
.beden-ek-item:last-child {
  border-bottom: none;
}
.beden-ek-item svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.beden-ek-item-content {
  flex: 1;
}
.beden-ek-item-content strong {
  display: block;
  color: var(--color-white);
  font-size: 0.85rem;
  margin-bottom: 2px;
}
.beden-ek-item-content span {
  color: var(--color-white-soft);
  font-size: 0.8rem;
}

@media (max-width: 600px) {
  .support-container {
    max-height: 90vh;
    border-radius: 12px;
  }
  .support-header {
    padding: 28px 20px 0;
  }
  .support-header h2 {
    font-size: 1.4rem;
  }
  .support-body {
    padding: 20px 20px 28px;
  }
  .kargo-grid {
    grid-template-columns: 1fr;
  }
  .bakim-grid {
    grid-template-columns: 1fr;
  }
  .beden-intro {
    flex-direction: column;
    text-align: center;
  }
  .sss-question {
    padding: 14px 16px;
    font-size: 0.82rem;
  }
  .sss-answer {
    font-size: 0.8rem;
    padding: 0 16px;
  }
  .sss-item.open .sss-answer {
    padding: 2px 16px 14px;
  }
}

/* ========== ADMIN TOOLBAR ==========
   Kaldırıldı */

/* ========== MOBİL SABİTLEME ========== */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }
  body {
    position: relative;
  }
  .container,
  .section,
  .featured-grid,
  .testimonials-grid,
  .about-stats,
  .footer-grid,
  .custom-left,
  .custom-right,
  .collection-header {
    max-width: 100%;
  }
  img, video, picture {
    max-width: 100%;
    height: auto;
  }
  .hero-section,
  .collection-showcase,
  .about-section,
  .featured-section,
  .contact-section,
  .footer {
    overflow-x: hidden;
  }
}

/* ================================================
   ENRICHED HOVER & AMBIENT ANIMATIONS
   ================================================ */

/* --- NAV --- */
.nav-logo {
  transition: transform 0.3s ease, filter 0.3s ease;
}
.nav-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px rgba(13, 58, 53, 0.4));
}
.gold-ticker-inner {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gold-ticker-inner:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(13, 58, 53, 0.2);
}
.gold-ticker-value {
  animation: goldPulse 3s ease-in-out infinite;
}
@keyframes goldPulse {
  0%, 100% { text-shadow: 0 0 8px rgba(13, 58, 53, 0.3); }
  50% { text-shadow: 0 0 16px rgba(13, 58, 53, 0.6); }
}
.nav-links a {
  transition: color 0.3s ease;
}
.lang-dropdown {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  pointer-events: none;
}
.lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* --- SERVICE CARDS --- */
.service-icon {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service-card:hover .service-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 8px 25px rgba(13, 58, 53, 0.25);
}

/* --- ABOUT --- */
.about-experience-badge {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: badgePulse 4s ease-in-out infinite;
}
.about-experience-badge:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(13, 58, 53, 0.3);
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(13, 58, 53, 0); }
  50% { box-shadow: 0 0 20px 4px rgba(13, 58, 53, 0.1); }
}
.about-image-accent {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.about-visual:hover .about-image-accent {
  transform: translate(-4px, -4px);
  box-shadow: 0 8px 30px rgba(13, 58, 53, 0.15);
}
.stat-item {
  transition: transform 0.3s ease;
}
.stat-item:hover {
  transform: translateY(-4px);
}
.gold-divider {
  transition: width 0.8s ease;
}
.gold-divider.revealed {
  width: 80px;
}

/* --- SHOWCASE --- */
.showcase-item {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease;
}
.showcase-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(13, 58, 53, 0.15);
}

/* --- PRODUCT CARDS --- */
.product-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.product-name {
  transition: color 0.3s ease;
}
.product-card:hover .product-name {
  color: var(--color-gold);
}
.featured-price {
  transition: color 0.3s ease;
}
.product-card:hover .featured-price {
  color: #F0D080;
}
.product-price-btn {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.product-card:hover .product-price-btn {
  transform: scale(1.02);
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}
.testimonial-avatar {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(13, 58, 53, 0.3);
}

/* --- SHARE EXPERIENCE --- */
.share-form-container {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(13, 58, 53, 0.15);
}
.share-form-container:hover {
  border-color: rgba(13, 58, 53, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 30px rgba(13, 58, 53, 0.05);
}

/* --- CONTACT --- */
.contact-item {
  padding: 16px;
  border-radius: 12px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.contact-item:hover {
  background: rgba(13, 58, 53, 0.04);
  transform: translateX(4px);
}
.contact-item-icon {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-item:hover .contact-item-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(13, 58, 53, 0.15);
}
.social-link {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.social-link:hover {
  transform: translateY(-3px) rotate(5deg) scale(1.1);
  box-shadow: 0 6px 24px rgba(13, 58, 53, 0.25);
}
.whatsapp-link:hover {
  transform: translateY(-5px) scale(1.15);
}

/* --- FOOTER --- */
.footer-col {
  transition: transform 0.3s ease;
}
.footer-col:hover {
  transform: translateY(-4px);
}
.footer-links a {
  transition: color 0.3s ease, transform 0.3s ease, padding-left 0.3s ease;
}
.footer-links a:hover {
  color: #C5A880;
  transform: translateX(4px);
  padding-left: 4px;
}
.footer-brand .nav-logo {
  transition: transform 0.3s ease, filter 0.3s ease;
}
.footer-brand .nav-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px rgba(13, 58, 53, 0.4));
}

/* --- MODALS --- */
.quote-modal.active .quote-container {
  animation: modalScaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes modalScaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.support-body .sss-item {
  transition: background 0.3s ease, border-color 0.3s ease;
}
.support-body .sss-item:hover {
  background: rgba(13, 58, 53, 0.05);
  border-color: rgba(13, 58, 53, 0.15);
}
.support-body .kargo-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.support-body .kargo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* --- TOAST --- */
.toast {
  animation: toastSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes toastSlideIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* --- COUNTER GLOW (activate dead premium code) --- */
.stat-number.counting {
  animation: premium-counterGlow 1.5s ease-in-out infinite;
}

/* --- SCROLL PROGRESS GLOW --- */
.nav-progress {
  transition: width 0.1s linear, box-shadow 0.3s ease;
}
.navbar.scrolled .nav-progress {
  box-shadow: 0 0 12px rgba(13, 58, 53, 0.5);
}

/* --- BTN HOVER DEPTH --- */
.btn-primary:hover {
  box-shadow: var(--shadow-gold), 0 0 20px rgba(13, 58, 53, 0.15);
}
.btn-secondary:hover {
  box-shadow: 0 0 20px rgba(13, 58, 53, 0.1);
}

/* ==========================================
   i18n — Translation-safe layout fixes
   ========================================== */

/* --- Text overflow protection --- */
.product-name,
.product-category,
.showcase-item-name,
.showcase-item-category,
.service-title,
.service-description,
.testimonial-text,
.testimonial-name,
.testimonial-location,
.footer-brand-text,
.footer-links a,
.contact-item-value,
.contact-item-label,
.quote-product-name,
.quote-notice,
.sss-question,
.sss-answer,
.kargo-card h4,
.kargo-card p,
.bakim-card h4,
.bakim-card p,
.tracking-result,
.track-info,
.stat-label,
.section-label,
.hero-description,
.about-text,
.contact-text,
.section-subtitle,
.section-title,
.hero-title .line,
.support-body,
.tracking-modal,
.quote-modal {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* --- Hero (mobil) --- */
/* --- Product badges --- */
.product-badge {
  max-width: calc(100% - 24px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --- Section max-width safety (mobil) --- */

/* --- Flex-wrap safety --- */
.footer-bottom {
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal {
  flex-wrap: wrap;
}
.testimonial-author {
  min-width: 0;
}
.testimonial-author > * {
  min-width: 0;
}

/* --- Showcase text overflow --- */
.showcase-item-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.showcase-item-category {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --- Buttons — allow wrapping for long translations --- */
.btn-primary,
.btn-secondary {
  text-align: center;
}

/* --- Stat labels — shorter letter-spacing on mobile --- */
@media (max-width: 768px) {
  /* Hero mobile */
  .hero-content {
    max-width: min(580px, 100%);
  }
  .hero-description {
    max-width: min(460px, 100%);
  }
  .hero-badge {
    max-width: min(340px, 100%);
    font-size: 0.6rem;
    letter-spacing: 2px;
    padding: 6px 14px;
  }
  .hero-buttons {
    flex-wrap: wrap;
  }

  /* Section max-width mobile */
  .section-subtitle,
  .services-header,
  .share-header .section-subtitle {
    max-width: min(600px, 100%);
  }
  .about-content {
    max-width: min(520px, 100%);
  }
  .contact-info {
    max-width: min(480px, 100%);
  }
  .footer-brand-text {
    max-width: min(400px, 100%);
  }
  .share-visual-text {
    max-width: min(220px, 100%);
  }

  /* Nav links mobile */
  .nav-links {
    flex-wrap: wrap;
  }
  .nav-links a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .stat-label {
    letter-spacing: 1px;
    font-size: 0.65rem;
  }
  .section-label {
    letter-spacing: 2px;
    font-size: 0.7rem;
  }
  .footer-links a {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
  }
  .nav-links a {
    letter-spacing: 1.5px;
  }
  .loader-sub {
    letter-spacing: 3px;
  }
  .product-price-btn {
    font-size: 0.65rem;
    letter-spacing: 1px;
    padding: 8px 16px;
  }
}

/* ==========================================
   RTL — Arabic language support
   ========================================== */
[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}
[dir="rtl"] .nav-links a::after {
  left: auto;
  right: 0;
}
[dir="rtl"] .footer-heading::after {
  left: auto;
  right: 0;
}
[dir="rtl"] .iade-list li {
  padding-left: 0;
  padding-right: 24px;
}
[dir="rtl"] .iade-list li::before {
  left: auto;
  right: 0;
}
[dir="rtl"] .form-group select,
[dir="rtl"] .luxury-form select,
[dir="rtl"] #revCountry {
  background-position: left 16px center;
  padding-right: 18px;
  padding-left: 40px;
}
[dir="rtl"] .footer-links a:hover {
  padding-left: 0;
  padding-right: 8px;
}
[dir="rtl"] .contact-item:hover {
  transform: translateX(-4px);
}
[dir="rtl"] .footer-links a:hover {
  transform: translateX(-4px);
}
[dir="rtl"] .sss-question {
  text-align: right;
}
[dir="rtl"] .form-group.float-label label {
  left: auto;
  right: 18px;
}
[dir="rtl"] .nav-links {
  right: -100%;
  left: auto;
}
[dir="rtl"] .nav-links.active {
  right: 0;
  left: auto;
}
[dir="rtl"] .quote-close {
  right: auto;
  left: 24px;
}
[dir="rtl"] .order-track-close {
  right: auto;
  left: 20px;
}
[dir="rtl"] .support-close {
  right: auto;
  left: 24px;
}
[dir="rtl"] .showcase-arrow-left {
  left: auto;
  right: 16px;
}
[dir="rtl"] .showcase-arrow-right {
  right: auto;
  left: 16px;
}
[dir="rtl"] .float-wa {
  right: auto;
  left: 20px;
}
[dir="rtl"] .float-wa-tooltip {
  right: auto;
  left: 72px;
}
[dir="rtl"] .float-wa-tooltip::after {
  right: auto;
  left: -6px;
  border-left: none;
  border-right: 6px solid transparent;
}
[dir="rtl"] .footer-links a {
  text-align: right;
}

/* ==========================================
   Additional overflow safety for all languages
   ========================================== */

/* Buttons — allow text wrapping for long translations */
.btn-primary,
.btn-secondary {
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}

/* Service page CTA groups */
.custom-cta-group {
  flex-wrap: wrap;
}
.custom-cta-group .btn-primary,
.custom-cta-group .btn-secondary {
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
  flex: 1 1 auto;
  min-width: 0;
}

/* Nav links wrapping (mobil) */

/* Stat labels wrapping */
.stat-label {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* SSS accordion text */
.sss-question,
.sss-answer {
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}

/* Footer links */
.footer-links {
  flex-wrap: wrap;
}
.footer-links a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Product price buttons */
.product-price-btn {
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
  text-align: center;
}

/* Section label overflow */
.section-label {
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}

/* Hero badge circle overflow */
.hero-badge-circle span {
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}

/* Service card text */
.service-title,
.service-description {
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}

/* Custom service page title + text */
.custom-title,
.custom-subtitle,
.custom-text {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Mobile: reduce CTA button font + letter-spacing */
@media (max-width: 768px) {
  .custom-left .btn-primary,
  .custom-left .btn-secondary {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    padding: 12px 20px;
  }
  .custom-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
  }
  .custom-subtitle {
    font-size: 1rem !important;
  }
  .custom-text {
    font-size: 0.88rem;
    line-height: 1.9;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card {
    padding: 28px 20px;
  }

  .service-icon {
    margin: 0 auto 22px;
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .service-title {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .service-description {
    font-size: 0.82rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .service-card {
    padding: 24px 16px;
  }

  .service-icon {
    margin: 0 auto 18px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .service-title {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .service-description {
    font-size: 0.76rem;
    line-height: 1.5;
  }
}

/* ---------- FAQ Section ---------- */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #FBF6F0 0%, #F0EAE2 100%);
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(13,58,53,0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #FFFFFF;
}

.faq-item:hover {
  border-color: rgba(13,58,53,0.25);
  box-shadow: 0 4px 20px rgba(13,58,53,0.08);
}

.faq-item[open] {
  border-color: rgba(39,97,82,0.3);
  box-shadow: 0 4px 24px rgba(13,58,53,0.1);
}

.faq-question {
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  color: #0D3A35;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #276152;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: #C89B3C;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
  content: '−';
  color: #276152;
}

.faq-answer {
  padding: 0 24px 18px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--color-gray);
  border-top: 1px solid rgba(13,58,53,0.08);
}

@media (max-width: 768px) {
  .faq-section {
    padding: 48px 0;
  }

  .faq-question {
    padding: 14px 18px;
    font-size: 0.88rem;
  }

  .faq-answer {
    padding: 0 18px 14px;
    font-size: 0.82rem;
  }
}

/* ==========================================
   PREMIUM UPGRADES — Button Animations, Scroll Reveal
   ========================================== */

/* --- Premium Button Animations --- */
.btn-primary {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, #D4A853, #C89B3C, #F0D080, #D4A853);
  background-size: 300% 300%;
  z-index: -2;
  opacity: 0;
  transition: opacity var(--transition-base);
  animation: gradientShift 3s ease infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  25% { background-position: 100% 0%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
  100% { background-position: 0% 50%; }
}
.btn-primary:hover::after {
  opacity: 1;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(200, 155, 60, 0.35), 0 0 0 3px rgba(200, 155, 60, 0.15);
}

.btn-secondary {
  position: relative;
  isolation: isolate;
}
.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
}
.btn-secondary:hover {
  border-color: transparent;
  color: #FBF6F0;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(13, 58, 53, 0.2);
}
.btn-secondary:hover::before {
  opacity: 1;
}

/* --- Enhanced Scroll Reveal --- */
.reveal {
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: blur(0px);
}
.reveal:not(.revealed) {
  filter: blur(4px);
}
.reveal-left:not(.revealed) {
  filter: blur(4px);
}
.reveal-right:not(.revealed) {
  filter: blur(4px);
}

/* --- Loading Skeleton Enhancement --- */
.skeleton {
  position: relative;
  overflow: hidden;
}
.skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: skeleton-shimmer 1.5s ease infinite;
  z-index: 1;
}
@keyframes skeleton-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}