/* ============================================================
   Krams Cleaning Services — Main Stylesheet
   krams-cy.com | EN + GR
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,600;0,6..12,700;0,6..12,800;1,6..12,400&display=swap');

/* --- Variables --- */
:root {
  --primary:       #36afeb;
  --primary-dark:  #1a8bc5;
  --dark:          #0d2540;
  --text:          #666666;
  --text-dark:     #333333;
  --light-blue:    #e1f0fb;
  --white:         #ffffff;
  --bg-alt:        #f8f8f8;
  --bg-cream:      #faf9f5;
  --font:          'Nunito Sans', sans-serif;
  --nav-h:         75px;
  --max-w:         1200px;
  --radius:        8px;
  --shadow:        0 4px 20px rgba(0,0,0,0.08);
  --transition:    0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  padding-top: var(--nav-h);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }
input, textarea, select, button { font-family: var(--font); }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

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

/* --- Typography --- */
h1, h2, h3, h4 { color: var(--dark); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1rem, 2vw, 1.3rem); }

.text-primary { color: var(--primary); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: var(--white); color: var(--dark); }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
#site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-logo { flex-shrink: 0; }
.site-logo img { height: 50px; width: auto; }

.main-nav ul { display: flex; gap: 4px; align-items: center; }
.main-nav a {
  color: var(--text-dark);
  font-size: 0.88rem;
  padding: 6px 12px;
  border-radius: 4px;
  transition: color var(--transition);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); }

.header-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.btn-call {
  background: var(--primary);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
}
.btn-call:hover { background: var(--primary-dark); }

.lang-switch { display: flex; gap: 2px; align-items: center; }
.lang-switch a {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all var(--transition);
  letter-spacing: 0.5px;
}
.lang-switch a:hover, .lang-switch a.lang-active {
  color: var(--primary);
  border-color: var(--primary);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0 70px;
}
.hero-blob {
  position: absolute;
  top: -80px;
  left: -40px;
  width: 66%;
  height: calc(100% + 160px);
  background: var(--light-blue);
  border-radius: 0 55% 45% 0 / 0 42% 38% 0;
  z-index: 0;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 40px;
  align-items: center;
}
.hero-tagline {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.hero h1 { margin-bottom: 18px; }
.hero .lead {
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 480px;
  color: var(--text-dark);
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img img {
  max-height: 380px;
  width: auto;
}

/* ============================================================
   SECTION BASICS
   ============================================================ */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-lg { padding: 100px 0; }

.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { margin-bottom: 10px; }
.section-title p { max-width: 600px; margin: 0 auto; font-size: 1rem; }

.section-bg-light { background: var(--light-blue); }
.section-bg-alt { background: var(--bg-alt); }
.section-bg-cream { background: var(--bg-cream); }

/* ============================================================
   LOGO TICKER
   ============================================================ */
.logos-section {
  padding: 36px 0;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  overflow: hidden;
}
.logos-wrapper { overflow: hidden; position: relative; }
.logos-track {
  display: flex;
  gap: 56px;
  animation: tickerScroll 28s linear infinite;
  width: max-content;
  align-items: center;
}
.logos-track:hover { animation-play-state: paused; }
.logos-track img {
  height: 44px;
  width: auto;
  filter: grayscale(60%);
  opacity: 0.65;
  transition: all var(--transition);
  flex-shrink: 0;
}
.logos-track img:hover { filter: grayscale(0); opacity: 1; }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SERVICE CARDS (home)
   ============================================================ */
.services-section { background: var(--light-blue); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,0.12); }
.service-card img { width: 100%; height: 190px; object-fit: cover; }
.service-card-body { padding: 18px 20px 20px; }
.service-card-body h3 { font-size: 0.95rem; margin-bottom: 14px; }

/* ============================================================
   FEATURE ROWS (alternating)
   ============================================================ */
.feature-row { padding: 60px 0; }
.feature-row .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-row.flip .container { direction: rtl; }
.feature-row.flip .container > * { direction: ltr; }

.feature-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature-content .tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.feature-content h2 { margin-bottom: 16px; }
.feature-content p { margin-bottom: 20px; }

.check-list { margin-bottom: 24px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: var(--text-dark);
}
.check-list li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%2336afeb' opacity='.15'/%3E%3Cpath d='M6 10l3 3 5-5' stroke='%2336afeb' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-section { background: var(--bg-cream); }
.process-intro { text-align: center; margin-bottom: 48px; }
.process-intro h2 { margin-bottom: 8px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--light-blue);
  z-index: 0;
}
.process-step { text-align: center; padding: 20px; position: relative; z-index: 1; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--light-blue);
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 16px;
}
.step-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.step-text { font-size: 0.87rem; }

