/* ============================================
   ASTRA WED — Landing Styles
   Цветовая схема: тёмно-оранжевый
   ============================================ */

:root {
  --accent: #B8410F;          /* основной тёмно-оранжевый */
  --accent-dark: #8B3009;     /* темнее для ховеров */
  --accent-light: #E66B1F;    /* светлый акцент */
  --accent-soft: #F5A623;     /* тёплый янтарный */
  --accent-pale: #FFE9D6;     /* очень светлый фон */
  --cream: #FFF8F2;           /* кремовый фон секций */

  --text: #1A1A1A;            /* основной текст */
  --text-muted: #5C5C5C;
  --text-soft: #8A8A8A;
  --border: #E6E1DA;

  --bg: #FFFFFF;
  --bg-dark: #1F1410;         /* тёмный фон секций */
  --bg-darker: #15100C;

  --shadow-sm: 0 2px 8px rgba(184, 65, 15, 0.06);
  --shadow:    0 8px 24px rgba(184, 65, 15, 0.10);
  --shadow-lg: 0 24px 64px rgba(184, 65, 15, 0.18);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --container: 1240px;

  --ff-head: 'Montserrat', 'Inter', system-ui, sans-serif;
  --ff-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

a { color: var(--accent); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent-dark); }

::selection { background: var(--accent); color: #fff; }

/* ===== Buttons ===== */
.btn {
  font-family: var(--ff-body);
  font-weight: 600;
  border-radius: 10px;
  padding: .75rem 1.5rem;
  letter-spacing: .01em;
  transition: all .25s ease;
  border: 2px solid transparent;
}
.btn-lg {
  padding: 1rem 1.9rem;
  font-size: 1.05rem;
  border-radius: 12px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 60%, var(--accent-dark) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 22px rgba(184, 65, 15, 0.32);
}
.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(184, 65, 15, 0.40);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--accent-pale);
  border-color: var(--accent-light);
  color: var(--accent-dark);
}
.btn-outline-light-soft {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.btn-outline-light-soft:hover {
  background: #fff;
  color: var(--accent-dark);
}

/* ===== Top bar ===== */
.top-bar {
  background: var(--bg-darker);
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.top-info { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.top-info i { color: var(--accent-soft); margin-right: .35rem; }

/* ===== Header ===== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all .25s ease;
}
.main-header.scrolled {
  box-shadow: var(--shadow);
}
.brand-logo {
  height: 50px;
  width: auto;
  display: block;
}
.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text);
  padding: .5rem .9rem !important;
  position: relative;
  transition: color .2s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--accent);
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all .2s ease;
  transform: translateX(-50%);
}
.navbar-nav .nav-link:hover::after { width: 60%; }

.header-cta {
  flex-shrink: 0;
}
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}
.phone-link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-pale);
  color: var(--accent);
  font-size: 1rem;
  transition: all .2s ease;
}
.phone-link:hover { color: var(--accent); }
.phone-link:hover i {
  background: var(--accent);
  color: #fff;
  transform: scale(1.05);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 5rem 0 6rem;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(245,166,35,.18), transparent 60%),
    radial-gradient(800px 500px at -10% 100%, rgba(230,107,31,.10), transparent 60%),
    linear-gradient(180deg, #FFFBF6 0%, #FFFFFF 100%);
  overflow: hidden;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
}
.shape-1 { width: 320px; height: 320px; background: rgba(245,166,35,.35); top: -80px; left: -80px; }
.shape-2 { width: 260px; height: 260px; background: rgba(230,107,31,.30); bottom: -60px; right: 10%; }
.shape-3 { width: 200px; height: 200px; background: rgba(184,65,15,.20); top: 40%; right: 30%; }

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: #fff;
  color: var(--accent-dark);
  padding: .5rem 1rem;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  border: 1px solid var(--accent-pale);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(184,65,15,.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(184,65,15,.18); }
  50%      { box-shadow: 0 0 0 8px rgba(184,65,15,.06); }
}

.hero-title {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(2.1rem, 4.6vw, 3.7rem);
  line-height: 1.12;
  letter-spacing: -.01em;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.text-accent { color: var(--accent); }

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .8rem 1.2rem;
}
.hero-meta li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .95rem;
  color: var(--text);
}
.hero-meta i {
  color: var(--accent);
  font-size: 1.1rem;
}

/* Hero visual */
.hero-visual {
  position: relative;
  z-index: 1;
}
.hero-image {
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 30px 50px rgba(184,65,15,.18));
}

.floating-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .8rem;
  animation: floatY 4s ease-in-out infinite;
}
.card-quote {
  top: 8%;
  left: -10px;
}
.card-stamp {
  bottom: 8%;
  right: -10px;
  animation-delay: 1.5s;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.quote-ico, .stamp-ring {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quote-ico {
  background: var(--accent-pale);
  color: var(--accent);
  font-size: 1.4rem;
}
.stamp-ring {
  background: linear-gradient(135deg, var(--accent-light), var(--accent-dark));
  color: #fff;
  font-size: 1.4rem;
}
.quote-num, .stamp-num {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text);
  line-height: 1;
}
.quote-label, .stamp-label {
  font-size: .8rem;
  color: var(--text-muted);
}

/* ===== Trust bar ===== */
.trust-bar {
  padding: 2.5rem 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-eyebrow {
  font-size: .9rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 500;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: flex-end;
}
.trust-logo {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 1rem;
  opacity: .8;
  transition: opacity .2s ease, color .2s ease;
}
.trust-logo:hover { opacity: 1; color: var(--accent); }
.trust-logo i { font-size: 1.4rem; color: var(--accent-light); }

/* ===== Sections ===== */
.section {
  padding: 5rem 0;
}
.section-light { background: var(--bg); }
.section-dark {
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(245,166,35,.10), transparent 60%),
    linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  color: #fff;
}
.section-cream { background: var(--cream); }

.section-head {
  max-width: 780px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-head.light { color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-pale);
  padding: .4rem .9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.eyebrow-light {
  color: var(--accent-soft);
  background: rgba(245,166,35,.12);
}

.section-title {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: -.01em;
  margin: 0 0 .8rem;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0;
}
.section-dark .section-lead { color: rgba(255,255,255,.72); }

/* ===== Services ===== */
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  height: 100%;
  position: relative;
  transition: all .25s ease;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-light), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover {
  border-color: var(--accent-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }

.service-ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-pale) 0%, #FFD9B8 100%);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  transition: all .25s ease;
}
.service-card:hover .service-ico {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: #fff;
}
.service-title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 .6rem;
}
.service-text {
  color: var(--text-muted);
  font-size: .97rem;
  margin-bottom: 1.2rem;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .92rem;
  color: var(--text);
}
.service-list i {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== Advantages ===== */
.adv-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  height: 100%;
  backdrop-filter: blur(4px);
  transition: all .25s ease;
}
.adv-card:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-4px);
  border-color: var(--accent-soft);
}
.adv-ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.adv-card h4 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  margin: 0 0 .6rem;
}
.adv-card p {
  color: rgba(255,255,255,.72);
  font-size: .95rem;
  margin: 0;
}

