/*
Theme Name: Kleidaras Thessaloniki
Theme URI: https://kleidaras-thessaloniki.gr
Author: UnlockNow
Author URI: https://kleidaras-thessaloniki.gr
Description: Επαγγελματικό θέμα WordPress για κλειδαρά στη Θεσσαλονίκη. Σύγχρονος σχεδιασμός με υποστήριξη shortcodes, προσαρμοσμένα μενού και Customizer.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kleidaras
Tags: one-column, custom-menu, custom-logo, featured-images, translation-ready
Requires at least: 5.0
Tested up to: 6.5
Requires PHP: 7.4
*/

/* ============================================
   CSS Custom Properties
   ============================================ */
:root {
  --navy: hsl(220, 60%, 16%);
  --navy-light: hsl(220, 50%, 22%);
  --yellow: hsl(48, 100%, 50%);
  --yellow-dark: hsl(45, 100%, 42%);
  --yellow-light: hsl(48, 100%, 90%);
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(220, 30%, 12%);
  --muted: hsl(220, 20%, 95%);
  --muted-fg: hsl(220, 10%, 45%);
  --card: hsl(0, 0%, 100%);
  --border: hsl(220, 15%, 88%);
  --input-border: hsl(220, 15%, 88%);
  --radius: 0.5rem;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ============================================
   Reset & Base
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================
   Layout
   ============================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 6rem 1rem;
  }
}

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
  background-color: var(--navy);
  color: hsl(0, 0%, 98%);
  font-size: 0.875rem;
  display: none;
}

@media (min-width: 768px) {
  .top-bar {
    display: block;
  }
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.top-bar__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar__links a,
.top-bar__location {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: color 0.2s;
}

.top-bar__links a:hover {
  color: var(--yellow);
}

.top-bar svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ============================================
   Header / Navigation
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Keep header and hero perfectly aligned on the same container gutters */
.site-header .container,
.hero .container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-logo__image,
.custom-logo {
  width: auto;
  max-height: 60px;
}

@media (max-width: 767px) {
  .site-logo__image,
  .custom-logo {
    max-height: 30px;
  }
}

.site-logo__icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--yellow);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.125rem;
  color: var(--navy);
}

.site-logo__text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foreground);
}

.site-logo__text .dot {
  color: var(--yellow);
}

/* Desktop nav */
.main-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-fg);
  transition: color 0.2s;
}

.main-nav a:hover,
.main-nav .current-menu-item > a {
  color: var(--foreground);
}

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
}

.btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--yellow);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
}

.btn-yellow:hover {
  background-color: var(--yellow-dark);
}

.btn-yellow svg {
  width: 16px;
  height: 16px;
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--navy);
  color: var(--yellow);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
}

.btn-navy:hover {
  background-color: var(--navy-light);
}

.btn-navy svg {
  width: 24px;
  height: 24px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: hsl(0, 0%, 98%);
  background: transparent;
  transition: border-color 0.2s, background-color 0.2s;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Mobile header actions (phone + burger) */
.mobile-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

@media (min-width: 768px) {
  .mobile-actions {
    display: none;
  }
}

.mobile-phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 2.5rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  background-color: var(--yellow);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  transition: background-color 0.2s, transform 0.2s;
}

.mobile-phone-btn:hover {
  background-color: var(--yellow-dark);
  transform: translateY(-1px);
}

.mobile-phone-btn svg {
  width: 18px;
  height: 18px;
}

/* Mobile menu toggle */
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 420px) {
  .mobile-phone-btn {
    padding: 0 0.55rem;
    font-size: 0.72rem;
  }
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1rem;
  gap: 0.75rem;
  background-color: var(--background);
  border-top: 1px solid var(--border);
}

.mobile-nav.is-open {
  display: flex;
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none !important;
  }
}

.mobile-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0;
  color: var(--muted-fg);
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--foreground);
}

.mobile-nav .btn-yellow {
  margin-top: 0.5rem;
  justify-content: center;
}

/* Some global WP/plugin styles can constrain <main>; force full-width on homepage */
body.home main {
  width: 100%;
  max-width: none !important;
  margin: 0;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    hsla(220, 60%, 16%, 0.95),
    hsla(220, 60%, 16%, 0.80),
    hsla(220, 60%, 16%, 0.40));
}

