/*
Theme Name: Ark Of Cherubims
Theme URI: https://arkofcherubims.com
Author: Sajid
Author URI: https://arkofcherubims.com
Description: A warm, compassionate WordPress theme for Ark Of Cherubims — reliable non-emergency medical, private, and senior transportation services in Cincinnati, Ohio.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ark-cherubims
Tags: one-column, custom-menu, featured-images, translation-ready, accessibility-ready
*/

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */


/* ============================================
   LOCAL FONTS
   ============================================ */
/* Source Sans 3 - Light (300) */
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('./assets/fonts/source-sans-3-v19-latin-300.woff2') format('woff2');
}

/* Source Sans 3 - Regular (400) */
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./assets/fonts/source-sans-3-v19-latin-regular.woff2') format('woff2');
}

/* Source Sans 3 - Medium (500) */
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('./assets/fonts/source-sans-3-v19-latin-500.woff2') format('woff2');
}

/* Source Sans 3 - Semi-Bold (600) */
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('./assets/fonts/source-sans-3-v19-latin-600.woff2') format('woff2');
}

/* Source Sans 3 - Bold (700) */
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./assets/fonts/source-sans-3-v19-latin-700.woff2') format('woff2');
}

/* Playfair Display - Regular (400) */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./assets/fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
}

/* Playfair Display - Medium (500) */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('./assets/fonts/playfair-display-v40-latin-500.woff2') format('woff2');
}

/* Playfair Display - Semi-Bold (600) */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('./assets/fonts/playfair-display-v40-latin-600.woff2') format('woff2');
}

/* Playfair Display - Bold (700) */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./assets/fonts/playfair-display-v40-latin-700.woff2') format('woff2');
}

:root {
  /* Primary Brand Colors (Derived from #78d1b6) */
  --aoc-blue: #2A6B57;
  --aoc-blue-dark: #163D30;
  --aoc-blue-light: #E6F5F0;

  /* Client's Provided Accent Color */
  --aoc-gold: #78D1B6;
  --aoc-gold-light: #D4F0E6;

  /* Neutrals */
  --aoc-warm-white: #FDFBF7;
  --aoc-warm-gray: #F7F6F3;
  --aoc-text: #1E1E1E;
  --aoc-text-light: #555;
  --aoc-white: #FFFFFF;
  --aoc-border: #E5E2DC;
  --aoc-success: #2A6B57;

  /* Shadows & UI */
  --aoc-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --aoc-shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --aoc-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.10);
  --aoc-radius: 12px;
  --aoc-radius-lg: 20px;
  --aoc-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --aoc-font-heading: 'Playfair Display', Georgia, serif;
  --aoc-font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --aoc-container: 1200px;
  --aoc-focus: 0 0 0 3px rgba(120, 209, 182, 0.4);
}

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

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

body {
  font-family: var(--aoc-font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--aoc-text);
  background: var(--aoc-warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Global SVG safety */
svg {
  max-width: 100%;
  height: auto;
}

.aoc-icon {
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--aoc-transition);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--aoc-font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--aoc-blue);
}

.aoc-container {
  width: 90%;
  max-width: var(--aoc-container);
  margin: 0 auto;
}

/* Screen reader */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background: var(--aoc-white);
  clip: auto !important;
  clip-path: none;
  color: var(--aoc-blue);
  display: block;
  font-size: 14px;
  font-weight: 600;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 12px 20px;
  top: 5px;
  width: auto;
  z-index: 100000;
  box-shadow: var(--aoc-shadow-md);
  border-radius: var(--aoc-radius);
}

/* Global focus styles for accessibility */
*:focus-visible {
  outline: none;
  box-shadow: var(--aoc-focus);
  border-radius: 4px;
}

button:focus-visible,
a:focus-visible {
  outline: none;
  box-shadow: var(--aoc-focus);
}

/* Section titles */
.aoc-section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  margin-bottom: 16px;
}

.aoc-section-desc {
  font-size: 17px;
  color: var(--aoc-text-light);
  max-width: 600px;
  line-height: 1.75;
}

