/* ================================================
   VETVIEZD24 — Design System & Components v2
   Fonts: Playfair Display + Source Sans 3
   Palette: Warm cream/terracotta
   ================================================ */

/* --- Reset & Custom Properties --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

:root {
  --bg-primary: #FAF7F2;
  --bg-secondary: #F0EBE3;
  --bg-dark: #2C2417;
  --text-primary: #2C2417;
  --text-secondary: #6B5D4F;
  --text-light: #FAF7F2;
  --accent: #C4956A;
  --accent-hover: #B07D52;
  --accent-light: #E8D5C0;
  --clay: #8B7355;
  --success: #6B8F71;
  --border: #E0D8CC;
  --card-bg: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(44,36,23,0.06);
  --shadow-md: 0 4px 20px rgba(44,36,23,0.08);
  --shadow-lg: 0 8px 40px rgba(44,36,23,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 100px;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Source Sans 3', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.25; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent-light); color: var(--text-primary); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 40px; margin-bottom: 16px; }
.section-header p { font-size: 18px; color: var(--text-secondary); max-width: 620px; margin: 0 auto; line-height: 1.7; }
@media(max-width:768px){
  .section-header h2 { font-size: 30px; }
  .section-header p { font-size: 16px; }
  .section-header { margin-bottom: 40px; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; font-family: var(--font-body); font-size: 16px; font-weight: 600;
  border-radius: var(--radius-full); border: none; cursor: pointer;
  transition: all 0.3s ease; text-decoration: none; white-space: nowrap;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--secondary { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn--secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn--outline { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn--outline:hover { background: var(--accent); color: #fff; }
.btn--dark { background: var(--bg-dark); color: var(--text-light); }
.btn--dark:hover { opacity: 0.9; }
@media(max-width:480px){ .btn { padding: 12px 24px; font-size: 15px; } }

/* --- Navigation --- */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 12px 0; transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.nav--scrolled { background: var(--bg-primary); box-shadow: var(--shadow-sm); padding: 8px 0; }
.nav__container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav__brand {
  font-family: var(--font-heading); font-size: 22px; font-weight: 700;
  color: #fff; text-decoration: none; transition: color 0.3s; flex-shrink: 0;
}
.nav--scrolled .nav__brand { color: var(--text-primary); }
.nav__links { display: flex; gap: 24px; }
.nav__link {
  color: rgba(255,255,255,0.8); font-size: 15px; font-weight: 500;
  transition: color 0.3s; position: relative;
}
.nav__link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--accent); transition: width 0.3s;
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after { width: 100%; }
.nav--scrolled .nav__link { color: var(--text-secondary); }
.nav--scrolled .nav__link:hover { color: var(--text-primary); }
/* [FIX #11] Active nav link highlight */
.nav__link--active { color: #fff !important; }
.nav__link--active::after { width: 100%; }
.nav--scrolled .nav__link--active { color: var(--accent) !important; }
.nav__phone {
  color: #fff; font-weight: 600; font-size: 16px; text-decoration: none; transition: color 0.3s;
}
.nav--scrolled .nav__phone { color: var(--text-primary); }
.nav__cta { padding: 10px 24px; font-size: 14px; }

/* Burger button — z-index ABOVE mobile menu [FIX #1] */
.nav__burger {
  display: none; flex-direction: column; justify-content: space-between;
  width: 28px; height: 20px; background: none; border: none; padding: 0;
  cursor: pointer; position: relative; z-index: 1001;
}
.nav__burger span {
  display: block; width: 100%; height: 2px; background: #fff;
  border-radius: 2px; transition: all 0.3s;
}
.nav--scrolled .nav__burger span { background: var(--text-primary); }
.nav__burger--open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav__burger--open span:nth-child(2) { opacity: 0; }
.nav__burger--open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
.nav__burger--open span { background: #fff !important; }

/* Mobile menu overlay [FIX #1] — close button added */
.nav__mobile-menu {
  position: fixed; inset: 0; background: var(--bg-dark); z-index: 1000;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.nav__mobile-menu--open { opacity: 1; visibility: visible; }
.nav__mobile-close {
  position: absolute; top: 20px; right: 24px; width: 44px; height: 44px;
  background: rgba(255,255,255,0.1); border: none; border-radius: 50%;
  color: #fff; cursor: pointer; display: flex;
  align-items: center; justify-content: center; transition: background 0.3s;
}
.nav__mobile-close:hover { background: rgba(255,255,255,0.2); }
.nav__mobile-close svg { width: 20px; height: 20px; display: block; }
.nav__mobile-link { color: var(--text-light); font-size: 22px; font-family: var(--font-heading); transition: color 0.3s; }
.nav__mobile-link:hover { color: var(--accent); }
.nav__mobile-phone { color: var(--accent) !important; font-size: 24px !important; font-weight: 600; margin-top: 8px; }

@media(max-width:960px){
  .nav__links, .nav__phone, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* --- Hero --- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; background-size: cover; background-position: center;
  background-attachment: fixed;
}
/* [FIX #3] Disable fixed attachment on touch devices (iOS Safari bug) */
@media (hover: none) { .hero { background-attachment: scroll; } }

.hero__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(44,36,23,0.7) 0%, rgba(44,36,23,0.35) 100%);
}
.hero__content { position: relative; z-index: 2; text-align: center; max-width: 750px; padding: 100px 24px 80px; }
.hero__badge {
  display: inline-block; background: rgba(196,149,106,0.2); color: var(--accent-light);
  border: 1px solid rgba(196,149,106,0.3); padding: 8px 24px;
  border-radius: var(--radius-full); font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 28px;
  backdrop-filter: blur(4px);
}
.hero__title { font-size: 54px; color: #fff; margin-bottom: 20px; font-weight: 700; letter-spacing: -0.5px; }
.hero__description { font-size: 20px; color: rgba(255,255,255,0.85); margin-bottom: 36px; line-height: 1.7; font-weight: 300; }
.hero__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__status {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.65); font-size: 14px; white-space: nowrap;
}
.hero__status-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--success);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