.hero .container {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero__content {
  max-width: 42rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background-color: hsla(220, 52%, 20%, 0.55);
  color: hsl(142, 76%, 56%);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  border: 2px solid hsl(142, 76%, 48%);
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.hero__badge-dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background-color: hsl(142, 76%, 48%);
  position: relative;
  flex-shrink: 0;
  animation: hero-badge-dot-blip 1.6s ease-in-out infinite;
}

.hero__badge-dot::after {
  content: "";
  position: absolute;
  inset: -0.24rem;
  border-radius: 50%;
  border: 2px solid hsla(142, 76%, 48%, 0.45);
  animation: hero-badge-ring-pulse 1.6s ease-out infinite;
}

.hero__badge-text {
  line-height: 1;
}

@keyframes hero-badge-dot-blip {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.08);
  }
}

@keyframes hero-badge-ring-pulse {
  0% {
    opacity: 0.75;
    transform: scale(1);
  }
  70% {
    opacity: 0;
    transform: scale(1.6);
  }
  100% {
    opacity: 0;
    transform: scale(1.6);
  }
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.25rem;
  line-height: 1.15;
  color: hsl(0, 0%, 98%);
  margin-bottom: 1.5rem;
}

.hero__title .highlight {
  color: var(--yellow);
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 3.75rem;
  }
}

.hero__text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: hsl(220, 20%, 80%);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero__text {
    font-size: 1.25rem;
  }
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero__buttons {
    flex-direction: row;
  }
}

.hero__buttons .btn-yellow {
  padding: 1rem 2rem;
  font-size: 1rem;
  justify-content: center;
}

.hero__buttons .btn-yellow svg {
  width: 20px;
  height: 20px;
}

.hero__quick-contact {
  margin-top: 1.5rem;
  max-width: 44rem;
}

.hero__arrival {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, hsla(220, 52%, 20%, 0.9), hsla(220, 46%, 16%, 0.9));
  color: hsl(0, 0%, 98%);
  border-radius: 0.4rem;
  border-left: 3px solid var(--yellow);
  padding: 0.85rem 1.1rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.hero__arrival svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--yellow);
}

.hero__contact-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.hero__contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: 0.75rem;
  padding: 0.9rem 1.1rem;
  color: hsl(0, 0%, 100%);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
}

.hero__contact-btn svg {
  width: 20px;
  height: 20px;
}

.hero__contact-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.hero__contact-btn--call {
  background-color: var(--yellow);
  color: var(--navy);
}

.hero__contact-btn--whatsapp {
  background: linear-gradient(135deg, hsl(143, 77%, 46%), hsl(145, 75%, 41%));
}

.hero__contact-btn--viber {
  background: linear-gradient(135deg, hsl(251, 73%, 62%), hsl(252, 60%, 56%));
}

@media (min-width: 768px) {
  .hero__contact-buttons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Stats strip */
.hero__stats {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .hero__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background-color: hsla(220, 50%, 22%, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid hsla(0, 0%, 100%, 0.08);
}

.stat-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: hsla(48, 100%, 50%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--yellow);
}

.stat-card__value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: hsl(0, 0%, 98%);
}

.stat-card__label {
  font-size: 0.875rem;
  color: hsl(220, 20%, 70%);
}

/* ============================================
   Services Section
   ============================================ */
.services {
  background-color: var(--muted);
}

.section-badge {
  display: inline-block;
  background-color: hsla(48, 100%, 50%, 0.1);
  color: var(--yellow-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.875rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  color: var(--muted-fg);
  max-width: 42rem;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, border-color 0.3s;
}

.service-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: hsla(48, 100%, 50%, 0.3);
}

.service-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background-color: hsla(48, 100%, 50%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background-color 0.3s, transform 0.3s;
}

.service-card:hover .service-card__icon {
  background-color: var(--yellow);
  transform: scale(1.1);
}

.service-card__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--yellow);
  transition: color 0.3s;
}

.service-card:hover .service-card__icon svg {
  color: var(--navy);
}

.service-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.service-card__desc {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.6;
}

