/*
Theme Name: Атомус Чиллеры
Theme URI: https://ten.bz
Author: Атомус Групп
Author URI: https://ten.bz
Description: Профессиональный сайт по продаже промышленных чиллеров и холодильного оборудования
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: atomus-chillers
*/

/* ============================================================
   DESIGN SYSTEM — Атомус Групп
   Philosophy: Industrial Precision — тёмно-синий + белый + красный акцент
   Fonts: Oswald (заголовки) + Inter (текст)
   Colors: --navy #1a2744, --red #c0392b, --blue-light #4a90d9
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #1a2744;
  --navy-dark: #111827;
  --navy-light: #243356;
  --red: #c0392b;
  --red-hover: #a93226;
  --blue-accent: #4a90d9;
  --blue-light: #e8f0fe;
  --gray-light: #f8fafc;
  --gray-mid: #64748b;
  --text: #1e293b;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(26,39,68,0.10);
  --shadow-lg: 0 8px 40px rgba(26,39,68,0.16);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--red-hover); box-shadow: 0 4px 16px rgba(192,57,43,0.35); }
.btn-primary:active { transform: scale(0.98); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ---- Section header ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.section-label::before, .section-label::after {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--red);
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-subtitle {
  color: var(--gray-mid);
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.7;
}

/* ---- Scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(1.5rem); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.top-bar-left { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.top-bar-item { display: flex; align-items: center; gap: 0.375rem; }
.top-bar-item svg { width: 13px; height: 13px; opacity: 0.7; }
.top-bar-right { display: flex; align-items: center; gap: 1rem; }
.top-bar-badge {
  background: var(--red);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.6rem;
  border-radius: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(26,39,68,0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  gap: 1rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--navy);
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.logo-sub { font-size: 0.65rem; color: var(--gray-mid); line-height: 1.2; }

.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  border-radius: 0.375rem;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--navy); background: var(--blue-light); }

.header-cta { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.header-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.875rem;
}
.header-phone .phone-icon {
  width: 2rem;
  height: 2rem;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-phone .phone-icon svg { width: 14px; height: 14px; color: var(--navy); }
.phone-label { font-family: 'Oswald', sans-serif; font-weight: 600; line-height: 1.2; }
.phone-sub { font-size: 0.7rem; color: var(--gray-mid); line-height: 1.2; }
@media (min-width: 768px) { .header-phone { display: flex; } }
@media (max-width: 1023px) { .main-nav { display: none; } }

/* Mobile menu */
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  border-radius: 0.375rem;
  transition: background 0.2s;
}
.mobile-toggle:hover { background: var(--gray-light); }
.mobile-toggle svg { width: 22px; height: 22px; }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
  border-radius: 0.375rem;
  transition: background 0.2s;
}
.mobile-menu a:hover { background: var(--blue-light); color: var(--navy); }
.mobile-menu-phones { border-top: 1px solid var(--border); margin-top: 0.75rem; padding-top: 0.75rem; }
.mobile-menu-phones a { color: var(--navy); font-weight: 600; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(17,24,39,0.92) 0%, rgba(26,39,68,0.75) 50%, rgba(26,39,68,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 9rem;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--red);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; }
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.hero-title span { color: var(--blue-accent); }
.hero-desc {
  color: rgba(255,255,255,0.8);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-desc strong { color: white; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0.5rem;
  padding: 0.5rem 0.875rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 500;
}
.hero-badge-item svg { width: 15px; height: 15px; color: var(--blue-accent); flex-shrink: 0; }
.hero-badge-item strong { display: block; font-size: 0.75rem; font-weight: 700; }
.hero-badge-item span { font-size: 0.7rem; opacity: 0.75; }

/* Stats bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1);
  z-index: 2;
}
.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 640px) { .hero-stats-inner { grid-template-columns: repeat(4, 1fr); } }
.hero-stat {
  padding: 1rem 1.25rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.hero-stat-num span { color: var(--blue-accent); }
.hero-stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.6); margin-top: 0.25rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-section { padding: 5rem 0; background: var(--white); }
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--gray-light);
}
.product-card-body { padding: 1.25rem; }
.product-card-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  margin-bottom: 0.625rem;
}
.product-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.product-card-desc { font-size: 0.85rem; color: var(--gray-mid); line-height: 1.6; margin-bottom: 1rem; }
.product-card-specs { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem; }
.product-spec {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--border);
}
.product-spec-label { color: var(--gray-mid); }
.product-spec-value { font-weight: 600; color: var(--navy); }
.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s;
}
.product-card-link:hover { color: var(--red); }
.product-card-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.product-card-link:hover svg { transform: translateX(3px); }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-section { padding: 5rem 0; background: var(--navy); }
.industries-section .section-label { color: rgba(255,255,255,0.6); }
.industries-section .section-label::before, .industries-section .section-label::after { background: rgba(255,255,255,0.4); }
.industries-section .section-title { color: white; }
.industries-section .section-subtitle { color: rgba(255,255,255,0.65); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .industries-grid { grid-template-columns: repeat(5, 1fr); } }

.industry-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  cursor: pointer;
}
.industry-card:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); transform: translateY(-3px); }
.industry-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(74,144,217,0.2);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.5rem;
}
.industry-name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  color: white;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 0.375rem;
}
.industry-desc { font-size: 0.75rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ============================================================
   WHY US
   ============================================================ */
.whyus-section { padding: 5rem 0; background: var(--gray-light); }
.whyus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .whyus-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .whyus-grid { grid-template-columns: repeat(3, 1fr); } }