@media(max-width:768px){
  .hero { min-height: calc(100vh - 60px); background-attachment: scroll; background-position: 85% center; }
  .hero__title { font-size: 34px; }
  .hero__description { font-size: 17px; }
  .hero__content { padding: 80px 20px 60px; }
  .hero__status { font-size: 12px; bottom: 16px; }
}
@media(max-width:480px){ .hero__title { font-size: 28px; } }

/* --- Advantages --- */
.advantages { padding: 96px 0; background: var(--bg-primary); }
.advantages__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.advantages__card {
  background: var(--card-bg); padding: 32px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s;
}
.advantages__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
/* [FIX #13] Icon micro-animation on card hover */
.advantages__card:hover .advantages__icon { transform: scale(1.1) rotate(5deg); }
.advantages__icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--accent-light);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  transition: transform 0.3s ease;
}
.advantages__icon svg { width: 26px; height: 26px; color: var(--accent); }
.advantages__badge {
  display: inline-block; font-size: 11px; font-weight: 700; color: var(--accent);
  background: var(--accent-light); padding: 4px 12px; border-radius: var(--radius-full);
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px;
}
.advantages__title { font-size: 19px; margin-bottom: 10px; font-family: var(--font-heading); }
.advantages__text { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }
.advantages__note { font-size: 13px; color: var(--clay); margin-top: 12px; font-style: italic; }

@media(max-width:960px){ .advantages__grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:560px){
  .advantages__grid { grid-template-columns: 1fr; }
  .advantages { padding: 64px 0; }
}

/* --- About / Trust Block [NEW #16] --- */
.about {
  padding: 80px 0; background: var(--bg-secondary);
}
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about__image {
  border-radius: var(--radius-lg); overflow: hidden; height: 400px;
}
.about__image img { width: 100%; height: 100%; object-fit: cover; }
.about__content h2 { font-size: 36px; margin-bottom: 20px; }
.about__content p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
.about__stats { display: flex; gap: 32px; margin-top: 32px; }
.about__stat-number { font-family: var(--font-heading); font-size: 40px; font-weight: 700; color: var(--accent); line-height: 1; }
.about__stat-label { font-size: 14px; color: var(--text-secondary); margin-top: 4px; }
@media(max-width:768px){
  .about__grid { grid-template-columns: 1fr; gap: 32px; }
  .about__image { height: 280px; }
  .about__content h2 { font-size: 28px; }
  .about { padding: 64px 0; }
}