/* ============================================
   About Section
   ============================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
  }
}

.about__image-wrap {
  position: relative;
}

.about__image-wrap img {
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.about__experience-badge {
  display: none;
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background-color: var(--yellow);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .about__experience-badge {
    display: block;
  }
}

.about__experience-badge .number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.25rem;
  color: var(--navy);
}

.about__experience-badge .text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--navy);
  line-height: 1.3;
}

.about__text {
  color: var(--muted-fg);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.about__features {
  margin-bottom: 2rem;
}

.about__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--foreground);
  padding: 0.375rem 0;
}

.about__features li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--yellow);
  flex-shrink: 0;
}

.about__features li span {
  font-size: 0.875rem;
}

.about__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .about__bottom {
    flex-direction: row;
    align-items: center;
  }
}

.about__clients {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about__avatars {
  display: flex;
}

.about__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--muted);
  border: 2px solid var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted-fg);
}

.about__avatar + .about__avatar {
  margin-left: -0.5rem;
}

.about__client-count .count {
  font-weight: 700;
  color: var(--foreground);
  font-size: 0.875rem;
}

.about__client-count .label {
  color: var(--muted-fg);
  font-size: 0.875rem;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
  background-color: var(--navy);
}

.testimonials .section-badge {
  background-color: hsla(48, 100%, 50%, 0.15);
  color: var(--yellow);
}

.testimonials .section-title {
  color: hsl(0, 0%, 98%);
}

.testimonials .section-subtitle {
  color: hsl(220, 20%, 70%);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: var(--navy-light);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid hsla(0, 0%, 100%, 0.08);
}

.testimonial-card__quote-icon {
  color: hsla(48, 100%, 50%, 0.3);
  margin-bottom: 1rem;
}

.testimonial-card__quote-icon svg {
  width: 2rem;
  height: 2rem;
}

.testimonial-card__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-card__stars svg {
  width: 1rem;
  height: 1rem;
  fill: var(--yellow);
  color: var(--yellow);
}

.testimonial-card__text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: hsl(220, 20%, 80%);
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: hsla(48, 100%, 50%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--yellow);
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: hsl(0, 0%, 90%);
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
  position: relative;
  padding: 5rem 1rem;
  overflow: hidden;
  background-color: var(--yellow);
}

.cta__bg-circle {
  position: absolute;
  border-radius: 50%;
  background-color: var(--navy);
  opacity: 0.1;
}

.cta__bg-circle--top {
  width: 16rem;
  height: 16rem;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.cta__bg-circle--bottom {
  width: 24rem;
  height: 24rem;
  bottom: 0;
  right: 0;
  transform: translate(33%, 33%);
}

.cta .container {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.875rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta__title {
    font-size: 2.25rem;
  }
}

.cta__text {
  color: hsla(220, 60%, 16%, 0.7);
  max-width: 36rem;
  margin: 0 auto 2rem;
}

/* ============================================
   Contact Section
   ============================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact__info-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: hsla(48, 100%, 50%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--yellow);
}

.contact-item__label {
  font-size: 0.75rem;
  color: var(--muted-fg);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item__value {
  font-weight: 500;
  color: var(--foreground);
}

.contact-item__value a {
  transition: color 0.2s;
}

.contact-item__value a:hover {
  color: var(--yellow);
}

/* Contact form */
.contact-form {
  background-color: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
}

.contact-form__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form .form-group {
  margin-bottom: 1rem;
}

.contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.375rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--input-border);
  background-color: var(--background);
  color: var(--foreground);
  font-size: 0.875rem;
  outline: none;
  transition: box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 3px hsla(48, 100%, 50%, 0.3);
}

.contact-form textarea {
  resize: none;
  min-height: 100px;
}

.contact-form button[type="submit"] {
  width: 100%;
  padding: 0.75rem;
}

.form-success {
  background-color: hsla(120, 60%, 40%, 0.1);
  color: hsl(120, 60%, 30%);
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  font-weight: 500;
  margin-top: 1rem;
}

/* --- Contact Form 7 overrides (match .contact-form design) --- */

.contact-form .wpcf7 {
  margin: 0;
}

.contact-form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form .wpcf7-form p {
  margin: 0;
}

.contact-form .wpcf7-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.375rem;
}

.contact-form .wpcf7-form input[type="text"],
.contact-form .wpcf7-form input[type="email"],
.contact-form .wpcf7-form input[type="tel"],
.contact-form .wpcf7-form textarea {
  width: 100%;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--input-border);
  background-color: var(--background);
  color: var(--foreground);
  font-size: 0.875rem;
  outline: none;
  transition: box-shadow 0.2s;
  box-sizing: border-box;
}

.contact-form .wpcf7-form input[type="text"]:focus,
.contact-form .wpcf7-form input[type="email"]:focus,
.contact-form .wpcf7-form input[type="tel"]:focus,
.contact-form .wpcf7-form textarea:focus {
  box-shadow: 0 0 0 3px hsla(48, 100%, 50%, 0.3);
}

.contact-form .wpcf7-form textarea {
  resize: none;
  min-height: 100px;
}

