/*
Theme Name: Bogey's Mobile Mini Golf
Theme URI: https://bogeysmobilegolf.com
Author: Bogey's Mobile Mini Golf
Author URI: https://bogeysmobilegolf.com
Description: A premium WordPress theme for Bogey's Mobile Mini Golf — Houston's premier mobile mini golf experience for corporate events, community gatherings, and backyard parties.
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: bogeys-mini-golf
Tags: one-page, custom-logo, entertainment, events
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
*/

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

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

body {
  font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
  background-color: #f5f0e8;
  color: #3d2b1f;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

/* =========================================
   CUSTOM PROPERTIES (DESIGN TOKENS)
   ========================================= */
:root {
  --cream: #f5f0e8;
  --cream-dark: #e8dfd2;
  --espresso: #3d2b1f;
  --espresso-light: #5c4a3a;
  --sage: #5b7c5e;
  --sage-light: #7a9a7d;
  --sage-dark: #4a6b4d;
  --terracotta: #c07850;
  --terracotta-light: #d49070;
  --gold: #d4a853;
  --gold-light: #e0c080;
  --tan: #a08060;
  --background: #f5f0e8;
  --card-bg: #ffffff;
  --border-color: #ddd0c0;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --font-accent: 'Caveat', cursive;
  --container-max: 1280px;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--espresso);
}

.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }
.font-accent { font-family: var(--font-accent); }

/* =========================================
   LAYOUT
   ========================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* =========================================
   CUSTOM SCROLLBAR
   ========================================= */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--tan); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--sage); }

/* =========================================
   NAVBAR
   ========================================= */
.site-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.5s ease;
}

.site-navbar.scrolled {
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(61, 43, 31, 0.1);
  padding: 0.5rem 0;
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-brand-text {
  display: none;
}

@media (min-width: 640px) {
  .navbar-brand-text {
    display: block;
  }
}

.navbar-brand-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.2;
  display: block;
}

.navbar-brand-sub {
  font-family: var(--font-accent);
  font-size: 0.875rem;
  color: var(--sage);
  display: block;
  margin-top: -2px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--espresso-light);
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--sage);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sage);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-book-now {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(192, 120, 80, 0.3);
  border: none;
  cursor: pointer;
}

.btn-book-now:hover {
  background: var(--terracotta-light);
  box-shadow: 0 6px 20px rgba(192, 120, 80, 0.4);
  transform: translateY(-2px);
  color: #fff;
}

/* Mobile menu toggle */
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--espresso);
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(245, 240, 232, 0.98);
  backdrop-filter: blur(20px);
  padding-top: 6rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  flex-direction: column;
  gap: 1.5rem;
}

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

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--espresso);
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--sage);
}

.mobile-menu .btn-book-now {
  font-size: 1.125rem;
  padding: 0.75rem 1.5rem;
  justify-content: center;
  margin-top: 1rem;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  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-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(61,43,31,0.80), rgba(61,43,31,0.50), transparent);
}

.hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,43,31,0.60), transparent, rgba(61,43,31,0.20));
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-location svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.hero-location span {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title { font-size: 3.25rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 3.75rem; }
}

@media (min-width: 1280px) {
  .hero-title { font-size: 4.5rem; }
}

.hero-title .accent {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: rgba(245, 240, 232, 0.9);
  max-width: 32rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

@media (min-width: 640px) {
  .hero-subtitle { font-size: 1.25rem; }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(192, 120, 80, 0.35);
  border: none;
  cursor: pointer;
}

.btn-hero-primary:hover {
  background: var(--terracotta-light);
  box-shadow: 0 12px 32px rgba(192, 120, 80, 0.45);
  transform: translateY(-3px);
  color: #fff;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

.hero-logo-wrap {
  display: none;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-logo-wrap {
    display: flex;
  }
}

.hero-logo-glow {
  position: relative;
}

.hero-logo-glow::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: rgba(212, 168, 83, 0.2);
  border-radius: 50%;
  filter: blur(40px);
}

.hero-logo-glow img {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

@media (min-width: 1280px) {
  .hero-logo-glow img {
    width: 384px;
    height: 384px;
  }
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}

.hero-scroll:hover {
  color: #fff;
}

.hero-scroll svg {
  width: 32px;
  height: 32px;
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Hero wave divider */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  display: block;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section {
  padding: 5rem 0;
  background: var(--background);
}

@media (min-width: 1024px) {
  .about-section { padding: 7rem 0; }
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image-wrap {
  position: relative;
}

.about-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .about-image img { height: 500px; }
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,43,31,0.3), transparent);
  border-radius: 1rem;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--sage);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 12px 24px rgba(91,124,94,0.3);
}