/* --- Indications --- */
.indications { padding: 96px 0; background: var(--bg-dark); color: var(--text-light); }
.indications .section-header h2 { color: var(--text-light); }
.indications .section-header p { color: rgba(250,247,242,0.65); }
.indications__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.indications__card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--accent); border-radius: var(--radius-md);
  padding: 32px; transition: transform 0.3s, background 0.3s;
}
.indications__card:hover { transform: translateY(-2px); background: rgba(255,255,255,0.07); }
.indications__number {
  font-family: var(--font-heading); font-size: 44px; color: var(--accent);
  opacity: 0.3; font-weight: 700; line-height: 1; margin-bottom: 10px;
}
.indications__card h3 { font-size: 19px; margin-bottom: 10px; color: var(--text-light); }
.indications__card p { font-size: 15px; color: rgba(250,247,242,0.65); line-height: 1.65; }

@media(max-width:640px){
  .indications__grid { grid-template-columns: 1fr; }
  .indications { padding: 64px 0; }
}

/* --- Services --- */
.services { padding: 96px 0; background: var(--bg-secondary); }
.services__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.services__card {
  background: var(--card-bg); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.services__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.services__image { width: 100%; height: 220px; object-fit: cover; display: block; }
.services__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.services__body h3 { font-size: 21px; margin-bottom: 10px; font-family: var(--font-heading); }
.services__body p { font-size: 15px; color: var(--text-secondary); line-height: 1.65; flex: 1; }
/* [NEW #17] Learn more link */
.services__link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  color: var(--accent); font-weight: 600; font-size: 15px; transition: gap 0.3s;
}
.services__card:hover .services__link { gap: 12px; }

@media(max-width:960px){ .services__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; } }
@media(max-width:560px){ .services { padding: 64px 0; } }

/* --- Parallax Divider [NEW #9] --- */
.divider {
  position: relative; height: 300px; background-size: cover;
  background-position: center; background-attachment: fixed;
  display: flex; align-items: center; justify-content: center;
}
@media (hover: none) { .divider { background-attachment: scroll; } }
.divider__overlay {
  position: absolute; inset: 0; background: rgba(44,36,23,0.7);
}
.divider__content {
  position: relative; z-index: 2; text-align: center; max-width: 600px; padding: 0 24px;
}
.divider__content blockquote {
  font-family: var(--font-heading); font-size: 28px; color: #fff;
  font-style: italic; font-weight: 400; line-height: 1.5;
}
.divider__content cite {
  display: block; margin-top: 16px; font-size: 15px;
  color: rgba(255,255,255,0.6); font-style: normal;
}
@media(max-width:768px){
  .divider { height: 240px; }
  .divider__content blockquote { font-size: 22px; }
}

/* --- Calculator --- */
.calculator { padding: 96px 0; background: var(--bg-primary); }
.calculator__form {
  max-width: 800px; margin: 0 auto; background: var(--card-bg);
  padding: 48px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.calculator__label {
  display: block; font-weight: 600; font-size: 14px; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--text-secondary); margin-bottom: 16px;
}
.calculator__options { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px,1fr)); gap: 10px; margin-bottom: 36px; }
.calculator__option { position: relative; }
.calculator__option input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.calculator__option label {
  display: block; padding: 14px 16px; border: 2px solid var(--border);
  border-radius: var(--radius-md); cursor: pointer; text-align: center;
  font-size: 14px; font-weight: 500; transition: all 0.25s; color: var(--text-secondary);
}
.calculator__option input:checked + label {
  border-color: var(--accent); background: var(--accent-light); color: var(--text-primary);
}
.calculator__option label:hover { border-color: var(--clay); }

