/* ===================================================
   ÉLÉGANCE ESTHÉTIQUE SKIN CARE
   Premium Beauty & Skincare Website
   =================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dark: #A67C2E;
  --gold-glow: rgba(201, 168, 76, 0.3);
  --black: #0A0A0A;
  --black-soft: #141414;
  --black-card: #1A1A1A;
  --black-border: #2A2A2A;
  --white: #FEFEFE;
  --white-soft: #E8E8E8;
  --gray: #999;
  --gray-light: #CCC;
  --bg-gradient: linear-gradient(135deg, #0A0A0A 0%, #1A1310 50%, #0A0A0A 100%);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white-soft);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

a {
  text-decoration: none;
  color: var(--gold);
  transition: var(--transition);
}
a:hover { color: var(--gold-light); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Utility Classes ---------- */
.section-padding {
  padding: 100px 0;
}

.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.text-justify { text-align: justify; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 24px;
}

.section-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 650px;
  line-height: 1.8;
}

.section-subtitle.centered {
  margin: 0 auto;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  margin: 20px 0;
}

.gold-line.centered {
  margin: 20px auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.3);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
}

.nav-brand svg {
  width: 40px;
  height: 40px;
}

.nav-brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
}

.nav-brand span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: var(--white-soft);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta .btn {
  padding: 10px 24px;
  font-size: 0.78rem;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-gradient);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroGlow 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroGlow 10s ease-in-out infinite reverse;
}

@keyframes heroGlow {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.5; }
  50% { transform: scale(1.2) translate(30px, -20px); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
  animation: fadeInUp 0.8s 0.2s ease forwards;
  opacity: 0;
}

.hero h1 .gold-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .slogan {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--gold);
  font-style: italic;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.3s ease forwards;
  opacity: 0;
}

.hero p {
  font-size: 1.05rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
  animation: fadeInUp 0.8s 0.4s ease forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.5s ease forwards;
  opacity: 0;
}

.hero-decoration {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.08;
}

.hero-decoration svg {
  width: 500px;
  height: 500px;
}

/* Floating particles */
.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

/* ---------- About Section ---------- */
.about-section {
  background: var(--black-soft);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--black-card), var(--black-border));
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--gold), transparent, var(--gold));
  border-radius: 22px;
  z-index: -1;
  opacity: 0.3;
}

.about-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: var(--gold);
  text-align: center;
  padding: 40px;
}

.about-image-placeholder svg {
  width: 120px;
  height: 120px;
  fill: var(--gold);
  opacity: 0.3;
}

.about-image-placeholder p {
  font-size: 0.9rem;
  color: var(--gray);
  font-style: italic;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.about-text p {
  color: var(--gray-light);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* ---------- Services Section ---------- */
.services-section {
  background: var(--black);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 20px;
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.service-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--gold);
  transition: fill 0.3s ease;
}

.service-card:hover .service-icon svg {
  fill: var(--black);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

.service-card-img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

/* ---------- Service Detail Layout (Services Page) ---------- */
.services-detail-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 60px;
}

.service-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.service-detail-row.reverse {
  direction: rtl;
}

.service-detail-row.reverse > * {
  direction: ltr;
}

.service-detail-img {
  width: 100%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--black-border);
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-detail-row:hover .service-detail-img img {
  transform: scale(1.05);
}

.service-detail-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--black-card), var(--black-soft));
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail-placeholder svg {
  width: 80px;
  height: 80px;
  fill: var(--gold);
  opacity: 0.4;
}

.service-detail-content {
  position: relative;
}

.service-detail-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.12;
  position: absolute;
  top: -30px;
  left: -10px;
  line-height: 1;
  pointer-events: none;
}

.service-detail-content h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 16px;
}

.service-detail-content .gold-line {
  margin-bottom: 20px;
}

.service-detail-content p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.service-detail-short {
  font-style: italic;
  color: var(--gold) !important;
  opacity: 0.7;
  font-size: 0.92rem !important;
}

@media (max-width: 768px) {
  .service-detail-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .service-detail-row.reverse {
    direction: ltr;
  }
  .service-detail-img {
    height: 260px;
  }
  .service-detail-number {
    font-size: 3rem;
    top: -20px;
  }
  .service-detail-content h3 {
    font-size: 1.4rem;
  }
}

/* ---------- Product Slider Section ---------- */
.product-slider-section {
  background: var(--black-soft);
  position: relative;
  overflow: hidden;
}

.pslider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.pslider-track-container {
  overflow: hidden;
  flex: 1;
  border-radius: 16px;
}

.pslider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pslider-slide {
  min-width: 100%;
  opacity: 0.4;
  transition: opacity 0.6s ease;
}
.pslider-slide.active {
  opacity: 1;
}