.aoc-section-desc--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.aoc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--aoc-font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--aoc-transition);
  white-space: nowrap;
  text-decoration: none;
}

.aoc-btn .aoc-icon {
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
}

.aoc-btn--primary {
  background: var(--aoc-blue);
  color: var(--aoc-white);
}

.aoc-btn--primary:hover,
.aoc-btn--primary:focus-visible {
  background: var(--aoc-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(42, 107, 87, 0.3);
}

.aoc-btn--secondary {
  background: transparent;
  color: var(--aoc-white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.aoc-btn--secondary:hover,
.aoc-btn--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--aoc-white);
}

/* Scrolled secondary button */
.aoc-header.scrolled .aoc-btn--secondary {
  color: var(--aoc-blue);
  border-color: var(--aoc-blue);
}

.aoc-header.scrolled .aoc-btn--secondary:hover,
.aoc-header.scrolled .aoc-btn--secondary:focus-visible {
  background: var(--aoc-blue-light);
}

.aoc-btn--gold {
  background: var(--aoc-gold);
  color: var(--aoc-text);
}

.aoc-btn--gold:hover,
.aoc-btn--gold:focus-visible {
  background: #5ebf9f;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(120, 209, 182, 0.35);
}

/* ============================================
   HEADER — FULL WIDTH, SINGLE BAR
   ============================================ */
.aoc-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all var(--aoc-transition);
}

.aoc-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--aoc-shadow-sm);
}

.aoc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  max-width: 100%;
  transition: padding var(--aoc-transition);
}

.aoc-header.scrolled .aoc-header__inner {
  padding: 10px 40px;
}

/* Logo */
.aoc-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.aoc-header__logo img {
  height: 50px;
  width: auto;
}

.aoc-header.scrolled .aoc-header__logo img {
  height: 42px;
}

/* Logo swap: show light on transparent, dark on scrolled */
.aoc-header__logo-dark {
  display: none;
}

.aoc-header__logo-light {
  display: block;
}

.aoc-header.scrolled .aoc-header__logo-dark {
  display: block;
}

.aoc-header.scrolled .aoc-header__logo-light {
  display: none;
}

/* Nav — center */
.aoc-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.aoc-header__nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--aoc-white);
  padding: 4px 0;
  position: relative;
}

.aoc-header.scrolled .aoc-header__nav a {
  color: var(--aoc-text);
}

/* Hover & active: color change, no underline */
.aoc-header__nav a:hover,
.aoc-header__nav a:focus-visible {
  color: var(--aoc-gold);
}

.aoc-header__nav a.current {
  color: var(--aoc-gold);
}

.aoc-header.scrolled .aoc-header__nav a:hover,
.aoc-header.scrolled .aoc-header__nav a:focus-visible,
.aoc-header.scrolled .aoc-header__nav a.current {
  color: var(--aoc-blue);
}

/* Actions — right */
.aoc-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.aoc-header__phone-btn {
  padding: 10px 22px;
  font-size: 14px;
}

.aoc-header__phone-btn .aoc-icon {
  width: 15px;
  height: 15px;
  max-width: 15px;
  max-height: 15px;
}

.aoc-header__phone-btn span {
  line-height: 2;
  margin-bottom: -2px;
}

.aoc-header__cta {
  padding: 10px 24px;
  font-size: 14px;
  line-height: 2;
}

/* Mobile toggle */
.aoc-header__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.aoc-header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--aoc-white);
  margin: 5px 0;
  transition: all var(--aoc-transition);
  border-radius: 2px;
}

.aoc-header.scrolled .aoc-header__toggle span {
  background: var(--aoc-text);
}

.aoc-header__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.aoc-header__toggle.active span:nth-child(2) {
  opacity: 0;
}

.aoc-header__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   MOBILE NAV
   ============================================ */
.aoc-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--aoc-transition);
}

.aoc-mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.aoc-mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--aoc-white);
  z-index: 1001;
  padding: 80px 28px 28px;
  box-shadow: var(--aoc-shadow-lg);
  transition: right var(--aoc-transition);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.aoc-mobile-nav.open {
  right: 0;
}