.calculator__slider-container { margin-bottom: 12px; }
.calculator__range {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px;
  background: var(--border); border-radius: 3px; outline: none;
}
.calculator__range::-webkit-slider-thumb {
  -webkit-appearance: none; width: 24px; height: 24px; background: var(--accent);
  border-radius: 50%; cursor: pointer; box-shadow: var(--shadow-sm); transition: transform 0.2s;
}
.calculator__range::-webkit-slider-thumb:hover { transform: scale(1.2); }
/* [FIX #4] Firefox range styles */
.calculator__range::-moz-range-thumb {
  width: 24px; height: 24px; background: var(--accent);
  border-radius: 50%; cursor: pointer; border: none; box-shadow: var(--shadow-sm);
}
.calculator__range::-moz-range-track {
  height: 6px; background: var(--border); border-radius: 3px; border: none;
}
.calculator__range::-moz-range-progress {
  height: 6px; background: var(--accent); border-radius: 3px;
}

.calculator__weight-info { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-secondary); margin-top: 6px; }
.calculator__weight-label { font-size: 15px; color: var(--text-secondary); text-align: center; margin: 12px 0 0; min-height: 24px; }

.calculator__result {
  text-align: center; padding: 32px; background: var(--bg-secondary);
  border-radius: var(--radius-md); margin-top: 32px;
}
.calculator__price {
  font-size: 44px; font-family: var(--font-heading); font-weight: 700; color: var(--accent);
  transition: transform 0.2s;
}
.calculator__price--updating { transform: scale(1.05); }
.calculator__price-label { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }

/* [NEW #7] Additional services checkboxes */
.calculator__extras { margin-top: 24px; }
.calculator__extras-label {
  font-weight: 600; font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--text-secondary); margin-bottom: 12px;
}
.calculator__extras-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.calculator__extra-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
  background: var(--bg-secondary);
}
.calculator__extras-note {
  font-size: 13px; color: var(--text-secondary); margin-top: 12px; font-style: italic;
}
.calculator__extra-price { font-weight: 700; color: var(--accent); }

.calculator__note { text-align: center; margin-top: 32px; }
.calculator__note p { font-size: 15px; color: var(--text-secondary); margin-bottom: 16px; }

@media(max-width:768px){
  .calculator__form { padding: 28px 20px; }
  .calculator__options { grid-template-columns: 1fr; }
  .calculator__price { font-size: 36px; }
  .calculator { padding: 64px 0; }
}

/* --- Tariffs --- */
.tariffs { padding: 96px 0; background: var(--bg-secondary); }
.tariffs__tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.tariffs__tab {
  padding: 12px 24px; border-radius: var(--radius-full); border: 2px solid var(--border);
  background: transparent; font-family: var(--font-body); font-size: 15px;
  font-weight: 500; cursor: pointer; transition: all 0.3s; color: var(--text-secondary);
}
.tariffs__tab--active { background: var(--accent); color: #fff; border-color: var(--accent); }
.tariffs__tab:hover:not(.tariffs__tab--active) { border-color: var(--clay); }
.tariffs__panel { display: none; max-width: 700px; margin: 0 auto; }
.tariffs__panel--active { display: block; }
.tariffs__table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border);
  background: var(--card-bg);
}
.tariffs__table th {
  background: var(--bg-dark); color: var(--text-light); padding: 16px 24px;
  text-align: left; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px;
}
.tariffs__table td { padding: 16px 24px; border-bottom: 1px solid var(--border); font-size: 15px; }
.tariffs__table tr:last-child td { border-bottom: none; }
.tariffs__table tr:nth-child(even) td { background: var(--bg-secondary); }
.tariffs__table td:last-child { font-weight: 600; color: var(--accent); text-align: right; }
.tariffs__table th:last-child { text-align: right; }
@media(max-width:560px){
  .tariffs__table th, .tariffs__table td { padding: 12px 16px; font-size: 14px; }
  .tariffs { padding: 64px 0; }
}