/* ===== Process / Steps ===== */
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
  position: relative;
}
.process-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem 1.6rem;
  position: relative;
  transition: all .25s ease;
}
.process-step:hover {
  border-color: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.step-num {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--accent);
  opacity: .22;
  line-height: 1;
  margin-bottom: .8rem;
  letter-spacing: -.02em;
}
.process-step h5 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 .5rem;
}
.process-step p {
  color: var(--text-muted);
  font-size: .93rem;
  margin: 0;
}

/* ===== Stats ===== */
.stats-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 4rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats-section::before,
.stats-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  filter: blur(60px);
}
.stats-section::before { width: 320px; height: 320px; top: -100px; right: -80px; }
.stats-section::after  { width: 280px; height: 280px; bottom: -100px; left: -60px; }
.stats-section .container { position: relative; z-index: 1; }

.stat { text-align: center; }
.stat-num {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1;
  margin-bottom: .5rem;
  color: #fff;
}
.stat-label {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}

/* ===== Directions ===== */
.direction-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.2rem;
  height: 100%;
  transition: all .25s ease;
}
.direction-card:hover {
  border-color: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.dir-flag {
  font-size: 2rem;
  margin-bottom: .8rem;
  line-height: 1;
}
.direction-card h6 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 .4rem;
}
.direction-card p {
  font-size: .9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== Reviews ===== */
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  height: 100%;
  position: relative;
  transition: all .25s ease;
}
.review-card:hover {
  box-shadow: var(--shadow);
}
.review-quote {
  position: absolute;
  top: 1rem;
  right: 1.4rem;
  font-size: 2.4rem;
  color: var(--accent);
  opacity: .25;
  line-height: 1;
}
.review-card p {
  color: var(--text);
  font-size: .98rem;
  margin: 0 0 1.4rem;
  line-height: 1.65;
}
.review-author {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--ff-head);
  flex-shrink: 0;
}
.review-author strong {
  display: block;
  font-size: .95rem;
  color: var(--text);
}
.review-author span {
  font-size: .82rem;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.accordion-custom .accordion-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: .8rem;
  overflow: hidden;
}
.accordion-custom .accordion-button {
  background: #fff;
  color: var(--text);
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 1.2rem 1.4rem;
  box-shadow: none !important;
}
.accordion-custom .accordion-button:not(.collapsed) {
  background: var(--accent-pale);
  color: var(--accent-dark);
}
.accordion-custom .accordion-button::after {
  background-image: none;
  content: "+";
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 600;
  width: auto;
  height: auto;
  color: var(--accent);
  transform: none;
  transition: transform .2s ease;
}
.accordion-custom .accordion-button:not(.collapsed)::after {
  content: "−";
  color: var(--accent-dark);
}
.accordion-custom .accordion-body {
  padding: 0 1.4rem 1.3rem;
  color: var(--text-muted);
  font-size: .97rem;
  line-height: 1.65;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 5rem 0;
  background: var(--bg);
}
.cta-card {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 0% 0%, rgba(245,166,35,.18), transparent 60%),
    radial-gradient(500px 300px at 100% 100%, rgba(230,107,31,.14), transparent 60%);
  pointer-events: none;
}
.cta-info-col {
  padding: 3.2rem 2.8rem;
  color: #fff;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.18;
  margin: .8rem 0 1rem;
}
.cta-text {
  color: rgba(255,255,255,.78);
  font-size: 1rem;
  margin-bottom: 1.6rem;
}
.cta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem 1rem;
}
.cta-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .95rem;
  color: #fff;
}
.cta-list i { color: var(--accent-soft); }

