/* ==========================================================================
   Design System – CSS Custom Properties
   ========================================================================== */

:root {
  /* --- Colors --- */
  --color-primary: #1B6B4D;
  --color-primary-dark: #0E3D2C;
  --color-surface: #F5F3EE;
  --color-text: #2C2C2A;
  --color-text-secondary: #6B6B67;
  --color-border: #E0DDD6;
  --color-accent: #D4890A;
  --color-white: #FFFFFF;

  /* --- Typography --- */
  --font-family: 'DM Sans', sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --line-height-body: 1.6;
  --line-height-heading: 1.2;

  /* --- Font Sizes --- */
  --text-xs: 0.75rem;   /* 12px */
  --text-sm: 0.875rem;  /* 14px */
  --text-base: 1rem;    /* 16px */
  --text-lg: 1.125rem;  /* 18px */
  --text-xl: 1.25rem;   /* 20px */
  --text-2xl: 1.5rem;   /* 24px */
  --text-3xl: 1.875rem; /* 30px */
  --text-4xl: 2.25rem;  /* 36px */
  --text-5xl: 3rem;     /* 48px */

  /* --- Border Radius --- */
  --radius-card: 12px;
  --radius-button: 8px;
  --radius-input: 8px;
  --radius-full: 9999px;

  /* --- Layout --- */
  --container-max-width: 1200px;
  --container-padding: 20px;
  --header-height: 72px;

  /* --- Section Padding --- */
  --section-padding-y: 3rem;
  --section-padding-y-lg: 5rem;

  /* --- Spacing Scale --- */
  --space-1: 0.25rem;  /* 4px  */
  --space-2: 0.5rem;   /* 8px  */
  --space-3: 0.75rem;  /* 12px */
  --space-4: 1rem;     /* 16px */
  --space-5: 1.25rem;  /* 20px */
  --space-6: 1.5rem;   /* 24px */
  --space-8: 2rem;     /* 32px */
  --space-10: 2.5rem;  /* 40px */
  --space-12: 3rem;    /* 48px */
  --space-16: 4rem;    /* 64px */
  --space-20: 5rem;    /* 80px */

  /* --- Shadows --- */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lift: 0 12px 32px rgba(0, 0, 0, 0.14);

  /* --- Transitions --- */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;

  /* --- Z-Index --- */
  --z-sticky: 100;
  --z-header: 200;
  --z-overlay: 300;
  --z-modal: 400;
}

/* --- Breakpoints (reference only – custom properties cannot be used in media queries) ---
   Mobile-first approach:
     sm   >=  480px
     md   >=  768px   (tablet)
     lg   >= 1024px   (desktop)
     xl   >= 1280px
   -------------------------------------------------------------------------- */
/* ==========================================================================
   Base – Reset, Typography, Global Styles
   ========================================================================== */

/* --- Modern CSS Reset --- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* DM Sans loaded via Google Fonts CDN in enqueue.php */

/* --- Body Typography --- */

body {
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  font-size: var(--text-base);
  line-height: var(--line-height-body);
  color: var(--color-text);
  background-color: var(--color-white);
}

/* --- Headings --- */

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-heading);
  color: var(--color-text);
}

h1 {
  font-size: var(--text-3xl);
}

h2 {
  font-size: var(--text-2xl);
}

h3 {
  font-size: var(--text-xl);
}

h4 {
  font-size: var(--text-lg);
}

h5 {
  font-size: var(--text-base);
}

h6 {
  font-size: var(--text-sm);
}

@media (min-width: 768px) {
  h1 {
    font-size: var(--text-4xl);
  }

  h2 {
    font-size: var(--text-3xl);
  }

  h3 {
    font-size: var(--text-2xl);
  }

  h4 {
    font-size: var(--text-xl);
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: var(--text-5xl);
  }

  h2 {
    font-size: var(--text-4xl);
  }
}

/* --- Paragraphs --- */

p {
  margin-bottom: var(--space-4);
}

p:last-child {
  margin-bottom: 0;
}

/* --- Links --- */

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

a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

/* --- Focus Styles (accessibility) --- */

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Remove outline for mouse users on non-interactive elements */
:focus:not(:focus-visible) {
  outline: none;
}

/* --- Selection --- */

::selection {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* --- Layout Utilities --- */

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.section {
  padding-block: var(--section-padding-y);
}

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

@media (min-width: 1024px) {
  .section {
    padding-block: var(--section-padding-y-lg);
  }
}

/* --- Section Title --- */

.section-title {
  margin-bottom: var(--space-8);
}

/* --- Text Utilities --- */

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

.text-center {
  text-align: center;
}

.text-sm {
  font-size: var(--text-sm);
}

.text-lg {
  font-size: var(--text-lg);
}

.font-medium {
  font-weight: var(--font-weight-medium);
}

.font-bold {
  font-weight: var(--font-weight-bold);
}

/* --- Responsive Utilities --- */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden {
  display: none !important;
}

@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hidden-tablet {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .hidden-desktop {
    display: none !important;
  }
}

/* --- Content Area (for pages using the_content) --- */

.content-area {
  max-width: 760px;
}

.content-area p {
  margin-bottom: 1em;
  line-height: 1.7;
}

.content-area h2,
.content-area h3,
.content-area h4 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.content-area ul,
.content-area ol {
  margin-bottom: 1em;
  padding-left: 1.5em;
  list-style: disc;
  line-height: 1.7;
}

.content-area a {
  color: var(--color-primary);
}

/* --- Hide reCAPTCHA badge --- */

.grecaptcha-badge {
  visibility: hidden !important;
}

/* --- Reduced Motion --- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ==========================================================================
   Components – Reusable UI Patterns
   ========================================================================== */

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--font-weight-medium);
  line-height: 1;
  border: 2px solid transparent;
  border-radius: var(--radius-button);
  cursor: pointer;
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    box-shadow var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Primary – solid green */
.btn--primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

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

