/*
Theme Name: Taxi 51 Kastoria
Theme URI: https://webrander.gr
Author: Webrander
Author URI: https://webrander.gr
Description: Custom theme για Taxi 51 Kastoria
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: taxi51
*/

/* =========================================
   TOKENS
========================================= */
:root {
  --yellow: #FFD700;
  --yellow-dark: #e6c200;
  --black: #111111;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-mid: #888888;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 4px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
}

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

/* =========================================
   TYPOGRAPHY
========================================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: 1.5rem; }

p { max-width: 65ch; }

/* =========================================
   LAYOUT UTILITIES
========================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section--yellow {
  background: var(--yellow);
  color: var(--black);
}

.section--gray {
  background: var(--gray-light);
  background-image: radial-gradient(circle, rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}

.section__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
  display: block;
}

.section--dark .section__eyebrow { color: var(--yellow); }
.section--yellow .section__eyebrow { color: var(--black); opacity: 0.6; }

/* =========================================
   BUTTONS
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn--primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.btn--primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn--dark:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

/* =========================================
   ANIMATION SYSTEM
========================================= */
@keyframes fade-up-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

[data-anim] {
  opacity: 0;
  transition: opacity 0.72s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.72s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

[data-anim="fade-up"]    { transform: translateY(48px); }
[data-anim="fade-down"]  { transform: translateY(-28px); }
[data-anim="fade-left"]  { transform: translateX(48px); }
[data-anim="fade-right"] { transform: translateX(-48px); }
[data-anim="fade-in"]    { transform: scale(0.93); }
[data-anim="zoom-in"]    { transform: scale(0.78); }

[data-anim].is-visible   { opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
  [data-anim] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* =========================================
   HEADER / NAV
========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 3px solid var(--yellow);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.site-logo span {
  color: var(--yellow);
}

.site-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
}

.site-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--yellow);
}

.nav-cta {
  background: var(--yellow) !important;
  color: var(--black) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--yellow-dark) !important;
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

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

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

.hero__bg {
  position: absolute;
  inset: -25% 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.82) 40%, rgba(0,0,0,0.50) 100%),
    url('/wp-content/themes/taxi51-theme/images/taxi-kastoria.jpg') center 60%/cover no-repeat;
}

.hero__stripe {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--yellow);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.07;
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
  display: block;
  animation: fade-up-in 0.6s ease 0.15s both;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 8px;
  animation: fade-up-in 0.7s ease 0.35s both;
}

.hero h1 em {
  color: var(--yellow);
  font-style: normal;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: #aaa;
  margin: 20px 0 40px;
  max-width: 50ch;
  animation: fade-up-in 0.6s ease 0.6s both;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fade-up-in 0.6s ease 0.8s both;
}

.hero__badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 16px 20px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  z-index: 2;
}

/* =========================================
   STATS BAR
========================================= */
.stats-bar {
  background: var(--yellow);
  padding: 24px 0;
}

.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat {
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.15);
}

.stat:last-child { border-right: none; }

.stat__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--black);
  display: block;
}

.stat__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #333;
}

/* =========================================
   SERVICES GRID
========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #eee;
}

.services-grid--4col {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .services-grid,
  .services-grid--4col { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .services-grid,
  .services-grid--4col { grid-template-columns: 1fr; }
}

.service-card {
  background: var(--white);
  padding: 48px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--yellow);
  transition: width 0.35s ease;
}

.service-card:hover::before { width: 100%; }

.service-card:hover { background: var(--gray-light); }

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 6px;
  flex-shrink: 0;
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--black);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.7;
}

/* =========================================
   SERVICES TEASER (homepage)
========================================= */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.services-intro__left p {
  color: var(--gray-mid);
  font-size: 0.95rem;
  margin-top: 16px;
}

.services-intro__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--white);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  border-left: 3px solid var(--yellow);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.09);
}

