/* =============================================
   BUILD IN CYPRUS — Main Stylesheet
   Palette: Navy #1B2B5E | Gold #C9A227 | Cream #F8F5F0
   Fonts: Playfair Display + DM Sans
============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy:    #1B2B5E;
  --navy-dk: #111d42;
  --gold:    #C9A227;
  --gold-lt: #ddb94a;
  --cream:   #F8F5F0;
  --white:   #ffffff;
  --text:    #2c2c2c;
  --muted:   #6b7280;
  --border:  #e5e0d8;
  --shadow:  0 4px 30px rgba(27,43,94,0.10);
  --radius:  6px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--navy);
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── UTILITIES ─────────────────────────────── */
.section { padding: 80px 0; }
.section--cream { background: var(--cream); }
.section--navy  { background: var(--navy); color: var(--white); }
.section--navy h1,
.section--navy h2,
.section--navy h3 { color: var(--white); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
}

.section--navy .section-sub { color: rgba(255,255,255,0.7); }

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dk);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,162,39,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dk);
  border-color: var(--navy-dk);
  transform: translateY(-2px);
}

/* ── HEADER / NAV ──────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(27,43,94,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
}

.logo img { height: 44px; width: auto; }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name  { font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.logo-tag   { font-family: 'DM Sans', sans-serif; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }

.nav { display: flex; align-items: center; gap: 32px; }

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav a:hover, .nav a.active { color: var(--navy); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--navy-dk) !important; transform: translateY(-1px); }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ──────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 60%, #2a3d7a 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.18;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
  animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-label::before {
  content: '';
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero h1 em { color: var(--gold); font-style: normal; }

.hero p {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-badges {
  position: absolute;
  bottom: 40px;
  right: 0;
  z-index: 2;
  display: flex;
  gap: 20px;
}

.hero-badge {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 16px 24px;
  text-align: center;
  color: var(--white);
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-badge strong { display: block; font-size: 1.8rem; font-family: 'Playfair Display', serif; color: var(--gold); }
.hero-badge span   { font-size: 0.78rem; opacity: 0.75; letter-spacing: 0.05em; }

/* ── SERVICES GRID ─────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: 0 2px 12px rgba(27,43,94,0.07);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(27,43,94,0.15);
  border-color: var(--gold);
}

.service-card__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.service-card__body { padding: 24px 26px 28px; }

.service-card__icon {
  width: 48px; height: 48px;
  background: rgba(201,162,39,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; }

.service-card p { font-size: 0.93rem; color: var(--muted); margin-bottom: 20px; }

.service-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.service-card__link:hover { color: var(--gold); gap: 10px; }

/* ── WHY US ────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-features { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-feature__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--navy-dk);
}

.why-feature h4 { font-size: 1rem; margin-bottom: 4px; }
.why-feature p  { font-size: 0.9rem; color: var(--muted); }

.why-image {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.why-image img { width: 100%; height: 480px; object-fit: cover; }

.why-image__badge {
  position: absolute;
  bottom: 28px; left: -24px;
  background: var(--gold);
  color: var(--navy-dk);
  padding: 18px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.why-image__badge strong { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; }
.why-image__badge span   { font-size: 0.8rem; font-weight: 600; }

/* ── TESTIMONIALS ──────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 32px;
}

.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; }
.testimonial-card p { color: rgba(255,255,255,0.85); font-size: 0.97rem; margin-bottom: 24px; font-style: italic; }

.testimonial-author strong { color: var(--white); display: block; font-size: 0.95rem; }
.testimonial-author span   { color: rgba(255,255,255,0.5); font-size: 0.82rem; }

/* ── CTA BANNER ────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #b8911f 100%);
  padding: 64px 0;
  text-align: center;
}

.cta-banner h2 { color: var(--navy-dk); margin-bottom: 12px; }
.cta-banner p  { color: rgba(27,43,94,0.75); margin-bottom: 32px; font-size: 1.05rem; }

/* ── BLOG GRID ─────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.blog-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card__body { padding: 24px; }

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.blog-card__meta .tag {
  background: rgba(201,162,39,0.12);
  color: var(--gold);
  padding: 2px 10px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-card p  { font-size: 0.9rem; color: var(--muted); margin-bottom: 18px; }

.blog-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.blog-card__link:hover { color: var(--gold); gap: 10px; }

/* ── SINGLE POST ───────────────────────────── */
.post-hero {
  background: var(--navy);
  padding: 80px 0 60px;
  color: var(--white);
}
.post-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.post-meta     { display: flex; gap: 20px; font-size: 0.88rem; color: rgba(255,255,255,0.6); flex-wrap: wrap; }
.post-meta span { display: flex; align-items: center; gap: 6px; }