/* ============================================================
   VALUE PROPS
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid #e4e4e4;
  text-align: center;
  transition: all var(--transition);
}
.value-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.value-card .value-sub {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.value-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.value-card p { font-size: 0.88rem; margin-bottom: 18px; }

/* ============================================================
   CTA CONTACT STRIP
   ============================================================ */
.cta-strip {
  background: var(--light-blue);
  padding: 60px 0;
  text-align: center;
}
.cta-strip h2 { margin-bottom: 28px; }
.contact-info-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--dark);
  font-weight: 600;
}
.contact-info-item svg { flex-shrink: 0; }

/* ============================================================
   ROMAN KRAMS CTA
   ============================================================ */
.roman-section { padding: 56px 0; background: var(--white); }
.roman-section .container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  max-width: 860px;
}
.roman-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--light-blue);
  flex-shrink: 0;
}
.roman-content h3 { margin-bottom: 6px; font-size: 1.1rem; }
.roman-content p { margin-bottom: 20px; font-size: 0.95rem; }
.roman-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.roman-actions .phone-direct { color: var(--text-dark); font-weight: 600; font-size: 0.9rem; }

/* ============================================================
   WAVE DIVIDERS
   ============================================================ */
.wave-top, .wave-bottom {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.wave-top svg, .wave-bottom svg { width: 100%; height: 70px; }

/* ============================================================
   REVIEWS PLACEHOLDER
   ============================================================ */
.reviews-section { padding: 60px 0; text-align: center; background: var(--white); }
.reviews-section h2 { margin-bottom: 32px; }
.google-reviews-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-alt);
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-top: 20px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--white);
  border-top: 1px solid #ebebeb;
  padding: 22px 0;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  justify-content: center;
  padding: 8px 0;
}
.footer-links a {
  color: var(--text);
  font-size: 0.82rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--primary); }
.footer-divider {
  width: 80%;
  margin: 6px auto;
  border: none;
  border-top: 1px solid #f0f0f0;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.page-hero {
  background: var(--light-blue);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.page-hero .container {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 40px;
  align-items: center;
}
.page-hero-img img {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead { font-size: 1rem; }

.service-list { display: flex; flex-direction: column; gap: 32px; }
.service-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.service-item:nth-child(even) .si-img { order: 2; }
.service-item:nth-child(even) .si-body { order: 1; }
.si-img img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; }
.si-body { padding: 36px 32px; display: flex; flex-direction: column; justify-content: center; }
.si-body h2 { font-size: 1.25rem; margin-bottom: 12px; }
.si-body p { font-size: 0.92rem; margin-bottom: 22px; }

.more-services { background: var(--bg-alt); padding: 60px 0; }
.more-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.more-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 4px solid var(--primary);
}
.more-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.more-card p { font-size: 0.88rem; }

/* ============================================================
   REFERENCES PAGE
   ============================================================ */
.refs-hero {
  padding: 100px 0 80px;
  min-height: 55vh;
  display: flex;
  align-items: center;
}
.refs-hero .container {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 60px;
  align-items: center;
}
.refs-content h1 { margin-bottom: 20px; }
.refs-divider {
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 20px;
}
.refs-content p { font-size: 0.95rem; margin-bottom: 14px; }
.refs-img img { width: 100%; max-width: 320px; margin: 0 auto; }

/* ============================================================
   ENGAGEMENT PAGE
   ============================================================ */
