/* ============================================
   Ayaz Dekorasyon — Modern Stylesheet
   ============================================ */

:root {
  --color-primary: #0a2540;
  --color-primary-dark: #061a30;
  --color-accent: #d97706;
  --color-accent-light: #f59e0b;
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-bg-dark: #0f172a;
  --color-text: #0f172a;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;
  --color-white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --container: 1240px;
  --header-h: 80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font-sans);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }

p { color: var(--color-text-muted); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Header / Navigation
   ============================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: all var(--transition);
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}
.brand__logo {
  height: 48px;
  width: auto;
  display: block;
}
.footer .brand__logo { filter: brightness(0) invert(1); opacity: 0.95; }
.nav { display: flex; align-items: center; gap: 8px; }
.nav__link {
  position: relative;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--color-accent); }
.nav__link.active::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 4px;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
}

/* Dropdown */
.nav__item--has-children { position: relative; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 280px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  border: 1px solid var(--color-border);
}
.nav__item--has-children:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--color-text);
  transition: all var(--transition);
}
.nav__dropdown a:hover {
  background: var(--color-bg-alt);
  color: var(--color-accent);
  padding-left: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.25);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(217, 119, 6, 0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-border);
}
.btn--ghost:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: white;
}
.btn--light {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}
.btn--light:hover {
  background: white;
  color: var(--color-primary);
}

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  background: var(--color-bg-alt);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}
.nav__toggle span {
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--color-primary);
  transform: translate(-50%, -50%);
  transition: all var(--transition);
}
.nav__toggle span:nth-child(1) { transform: translate(-50%, -8px); }
.nav__toggle span:nth-child(3) { transform: translate(-50%, 6px); }
.nav__toggle.active span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 60px) 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(217, 119, 6, 0.12), transparent 60%),
    radial-gradient(ellipse 70% 70% at 10% 90%, rgba(10, 37, 64, 0.08), transparent 60%),
    linear-gradient(180deg, #fdfcfa 0%, #f8fafc 100%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(217, 119, 6, 0.1);
  color: var(--color-accent);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero__eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero__title {
  margin-bottom: 24px;
  font-weight: 800;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__desc {
  font-size: 1.12rem;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 540px;
}
.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.03em;
}
.hero__stat span { font-size: 0.88rem; color: var(--color-text-muted); }

/* Hero visual */
.hero__visual {
  position: relative;
  aspect-ratio: 5/6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 37, 64, 0.4));
}
.hero__badge {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__badge--1 { top: 24px; left: -24px; animation: float 5s ease-in-out infinite; }
.hero__badge--2 { bottom: 36px; right: -20px; animation: float 6s ease-in-out infinite 1s; }
.hero__badge-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  color: white;
}
.hero__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-primary);
}
.hero__badge span { font-size: 0.8rem; color: var(--color-text-muted); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============================================
   Sections
   ============================================ */
.section { padding: 100px 0; }
.section--alt { background: var(--color-bg-alt); }
.section--dark { background: var(--color-bg-dark); color: rgba(255,255,255,0.85); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: white; }
.section--dark p { color: rgba(255,255,255,0.7); }

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(217, 119, 6, 0.1);
  color: var(--color-accent);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section__title { margin-bottom: 16px; }
.section__desc { font-size: 1.06rem; }

/* ============================================
   Features grid
   ============================================ */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature {
  padding: 36px 30px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: linear-gradient(180deg, var(--color-accent), var(--color-accent-light));
  transition: height var(--transition);
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature:hover::before { height: 100%; }
.feature__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.12), rgba(245, 158, 11, 0.05));
  color: var(--color-accent);
  font-size: 1.6rem;
  margin-bottom: 22px;
}
.feature h3 { margin-bottom: 12px; font-size: 1.2rem; }
.feature p { font-size: 0.95rem; line-height: 1.6; }

/* ============================================
   Gallery (workshop / imalathane)
   ============================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery__item {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 0;
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery__item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 37, 64, 0.7));
  transition: opacity var(--transition);
}
.gallery__item figcaption {
  position: absolute;
  left: 18px; right: 18px; bottom: 16px;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 1;
  letter-spacing: -0.01em;
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item:hover::after { opacity: 0.85; }

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   Products
   ============================================ */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.product {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.product__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product:hover .product__media img { transform: scale(1.08); }
.product__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 37, 64, 0.3));
}
.product__body { padding: 28px 26px; flex: 1; display: flex; flex-direction: column; }
.product h3 { margin-bottom: 10px; font-size: 1.25rem; }
.product p { font-size: 0.95rem; margin-bottom: 22px; flex: 1; }
.product__link {
  font-weight: 600;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
}
.product__link svg { transition: transform var(--transition); }
.product:hover .product__link svg { transform: translateX(4px); }