.pslider-slide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05) 0%, rgba(10, 10, 10, 0.6) 100%);
  border: 1px solid var(--black-border);
  border-radius: 16px;
  padding: 32px;
  min-height: 350px;
}

.pslider-img {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--black);
}
.pslider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pslider-slide.active .pslider-img img {
  animation: psliderZoom 0.8s ease forwards;
}
@keyframes psliderZoom {
  from { transform: scale(1.08); opacity: 0.7; }
  to { transform: scale(1); opacity: 1; }
}

.pslider-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}

.pslider-info {
  padding: 16px 0;
}
.pslider-info h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 12px;
  animation: psliderFadeUp 0.6s ease 0.2s both;
}
.pslider-info p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
  animation: psliderFadeUp 0.6s ease 0.35s both;
}
.pslider-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
  animation: psliderFadeUp 0.6s ease 0.45s both;
}
.pslider-category {
  display: inline-block;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(201, 168, 76, 0.2);
  animation: psliderFadeUp 0.6s ease 0.55s both;
}

@keyframes psliderFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Slider buttons */
.pslider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--black-border);
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(8px);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.pslider-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: scale(1.1);
}
.pslider-btn svg {
  width: 22px;
  height: 22px;
}

/* Slider dots */
.pslider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.pslider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.4);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.pslider-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.4);
}
.pslider-dot:hover:not(.active) {
  background: rgba(201, 168, 76, 0.3);
}

/* ---------- Products Section ---------- */
.products-section {
  background: var(--black-soft);
  position: relative;
}

.products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.products-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.product-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 12px;
  transition: var(--transition);
}

.benefit-item:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}

.benefit-item svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  flex-shrink: 0;
}

.benefit-item span {
  font-size: 0.9rem;
  color: var(--white-soft);
}

.product-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.category-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.category-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.category-card:hover::after {
  opacity: 1;
}

.category-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.category-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.category-card:hover .category-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}

.category-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--gold);
  transition: fill 0.3s ease;
}

.category-card:hover .category-icon svg {
  fill: var(--black);
}

.category-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.category-card p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Product items grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.product-card-img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--black-soft), var(--black-border));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 24px;
}

.product-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.product-card-body p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-card-body .price {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ---------- Why Us Section ---------- */
.whyus-section {
  background: var(--black);
  position: relative;
}

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.whyus-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 16px;
  transition: var(--transition);
}

.whyus-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.whyus-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whyus-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
}

.whyus-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--white);
}

/* ---------- Contact Section ---------- */
.contact-section {
  background: var(--black-soft);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 16px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
}

.contact-info-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
}

.contact-info-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-form {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 20px;
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--white-soft);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--black);
  border: 1px solid var(--black-border);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-control::placeholder {
  color: var(--gray);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23C9A84C' viewBox='0 0 16 16'%3E%3Cpath d='M8 12L2 6h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  border-top: 1px solid var(--black-border);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
}

.footer-brand svg {
  width: 32px;
  height: 32px;
}

.footer-brand-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 4px;
}

.footer-desc {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  transition: fill 0.3s ease;
}

.footer-social a:hover svg {
  fill: var(--black);
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--gray);
  font-size: 0.85rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  color: var(--gray);
  font-size: 0.8rem;
}

.footer-bottom .od-credit {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: var(--transition);
}
.footer-bottom .od-credit::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.footer-bottom .od-credit:hover {
  color: #e0c060;
}
.footer-bottom .od-credit:hover::after {
  width: 100%;
}

/* ---------- Page Header ---------- */
.page-header {
  padding: 160px 0 80px;
  background: var(--bg-gradient);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--gray);
}