.service-tag__icon {
  width: 36px;
  height: 36px;
  background: var(--yellow);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-tag__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--black);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  .services-intro { grid-template-columns: 1fr; gap: 40px; }
  .services-intro__right { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
  .services-intro__right { grid-template-columns: 1fr; }
}

/* =========================================
   CONTACT QUICK (homepage)
========================================= */
.contact-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-quick__item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 24px 20px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--black);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.contact-quick__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

.contact-quick__icon {
  width: 48px;
  height: 48px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-quick__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--black);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-quick__item strong {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  margin-bottom: 3px;
}

.contact-quick__item span {
  font-weight: 700;
  font-size: 0.92rem;
}

@media (max-width: 700px) {
  .contact-quick { grid-template-columns: 1fr; max-width: 420px; }
}

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

.about__image-wrap {
  position: relative;
}

.about__image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 65%;
  border-radius: var(--radius);
  filter: contrast(1.05) saturate(1.08);
}

.about__image-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  padding: 24px;
  font-size: 1.1rem;
  line-height: 1.3;
}

.about__text h2 { margin-bottom: 20px; }

.about__text p {
  color: var(--gray-mid);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.about__features {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

.about__feature::before {
  content: '✓';
  background: var(--yellow);
  color: var(--black);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* =========================================
   PHOTO STRIP (homepage)
========================================= */
.photo-strip {
  height: 520px;
  overflow: hidden;
  position: relative;
}

.photo-strip__item {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  width: 100%;
  height: 100%;
}

.photo-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transition: transform 0.5s ease;
  filter: contrast(1.05) saturate(1.08);
}

.photo-strip__item:hover img { transform: scale(1.04); }

@media (max-width: 640px) {
  .photo-strip { height: auto; }
  .photo-strip__item { aspect-ratio: 4/3; }
}

/* =========================================
   GALLERY GRID
========================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-grid__item {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-light);
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-grid__item:hover img { transform: scale(1.05); }

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

/* =========================================
   CONTACT SECTION
========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 24px; }

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

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail__icon {
  background: var(--yellow);
  color: var(--black);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.contact-detail__text strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  margin-bottom: 2px;
}

.contact-detail__text a:hover { color: var(--yellow-dark); }

/* Contact Form */
.contact-form {
  background: var(--gray-light);
  padding: 40px;
  border-radius: var(--radius);
}

.contact-form h3 {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 1.8rem;
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--yellow);
}

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

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

.form-submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 14px 24px;
  margin-top: 4px;
}

.form-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.form-notice {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.form-notice--success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #b8dfc4;
}

.form-notice--error {
  background: #fdecea;
  color: #7d1a1a;
  border: 1px solid #f5c6cb;
}

/* =========================================
   FOOTER
========================================= */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: #888;
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 30ch;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--yellow);
  margin-bottom: 16px;
}

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

.footer-col a {
  color: #888;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #555;
}

.footer-bottom a { color: var(--yellow); }

/* =========================================
   MAP
========================================= */
.map-embed {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
  filter: grayscale(20%);
}

/* =========================================
   PAGE HEADER (inner pages)
========================================= */
.page-header {
  background: var(--black);
  background-image:
    linear-gradient(rgba(0,0,0,0.70), rgba(0,0,0,0.85)),
    url('/wp-content/themes/taxi51-theme/images/taxi-kastoria.jpg');
  background-size: cover;
  background-position: center 55%;
  padding: 140px 0 60px;
  color: var(--white);
}

.page-header h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); }
.page-header h1 em { color: var(--yellow); font-style: normal; }

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: #888;
  margin-top: 12px;
}