.aoc-mobile-nav>a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--aoc-text);
  border-bottom: 1px solid var(--aoc-border);
}

.aoc-mobile-nav>a:hover,
.aoc-mobile-nav>a:focus-visible {
  color: var(--aoc-blue);
}

.aoc-mobile-nav__actions {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aoc-mobile-nav__actions .aoc-btn {
  text-align: center;
  justify-content: center;
}

.aoc-mobile-nav__phone {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--aoc-blue);
  font-size: 16px;
}

.aoc-mobile-nav__phone .aoc-icon {
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
}

/* Mobile nav close button */
.aoc-mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--aoc-warm-gray);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--aoc-transition);
  z-index: 10;
}

.aoc-mobile-nav__close:hover,
.aoc-mobile-nav__close:focus-visible {
  background: var(--aoc-blue-light);
}

.aoc-mobile-nav__close .aoc-icon {
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  color: var(--aoc-text);
}

/* Mobile phone FAB (circle icon next to hamburger) */
.aoc-header__mobile-phone {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--aoc-gold);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--aoc-transition);
  box-shadow: 0 2px 8px rgba(120, 209, 182, 0.3);
}

.aoc-header__mobile-phone:hover,
.aoc-header__mobile-phone:focus-visible {
  background: #5ebf9f;
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(120, 209, 182, 0.45);
}

.aoc-header__mobile-phone .aoc-icon {
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  color: var(--aoc-text);
}

/* ============================================
   HERO — CENTERED, VIDEO BG, CLEAN
   ============================================ */
.aoc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--aoc-blue-dark);
}

.aoc-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.aoc-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aoc-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(160deg, rgba(22, 61, 48, 0.85) 0%, rgba(42, 107, 87, 0.65) 55%, rgba(15, 41, 32, 0.90) 100%);
}

.aoc-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 160px 20px 120px;
  max-width: 750px;
  margin: 0 auto;
}

.aoc-hero__title {
  font-size: clamp(34px, 5vw, 56px);
  color: var(--aoc-white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.aoc-hero__title span {
  color: var(--aoc-gold);
}



.aoc-hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.aoc-hero__cta {
  font-size: 16px;
  padding: 16px 36px;
}

/* ============================================
   TRUST BAR
   ============================================ */
.aoc-trust {
  background: var(--aoc-white);
  padding: 24px 0;
  border-bottom: 1px solid var(--aoc-border);
}

.aoc-trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.aoc-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--aoc-text-light);
}

.aoc-trust__item .aoc-icon {
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  color: var(--aoc-success);
}

/* ============================================
   SERVICES — ICON ON TOP
   ============================================ */
.aoc-services {
  padding: 88px 0;
  padding-top: 112px;
  background: var(--aoc-warm-white);
}

.aoc-services__header {
  text-align: center;
  margin-bottom: 56px;
}

.aoc-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.aoc-service-card {
  background: var(--aoc-white);
  border-radius: var(--aoc-radius-lg);
  overflow: visible;
  box-shadow: var(--aoc-shadow-sm);
  transition: all var(--aoc-transition);
  border: 1px solid var(--aoc-border);
  position: relative;
  margin-top: 24px;
}

.aoc-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--aoc-shadow-lg);
  border-color: transparent;
}

/* Icon badge — sits on top of card, fully visible */
.aoc-service-card__icon-badge {
  position: absolute;
  top: 215px;
  left: 28px;
  width: 52px;
  height: 52px;
  background: var(--aoc-blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--aoc-shadow-md);
  z-index: 5;
}

.aoc-service-card__icon-badge .aoc-icon {
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
  color: var(--aoc-white);
}

.aoc-service-card__image {
  height: 240px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: var(--aoc-radius-lg) var(--aoc-radius-lg) 0 0;
  overflow: hidden;
}

.aoc-service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aoc-service-card__body {
  padding: 28px;
  padding-top: 46px;
}