/* Outline – white bg, green border */
.btn--outline {
  background-color: var(--color-white);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

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

/* Full width */
.btn--full {
  width: 100%;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition:
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}

/* --- Service Card --- */

.card-service {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: var(--space-6);
  text-align: center;
  transition:
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.card-service:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-service__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-inline: auto;
  margin-bottom: var(--space-4);
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  color: var(--color-primary);
  font-size: var(--text-2xl);
}

.card-service__title {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-2);
}

.card-service__description {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-body);
}

/* --- Rental Card --- */

.card-rental {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition:
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.card-rental:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}

.card-rental__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card-rental__body {
  padding: var(--space-5);
}

.card-rental__name {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-2);
}

.card-rental__specs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
}

.card-rental__specs span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}

.card-rental__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.card-rental__price {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
}

.card-rental__price small {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary);
}

/* --- Contact Card --- */

.card-contact {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: var(--space-6);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.card-contact__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-surface);
  border-radius: var(--radius-button);
  color: var(--color-primary);
  font-size: var(--text-xl);
}

.card-contact__title {
  font-size: var(--text-base);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-1);
}

.card-contact__text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-body);
}

/* ==========================================================================
   Grid Layouts
   ========================================================================== */

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: var(--space-6);
}

/* Mobile: single column for all grids */
.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.grid-4 {
  grid-template-columns: 1fr;
}

/* Tablet: 768px */
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* Desktop: 1024px */
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

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

/* ==========================================================================
   Pills / Filter Tabs
   ========================================================================== */

.pills {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-1);
}

.pills::-webkit-scrollbar {
  display: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-family);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  line-height: 1;
  white-space: nowrap;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background-color: var(--color-white);
  color: var(--color-text);
  cursor: pointer;
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.pill:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.pill.is-active,
.pill[aria-selected="true"] {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* Sticky pills bar */
.sticky-pills {
  position: sticky;
  top: var(--header-height);
  z-index: var(--z-sticky);
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--space-4);
}

/* ==========================================================================
   Accordion
   ========================================================================== */

.accordion {
  display: flex;
  flex-direction: column;
}

.accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.accordion-item:first-child {
  border-top: 1px solid var(--color-border);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-5) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  text-align: left;
  line-height: var(--line-height-body);
}

.accordion-trigger:hover {
  color: var(--color-primary);
}

.accordion-trigger::after {
  content: '+';
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-left: var(--space-4);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary);
  transition: transform var(--transition-fast);
}

.accordion-item.is-open .accordion-trigger::after {
  content: '\2212'; /* minus sign */
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.accordion-item.is-open .accordion-content {
  max-height: 500px;
}

.accordion-content__inner {
  padding-bottom: var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-body);
}

/* ==========================================================================
   Trust Bar
   ========================================================================== */

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
  padding-block: var(--space-6);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  white-space: nowrap;
}

.trust-bar__icon {
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: var(--text-xl);
}

@media (min-width: 768px) {
  .trust-bar {
    justify-content: space-between;
  }
}

/* ==========================================================================
   CTA Bar
   ========================================================================== */

.cta-bar {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding-block: var(--space-10);
}

.cta-bar .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-6);
}

.cta-bar__title {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
}

.cta-bar__text {
  font-size: var(--text-base);
  opacity: 0.9;
  max-width: 600px;
}

.cta-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

/* Override button styles inside CTA bar */
.cta-bar .btn--outline {
  background-color: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}

.cta-bar .btn--outline:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .cta-bar__title {
    font-size: var(--text-3xl);
  }

  .cta-bar .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .cta-bar__actions {
    flex-shrink: 0;
  }
}

/* ==========================================================================
   Page Hero
   ========================================================================== */

.page-hero {
  padding-top: var(--space-10);
  padding-bottom: var(--space-8);
  background-color: var(--color-surface);
}

.page-hero__title {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-3);
}

.page-hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 640px;
}

.page-hero--center {
  text-align: center;
}

.page-hero--center .page-hero__subtitle {
  margin-inline: auto;
}

@media (min-width: 768px) {
  .page-hero {
    padding-top: var(--space-16);
    padding-bottom: var(--space-12);
  }

  .page-hero__title {
    font-size: var(--text-4xl);
  }

  .page-hero__subtitle {
    font-size: var(--text-xl);
  }
}