@media (min-width: 1024px) {
  .about-badge { right: -2rem; }
}

.about-badge .badge-accent {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  display: block;
}

.about-badge .badge-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
}

.about-label {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
  display: block;
}

.about-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) { .about-title { font-size: 2.5rem; } }
@media (min-width: 1024px) { .about-title { font-size: 3rem; } }

.about-title .accent {
  color: var(--sage);
  font-style: italic;
}

.about-text {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--espresso-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

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

.stat-item svg {
  width: 24px;
  height: 24px;
  color: var(--sage);
  margin: 0 auto 0.5rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--espresso);
  display: block;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--espresso-light);
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
  padding: 5rem 0;
  background: var(--cream);
}

@media (min-width: 1024px) {
  .services-section { padding: 7rem 0; }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) { .section-title { font-size: 2.5rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }

.section-title .accent {
  color: var(--sage);
  font-style: italic;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--espresso-light);
  max-width: 40rem;
  margin: 0 auto;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.service-card {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .service-card { grid-template-columns: 1fr 1fr; }
  .service-card.reverse .service-image-wrap { order: 2; }
  .service-card.reverse .service-content { order: 1; }
}

.service-image-wrap {
  position: relative;
}

.service-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

@media (min-width: 640px) {
  .service-image img { height: 380px; }
}

.service-image:hover img {
  transform: scale(1.05);
}

.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,43,31,0.4), transparent);
  border-radius: 1rem;
  pointer-events: none;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
}

.service-tag.sage { background: rgba(91,124,94,0.1); color: var(--sage); }
.service-tag.terracotta { background: rgba(192,120,80,0.1); color: var(--terracotta); }
.service-tag.gold { background: rgba(212,168,83,0.1); color: var(--gold); }

.service-tag svg {
  width: 20px;
  height: 20px;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) { .service-title { font-size: 1.875rem; } }

.service-desc {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--espresso-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  color: var(--espresso-light);
  margin-bottom: 0.75rem;
}

.service-features li .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot.sage { background: var(--sage); }
.dot.terracotta { background: var(--terracotta); }
.dot.gold { background: var(--gold); }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-link.sage { color: var(--sage); }
.service-link.terracotta { color: var(--terracotta); }
.service-link.gold { color: var(--gold); }

.service-link:hover {
  gap: 0.75rem;
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* =========================================
   HOW IT WORKS SECTION
   ========================================= */
.how-it-works-section {
  padding: 5rem 0;
  background: var(--background);
}

@media (min-width: 1024px) {
  .how-it-works-section { padding: 7rem 0; }
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

.step-card {
  position: relative;
  background: var(--card-bg);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid rgba(221, 208, 192, 0.5);
  transition: all 0.5s ease;
}

.step-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  transform: translateY(-8px);
}

.step-number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(91,124,94,0.1);
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  background: rgba(91,124,94,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s ease;
}

.step-card:hover .step-icon {
  background: rgba(91,124,94,0.2);
}

.step-icon svg {
  width: 28px;
  height: 28px;
  color: var(--sage);
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step-desc {
  font-family: var(--font-body);
  color: var(--espresso-light);
  line-height: 1.6;
}

/* =========================================
   GALLERY SECTION
   ========================================= */
.gallery-section {
  padding: 5rem 0;
  background: var(--cream);
}

@media (min-width: 1024px) {
  .gallery-section { padding: 7rem 0; }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  grid-auto-rows: 200px;
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
  }
}

.gallery-item {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item.span-2 {
  grid-column: span 2;
  grid-row: span 2;
}

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

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(61,43,31,0);
  transition: background 0.5s ease;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-item:hover .overlay {
  background: rgba(61,43,31,0.3);
}

.gallery-item .overlay span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.5s ease;
}

.gallery-item:hover .overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-section {
  padding: 5rem 0;
  background: var(--sage);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .testimonials-section { padding: 7rem 0; }
}

.testimonials-section .deco-circle-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 256px;
  height: 256px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.testimonials-section .deco-circle-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  transform: translate(33%, 33%);
}

.testimonials-section .section-label {
  color: var(--gold-light);
}

.testimonials-section .section-title {
  color: #fff;
}

.testimonials-section .section-title .accent {
  color: var(--gold-light);
}

.testimonials-section .section-subtitle {
  color: rgba(255,255,255,0.8);
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.5s ease;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.15);
}