.contact-form .wpcf7-form input[type="submit"],
.contact-form .wpcf7-submit {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  background-color: var(--yellow);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.contact-form .wpcf7-form input[type="submit"]:hover,
.contact-form .wpcf7-submit:hover {
  background-color: var(--yellow-dark);
}

.contact-form .wpcf7-spinner {
  display: none;
}

.contact-form .wpcf7-response-output {
  border: none !important;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  font-weight: 500;
  margin: 0.5rem 0 0 !important;
}

.contact-form .wpcf7-form.sent .wpcf7-response-output {
  background-color: hsla(120, 60%, 40%, 0.1);
  color: hsl(120, 60%, 30%);
}

.contact-form .wpcf7-form.invalid .wpcf7-response-output,
.contact-form .wpcf7-form.failed .wpcf7-response-output {
  background-color: hsla(0, 60%, 40%, 0.1);
  color: hsl(0, 60%, 40%);
}

.contact-form .wpcf7-not-valid-tip {
  color: hsl(0, 60%, 40%);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.contact-form .wpcf7-form .hidden-fields-container {
  display: none;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background-color: var(--navy);
  padding: 3rem 1rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer__brand .site-logo__text {
  color: hsl(0, 0%, 98%);
}

.footer__brand .site-logo {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  background-color: hsla(0, 0%, 100%, 0.96);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

.footer__brand .site-logo__image,
.footer__brand .custom-logo {
  max-height: 42px;
}

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: hsl(220, 20%, 65%);
  margin-top: 1rem;
}

.footer__services h4,
.footer__contact h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: hsl(0, 0%, 98%);
  margin-bottom: 1rem;
}

.footer__services ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__services a {
  font-size: 0.875rem;
  color: hsl(220, 20%, 65%);
  transition: color 0.2s;
}

.footer__services a:hover {
  color: var(--yellow);
}

.footer__contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(220, 20%, 65%);
  transition: color 0.2s;
}

.footer__contact-item:hover {
  color: var(--yellow);
}

.footer__contact-item svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid hsla(0, 0%, 100%, 0.08);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: hsl(220, 20%, 55%);
}

/* ============================================
   Mobile Responsiveness
   ============================================ */
@media (max-width: 767px) {
  .container {
    padding: 0 1rem;
  }

  .site-header .container,
  .hero .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-padding {
    padding: 3rem 0.75rem;
  }

  .hero {
    min-height: 75vh;
  }

  .hero .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero__title {
    font-size: 1.75rem;
  }

  .hero__text {
    font-size: 1rem;
  }

  .hero__buttons .btn-yellow,
  .hero__buttons .btn-outline {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    justify-content: center;
    text-align: center;
  }

  .hero__stats {
    margin-top: 2.5rem;
    gap: 0.75rem;
  }

  .stat-card {
    padding: 0.875rem;
    gap: 0.625rem;
  }

  .stat-card__icon {
    width: 2.25rem;
    height: 2.25rem;
  }

  .stat-card__icon svg {
    width: 1.125rem;
    height: 1.125rem;
  }

  .stat-card__value {
    font-size: 1rem;
  }

  .stat-card__label {
    font-size: 0.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .service-card {
    padding: 1.25rem;
  }

  .about__image-wrap img {
    aspect-ratio: 4 / 3;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    gap: 1.5rem;
  }

  .cta {
    padding: 3.5rem 0.75rem;
  }

  .cta__title {
    font-size: 1.5rem;
  }

  .mobile-nav a {
    padding: 0.625rem 0;
    font-size: 1rem;
  }

  .mobile-nav .btn-yellow {
    padding: 0.875rem;
    font-size: 1rem;
  }
}

@media (max-width: 374px) {
  .hero__title {
    font-size: 1.5rem;
  }

  .stat-card {
    padding: 0.75rem;
  }

  .stat-card__icon {
    width: 2rem;
    height: 2rem;
  }

  .stat-card__value {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .footer__brand .site-logo {
    padding: 0.4rem 0.6rem;
  }

  .footer__brand .site-logo__image,
  .footer__brand .custom-logo {
    max-height: 36px;
  }
}

/* ============================================
   Animations (scroll reveal)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered grid children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.is-visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-children.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.stagger-children.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
.stagger-children.is-visible > *:nth-child(5) { transition-delay: 0.32s; }
.stagger-children.is-visible > *:nth-child(6) { transition-delay: 0.40s; }
.stagger-children.is-visible > *:nth-child(7) { transition-delay: 0.48s; }
.stagger-children.is-visible > *:nth-child(8) { transition-delay: 0.56s; }

.stagger-children.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   WordPress specific (admin bar fix)
   ============================================ */
.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

/* ============================================
   Utility: screen-reader-text (accessibility)
   ============================================ */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}
