/* ===================================
   FreshFreeze.com — Main Stylesheet
   Premium Food & Frozen Fish Delivery
   Turkey | 2026
=================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=DM+Serif+Display:ital@0;1&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #0A2342;
  --primary-light: #163D6A;
  --accent: #1BB8C4;
  --accent-hover: #14A4AE;
  --gold: #C9A84C;
  --white: #FFFFFF;
  --off-white: #F7F9FC;
  --light-gray: #EDF1F7;
  --mid-gray: #8A9BB0;
  --dark-gray: #3D4F63;
  --text-main: #1A2B3C;
  --text-light: #5A6E82;
  --border: #D8E4EE;
  --shadow-sm: 0 2px 12px rgba(10,35,66,0.08);
  --shadow-md: 0 8px 32px rgba(10,35,66,0.12);
  --shadow-lg: 0 20px 60px rgba(10,35,66,0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--text-main);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { color: var(--text-light); line-height: 1.75; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--accent);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(27,184,196,0.35);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(27,184,196,0.45);
  color: var(--white);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: transparent;
  color: var(--primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--white);
  color: var(--primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

/* ===== HEADER / NAVIGATION ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 24px;
  height: 24px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--primary);
  line-height: 1;
}

.logo-tagline {
  font-size: 0.68rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-gray);
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: var(--light-gray);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
}

.header-phone svg {
  color: var(--accent);
}

/* Mobile burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.mobile-nav.open { display: flex; }

.mobile-nav .nav-link {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
}

.mobile-nav .btn-primary {
  margin-top: 8px;
  justify-content: center;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
  padding-top: 76px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,35,66,0.92) 0%,
    rgba(10,35,66,0.75) 50%,
    rgba(27,184,196,0.15) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}

.hero-text .section-label { color: var(--accent); }
.hero-text .section-label::before { background: var(--accent); }

.hero-title {
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-main {
  width: 100%;
  max-width: 540px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.hero-badge-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-badge-text span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  padding: 28px 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 200px;
}

.trust-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.trust-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
}

.trust-info span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ===== FEATURED PRODUCTS SECTION ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-body {
  padding: 24px;
}

.product-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.product-body p {
  font-size: 0.87rem;
  margin-bottom: 20px;
  color: var(--text-light);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
}

.price-value {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--primary);
}

.price-unit {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 400;
}

.product-order-btn {
  padding: 10px 20px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 600;
  transition: var(--transition);
}

.product-order-btn:hover {
  background: var(--accent);
  color: var(--white);
}

/* ===== HOW IT WORKS ===== */
.how-section {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.how-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(27,184,196,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.how-section .section-label { color: rgba(27,184,196,0.9); }
.how-section .section-label::before { background: rgba(27,184,196,0.9); }
.how-section h2 { color: var(--white); }
.how-section .section-intro { color: rgba(255,255,255,0.65); max-width: 560px; margin-bottom: 64px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(27,184,196,0.4), transparent);
}

.step-item {
  position: relative;
  text-align: center;
}

.step-num {
  width: 76px;
  height: 76px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(27,184,196,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--accent);
}

.step-num .step-icon {
  font-size: 1.8rem;
}

.step-item h4 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1rem;
}

.step-item p {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}

/* ===== ABOUT / WHO WE ARE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 52%;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text .section-label { margin-bottom: 16px; }

.about-text h2 {
  margin-bottom: 20px;
}

.about-text > p {
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(27,184,196,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.feature-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.feature-text span {
  font-size: 0.84rem;
  color: var(--text-light);
}

/* ===== GALLERY ===== */
.gallery-section {
  background: var(--off-white);
}

.gallery-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  aspect-ratio: 1;
}

.gallery-item.wide img {
  aspect-ratio: 2/1;
}

.gallery-item.tall img {
  aspect-ratio: 1/2;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,35,66,0.5) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 96px 0;
  background: var(--white);
}

.testimonials-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--gold);
}

.testimonial-text {
  font-size: 0.94rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.author-info span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ===== CTA BANNER ===== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(27,184,196,0.15) 0%, transparent 70%);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.cta-text h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-text p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.cta-phone {
  font-size: 1.5rem;
  font-family: 'DM Serif Display', serif;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-phone svg { color: var(--accent); }

.cta-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-align: right;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--text-main);
  color: var(--white);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tagline { color: var(--accent); }
.footer-brand .logo-icon { background: var(--accent); }

.footer-desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  margin: 20px 0 28px;
  line-height: 1.7;
}

/* .footer-social removed */