.breadcrumb a { color: var(--yellow); }
.breadcrumb span { color: #555; }

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about__image-badge { bottom: 16px; right: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 768px) {
  /* ── Layout ── */
  .section { padding: 52px 0; }
  .container { padding: 0 16px; }

  /* ── Navigation ── */
  .site-nav ul { display: none; }
  .nav-burger { display: flex; }

  .site-nav.open ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    border-top: 2px solid var(--yellow);
    padding: 8px 0 16px;
    gap: 0;
    align-items: stretch;
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
    z-index: 999;
  }

  .site-nav.open ul li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .site-nav.open ul li:last-child { border-bottom: none; }

  .site-nav.open a {
    font-size: 0.95rem;
    padding: 14px 24px;
    display: block;
    width: 100%;
  }

  .site-nav.open .nav-cta {
    margin: 8px 16px 0;
    border-radius: var(--radius);
    text-align: center;
  }

  .site-nav.open .btn {
    margin: 8px 16px 0;
    display: block;
    text-align: center;
  }

  /* ── Hero ── */
  .hero { min-height: 88vh; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero__subtitle { font-size: 0.95rem; margin: 14px 0 28px; }
  .hero__actions { flex-direction: column; gap: 10px; }
  .hero__actions .btn { text-align: center; }
  .hero__badge { display: none; }

  /* ── Stats ── */
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.12); padding: 14px 8px; }
  .stat:nth-child(odd) { border-right: 1px solid rgba(0,0,0,0.12); }
  .stat:nth-child(3), .stat:last-child { border-bottom: none; }
  .stat__number { font-size: 1.9rem; }

  /* ── Services intro ── */
  .services-intro { grid-template-columns: 1fr; gap: 32px; }
  .services-intro__right { grid-template-columns: 1fr 1fr; }

  /* ── About ── */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about__image-wrap img { height: 260px; }
  .about__image-badge { bottom: 10px; right: 10px; padding: 16px; font-size: 0.8rem; }
  .about__features { grid-template-columns: 1fr; }

  /* ── Why grid ── */
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .why-card { padding: 24px 18px; }

  /* ── Contact quick ── */
  .contact-quick { grid-template-columns: 1fr; max-width: 100%; }

  /* ── Contact grid (page) ── */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* ── Page header ── */
  .page-header { padding: 110px 0 40px; }

  /* ── Gallery ── */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid__item--wide { grid-column: span 1; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  /* ── Layout ── */
  .section { padding: 40px 0; }

  /* ── Hero ── */
  .hero { min-height: 82vh; }
  .hero h1 { font-size: 2.2rem; }

  /* ── Stats ── */
  .stat__number { font-size: 1.7rem; }

  /* ── Services intro ── */
  .services-intro__right { grid-template-columns: 1fr; }

  /* ── Why / Gallery ── */
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }

  /* ── About ── */
  .about__image-wrap img { height: 220px; }
  .about__image-badge { display: none; }
}

/* =========================================
   WHY US GRID
========================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px 28px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.why-card:hover {
  background: rgba(255,215,0,0.06);
  border-color: rgba(255,215,0,0.25);
  transform: translateY(-4px);
}

.why-card__icon {
  width: 52px;
  height: 52px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--black);
}

.why-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.why-card p {
  color: #999;
  font-size: 0.88rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* =========================================
   CTA WITH ACCENT LINES
========================================= */
.section--dark.cta-photo {
  background: var(--black);
  background-image:
    linear-gradient(135deg, rgba(255,215,0,0.06) 0%, transparent 55%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255,215,0,0.018) 40px,
      rgba(255,215,0,0.018) 41px
    );
}

/* =========================================
   BOOKING REFERENCE CARD
========================================= */
.booking-ref {
  background: var(--white);
  border: 1px solid #ebebeb;
  border-radius: 16px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.07);
}

.booking-ref::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 5px;
  background: var(--yellow);
}

.booking-ref__icon {
  width: 80px; height: 80px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
  flex-shrink: 0;
}

.booking-ref__icon svg {
  width: 38px; height: 38px;
  stroke: var(--black); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.booking-ref__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.booking-ref h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin: 0;
}