/* --- Process Timeline --- */
.process { padding: 96px 0; background: var(--bg-primary); }
.process__timeline { max-width: 700px; margin: 0 auto; position: relative; }
.process__timeline::before {
  content: ''; position: absolute; left: 27px; top: 0; bottom: 0;
  width: 2px; background: var(--border);
}
.process__step { display: flex; gap: 28px; margin-bottom: 44px; position: relative; }
.process__step:last-child { margin-bottom: 0; }
.process__number {
  width: 56px; height: 56px; min-width: 56px; border-radius: 50%;
  background: var(--accent); color: #fff; display: flex; align-items: center;
  justify-content: center; font-family: var(--font-heading); font-size: 20px;
  font-weight: 700; position: relative; z-index: 1;
}
.process__content h3 { font-size: 20px; margin-bottom: 8px; font-family: var(--font-heading); }
.process__content p { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

@media(max-width:768px){
  .process__timeline::before { left: 19px; }
  .process__number { width: 40px; height: 40px; min-width: 40px; font-size: 16px; }
  .process__step { gap: 20px; }
  .process { padding: 64px 0; }
}

/* --- Reviews --- */
.reviews { padding: 96px 0; background: var(--bg-dark); color: var(--text-light); }
.reviews .section-header h2 { color: var(--text-light); }
.reviews__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.reviews__card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 36px; position: relative;
}
.reviews__quote {
  font-family: var(--font-heading); font-size: 64px; color: var(--accent);
  opacity: 0.35; line-height: 1; margin-bottom: 4px; display: block; height: 40px;
}
.reviews__text { font-size: 15px; line-height: 1.75; color: rgba(250,247,242,0.8); margin-bottom: 24px; font-style: italic; }
.reviews__author { font-size: 16px; font-weight: 600; color: var(--text-light); }
.reviews__pet { font-size: 13px; color: rgba(250,247,242,0.45); margin-top: 4px; }

@media(max-width:960px){ .reviews__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; } }
@media(max-width:560px){ .reviews { padding: 64px 0; } }

/* --- FAQ --- */
.faq { padding: 96px 0; background: var(--bg-primary); }
.faq__list { max-width: 800px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; background: none; border: none; cursor: pointer;
  font-family: var(--font-heading); font-size: 18px; font-weight: 500;
  color: var(--text-primary); text-align: left; gap: 16px; transition: color 0.3s;
}
.faq__question:hover { color: var(--accent); }
.faq__icon {
  width: 20px; height: 20px; min-width: 20px; position: relative; transition: transform 0.3s;
}
.faq__icon::before, .faq__icon::after {
  content: ''; position: absolute; background: var(--text-primary); border-radius: 1px;
  top: 50%; left: 50%; transform: translate(-50%,-50%); transition: all 0.3s;
}
.faq__icon::before { width: 14px; height: 2px; }
.faq__icon::after { width: 2px; height: 14px; }
.faq__item--open .faq__icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq__answer { overflow: hidden; max-height: 0; transition: max-height 0.4s ease; }
.faq__item--open .faq__answer { max-height: 300px; }
.faq__answer p { padding: 0 0 24px; font-size: 15px; color: var(--text-secondary); line-height: 1.75; }
@media(max-width:560px){ .faq { padding: 64px 0; } .faq__question { font-size: 16px; } }