/* ============================================
   About split
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split--reverse > :first-child { order: 2; }
.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media-tag {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  padding: 18px 22px;
  border-radius: var(--radius-md);
}
.split__media-tag strong { display: block; color: var(--color-primary); font-family: var(--font-display); font-size: 1.1rem; }
.split__media-tag span { font-size: 0.88rem; color: var(--color-text-muted); }
.split__title { margin-bottom: 20px; }
.split__list { list-style: none; margin-top: 28px; display: grid; gap: 14px; }
.split__list li {
  display: flex; gap: 14px;
  align-items: flex-start;
  color: var(--color-text);
}
.split__list li::before {
  content: '';
  flex-shrink: 0;
  width: 24px; height: 24px;
  margin-top: 2px;
  background: var(--color-accent);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}

/* ============================================
   Process / Steps
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 32px 26px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -20px; left: 26px;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.05em;
}
.step h3 { margin: 18px 0 10px; font-size: 1.15rem; color: white; }
.step p { font-size: 0.93rem; color: rgba(255,255,255,0.7); }

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  margin: 0 auto;
  padding: 70px 50px;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(217, 119, 6, 0.18), transparent 60%),
    linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(217, 119, 6, 0.15);
  filter: blur(80px);
}
.cta-banner h2 { color: white; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 0; }
.cta-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }

/* ============================================
   Page header (interior pages)
   ============================================ */
.page-head {
  padding: calc(var(--header-h) + 80px) 0 70px;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(217, 119, 6, 0.1), transparent),
    linear-gradient(180deg, var(--color-bg-alt) 0%, white 100%);
  text-align: center;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}
.breadcrumb a { color: var(--color-accent); }
.breadcrumb span:last-child { color: var(--color-text); font-weight: 500; }

/* ============================================
   Product detail
   ============================================ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-detail__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: calc(var(--header-h) + 30px);
}
.product-detail__media img { width: 100%; height: 100%; object-fit: cover; }
.product-detail__body h1 { margin-bottom: 18px; }
.product-detail__intro { font-size: 1.08rem; margin-bottom: 30px; }
.product-detail h2 { font-size: 1.4rem; margin: 36px 0 14px; }

.specs {
  margin-top: 30px;
  border-top: 1px solid var(--color-border);
}
.spec {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}
.spec dt { color: var(--color-text-muted); font-size: 0.9rem; }
.spec dd { color: var(--color-text); font-weight: 500; }

/* ============================================
   Contact
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: grid; gap: 18px; }
.contact-card {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.contact-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.contact-card__icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.12), rgba(245, 158, 11, 0.05));
  color: var(--color-accent);
  font-size: 1.4rem;
}
.contact-card strong { display: block; font-family: var(--font-display); color: var(--color-primary); margin-bottom: 4px; }
.contact-card span, .contact-card a { color: var(--color-text-muted); font-size: 0.95rem; }
.contact-card a:hover { color: var(--color-accent); }

.form {
  padding: 36px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__field { margin-bottom: 18px; }
.form__field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 8px;
}
.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--color-bg-alt);
  transition: all var(--transition);
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: white;
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.1);
}
.form__field textarea { min-height: 140px; resize: vertical; }
.form button { width: 100%; justify-content: center; padding: 16px; }

.map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}
.map iframe { width: 100%; height: 100%; border: 0; }

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer .brand { color: white; }
.footer .brand__sub { color: rgba(255,255,255,0.5); }
.footer__about { margin-top: 20px; max-width: 360px; color: rgba(255,255,255,0.6); font-size: 0.93rem; }
.footer h4 {
  color: white;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.footer__links { list-style: none; display: grid; gap: 10px; }
.footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  transition: all var(--transition);
}
.footer__links a:hover { color: var(--color-accent); padding-left: 4px; }
.footer__contact { display: grid; gap: 14px; font-size: 0.92rem; }
.footer__contact div { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,0.7); }
.footer__contact svg { flex-shrink: 0; color: var(--color-accent); margin-top: 3px; }
.footer__social { display: flex; gap: 10px; margin-top: 24px; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.footer__social a:hover { background: var(--color-accent); color: white; transform: translateY(-2px); }
.footer__bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   WhatsApp floating
   ============================================ */
.wa-float {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: all var(--transition);
  animation: waPulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4), 0 0 0 18px rgba(37, 211, 102, 0); }
}

/* ============================================
   Animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hero__inner, .split, .product-detail, .contact-grid, .cta-banner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cta-banner__actions { justify-content: flex-start; }
  .split--reverse > :first-child { order: 0; }
  .product-detail__media { position: relative; top: 0; aspect-ratio: 4/3; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 40px); }
  .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .hero__stat strong { font-size: 1.8rem; }
  .nav { display: none; }
  .nav__toggle { display: block; }
  .nav.open {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border-top: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    gap: 4px;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.open .nav__link { padding: 14px 18px; }
  .nav.open .nav__dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: var(--color-bg-alt);
    padding: 6px;
    margin: 4px 0 4px 12px;
    min-width: auto;
  }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .form__row { grid-template-columns: 1fr; }
  .cta-banner { padding: 50px 26px; }
}