.engagement-hero {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.engagement-blob-center {
  position: absolute;
  width: 65%;
  height: 90%;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--light-blue);
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  z-index: 0;
  pointer-events: none;
}
.engagement-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.engagement-rocket { width: 180px; }
.clubs-title { text-align: center; margin-bottom: 40px; }
.clubs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.club-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.club-card:hover { transform: translateY(-3px); }
.club-card img { width: 100%; height: 160px; object-fit: cover; }
.club-body { padding: 18px 20px 22px; }
.club-body .badge {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 700;
  background: var(--light-blue);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.club-body h3 { font-size: 0.95rem; margin-bottom: 8px; }
.club-body p { font-size: 0.85rem; margin-bottom: 16px; }
.club-card.coming-soon { opacity: 0.55; }
.engagement-cta { background: var(--light-blue); padding: 60px 0; text-align: center; }
.engagement-cta h2 { margin-bottom: 12px; }
.engagement-cta p { margin-bottom: 24px; }

/* ============================================================
   INQUIRY / FORM PAGE
   ============================================================ */
.inquiry-page { padding: 60px 0; }
.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-alt);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.form-progress-bar {
  background: var(--light-blue);
  padding: 10px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.progress-track {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.6);
  border-radius: 3px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
  transition: width 0.4s ease;
}
.progress-pct { font-size: 0.78rem; font-weight: 700; color: var(--primary); flex-shrink: 0; }

.form-step { padding: 36px 40px; display: none; }
.form-step.active { display: block; }
.form-step h2 { margin-bottom: 8px; }
.form-step .step-subtitle { color: var(--text); margin-bottom: 6px; }
.form-step .step-hint { font-size: 0.83rem; font-style: italic; margin-bottom: 28px; color: var(--text); }

.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.87rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.req { color: var(--primary); }
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #d4d4d4;
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(54,175,235,0.1); }
.field-hint { font-size: 0.78rem; color: var(--text); margin-top: 3px; }

.radio-group, .check-opts { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; }
.radio-opt, .check-opt {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 0.87rem;
  color: var(--text-dark);
}
.radio-opt input, .check-opt input { accent-color: var(--primary); width: 15px; height: 15px; }

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: var(--white);
  border-top: 1px solid #e4e4e4;
}

.privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text);
  cursor: pointer;
}
.privacy-label input { accent-color: var(--primary); width: 15px; height: 15px; margin-top: 2px; flex-shrink: 0; }
.privacy-label a { color: var(--primary); }

.form-success { text-align: center; padding: 60px 40px; display: none; }
.form-success.visible { display: block; }
.success-icon { font-size: 3.5rem; margin-bottom: 16px; }
.form-success h2 { margin-bottom: 10px; }

/* ============================================================
   LEGAL PAGES (imprint / privacy)
   ============================================================ */