/* --- Contacts --- */
.contacts { padding: 96px 0; background: var(--bg-secondary); }
.contacts__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contacts__info { display: flex; flex-direction: column; gap: 24px; }
.contacts__item { display: flex; align-items: flex-start; gap: 16px; }
.contacts__icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 12px;
  background: var(--accent-light); display: flex; align-items: center; justify-content: center;
}
.contacts__icon svg { width: 20px; height: 20px; color: var(--accent); }
.contacts__item-label { font-size: 12px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.contacts__item-content a { color: var(--text-primary); font-weight: 500; font-size: 16px; transition: color 0.3s; }
.contacts__item-content a:hover { color: var(--accent); }
.contacts__item-content span { font-size: 16px; font-weight: 500; }
/* [FIX #12] Map skeleton loading */
.contacts__map {
  border-radius: var(--radius-lg); overflow: hidden; min-height: 380px;
  background: var(--border); position: relative;
}
.contacts__map iframe { width: 100%; height: 380px; border: none; display: block; }
.contacts__map-loading {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: var(--text-secondary); font-size: 14px;
}
.contacts__map-spinner {
  width: 32px; height: 32px; border: 3px solid var(--border);
  border-top-color: var(--accent); border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.contacts__map iframe ~ .contacts__map-loading { display: none; }
@media(max-width:768px){
  .contacts__grid { grid-template-columns: 1fr; }
  .contacts { padding: 64px 0; }
}

/* --- Footer --- */
.footer { padding: 64px 0 24px; background: var(--bg-dark); color: var(--text-light); }
/* [FIX #6] Extra padding on mobile so mobile-cta doesn't overlap footer */
@media(max-width:768px){ .footer { padding-bottom: 80px; } }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__brand { font-family: var(--font-heading); font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.footer__text { font-size: 14px; color: rgba(250,247,242,0.55); line-height: 1.6; }
.footer__title { font-size: 15px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer__links li { margin-bottom: 8px; }
.footer__links a { color: rgba(250,247,242,0.55); font-size: 14px; transition: color 0.3s; }
.footer__links a:hover { color: var(--accent); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: rgba(250,247,242,0.35);
}
@media(max-width:768px){
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* --- Modal --- */
.modal {
  position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center;
  justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s;
}
.modal--open { opacity: 1; visibility: visible; }
.modal__overlay { position: absolute; inset: 0; background: rgba(44,36,23,0.65); backdrop-filter: blur(4px); }
.modal__content {
  position: relative; background: var(--card-bg); border-radius: var(--radius-lg);
  padding: 48px; max-width: 460px; width: calc(100% - 48px); box-shadow: var(--shadow-lg);
  transform: translateY(20px); transition: transform 0.3s;
}
.modal--open .modal__content { transform: translateY(0); }
.modal__close {
  position: absolute; top: 16px; right: 16px; width: 36px; height: 36px;
  border-radius: 50%; background: var(--bg-secondary); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  color: var(--text-secondary); transition: background 0.3s;
}
.modal__close:hover { background: var(--border); }
.modal__title { font-size: 26px; text-align: center; margin-bottom: 8px; }
.modal__subtitle { text-align: center; color: var(--text-secondary); font-size: 15px; margin-bottom: 28px; line-height: 1.6; }
.modal__input {
  width: 100%; padding: 16px; border: 2px solid var(--border); border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 16px; margin-bottom: 12px;
  transition: border-color 0.3s; outline: none;
}
.modal__input:focus { border-color: var(--accent); }
.modal__input--error { border-color: #c0392b; }
.modal__submit { width: 100%; padding: 18px; font-size: 17px; margin-top: 8px; }
.modal__success { text-align: center; padding: 24px 0; }
.modal__success h3 { color: var(--success); font-size: 24px; margin-bottom: 8px; }
.modal__success p { color: var(--text-secondary); }
@media(max-width:480px){ .modal__content { padding: 32px 24px; } }

/* --- Mobile CTA --- */
.mobile-cta { display: none; }
@media(max-width:768px){
  .mobile-cta {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
    background: var(--card-bg); box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 10px 16px; display: flex; gap: 10px;
  }
  .mobile-cta a {
    flex: 1; text-align: center; padding: 14px; border-radius: var(--radius-md);
    font-weight: 600; font-size: 15px; text-decoration: none; transition: opacity 0.3s;
  }
  .mobile-cta a:first-child { background: var(--accent); color: #fff; }
  .mobile-cta a:last-child { background: #25D366; color: #fff; }
}

/* --- Scroll-to-top [NEW #10] --- */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px;
  border-radius: 50%; background: var(--accent); color: #fff; border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s; z-index: 997;
}
.scroll-top--visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); background: var(--accent-hover); }
.scroll-top svg { width: 20px; height: 20px; }
@media(max-width:768px){ .scroll-top { bottom: 80px; right: 16px; } }

/* --- Cookie Notice [NEW #18] --- */
.cookie-notice {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 990;
  background: var(--bg-dark); color: var(--text-light); padding: 16px 24px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-size: 14px; transform: translateY(100%); transition: transform 0.4s ease;
  flex-wrap: wrap; box-shadow: 0 -4px 10px rgba(0,0,0,0.15);
}
.cookie-notice--visible { transform: translateY(0); }
@media(max-width:768px){
  .cookie-notice {
    bottom: 68px; /* Above the mobile-cta bar */
    padding: 12px 16px;
    font-size: 13px;
    gap: 10px;
    justify-content: space-between;
  }
  .cookie-notice p {
    flex: 1 1 100%;
    margin-bottom: 8px;
  }
  .cookie-notice button {
    width: 100%;
  }
}

/* --- Scroll Reveal --- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal--visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