/* ===== PRODUCT CARDS ENTRY ANIMATION ===== */
@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.products-full-grid .product-card {
  animation: cardFadeIn 0.5s ease forwards;
}
.products-full-grid .product-card:nth-child(1)  { animation-delay: 0.05s; }
.products-full-grid .product-card:nth-child(2)  { animation-delay: 0.10s; }
.products-full-grid .product-card:nth-child(3)  { animation-delay: 0.15s; }
.products-full-grid .product-card:nth-child(4)  { animation-delay: 0.20s; }
.products-full-grid .product-card:nth-child(5)  { animation-delay: 0.25s; }
.products-full-grid .product-card:nth-child(6)  { animation-delay: 0.30s; }
.products-full-grid .product-card:nth-child(7)  { animation-delay: 0.35s; }
.products-full-grid .product-card:nth-child(8)  { animation-delay: 0.40s; }
.products-full-grid .product-card:nth-child(9)  { animation-delay: 0.45s; }
.products-full-grid .product-card:nth-child(10) { animation-delay: 0.50s; }
.products-full-grid .product-card:nth-child(11) { animation-delay: 0.55s; }
.products-full-grid .product-card:nth-child(12) { animation-delay: 0.60s; }

.products-grid .product-card {
  animation: cardFadeIn 0.5s ease forwards;
}
.products-grid .product-card:nth-child(1) { animation-delay: 0.05s; }
.products-grid .product-card:nth-child(2) { animation-delay: 0.15s; }
.products-grid .product-card:nth-child(3) { animation-delay: 0.25s; }
.products-grid .product-card:nth-child(4) { animation-delay: 0.10s; }
.products-grid .product-card:nth-child(5) { animation-delay: 0.20s; }
.products-grid .product-card:nth-child(6) { animation-delay: 0.30s; }

.footer-col h5 {
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-link:hover { color: var(--accent); }

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact-item svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
}

.footer-legal a:hover { color: var(--accent); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 2px solid var(--border);
  padding: 20px 0;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.1);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 0.88rem;
  color: var(--text-light);
  flex: 1;
}

.cookie-text a {
  color: var(--accent);
  font-weight: 600;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--primary);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(27,184,196,0.1) 0%, transparent 70%);
}

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

.page-hero .section-label { color: var(--accent); }
.page-hero .section-label::before { background: var(--accent); }

.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 560px; font-size: 1.1rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.breadcrumb a, .breadcrumb span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a:hover { color: var(--accent); }

.breadcrumb-sep { color: rgba(255,255,255,0.25); }

/* ===== CONTACTS PAGE ===== */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contact-info-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1.5px solid var(--border);
}

.contact-info-card h3 {
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child { border-bottom: none; }

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(27,184,196,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-item-body strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.contact-item-body p, .contact-item-body a {
  font-size: 0.97rem;
  color: var(--primary);
  font-weight: 500;
}

.contact-item-body a:hover { color: var(--accent); }

.hours-table {
  width: 100%;
  margin-top: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 4px 0;
  color: var(--text-light);
}

.hours-row strong { color: var(--primary); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-form-card h3 { margin-bottom: 32px; }

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text-main);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27,184,196,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== PRODUCTS PAGE ===== */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-light);
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.products-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.legal-section p, .legal-section li {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.75;
}

.legal-section ul, .legal-section ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-section li { list-style: disc; margin-bottom: 8px; }
.legal-section ol li { list-style: decimal; }

.legal-section h3 {
  font-size: 1.1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--primary);
  margin: 24px 0 10px;
}

/* ===== ABOUT PAGE ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.team-card {
  text-align: center;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}

.team-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.team-card h4 { margin-bottom: 4px; }

.team-role {
  font-size: 0.83rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  display: block;
}

.team-card p {
  font-size: 0.86rem;
}

/* ===== VALUES SECTION ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: rgba(27,184,196,0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 998;
  opacity: 0;
  transform: translateY(16px);
  box-shadow: var(--shadow-md);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children — only non-product-card elements */
.stagger-children > *:not(.product-card) {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.in-view > *:not(.product-card):nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.stagger-children.in-view > *:not(.product-card):nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
.stagger-children.in-view > *:not(.product-card):nth-child(3) { opacity: 1; transform: none; transition-delay: 0.2s; }
.stagger-children.in-view > *:not(.product-card):nth-child(4) { opacity: 1; transform: none; transition-delay: 0.3s; }
.stagger-children.in-view > *:not(.product-card):nth-child(5) { opacity: 1; transform: none; transition-delay: 0.4s; }
.stagger-children.in-view > *:not(.product-card):nth-child(6) { opacity: 1; transform: none; transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .steps-grid::before { display: none; }
}

@media (max-width: 900px) {
  section { padding: 72px 0; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-img-main { max-width: 100%; }
  .hero-badge { bottom: -16px; left: 16px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-secondary { display: none; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { align-items: flex-start; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item img, .gallery-item.wide img, .gallery-item.tall img { aspect-ratio: 1; }
  .contacts-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .products-full-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  section { padding: 56px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .main-nav { display: none; }
  .header-actions .btn-primary { display: none; }
  .header-phone { display: none; }
  .burger { display: flex; }
  .hero-stats { gap: 24px; }
  .trust-bar-inner { gap: 20px; }
  .trust-item { min-width: 160px; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .products-full-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .contact-form-card { padding: 28px 20px; }
  .contact-info-card { padding: 28px 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cookie-inner { flex-direction: column; }
  .cookie-actions { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .hero-stats { flex-direction: column; gap: 16px; }
}