.breadcrumb a {
  color: var(--gray);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb svg {
  width: 14px;
  height: 14px;
  fill: var(--gray);
}

/* ---------- Values Grid ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 20px;
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.value-card:hover::before {
  opacity: 1;
}

.value-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--black) 0%, rgba(26, 19, 16, 1) 50%, var(--black) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section .section-title {
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--gray-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- Toast Notification ---------- */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 10000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success {
  background: #1a3a1a;
  color: #4ade80;
  border: 1px solid #2d5a2d;
}

.toast.error {
  background: #3a1a1a;
  color: #f87171;
  border: 1px solid #5a2d2d;
}

.toast svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-logo svg {
  width: 80px;
  height: 80px;
  fill: var(--gold);
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: var(--black-border);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar-inner {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: preloaderBar 1.5s ease forwards;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

@keyframes preloaderBar {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: none;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: var(--black);
}

/* ---------- Mobile Menu Overlay ---------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 100px 40px 40px;
  transition: right 0.4s ease;
  border-left: 1px solid rgba(201, 168, 76, 0.2);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  display: block;
  color: var(--white-soft);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid var(--black-border);
  letter-spacing: 1px;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--gold);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  animation: waEnter 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: 1s;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

/* Entrance bounce */
@keyframes waEnter {
  0% { opacity: 0; transform: scale(0) rotate(-180deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* Ripple rings */
.whatsapp-float::before,
.whatsapp-float::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waRipple 2.5s ease-out infinite;
}
.whatsapp-float::after {
  animation-delay: 1.2s;
}

@keyframes waRipple {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Hover */
.whatsapp-float:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 0 40px rgba(37, 211, 102, 0.2);
}
.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
  animation-play-state: paused;
}

/* Icon */
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
  transition: transform 0.3s ease;
}
.whatsapp-float:hover svg {
  transform: scale(1.1);
}

/* Tooltip */
.whatsapp-float .whatsapp-tooltip {
  position: absolute;
  left: 74px;
  background: linear-gradient(135deg, #1A1A1A 0%, #111 100%);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  border: 1px solid rgba(201, 168, 76, 0.5);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.whatsapp-float .whatsapp-tooltip::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: rgba(201, 168, 76, 0.5);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Attention-grab: gentle bounce every 6s */
@keyframes waBounce {
  0%, 86%, 100% { transform: translateY(0); }
  90% { transform: translateY(-8px); }
  94% { transform: translateY(0); }
  96% { transform: translateY(-4px); }
}
.whatsapp-float {
  animation: waEnter 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both,
             waBounce 6s 3s ease-in-out infinite;
}

/* ---------- Site Ordering & Consistency ---------- */
/* Consistent section separators */
.about-section,
.services-section,
.products-section,
.product-slider-section,
.whyus-section,
.contact-section {
  position: relative;
}

/* Consistent card heights within grids */
.services-grid .service-card,
.product-categories .category-card,
.values-grid .value-card {
  display: flex;
  flex-direction: column;
}

.service-card p,
.category-card p,
.value-card p {
  flex: 1;
}

/* Ensure consistent text rendering */
p, .section-subtitle, .about-text p, .service-detail-content p,
.value-card p, .category-card p, .whyus-card h4,
.contact-info-card p, .footer-desc {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Consistent heading spacing */
.section-badge + .section-title {
  margin-top: 0;
}

/* Ordered grid alignment */
.services-grid,
.product-categories,
.values-grid,
.whyus-grid,
.products-grid {
  align-items: stretch;
}

/* ---------- Responsive ---------- */

/* ---------- Tablet (max 1024px) ---------- */
@media (max-width: 1024px) {
  .container { max-width: 100%; }
  .section-padding { padding: 80px 0; }
  .section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }

  /* Navbar */
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 0.8rem; letter-spacing: 1.5px; }
  .nav-cta .btn { padding: 8px 18px; font-size: 0.75rem; }

  /* Hero */
  .hero-content { max-width: 600px; }
  .hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
  .hero .slogan { font-size: clamp(1rem, 2vw, 1.4rem); }
  .hero p { font-size: 0.95rem; }
  .hero-decoration svg { width: 350px; height: 350px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-frame { max-width: 500px; margin: 0 auto; }
  .about-stats { gap: 16px; }

  /* Services */
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
  .service-detail-row { gap: 30px; }
  .service-detail-img { height: 320px; }
  .service-detail-content h3 { font-size: 1.5rem; }

  /* Products */
  .products-intro { grid-template-columns: 1fr; gap: 40px; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .pslider-slide-inner { gap: 28px; padding: 24px; }
  .pslider-img { height: 280px; }

  /* Why Us */
  .whyus-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 32px; }

  /* Footer */
  .footer { padding: 60px 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Page Header */
  .page-header { padding: 140px 0 60px; }

  /* Values */
  .values-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

  /* CTA */
  .cta-section { padding: 80px 0; }
}

/* ---------- Mobile (max 768px) ---------- */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .section-padding { padding: 60px 0; }
  .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); margin-bottom: 14px; }
  .section-subtitle { font-size: 0.95rem; }
  .section-badge { font-size: 0.72rem; letter-spacing: 2px; padding: 6px 16px; }
  .gold-line { margin: 14px 0; }
  .gold-line.centered { margin: 14px auto; }

  /* Buttons */
  .btn { padding: 14px 28px; font-size: 0.82rem; }
  .btn-sm { padding: 10px 20px; font-size: 0.78rem; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content { max-width: 100%; padding: 0 4px; }
  .hero h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
  .hero .slogan { font-size: 1rem; margin-bottom: 16px; }
  .hero p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; max-width: 100%; }
  .hero-badge { font-size: 0.68rem; letter-spacing: 2px; padding: 8px 16px; margin-bottom: 20px; }
  .hero-buttons { flex-direction: column; gap: 12px; }
  .hero-buttons .btn { justify-content: center; width: 100%; }
  .hero-decoration { display: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-image-frame { max-width: 100%; aspect-ratio: 16/10; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .stat-card { padding: 16px 10px; }
  .stat-number { font-size: 1.4rem; }
  .stat-label { font-size: 0.68rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-card { padding: 28px 24px; }
  .service-card-img { height: 160px; }
  .services-detail-list { gap: 40px; margin-top: 40px; }
  .service-detail-row { grid-template-columns: 1fr; gap: 20px; }
  .service-detail-row.reverse { direction: ltr; }
  .service-detail-img { height: 240px; border-radius: 16px; }
  .service-detail-number { font-size: 3rem; top: -16px; }
  .service-detail-content h3 { font-size: 1.3rem; }
  .service-detail-content p { font-size: 0.9rem; }

  /* Product Slider */
  .pslider-wrapper { gap: 8px; }
  .pslider-slide-inner { grid-template-columns: 1fr; gap: 16px; padding: 16px; min-height: auto; }
  .pslider-img { height: 200px; }
  .pslider-info { padding: 8px 0; }
  .pslider-info h3 { font-size: 1.2rem; }
  .pslider-info p { font-size: 0.88rem; }
  .pslider-price { font-size: 1.3rem; }
  .pslider-btn { width: 38px; height: 38px; }
  .pslider-btn svg { width: 18px; height: 18px; }
  .pslider-dots { gap: 8px; margin-top: 20px; }

  /* Products */
  .products-intro { grid-template-columns: 1fr; gap: 28px; }
  .product-benefits { grid-template-columns: 1fr; gap: 10px; }
  .benefit-item { padding: 12px 16px; }
  .product-categories { grid-template-columns: 1fr; gap: 16px; }
  .category-card { padding: 28px 24px; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }

  /* Why Us */
  .whyus-grid { grid-template-columns: 1fr; gap: 16px; }
  .whyus-card { padding: 24px; gap: 16px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-form { padding: 24px; border-radius: 16px; }
  .contact-info-card { padding: 20px; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .form-control { padding: 12px 14px; }

  /* Footer */
  .footer { padding: 50px 0 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  /* Page Header */
  .page-header { padding: 120px 0 50px; }
  .page-header .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .breadcrumb { font-size: 0.78rem; }

  /* Values */
  .values-grid { grid-template-columns: 1fr; gap: 16px; }
  .value-card { padding: 24px; }

  /* CTA */
  .cta-section { padding: 60px 0; }
  .cta-section p { font-size: 0.95rem; margin-bottom: 28px; }

  /* Toast */
  .toast { bottom: 16px; right: 16px; left: 16px; font-size: 0.85rem; padding: 14px 20px; }

  /* Back to top */
  .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
  .back-to-top svg { width: 18px; height: 18px; }
}

/* ---------- Small Mobile (max 480px) ---------- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-padding { padding: 48px 0; }

  .hero h1 { font-size: 1.8rem; }
  .hero .slogan { font-size: 0.92rem; }
  .hero p { font-size: 0.88rem; }
  .hero-badge { font-size: 0.62rem; letter-spacing: 1.5px; padding: 6px 12px; }

  .about-stats { grid-template-columns: 1fr; gap: 10px; }
  .stat-card { display: flex; align-items: center; gap: 12px; padding: 14px 18px; text-align: left; }
  .stat-number { font-size: 1.3rem; margin: 0; }
  .stat-label { margin-top: 0; }

  .service-card { padding: 24px 18px; border-radius: 16px; }
  .service-card-img { height: 140px; }
  .service-detail-img { height: 200px; }

  .contact-form { padding: 18px; }
  .contact-info-card { padding: 16px; flex-direction: column; align-items: center; text-align: center; }

  .category-card { padding: 24px 18px; }
  .products-grid { grid-template-columns: 1fr; }

  .pslider-slide-inner { padding: 14px; }
  .pslider-img { height: 170px; }
  .pslider-info h3 { font-size: 1.1rem; }
  .pslider-price { font-size: 1.2rem; }

  .page-header { padding: 100px 0 40px; }
  .cta-section { padding: 48px 0; }

  .whatsapp-float { bottom: 16px; left: 16px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .whatsapp-float .whatsapp-tooltip { display: none; }

  .mobile-menu { width: 85%; padding: 90px 28px 28px; }
  .mobile-menu a { font-size: 1rem; padding: 14px 0; }
}