.aoc-service-card__title {
  font-size: 19px;
  margin-bottom: 10px;
}

.aoc-service-card__desc {
  font-size: 15px;
  color: var(--aoc-text-light);
  line-height: 1.7;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.aoc-why {
  padding: 88px 0;
  background: var(--aoc-warm-gray);
}

.aoc-why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.aoc-why__image-wrap {
  position: relative;
}

.aoc-why__image {
  border-radius: var(--aoc-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--aoc-blue-light);
  box-shadow: var(--aoc-shadow-md);
}

.aoc-why__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aoc-why__features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.aoc-why__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.aoc-why__feature-icon {
  width: 48px;
  height: 48px;
  background: var(--aoc-blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--aoc-transition);
}

.aoc-why__feature:hover .aoc-why__feature-icon {
  background: var(--aoc-blue);
}

.aoc-why__feature-icon .aoc-icon {
  width: 22px;
  height: 22px;
  max-width: 22px;
  max-height: 22px;
  color: var(--aoc-blue);
  transition: color var(--aoc-transition);
}

.aoc-why__feature:hover .aoc-why__feature-icon .aoc-icon {
  color: var(--aoc-white);
}

.aoc-why__feature h3 {
  font-family: var(--aoc-font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--aoc-text);
  margin-bottom: 4px;
}

.aoc-why__feature p {
  font-size: 15px;
  color: var(--aoc-text-light);
  line-height: 1.7;
}

/* ============================================
   OUR VALUES
   ============================================ */
.aoc-values {
  padding: 88px 0;
  background: var(--aoc-warm-white);
}

.aoc-values__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.aoc-values__content .aoc-section-desc {
  font-size: 18px;
  font-style: italic;
  color: var(--aoc-blue);
  font-weight: 500;
  max-width: 520px;
}

.aoc-values__items {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.aoc-values__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.aoc-values__item-icon {
  width: 48px;
  height: 48px;
  background: var(--aoc-blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--aoc-transition);
}

.aoc-values__item:hover .aoc-values__item-icon {
  background: var(--aoc-blue);
}

.aoc-values__item-icon .aoc-icon {
  width: 22px;
  height: 22px;
  max-width: 22px;
  max-height: 22px;
  color: var(--aoc-blue);
  transition: color var(--aoc-transition);
}

.aoc-values__item:hover .aoc-values__item-icon .aoc-icon {
  color: var(--aoc-white);
}

.aoc-values__item h3 {
  font-family: var(--aoc-font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--aoc-text);
  margin-bottom: 4px;
}

.aoc-values__item p {
  font-size: 15px;
  color: var(--aoc-text-light);
  line-height: 1.7;
}

.aoc-values__image-wrap {
  position: relative;
}

.aoc-values__image {
  border-radius: var(--aoc-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--aoc-blue-light);
  box-shadow: var(--aoc-shadow-md);
}

/* ============================================
   SERVICE AREA
   ============================================ */
.aoc-area {
  padding: 88px 0;
  background: var(--aoc-blue);
  position: relative;
  overflow: hidden;
}

.aoc-area::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(120, 209, 182, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.aoc-area__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.aoc-area__text .aoc-section-title {
  color: var(--aoc-white);
}

.aoc-area__text .aoc-section-desc {
  color: rgba(255, 255, 255, 0.8);
}

.aoc-area__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.aoc-area__list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.aoc-area__list-item .aoc-icon {
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
  color: var(--aoc-gold);
}

.aoc-area__map {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--aoc-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.aoc-area__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   GOOGLE REVIEWS
   ============================================ */
.aoc-reviews {
  padding: 88px 0;
  background: var(--aoc-warm-white);
}

.aoc-reviews__header {
  text-align: center;
  margin-bottom: 48px;
}

.aoc-reviews__heading-img {
  max-width: 320px;
  height: auto;
  margin: 0 auto;
}



/* ============================================
   FAQs
   ============================================ */
.aoc-faq {
  padding: 88px 0;
  background: var(--aoc-warm-gray);
}

.aoc-faq__header {
  text-align: center;
  margin-bottom: 48px;
}

.aoc-faq__list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aoc-faq__item {
  background: var(--aoc-white);
  border-radius: var(--aoc-radius);
  border: 1px solid var(--aoc-border);
  overflow: hidden;
  transition: all var(--aoc-transition);
}

.aoc-faq__item.active {
  box-shadow: var(--aoc-shadow-sm);
  border-color: var(--aoc-blue);
}

.aoc-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--aoc-font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--aoc-text);
  gap: 16px;
  transition: color var(--aoc-transition);
}

.aoc-faq__question:hover,
.aoc-faq__question:focus-visible {
  color: var(--aoc-blue);
}

.aoc-faq__question:focus-visible {
  box-shadow: inset var(--aoc-focus);
  border-radius: var(--aoc-radius);
}

.aoc-faq__icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--aoc-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--aoc-transition);
}