.cta-contacts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.cta-contact {
  display: flex;
  align-items: center;
  gap: .8rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  padding: .9rem 1rem;
  border-radius: var(--radius);
  color: #fff;
  transition: all .2s ease;
}
.cta-contact:hover {
  background: rgba(255,255,255,.10);
  border-color: var(--accent-soft);
  color: #fff;
}
.cta-contact i {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.cta-contact small {
  display: block;
  font-size: .72rem;
  color: rgba(255,255,255,.62);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.cta-contact strong {
  display: block;
  font-size: .98rem;
  font-weight: 700;
}

.cta-form-col {
  background: #fff;
  padding: 3rem 2.6rem;
  position: relative;
  z-index: 1;
}
.cta-form-title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 0 1.4rem;
}
.cta-form .form-label {
  font-weight: 500;
  font-size: .9rem;
  color: var(--text);
  margin-bottom: .35rem;
}
.cta-form .form-control {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .7rem .9rem;
  font-size: .98rem;
  transition: all .2s ease;
}
.cta-form .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184,65,15,.15);
}
.form-policy {
  font-size: .78rem;
  color: var(--text-soft);
  margin: .8rem 0 0;
  text-align: center;
}
.form-policy a { color: var(--accent); text-decoration: underline; }
.form-success {
  margin-top: 1rem;
  padding: .9rem 1rem;
  background: rgba(40,167,69,.10);
  border: 1px solid rgba(40,167,69,.32);
  border-radius: 10px;
  color: #155724;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.form-success i { font-size: 1.2rem; }

/* ===== Contacts ===== */
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  height: 100%;
  transition: all .25s ease;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--accent-light);
}
.contact-ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-pale), #FFD9B8);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.contact-card h5 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 .5rem;
}
.contact-card p {
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: .8rem;
}
.contact-link {
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent);
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-darker);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
  font-size: .95rem;
}
.footer-logo img { height: 46px; }
.footer-about {
  margin: 1rem 0 1.4rem;
  max-width: 380px;
  color: rgba(255,255,255,.62);
  line-height: 1.65;
}
.footer-social {
  display: flex;
  gap: .6rem;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  transition: all .2s ease;
}
.footer-social a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.footer h6 {
  font-family: var(--ff-head);
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  margin: 0 0 1.1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.footer-list a {
  color: rgba(255,255,255,.65);
  font-size: .95rem;
}
.footer-list a:hover { color: var(--accent-soft); }

.footer-contacts {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.footer-contacts li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .95rem;
}
.footer-contacts i {
  color: var(--accent-soft);
  font-size: 1rem;
  flex-shrink: 0;
}
.footer-contacts a { color: rgba(255,255,255,.85); }
.footer-contacts a:hover { color: var(--accent-soft); }

.footer-divider {
  border-color: rgba(255,255,255,.10);
  margin: 2.5rem 0 1.4rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}
.footer-bottom-links { display: flex; gap: 1.2rem; }
.footer-bottom-links a { color: rgba(255,255,255,.55); }
.footer-bottom-links a:hover { color: var(--accent-soft); }

/* ===== Floating call button ===== */
.float-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 14px 30px rgba(184,65,15,.40);
  z-index: 999;
  transition: all .2s ease;
  animation: pulse-call 2.5s ease-in-out infinite;
}
.float-call:hover {
  transform: scale(1.06);
  color: #fff;
}
@keyframes pulse-call {
  0%, 100% { box-shadow: 0 14px 30px rgba(184,65,15,.40), 0 0 0 0 rgba(184,65,15,.40); }
  50%      { box-shadow: 0 14px 30px rgba(184,65,15,.40), 0 0 0 18px rgba(184,65,15,0); }
}

/* ===== Cookie bar ===== */
.cookie-bar {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1000;
  font-size: .9rem;
  color: var(--text-muted);
}
.cookie-bar span { flex: 1; }
.cookie-bar a { color: var(--accent); text-decoration: underline; }

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }
  .header-cta {
    margin-top: 1rem;
    flex-direction: column;
    align-items: stretch !important;
    width: 100%;
  }
  .phone-link { justify-content: center; }
  .hero { padding: 3.5rem 0 4.5rem; }
  .hero-visual { margin-top: 2rem; }
  .cta-info-col, .cta-form-col { padding: 2.4rem 1.8rem; }
  .cta-list { grid-template-columns: 1fr; }
  .cta-contacts { grid-template-columns: 1fr; }
  .section { padding: 3.8rem 0; }
  .floating-card { display: none; }
}
@media (max-width: 767.98px) {
  .brand-logo { height: 42px; }
  .hero-title { font-size: 2rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cookie-bar { flex-direction: column; align-items: stretch; }
}

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