.booking-ref p {
  color: var(--gray-mid);
  font-size: 0.95rem;
  max-width: 30ch;
  margin: 0;
}

.booking-ref__btn {
  width: 100%; justify-content: center;
  padding: 14px 24px;
  font-size: 0.95rem;
  margin-top: 4px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.booking-ref__btn:hover { transform: translateY(-3px); }

.booking-ref__or {
  display: flex; align-items: center; gap: 12px;
  width: 100%; color: #ccc; font-size: 0.8rem;
}
.booking-ref__or::before,
.booking-ref__or::after { content: ''; flex: 1; height: 1px; background: #e8e8e8; }
.booking-ref__or span { white-space: nowrap; color: var(--gray-mid); }

.booking-ref__phone {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--black);
  transition: color 0.2s ease;
}
.booking-ref__phone:hover { color: var(--yellow-dark); }

.booking-ref__features {
  display: flex; flex-direction: column; gap: 10px;
  width: 100%; margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.booking-ref__feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--black);
  text-align: left;
}

.booking-ref__feature svg {
  flex-shrink: 0;
  stroke: var(--black);
  background: var(--yellow);
  border-radius: 50%;
  padding: 2px;
  width: 18px; height: 18px;
}

/* =========================================
   CF7 FORM CARD
========================================= */
.cf7-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 48px 52px;
  box-shadow: 0 8px 56px rgba(0,0,0,0.09);
}

.wpcf7-form p {
  margin-bottom: 20px;
}

.wpcf7-form label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--black);
  margin-bottom: 8px;
}

.wpcf7-form-control:not([type="submit"]) {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e6e6e6;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #fafafa;
  color: var(--black);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  appearance: none;
}

.wpcf7-form-control:not([type="submit"]):focus {
  border-color: var(--yellow);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255,215,0,0.18);
}

.wpcf7-form-control:not([type="submit"])::placeholder {
  color: #bbb;
}

input[type="submit"].wpcf7-submit,
.wpcf7-submit {
  width: 100%;
  background: var(--yellow);
  color: var(--black);
  border: none;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  margin-top: 8px;
}

input[type="submit"].wpcf7-submit:hover,
.wpcf7-submit:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,215,0,0.35);
}

.wpcf7-response-output {
  padding: 14px 20px !important;
  border-radius: 8px !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  border: none !important;
  margin: 16px 0 0 !important;
}

.wpcf7-mail-sent-ok {
  background: #d4edda !important;
  color: #155724 !important;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng,
.wpcf7-spam-blocked {
  background: #fdecea !important;
  color: #7d1a1a !important;
}

.wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: 0.78rem;
  margin-top: 5px;
  display: block;
}

@media (max-width: 640px) {
  .cf7-card { padding: 32px 24px; }
  .booking-ref { padding: 36px 24px; }
}

/* =========================================
   GOOGLE REVIEWS
========================================= */
.reviews-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.reviews-rating-summary__stars {
  color: #f4b400;
  font-size: 1.4rem;
  letter-spacing: 2px;
}

.reviews-rating-summary__text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--black);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
}

.review-card__google {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: absolute;
  top: 20px;
  right: 20px;
}

.review-card__stars {
  color: #f4b400;
  font-size: 1.05rem;
  letter-spacing: 2px;
  line-height: 1;
}

.review-card__text {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.72;
  flex: 1;
  max-width: none;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--black);
  flex-shrink: 0;
}

.review-card__avatar--img {
  object-fit: cover;
  background: none;
}

.review-card__name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--black);
}

.review-card__time {
  font-size: 0.75rem;
  color: #999;
  margin-top: 2px;
}

.reviews-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.reviews-cta__write {
  background: var(--yellow);
  color: var(--black);
  font-size: 0.95rem;
  padding: 14px 32px;
}

@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .reviews-cta { flex-direction: column; align-items: center; }
}

@media (min-width: 480px) and (max-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