.aoc-faq__item.active .aoc-faq__icon {
  background: var(--aoc-blue);
  transform: rotate(45deg);
}

.aoc-faq__icon .aoc-icon {
  width: 14px;
  height: 14px;
  max-width: 14px;
  max-height: 14px;
  color: var(--aoc-blue);
}

.aoc-faq__item.active .aoc-faq__icon .aoc-icon {
  color: var(--aoc-white);
}

.aoc-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.aoc-faq__answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--aoc-text-light);
  line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.aoc-cta {
  padding: 88px 0;
  background: var(--aoc-warm-white);
}

.aoc-cta__inner {
  background: linear-gradient(135deg, var(--aoc-blue) 0%, var(--aoc-blue-dark) 100%);
  border-radius: var(--aoc-radius-lg);
  padding: 60px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.aoc-cta__inner::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -8%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(120, 209, 182, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.aoc-cta__text {
  position: relative;
  z-index: 2;
  flex: 1;
}

.aoc-cta__title {
  font-size: clamp(24px, 3vw, 34px);
  color: var(--aoc-white);
  margin-bottom: 10px;
}

.aoc-cta__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  line-height: 1.7;
}

.aoc-cta__actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  flex-shrink: 0;
}


/* ============================================
   FOOTER — SIMPLE
   ============================================ */
.aoc-footer {
  background: var(--aoc-blue-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 0;
}

.aoc-footer__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.aoc-footer__brand {
  max-width: 400px;
}

.aoc-footer__logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
}

.aoc-footer__brand p {
  font-size: 15px;
  line-height: 1.7;
}

.aoc-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aoc-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.aoc-footer__contact-item .aoc-icon {
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
  color: var(--aoc-gold);
}

.aoc-footer__contact-item a {
  transition: color var(--aoc-transition);
}

.aoc-footer__contact-item a:hover,
.aoc-footer__contact-item a:focus-visible {
  color: var(--aoc-gold);
}

.aoc-footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.aoc-footer__bottom a {
  transition: color var(--aoc-transition);
}

.aoc-footer__bottom a:hover,
.aoc-footer__bottom a:focus-visible {
  color: var(--aoc-gold);
}

/* ============================================
   ENTRY CONTENT (blog/page typography)
   ============================================ */
.entry-content p {
  margin-bottom: 1.5em;
}

.entry-content h2 {
  font-size: 28px;
  margin-top: 2em;
  margin-bottom: 0.75em;
}

.entry-content h3 {
  font-size: 22px;
  margin-top: 1.75em;
  margin-bottom: 0.5em;
}

.entry-content h4 {
  font-size: 18px;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}

.entry-content ul {
  list-style: disc;
}

.entry-content ol {
  list-style: decimal;
}

.entry-content li {
  margin-bottom: 0.5em;
  line-height: 1.7;
}

.entry-content blockquote {
  border-left: 4px solid var(--aoc-gold);
  padding: 16px 24px;
  margin: 1.5em 0;
  background: var(--aoc-warm-gray);
  border-radius: 0 var(--aoc-radius) var(--aoc-radius) 0;
  font-style: italic;
  color: var(--aoc-text-light);
}