.whyus-card {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s;
}
.whyus-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.whyus-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: var(--blue-light);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.375rem;
}
.whyus-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.whyus-desc { font-size: 0.875rem; color: var(--gray-mid); line-height: 1.65; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 1rem;
  padding: 3rem 2rem;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner-text h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
}
.cta-banner-text p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { padding: 5rem 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-img-wrap { position: relative; border-radius: 0.75rem; overflow: hidden; }
.about-img { width: 100%; height: 420px; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--navy);
  color: white;
  border-radius: 0.625rem;
  padding: 0.875rem 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.about-img-badge-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-accent);
  line-height: 1;
}
.about-img-badge-text { font-size: 0.75rem; color: rgba(255,255,255,0.8); line-height: 1.4; }
.about-content .section-title { margin-bottom: 1rem; }
.about-content p { color: var(--gray-mid); line-height: 1.75; margin-bottom: 1.25rem; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.75rem 0;
  padding: 1.5rem;
  background: var(--gray-light);
  border-radius: 0.75rem;
}
.about-stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.about-stat-num span { color: var(--red); }
.about-stat-label { font-size: 0.75rem; color: var(--gray-mid); margin-top: 0.25rem; }

/* ============================================================
   CASES
   ============================================================ */
.cases-section { padding: 5rem 0; background: var(--gray-light); }
.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .cases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cases-grid { grid-template-columns: repeat(3, 1fr); } }

.case-card {
  background: var(--white);
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.case-card-header {
  background: var(--navy);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.case-card-icon { font-size: 1.75rem; }
.case-card-badge {
  background: var(--red);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  white-space: nowrap;
}
.case-card-body { padding: 1.25rem; }
.case-card-industry {
  font-size: 0.75rem;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.375rem;
}
.case-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.case-card-result {
  background: var(--blue-light);
  border-radius: 0.5rem;
  padding: 0.625rem 0.875rem;
  font-size: 0.8rem;
  color: var(--navy);
  font-weight: 500;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { padding: 5rem 0; background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--gray-light);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
}
.review-stars { color: #f59e0b; font-size: 0.875rem; margin-bottom: 0.75rem; letter-spacing: 0.1em; }
.review-text { font-size: 0.875rem; color: var(--text); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.875rem; color: var(--navy); }
.review-role { font-size: 0.75rem; color: var(--gray-mid); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { padding: 5rem 0; background: var(--navy); }
.contact-section .section-label { color: rgba(255,255,255,0.6); }
.contact-section .section-label::before, .contact-section .section-label::after { background: rgba(255,255,255,0.4); }
.contact-section .section-title { color: white; }
.contact-section .section-subtitle { color: rgba(255,255,255,0.65); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; color: var(--blue-accent); }
.contact-item-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-bottom: 0.125rem; }
.contact-item-value { color: white; font-weight: 600; font-size: 0.9rem; }
.contact-item-value a { color: white; transition: opacity 0.2s; }
.contact-item-value a:hover { opacity: 0.8; }

.contact-delivery {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.75rem;
  padding: 1.125rem;
  margin-top: 0.5rem;
}
.contact-delivery-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  color: white;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.delivery-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.delivery-tag {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: 0.25rem;
}
.delivery-note { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 0.625rem; }

/* Contact form */
.contact-form-wrap {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.contact-form-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-input, .form-select, .form-textarea {
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,39,68,0.1);
}
.form-textarea { resize: none; }
.form-submit {
  width: 100%;
  padding: 0.875rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}
.form-note { font-size: 0.75rem; color: #9ca3af; text-align: center; margin-top: 0.625rem; }

/* Form states */
.form-success {
  text-align: center;
  padding: 2rem;
}
.form-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { font-family: 'Oswald', sans-serif; font-size: 1.5rem; color: var(--navy); text-transform: uppercase; margin-bottom: 0.5rem; }
.form-success p { color: var(--gray-mid); }
.form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0f172a; color: white; }
.footer-main { padding: 3rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.footer-brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.footer-brand-desc { font-size: 0.85rem; color: #94a3b8; line-height: 1.6; margin-bottom: 1rem; }
.footer-phone { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: #cbd5e1; }
.footer-phone svg { width: 14px; height: 14px; }
.footer-col-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: #cbd5e1; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-copy { font-size: 0.8rem; color: #64748b; }

/* ============================================================
   FLOATING CTA (mobile)
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-items: flex-end;
}
@media (min-width: 768px) { .floating-cta { display: none; } }
.floating-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.floating-btn:hover { transform: scale(1.04); }
.floating-btn-primary { background: var(--red); color: white; }
.floating-btn-phone { background: var(--navy); color: white; }
.floating-btn svg { width: 16px; height: 16px; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Hero chiller product image */
/* =============================================
   HERO PRODUCT IMAGE — Desktop & Mobile
   ============================================= */

/* Desktop: absolute positioned, right side, large */
.hero-product-wrap {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  width: 48%;
  max-width: 640px;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-chiller-img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  filter: drop-shadow(0 20px 56px rgba(0,0,0,0.7)) drop-shadow(0 0 28px rgba(37,99,235,0.3));
  animation: floatChiller 4s ease-in-out infinite;
}
@keyframes floatChiller {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Tablet: slightly smaller */
@media (max-width: 1100px) {
  .hero-product-wrap {
    width: 30.8%;
    right: 3%;
  }
}

/* Mobile: below text, centered, full width */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-bottom: 0;
  }
  .hero-content {
    padding: 4rem 0 1.5rem;
    max-width: 100%;
  }
  .hero-product-wrap {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 85%;
    max-width: 380px;
    margin: 1.5rem auto 0;
    display: block;
  }
  .hero-chiller-img {
    max-height: 280px;
    filter: drop-shadow(0 15px 40px rgba(0,0,0,0.6)) drop-shadow(0 0 20px rgba(37,99,235,0.3));
  }
  /* On mobile, hero layout becomes column */
  .hero > .container {
    display: flex;
    flex-direction: column;
  }
}