@media (min-width: 1024px) {
  .page-hero__title {
    font-size: var(--text-5xl);
  }
}

/* ==========================================================================
   Form Components
   ========================================================================== */

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
}

.form-label--required::after {
  content: ' *';
  color: #D32F2F;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-family);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-input);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-secondary);
  opacity: 0.7;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(27, 107, 77, 0.15);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%236B6B67' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

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

/* Error state */
.form-input--error,
.form-select--error,
.form-textarea--error {
  border-color: #D32F2F;
}

.form-input--error:focus,
.form-select--error:focus,
.form-textarea--error:focus {
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.15);
}

.form-error {
  font-size: var(--text-sm);
  color: #D32F2F;
}

/* ==========================================================================
   Logo Grid
   ========================================================================== */

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
}

.logo-grid__item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.logo-grid__item:hover {
  opacity: 1;
}

.logo-grid__item img {
  max-height: 40px;
  width: auto;
}

@media (min-width: 768px) {
  .logo-grid__item img {
    max-height: 48px;
  }
}

/* ==========================================================================
   Badge
   ========================================================================== */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0.25rem 0.75rem;
  font-size: var(--text-xs);
  font-weight: var(--font-weight-medium);
  line-height: 1;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.badge--success {
  background-color: #E8F5E9;
  color: #2E7D32;
}

.badge--warning {
  background-color: #FFF3E0;
  color: #E65100;
}

.badge--info {
  background-color: #E3F2FD;
  color: #1565C0;
}

.badge--neutral {
  background-color: var(--color-surface);
  color: var(--color-text-secondary);
}

/* ==========================================================================
   Contact Form 7 Styling
   ========================================================================== */

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="date"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--color-white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(27, 107, 77, 0.1);
}

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

.wpcf7 input[type="submit"] {
  display: block;
  width: 100%;
  padding: 14px 32px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.wpcf7 input[type="submit"]:hover {
  background: var(--color-primary-dark);
}

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

.wpcf7 .wpcf7-acceptance {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.contact-form-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.contact-form-wrap h2,
.contact-form-wrap h3 {
  text-align: center;
  margin-bottom: 8px;
}

.contact-form-wrap .text-secondary {
  text-align: center;
  margin-bottom: 32px;
}

.privacy-text {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  text-align: center;
  margin-top: 16px;
}

.privacy-text a {
  color: var(--color-primary);
}
/* ==========================================================================
   Header
   ========================================================================== */

:root {
    --header-height: 72px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    border-bottom: 1px solid #E0DDD6;
    height: var(--header-height);
}

.site-header.is-scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

/* Logo */
.header-logo {
    font-size: 24px;
    font-weight: 700;
    color: #2C2C2A;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.header-logo:hover {
    color: #2C2C2A;
}

/* Navigation */
.header-nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #6B6B67;
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: #1B6B4D;
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Language toggle */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.lang-active {
    font-weight: 700;
    color: #2C2C2A;
}

.lang-divider {
    color: #D0CDC6;
}

.lang-link {
    color: #6B6B67;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

.lang-link:hover {
    color: #2C2C2A;
}

/* ==========================================================================
   Mobile menu toggle
   ========================================================================== */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #2C2C2A;
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* X animation when menu is open */
body.menu-open .mobile-menu-toggle .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.menu-open .mobile-menu-toggle .hamburger-line:nth-child(2) {
    opacity: 0;
}

body.menu-open .mobile-menu-toggle .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Mobile menu overlay
   ========================================================================== */

.mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav .nav-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    font-size: 18px;
    font-weight: 500;
    color: #2C2C2A;
    text-decoration: none;
    border-bottom: 1px solid #E0DDD6;
    padding: 12px 0;
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.is-active {
    color: #1B6B4D;
}

.mobile-lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    font-size: 15px;
}

.mobile-lang-toggle .lang-active {
    font-weight: 700;
    color: #2C2C2A;
}

.mobile-lang-toggle .lang-link {
    color: #6B6B67;
    text-decoration: none;
}

.mobile-menu-contact {
    margin-top: 24px;
}

.mobile-menu-contact a {
    font-size: 18px;
    font-weight: 600;
    color: #1B6B4D;
    text-decoration: none;
}

/* Body lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 767px) {
    .header-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .lang-toggle {
        display: none;
    }
}
/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background-color: var(--color-primary-dark, #0E3D2C);
    color: #fff;
    padding: 64px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
}

/* Logo & tagline */
.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.footer-col--brand p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 15px;
    max-width: 320px;
}

/* Column headings */
.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
}

/* Links & text */
.footer-col p,
.footer-col a {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 15px;
}

.footer-col a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #fff;
}

/* List reset */
.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    line-height: 1.8;
}

/* Contact column specifics */
.footer-col--contact p {
    margin: 0;
}

/* ==========================================================================
   Footer bottom bar
   ========================================================================== */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 48px;
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-inner p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-inner a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-inner a:hover {
    color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 767px) {
    .site-footer {
        padding: 48px 0 0;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