.post-content { max-width: 780px; margin: 0 auto; padding: 60px 24px 80px; }
.post-content img { border-radius: var(--radius); margin: 32px 0; }
.post-content h2 { font-size: 1.6rem; margin: 40px 0 14px; }
.post-content h3 { font-size: 1.25rem; margin: 28px 0 10px; }
.post-content p  { margin-bottom: 18px; font-size: 1.02rem; color: #333; }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 18px; }
.post-content li { margin-bottom: 8px; font-size: 1rem; color: #333; }
.post-content a  { color: var(--navy); text-decoration: underline; }

.post-cta-box {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 32px;
  margin: 40px 0;
}
.post-cta-box h3 { margin-bottom: 8px; }
.post-cta-box p  { margin-bottom: 16px; }

/* ── CONTACT ───────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }

.contact-item { display: flex; gap: 16px; align-items: flex-start; }

.contact-item__icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  background: rgba(201,162,39,0.12);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
}
.contact-item h4 { font-size: 0.9rem; font-family: 'DM Sans', sans-serif; font-weight: 600; color: var(--muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-item p  { font-size: 1rem; color: var(--navy); font-weight: 500; }

.contact-form {
  background: var(--cream);
  border-radius: 8px;
  padding: 40px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group textarea, .form-group select {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ── SERVICE PAGE ──────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dk), var(--navy));
  padding: 80px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  border: 60px solid rgba(201,162,39,0.08);
  border-radius: 50%;
}

.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,0.75); max-width: 580px; font-size: 1.05rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.4; }

/* ── ABOUT ─────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 50px;
}

.stat-item {
  background: var(--white);
  padding: 36px 28px;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--navy);
}
.stat-item span { font-size: 0.88rem; color: var(--muted); }

/* ── FOOTER ────────────────────────────────── */
.site-footer {
  background: var(--navy-dk);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-name { color: var(--white); }
.footer-brand p { margin-top: 16px; font-size: 0.9rem; line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.9rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.82rem;
}

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy-dk); }

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-grid    { grid-template-columns: 1fr; }
  .why-image   { order: -1; }
  .why-image img { height: 340px; }
  .why-image__badge { left: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .stat-bar { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; gap: 0; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 20px 24px; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav a { padding: 10px 0; border-bottom: 1px solid var(--border); }
  .nav a:last-child { border: none; }
  .nav-toggle { display: flex; }
  .hero-badges { display: none; }
  .hero { min-height: 75vh; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .stat-bar { grid-template-columns: 1fr 1fr; }
  .section { padding: 56px 0; }
  .contact-form { padding: 28px; }
}

@media (max-width: 480px) {
  .stat-bar { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
}

/* ── MISC ──────────────────────────────────── */
.placeholder-img {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #e8e4dc, #d4cfc5);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 0.85rem;
}

/* ═══════════════════════════════════════════════════════
   MOBILE OVERRIDES — Complete rewrite of responsive rules
   Target: 100% optimized for phones (360px–768px)
═══════════════════════════════════════════════════════ */

/* ── Base touch improvements ──────────────────────────── */
@media (max-width: 768px) {

  /* Larger tap targets */
  .btn { padding: 15px 26px; font-size: 1rem; width: 100%; justify-content: center; box-sizing: border-box; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; }

  /* ── HEADER ────────────────────────────────────────── */
  .header-inner { height: 62px; }
  .logo-name    { font-size: 1.05rem; }
  .logo-tag     { font-size: 0.6rem; }
  .logo img     { height: 36px; }

  /* ── HERO ──────────────────────────────────────────── */
  .hero              { min-height: 100svh; padding: 100px 0 60px; align-items: flex-start; }
  .hero h1           { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero p            { font-size: 1rem; }
  .hero-badges       { display: none; }
  .hero-label        { font-size: 0.7rem; }

  /* ── SECTIONS ──────────────────────────────────────── */
  .section        { padding: 48px 0; }
  .section-title  { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .section-sub    { font-size: 0.95rem; }

  /* ── ALL TWO-COLUMN GRIDS → single column ──────────── */
  .why-grid,
  .contact-grid,
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* ── SERVICES GRID ─────────────────────────────────── */
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-card__img { height: 200px; }

  /* ── WHY US IMAGE ──────────────────────────────────── */
  .why-image        { order: -1; }
  .why-image img    { height: 260px; }
  .why-image__badge { left: 16px; bottom: 16px; padding: 12px 18px; }
  .why-image__badge strong { font-size: 1.5rem; }

  /* ── TESTIMONIALS ──────────────────────────────────── */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card  { padding: 24px 20px; }

  /* ── STATS BAR ─────────────────────────────────────── */
  .stat-bar  { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 24px 16px; }
  .stat-item strong { font-size: 1.8rem; }

  /* ── SERVICE PAGES — inner grids ───────────────────── */
  .page-hero        { padding: 56px 0 44px; }
  .page-hero h1     { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .page-hero p      { font-size: 0.95rem; }
  .breadcrumb       { font-size: 0.78rem; flex-wrap: wrap; }

  /* ── CTA BANNER ────────────────────────────────────── */
  .cta-banner       { padding: 48px 0; }
  .cta-banner h2    { font-size: 1.5rem; }
  .cta-banner > .container > div { flex-direction: column; }

  /* ── BLOG ──────────────────────────────────────────── */
  .blog-grid       { grid-template-columns: 1fr; gap: 20px; }
  .blog-card__img  { height: 200px; }

  /* ── POST CONTENT ──────────────────────────────────── */
  .post-content    { padding: 36px 20px 60px; }
  .post-hero       { padding: 60px 0 44px; }
  .post-hero h1    { font-size: clamp(1.5rem, 5.5vw, 2.2rem); }
  .post-meta       { flex-direction: column; gap: 8px; }
  .post-cta-box    { padding: 20px; }

  /* ── CONTACT ───────────────────────────────────────── */
  .contact-form    { padding: 24px 18px; }
  .form-row        { grid-template-columns: 1fr; gap: 0; }

  /* ── ABOUT ─────────────────────────────────────────── */
  .team-grid { grid-template-columns: 1fr 1fr; }

  /* ── FOOTER ────────────────────────────────────────── */
  .site-footer        { padding: 48px 0 0; }
  .footer-grid        { grid-template-columns: 1fr; gap: 28px; padding-bottom: 36px; }
  .footer-brand p     { max-width: 100%; }
  .footer-bottom      { flex-direction: column; gap: 16px; text-align: center; padding: 18px 0; }
  .footer-col h4      { margin-bottom: 12px; }
  .footer-col ul      { gap: 8px; }
  .footer-col ul li   { font-size: 0.92rem; }
}

/* ── Extra small phones ────────────────────────────── */
@media (max-width: 400px) {
  .container     { padding: 0 16px; }
  .stat-bar      { grid-template-columns: 1fr; }
  .hero h1       { font-size: 1.9rem; }
  .section-title { font-size: 1.55rem; }
  .service-card__body { padding: 20px; }
}

/* ── Fix inline style grids on service pages ────────── */
@media (max-width: 768px) {
  /* Target the two-col layouts inside service pages */
  .section > .container > div[style*="grid-template-columns"],
  .section > .container > div[style*="grid"] {
    display: block !important;
  }
  .section > .container > div[style*="grid"] > div,
  .section > .container > div[style*="grid"] > a {
    margin-bottom: 24px;
  }
  .section > .container > div[style*="grid"] > div:last-child {
    margin-bottom: 0;
  }
  /* Images inside service page grids */
  .section > .container > div > div > img[style*="height:380px"],
  .section > .container > div > div > img[style*="height:360px"],
  .section > .container > div > div > img[style*="height:400px"],
  .section > .container > div > div > img[style*="height: 380px"],
  .section > .container > div > div > img[style*="height: 360px"],
  .section > .container > div > div > img[style*="height: 400px"] {
    height: 240px !important;
  }

  /* Index page local CTA grid */
  .section > .container > div[style*="1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
  }
}

/* ── Serving Paphos section ───────────────────────── */
.paphos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.paphos-areas-box {
  background: var(--cream);
  border-radius: 8px;
  padding: 32px;
}
.paphos-areas-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.paphos-areas-list li {
  font-size: 0.9rem;
  color: var(--text);
}

@media (max-width: 768px) {
  .paphos-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .paphos-areas-box {
    padding: 22px;
  }
  .paphos-areas-list {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}

/* ── Global overflow fix ──────────────────────────── */
html { overflow-x: hidden; max-width: 100%; }
body { overflow-x: clip; max-width: 100%; } /* clip instead of hidden — doesn't affect fixed elements */

/* ── Service page two-col layout ──────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Home repairs icon grid */
.svc-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}

/* Painting steps grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

@media (max-width: 768px) {
  .svc-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  /* Image inside svc-grid always full width, sensible height */
  .svc-grid img {
    width: 100% !important;
    height: 240px !important;
    object-fit: cover;
    border-radius: 8px;
  }
  .svc-icon-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .svc-icon-grid { grid-template-columns: 1fr; }
  .steps-grid    { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   HOMEPAGE — New sections CSS
═══════════════════════════════════════════ */

/* ── Hero Trust Bar ───────────────────────── */
.hero-trust {
  display: flex;
  gap: 0;
  margin-top: 40px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  width: fit-content;
  max-width: 100%;
}
.hero-trust-item {
  padding: 14px 22px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  min-width: 80px;
}
.hero-trust-item:last-child { border-right: none; }
.hero-trust-item strong { display: block; font-family: 'Playfair Display',serif; font-size: 1.2rem; color: var(--gold); line-height: 1.2; }
.hero-trust-item span   { font-size: 0.72rem; opacity: 0.7; letter-spacing: 0.03em; }

/* ── Intro Section ───────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.intro-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--border);
}
.intro-stat {
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
}
.intro-stat strong { display: block; font-family: 'Playfair Display',serif; font-size: 2.2rem; color: var(--navy); line-height: 1.1; }
.intro-stat span   { font-size: 0.82rem; color: var(--muted); }

/* ── All Services Grid ───────────────────── */
.all-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.service-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 16px 22px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s, background 0.25s;
}
.service-pill:hover {
  border-color: var(--gold);
  background: var(--cream);
  box-shadow: 0 6px 24px rgba(201,162,39,0.15);
  transform: translateY(-3px);
}
.service-pill__icon {
  font-size: 2rem;
  line-height: 1;
  display: block;
  width: 52px; height: 52px;
  background: rgba(27,43,94,0.06);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s;
}
.service-pill:hover .service-pill__icon {
  background: rgba(201,162,39,0.15);
}
.service-pill__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

/* ── How It Works ────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.how-step {
  text-align: center;
  padding: 32px 20px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  position: relative;
  background: var(--white);
}
.how-step__num {
  width: 52px; height: 52px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display',serif;
  font-size: 1.3rem; font-weight: 700;
  margin: 0 auto 18px;
}
.how-step h3 { font-size: 1rem; margin-bottom: 8px; }
.how-step p  { font-size: 0.88rem; color: var(--muted); }

/* ── Contact Quick ───────────────────────── */
.contact-quick { display: flex; flex-direction: column; gap: 10px; }
.contact-quick-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem; color: var(--navy); font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-quick-item:hover { color: var(--gold); }

/* ── FAQ ─────────────────────────────────── */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1.5px solid var(--border); border-radius: 8px; overflow: hidden; background: var(--white); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; gap: 16px;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy);
  transition: background 0.2s;
}
.faq-question:hover { background: var(--cream); }
.faq-icon { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; line-height: 1; }
.faq-answer { padding: 0 24px 20px; }
.faq-answer p { font-size: 0.95rem; color: var(--muted); margin: 0; }

/* ── CTA Actions ─────────────────────────── */
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.btn-cta-call {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: 'DM Sans',sans-serif; font-weight: 600; font-size: 0.95rem;
  background: transparent;
  color: var(--navy-dk);
  border: 2px solid var(--navy-dk);
  cursor: pointer; transition: var(--transition);
  text-decoration: none;
}
.btn-cta-call:hover { background: var(--navy-dk); color: var(--white); }

/* ═══════════════════════════════════════════
   MOBILE — New Homepage Sections
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Trust bar — horizontal scroll on mobile */
  .hero-trust { width: 100%; overflow-x: auto; flex-wrap: nowrap; border-radius: 6px; }
  .hero-trust-item { padding: 12px 16px; min-width: 70px; flex-shrink: 0; }
  .hero-trust-item strong { font-size: 1rem; }

  /* Intro */
  .intro-grid   { grid-template-columns: 1fr; gap: 32px; }
  .intro-stats  { grid-template-columns: 1fr 1fr; }
  .intro-stat   { padding: 22px 16px; }
  .intro-stat strong { font-size: 1.7rem; }
  .intro-buttons { flex-direction: column; }

  /* All services — 3 columns on mobile */
  .all-services-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .service-pill { padding: 18px 10px 14px; gap: 8px; }
  .service-pill__icon { width: 40px; height: 40px; font-size: 1.5rem; border-radius: 8px; }
  .service-pill__name { font-size: 0.75rem; }

  /* How it works — 2 col on mobile */
  .how-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .how-step { padding: 22px 14px; }
  .how-step__num { width: 42px; height: 42px; font-size: 1.1rem; margin-bottom: 12px; }
  .how-step h3 { font-size: 0.9rem; }
  .how-step p  { font-size: 0.82rem; }

  /* FAQ */
  .faq-question { padding: 16px 18px; font-size: 0.93rem; }
  .faq-answer   { padding: 0 18px 16px; }

  /* CTA actions */
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn, .btn-cta-call { width: 100%; max-width: 320px; justify-content: center; }
}

@media (max-width: 400px) {
  .all-services-grid { grid-template-columns: repeat(3, 1fr); }
  .how-grid          { grid-template-columns: 1fr; }
  .intro-stats       { grid-template-columns: 1fr 1fr; }
}

/* ── WhatsApp Button in Footer ──────────── */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 18px;
  background: #25D366;
  color: #fff;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  color: #fff;
}

/* ── WhatsApp Floating Button ───────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
  color: #fff;
}
.whatsapp-float__label { white-space: nowrap; }

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 16px;
    padding: 16px;
    border-radius: 50%;
    width: 58px;
    height: 58px;
    justify-content: center;
    z-index: 99999;
    box-shadow: 0 4px 16px rgba(37,211,102,0.5);
  }
  .whatsapp-float__label { display: none; }
  .whatsapp-float svg { width: 30px; height: 30px; }
}

/* ── Clickable full service card ────────── */
.service-card-link {
  display: block;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  box-shadow: 0 2px 12px rgba(27,43,94,0.07);
}
.service-card-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(27,43,94,0.15);
  border-color: var(--gold);
}
.service-card-link:hover .service-card__link {
  color: var(--gold);
}