.legal-page { padding: 80px 0; }
.legal-page .container { max-width: 800px; }
.legal-page h1 { margin-bottom: 8px; }
.legal-divider { width: 40px; height: 3px; background: var(--primary); margin: 16px 0 32px; border-radius: 2px; }
.legal-page h2 { font-size: 1.15rem; margin-top: 32px; margin-bottom: 10px; color: var(--dark); }
.legal-page p, .legal-page li { font-size: 0.93rem; margin-bottom: 10px; }
.legal-page address { font-style: normal; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero .container,
  .page-hero .container,
  .refs-hero .container,
  .feature-row .container { grid-template-columns: 1fr; gap: 28px; }
  .feature-row.flip .container { direction: ltr; }
  .hero-img { display: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .service-item { grid-template-columns: 1fr; }
  .service-item:nth-child(even) .si-img { order: 0; }
  .service-item:nth-child(even) .si-body { order: 0; }
  .more-services-grid { grid-template-columns: 1fr; }
  .engagement-hero .container { grid-template-columns: 1fr; }
  .engagement-rocket { display: none; }
  .roman-section .container { grid-template-columns: auto 1fr; }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    padding: 16px 20px 24px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    transform: translateY(-110%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 998;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 2px; }
  .main-nav a { display: block; padding: 10px 12px; font-size: 0.95rem; }
  .mobile-toggle { display: flex; }
  .btn-call { display: none; }

  .hero-blob { width: 100%; border-radius: 0 0 40% 0 / 0 0 20% 0; height: 55%; }
  .hero { min-height: auto; padding: 40px 0 60px; }
  .hero .container { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .clubs-grid { grid-template-columns: 1fr 1fr; }
  .form-step { padding: 24px 22px; }
  .form-nav { padding: 14px 22px; }
  .contact-info-row { flex-direction: column; gap: 14px; align-items: flex-start; padding-left: 40px; }
  .roman-section .container { grid-template-columns: 1fr; text-align: center; }
  .roman-photo { margin: 0 auto; }
  .roman-actions { justify-content: center; }
  .refs-hero .container { grid-template-columns: 1fr; }
  .refs-img { display: none; }
}

@media (max-width: 480px) {
  .clubs-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
}

/* ============================================================
   HOME v2 — HERO LOGO
   ============================================================ */
.hero-img img { mix-blend-mode: multiply; }
.hero-link-cta {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
}
.hero-link-cta:hover { color: var(--primary-dark); }

/* ============================================================
   LOGOS LABEL
   ============================================================ */
.logos-label {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text);
  padding: 20px 0 4px;
}

/* ============================================================
   SERVICE SLIDER (home)
   ============================================================ */
.services-slider-section { background: var(--white); }
.services-slider-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: center;
}
.slider-stage {
  background: var(--light-blue);
  border-radius: 12px;
  padding: 32px 32px 24px;
}
.slider-title { margin-bottom: 20px; font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
.slide { display: none; }
.slide.active { display: block; }
.slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
}
.slide h3 { margin: 18px 0 14px; font-size: 1rem; }
.slider-dots {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background var(--transition);
}
.slider-dot.active { background: var(--primary); }
.slider-deco {
  overflow: visible;
  opacity: 1 !important;
  transform: none !important;
}
.slider-deco img {
  width: 500px;
  max-width: none;
  display: block;
  margin-left: auto;
  margin-right: 0;
  /* JS scroll-parallax controls transform & opacity */
  transform: translateX(110vw);
  opacity: 0;
  will-change: transform, opacity;
}
/* reduced-motion fallback: show statically */
@media (prefers-reduced-motion: reduce) {
  .slider-deco img {
    transform: translateX(calc((100vw - min(100vw, var(--max-w))) / 2 + 24px)) !important;
    opacity: 1 !important;
  }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { padding: 80px 0; background: var(--white); text-align: left; }
.reviews-section h2 { text-align: center; margin-bottom: 40px; }
.reviews-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: flex-start;
}
.reviews-badge {
  text-align: center;
  padding: 28px 20px;
  border: 1px solid #eee;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.badge-title {
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.badge-stars { font-size: 1.5rem; color: #FBBC04; margin-bottom: 8px; }
.badge-count { font-size: 0.8rem; color: var(--text); margin-bottom: 14px; }
.google-logo { margin: 0 auto; }
.review-cards-outer { overflow: hidden; }
.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.review-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.88rem; color: var(--dark); line-height: 1.2; }
.review-date { font-size: 0.72rem; color: var(--text); }
.review-google-icon { margin-left: auto; flex-shrink: 0; }
.review-stars { color: #FBBC04; margin-bottom: 8px; font-size: 0.9rem; }
.review-text { font-size: 0.83rem; color: var(--text); line-height: 1.5; margin: 0; }
.reviews-footer {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.reviews-more-link { color: var(--text-dark); font-size: 0.9rem; font-weight: 600; }
.reviews-more-link:hover { color: var(--primary); }

/* check-list with <img> icons */
.check-list li img { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.check-list li:has(img)::before { display: none; }

/* ============================================================
   INSTAGRAM SECTION
   ============================================================ */
.instagram-section {
  padding: 60px 0;
  text-align: center;
  background: var(--white);
}
.instagram-section .insta-icon {
  margin: 0 auto 14px;
  color: #8a8a8a;
  display: block;
}
.instagram-section h2 { margin-bottom: 22px; }

/* ============================================================
   FULL-BLEED SECTIONS
   ============================================================ */
.section-fullbleed {
  position: relative;
  min-height: 605px;
  background: #3a5a7a;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
}
.section-fullbleed::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 40, 65, 0.35);
  z-index: 1;
}
.fullbleed-video {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  z-index: 0;
  will-change: transform;
}
.section-fullbleed .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.fullbleed-text { color: var(--white); }
.fullbleed-text h2 {
  color: var(--white);
  border-left: 4px solid var(--primary);
  padding-left: 16px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.25;
}
.fullbleed-overline {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.fullbleed-card {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.6);
}
.fullbleed-card h3 { color: var(--dark); margin-bottom: 6px; }
.fullbleed-card-sub {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 14px;
}
.fullbleed-card p { color: var(--text); margin-bottom: 14px; }
.fullbleed-card .btn-outline { border-color: var(--dark); color: var(--dark); }

/* ============================================================
   CONTACT CTA SECTION
   ============================================================ */
.contact-cta-section { background: var(--white); }
.contact-cta-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: center;
}
.contact-overline {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.contact-cta-left h2 { margin-bottom: 20px; font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
.contact-cta-left address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 2;
}
.contact-cta-left address a { color: var(--primary); }
.contact-cta-card {
  background: var(--light-blue);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-cta-card svg { margin-bottom: 14px; }
.contact-cta-card h3 { margin-bottom: 10px; }
.contact-cta-card p { font-size: 0.9rem; margin-bottom: 22px; color: var(--text-dark); }
.contact-globe { width: 200px; flex-shrink: 0; }
.contact-globe img { width: 100%; opacity: 0.75; }

/* ============================================================
   VALUES SECTION (with icons)
   ============================================================ */
.values-section { background: var(--bg-alt); }
.values-headline {
  text-align: center;
  margin-bottom: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  display: block;
}
.values-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}
.values-link:hover { color: var(--primary-dark); }

/* ============================================================
   PROCESS WITH CENTER IMAGE
   ============================================================ */
.process-section { background: var(--bg-cream); }
.process-divider {
  width: 50px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 14px auto 16px;
}
/* Override old 4-col grid */
.process-grid {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  gap: 24px;
  align-items: center;
}
.process-grid::before { display: none; }
.process-col { display: flex; flex-direction: column; gap: 32px; }
.process-center-img img { width: 220px; display: block; }
.process-step { text-align: center; padding: 12px 8px; }

/* ============================================================
   ROMAN KRAMS — wave background
   ============================================================ */
.roman-section {
  background: var(--light-blue) !important;
  padding: 80px 0;
}
.roman-section .container {
  max-width: 860px;
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  gap: 40px;
  align-items: center;
}
.roman-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.roman-content h3 { font-size: 1.2rem; margin-bottom: 20px; }
.phone-direct { color: var(--text-dark); font-weight: 600; font-size: 0.9rem; }
.phone-direct a { color: var(--primary); }

/* ============================================================
   RESPONSIVE — new sections
   ============================================================ */
@media (max-width: 960px) {
  .services-slider-wrap { grid-template-columns: 1fr; }
  .slider-deco { display: none; }
  .reviews-wrap { grid-template-columns: 1fr; }
  .review-cards { grid-template-columns: 1fr; }
  .section-fullbleed .container { grid-template-columns: 1fr; }
  .fullbleed-text { display: none; }
  .contact-cta-section .container { grid-template-columns: 1fr 1fr; }
  .contact-globe { display: none; }
  .process-grid { grid-template-columns: 1fr 1fr !important; }
  .process-center-img { display: none; }
  .roman-section .container { grid-template-columns: auto 1fr !important; }
}
@media (max-width: 768px) {
  .reviews-wrap { grid-template-columns: 1fr; }
  .review-cards { grid-template-columns: 1fr; }
  .contact-cta-section .container { grid-template-columns: 1fr; }
  .roman-section .container { grid-template-columns: 1fr !important; text-align: center; }
  .roman-photo { margin: 0 auto; }
  .roman-actions { justify-content: center; }
  .process-grid { grid-template-columns: 1fr 1fr !important; }
}