.entry-content img {
  border-radius: var(--aoc-radius);
  margin: 1.5em 0;
}

.entry-content a {
  color: var(--aoc-blue);
  text-decoration: underline;
}

.entry-content a:hover {
  color: var(--aoc-blue-dark);
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}

.entry-content th,
.entry-content td {
  padding: 12px 16px;
  border: 1px solid var(--aoc-border);
  text-align: left;
}

.entry-content th {
  background: var(--aoc-warm-gray);
  font-weight: 700;
}

.entry-content pre,
.entry-content code {
  background: var(--aoc-warm-gray);
  border-radius: 6px;
  font-size: 15px;
}

.entry-content pre {
  padding: 20px;
  overflow-x: auto;
  margin: 1.5em 0;
}

.entry-content code {
  padding: 2px 6px;
}

.wrapper-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #ffffff;
  text-decoration: none;
  font-family: inherit;
  font-size: 14px;
  color: #000 !important;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.wrapper-link:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  color: #000 !important;
}

.wrapper-link img {
  width: 80px;
  height: auto;
  display: block;
}

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

.aoc-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .aoc-fade-up {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .aoc-header__inner {
    padding: 14px 24px;
  }

  .aoc-header.scrolled .aoc-header__inner {
    padding: 10px 24px;
  }

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

  .aoc-why__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .aoc-why__image-wrap {
    max-width: 480px;
  }

  .aoc-values__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .aoc-values__image-wrap {
    max-width: 480px;
    order: -1;
  }

  .aoc-area__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media (max-width: 768px) {

  .aoc-header__nav {
    display: none;
  }

  .aoc-header__actions a:first-child {
    display: none;
  }

  .aoc-header__actions {
    margin-left: auto;
    margin-right: 10px;
  }

  .aoc-header__cta {
    padding: 6px 16px;
  }

  .aoc-header__toggle {
    display: block;
  }

  .aoc-header__mobile-phone {
    display: flex;
    margin-right: 10px;
  }

  .aoc-header__inner {
    padding: 12px 20px;
  }

  .aoc-hero__content {
    padding: 130px 20px 80px;
  }

  .aoc-hero__title {
    font-size: 30px;
  }

  .aoc-hero__subtitle {
    font-size: 16px;
  }

  .aoc-services {
    padding-top: 88px;
  }

  .aoc-services__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    gap: 0;
  }

  .aoc-reviews__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .aoc-area__list {
    grid-template-columns: 1fr;
  }

  .aoc-cta__inner {
    flex-direction: column;
    padding: 40px 28px;
    text-align: center;
  }

  .aoc-cta__actions {
    align-items: center;
  }

  .aoc-footer__main {
    flex-direction: column;
    gap: 32px;
  }

  .aoc-footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .aoc-trust__inner {
    gap: 20px;
  }

  .aoc-trust__item {
    font-size: 13px;
  }

  .aoc-services__header,
  .aoc-faq__header {
    margin-bottom: 16px;
  }

}

@media (max-width: 480px) {
  .aoc-hero__title {
    font-size: 26px;
  }

  .aoc-reviews__heading-img {
    max-width: 240px;
  }

  .aoc-trust__inner {
    gap: 12px 20px;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {

  .aoc-header,
  .aoc-mobile-nav,
  .aoc-mobile-overlay,
  .aoc-hero__bg,
  .aoc-hero__overlay,
  .aoc-cta,
  .aoc-header__toggle {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  .aoc-hero {
    min-height: auto;
    background: none;
  }

  .aoc-hero__content {
    padding: 20px 0;
    color: #000;
  }

  .aoc-hero__title {
    color: #000;
  }

  .aoc-hero__subtitle {
    color: #333;
  }

  .aoc-footer {
    background: none;
    color: #000;
    border-top: 1px solid #ccc;
    padding: 20px 0;
  }

  a {
    text-decoration: underline;
  }
}

/* WP Admin bar spacing fix */
.admin-bar .aoc-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .aoc-header {
    top: 46px;
  }
}