.testimonial-quote-icon {
  color: rgba(224, 192, 128, 0.5);
  margin-bottom: 1rem;
}

.testimonial-quote-icon svg {
  width: 32px;
  height: 32px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  color: var(--gold);
}

.testimonial-text {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  display: block;
}

.testimonial-role {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

/* =========================================
   CTA BANNER SECTION
   ========================================= */
.cta-section {
  padding: 5rem 0;
  background: var(--background);
}

@media (min-width: 1024px) {
  .cta-section { padding: 6rem 0; }
}

.cta-banner {
  position: relative;
  background: var(--espresso);
  border-radius: 1.5rem;
  overflow: hidden;
  padding: 2.5rem;
}

@media (min-width: 1024px) {
  .cta-banner { padding: 4rem; }
}

.cta-banner .deco-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 288px;
  height: 288px;
  background: rgba(91,124,94,0.1);
  border-radius: 50%;
  transform: translate(33%, -33%);
}

.cta-banner .deco-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 192px;
  height: 192px;
  background: rgba(192,120,80,0.1);
  border-radius: 50%;
  transform: translate(-25%, 25%);
}

.cta-inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .cta-inner { flex-direction: row; }
}

.cta-logo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(0,0,0,0.3);
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .cta-logo { width: 144px; height: 144px; }
}

.cta-text {
  text-align: center;
  flex: 1;
}

@media (min-width: 1024px) {
  .cta-text { text-align: left; }
}

.cta-title {
  font-size: 1.875rem;
  color: #fff;
  margin-bottom: 1rem;
}

@media (min-width: 640px) { .cta-title { font-size: 2.25rem; } }

.cta-desc {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: rgba(245, 240, 232, 0.8);
  margin-bottom: 1.5rem;
  max-width: 36rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .cta-buttons { justify-content: flex-start; }
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-cta-secondary:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
  padding: 5rem 0;
  background: var(--cream);
}

@media (min-width: 1024px) {
  .contact-section { padding: 7rem 0; }
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 2fr 3fr; }
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 0.75rem;
  transition: background 0.3s ease;
}

.contact-info-item:hover {
  background: rgba(255,255,255,0.6);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: rgba(91,124,94,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--sage);
}

.contact-info-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--espresso-light);
  display: block;
}

.contact-info-value {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--espresso);
  display: block;
}

.contact-info-sub {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--espresso-light);
}

.contact-map-placeholder {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-top: 1.5rem;
  height: 192px;
  background: rgba(91,124,94,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-map-placeholder svg {
  width: 32px;
  height: 32px;
  color: var(--sage);
}

.contact-map-placeholder span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--espresso-light);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--card-bg);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border: 1px solid rgba(221, 208, 192, 0.3);
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
  background: var(--background);
  font-family: var(--font-body);
  color: var(--espresso);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(91,124,94,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a09080;
}

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

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(192, 120, 80, 0.3);
  margin-top: 1.5rem;
}

.btn-submit:hover {
  background: var(--terracotta-light);
  box-shadow: 0 8px 24px rgba(192, 120, 80, 0.4);
  transform: translateY(-2px);
}

.btn-submit svg {
  width: 20px;
  height: 20px;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--espresso);
  color: rgba(245, 240, 232, 0.8);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1.2;
}

.footer-brand-sub {
  font-family: var(--font-accent);
  font-size: 0.875rem;
  color: var(--gold-light);
  display: block;
}

.footer-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.6);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  color: var(--sage-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact span,
.footer-contact a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.6);
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.4);
}

/* =========================================
   ANIMATIONS (Intersection Observer based)
   ========================================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animate-left {
  transform: translateX(-40px);
}

.animate-on-scroll.animate-right {
  transform: translateX(40px);
}

.animate-on-scroll.animate-scale {
  transform: scale(0.95);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger children */
.stagger-children .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.stagger-children .animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.stagger-children .animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.stagger-children .animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }
.stagger-children .animate-on-scroll:nth-child(5) { transition-delay: 0.5s; }
.stagger-children .animate-on-scroll:nth-child(6) { transition-delay: 0.6s; }

/* =========================================
   TOAST NOTIFICATION
   ========================================= */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--sage);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(91,124,94,0.4);
  z-index: 9999;
  transform: translateY(120%);
  transition: transform 0.4s ease;
}

.toast-notification.show {
  transform: translateY(0);
}

/* =========================================
   WORDPRESS SPECIFIC
   ========================================= */
.wp-caption {
  max-width: 100%;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.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;
}
