/*
Theme Name: Repairs-R-Us
Theme URI: https://repairsrus.com
Author: Repairs-R-Us
Author URI: https://repairsrus.com
Description: Professional IT repair shop theme for Repairs-R-Us. Gold and black branding with full-featured pages for services, pricing, testimonials, blog, contact, and bookings.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: repairs-r-us
Tags: business, services, repair, custom-colors, custom-menu, featured-images, responsive-layout
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dark:   #A07830;
  --black:       #0D0D0D;
  --dark:        #1A1A1A;
  --dark2:       #242424;
  --white:       #FFFFFF;
  --off-white:   #F9F6F0;
  --text:        #2C2C2C;
  --text-muted:  #666666;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(0,0,0,0.10);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.18);
  --max-width:   1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--off-white);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  line-height: 1.15;
  color: var(--black);
}

h1 { font-size: clamp(32px, 5vw, 52px); }
h2 { font-size: clamp(28px, 4vw, 38px); }
h3 { font-size: 22px; }
h4 { font-size: 17px; font-family: 'Nunito', sans-serif; font-weight: 800; }

p { line-height: 1.7; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 80px 24px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--text-muted); }

.bg-black    { background: var(--black); }
.bg-dark     { background: var(--dark); }
.bg-dark2    { background: var(--dark2); }
.bg-offwhite { background: var(--off-white); }
.bg-white    { background: var(--white); }
.bg-gold     { background: var(--gold); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 40px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(201,168,76,0.45);
  color: var(--black);
}

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(201,168,76,0.08);
  transform: translateY(-2px);
  color: var(--gold);
}

.btn-dark {
  background: var(--black);
  color: var(--gold);
}
.btn-dark:hover {
  background: var(--dark2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  color: var(--gold);
}

.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  color: var(--black);
}

.btn-full { width: 100%; justify-content: center; }
.btn-lg   { padding: 16px 36px; font-size: 16px; }
.btn-sm   { padding: 10px 20px; font-size: 13px; }

/* ============================================================
   SECTION LABELS & HEADINGS
   ============================================================ */
.section-label {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
  font-family: 'Nunito', sans-serif;
}

.section-title { color: var(--black); margin-bottom: 14px; }
.section-title.light { color: var(--white); }
.section-title span { color: var(--gold); }

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-sub.light { color: #aaaaaa; }

.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ============================================================
   TOP BAR
   ============================================================ */
.site-topbar {
  background: var(--gold);
  text-align: center;
  padding: 7px 20px;
  font-size: 13px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: 1px;
  font-family: 'Nunito', sans-serif;
}
.site-topbar a { color: var(--black); text-decoration: none; font-weight: 900; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.site-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

/* Logo */
.site-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  text-decoration: none;
}
.site-logo-gear { width: 44px; height: 44px; flex-shrink: 0; }
.site-logo-text { line-height: 1.15; }
.site-logo-text .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 1px;
  display: block;
}
.site-logo-text .brand-tagline {
  font-size: 9px;
  color: #aaaaaa;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  font-family: 'Nunito', sans-serif;
}

/* Primary nav */
.primary-nav { display: flex; align-items: center; gap: 4px; }
.primary-nav a {
  color: #cccccc;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s;
  letter-spacing: 0.3px;
  font-family: 'Nunito', sans-serif;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.primary-nav .nav-book-btn > a {
  background: var(--gold);
  color: var(--black) !important;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 800;
}
.primary-nav .nav-book-btn > a:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-hero {
  background: var(--black);
  padding: 70px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: #aaaaaa; font-size: 16px; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: #666;
  margin-bottom: 12px;
  font-family: 'Nunito', sans-serif;
}
.breadcrumb a { color: #666; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }

/* ============================================================
   HERO (homepage)
   ============================================================ */
.hero-section {
  background: var(--black);
  min-height: 580px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  left: -100px; top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.15), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.phone-pulse {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 20px;
  font-family: 'Nunito', sans-serif;
}
.pulse-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.6; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 30px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-family: 'Nunito', sans-serif;
}

.hero-title { color: var(--white); margin-bottom: 16px; }
.hero-desc  { font-size: 17px; color: #bbbbbb; margin-bottom: 32px; }
.hero-btns  { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero floating cards */
.hero-visual { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.hero-card {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  padding: 20px 24px;
  width: 100%;
  max-width: 340px;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: floatCard 3s ease-in-out infinite;
}
.hero-card:nth-child(2) { animation-delay: 0.5s; align-self: flex-start; margin-left: 20px; }
.hero-card:nth-child(3) { animation-delay: 1s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.hero-card-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(201,168,76,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
}
.hero-card h4 { font-size: 14px; font-weight: 800; color: var(--white); margin-bottom: 3px; font-family: 'Nunito', sans-serif; }
.hero-card p  { font-size: 12px; color: #888; }
.hero-card .card-price { font-size: 13px; color: var(--gold); font-weight: 800; margin-top: 4px; font-family: 'Nunito', sans-serif; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--gold);
  padding: 18px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: 0.5px;
  font-family: 'Nunito', sans-serif;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid #eeeeee;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: 0.25s;
  transform-origin: left;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(201,168,76,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}
.service-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; font-family: 'Nunito', sans-serif; }
.service-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.service-tag {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  font-family: 'Nunito', sans-serif;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--dark2);
  border-radius: 14px;
  border: 1px solid rgba(201,168,76,0.1);
  transition: 0.2s;
}
.why-item:hover { border-color: rgba(201,168,76,0.35); background: #2a2a2a; }
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  min-width: 40px;
  line-height: 1;
}
.why-text h4 { color: var(--white); font-size: 16px; margin-bottom: 5px; }
.why-text p  { font-size: 13px; color: #888; line-height: 1.6; }

.why-visual {
  background: var(--dark2);
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.2);
  padding: 36px;
  text-align: center;
}
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.stat-box {
  background: var(--dark);
  border-radius: 14px;
  padding: 24px 16px;
  border: 1px solid rgba(201,168,76,0.15);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.stat-lbl { font-size: 12px; color: #888; font-weight: 600; font-family: 'Nunito', sans-serif; }

/* ============================================================
   TESTIMONIAL CARDS
   ============================================================ */
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid #eeeeee;
}
.testi-quote {
  font-size: 40px;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.5;
}
.testi-text  { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: var(--black);
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
}
.testi-name   { font-weight: 800; font-size: 14px; color: var(--black); font-family: 'Nunito', sans-serif; }
.testi-device { font-size: 12px; color: var(--text-muted); font-family: 'Nunito', sans-serif; }
.stars        { color: var(--gold); font-size: 14px; margin-bottom: 10px; }

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 2px solid #eeeeee;
  text-align: center;
  transition: 0.25s;
  position: relative;
  overflow: hidden;
}
.price-card.featured {
  background: var(--black);
  border-color: var(--gold);
  transform: scale(1.03);
}
.price-card.featured .price-name,
.price-card.featured .price-amount,
.price-card.featured .price-from,
.price-card.featured .price-features li { color: var(--white); }
.featured-badge {
  position: absolute; top: 16px; right: -26px;
  background: var(--gold); color: var(--black);
  font-size: 10px; font-weight: 900; letter-spacing: 2px;
  padding: 4px 40px; transform: rotate(35deg);
  font-family: 'Nunito', sans-serif;
}
.price-icon   { font-size: 36px; margin-bottom: 12px; }
.price-name   { font-size: 13px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; font-family: 'Nunito', sans-serif; }
.price-amount { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 900; color: var(--black); line-height: 1; margin-bottom: 4px; }
.price-amount span { font-size: 20px; font-weight: 600; }
.price-from   { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; font-family: 'Nunito', sans-serif; }
.price-features { text-align: left; margin-bottom: 24px; }
.price-features li { padding: 8px 0; font-size: 13px; border-bottom: 1px solid #f0f0f0; display: flex; align-items: center; gap: 8px; font-family: 'Nunito', sans-serif; }
.price-card.featured .price-features li { border-bottom-color: rgba(255,255,255,0.08); }
.check { color: var(--gold); font-weight: 900; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #eeeeee;
  transition: 0.25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }
.blog-thumb {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
}
.blog-body    { padding: 22px; }
.blog-cat     { display: inline-block; background: rgba(201,168,76,0.12); color: var(--gold-dark); font-size: 10px; font-weight: 800; letter-spacing: 2px; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; margin-bottom: 10px; font-family: 'Nunito', sans-serif; }
.blog-card h3 { font-size: 17px; font-weight: 800; line-height: 1.35; margin-bottom: 8px; color: var(--black); font-family: 'Nunito', sans-serif; }
.blog-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.blog-meta    { font-size: 12px; color: #aaaaaa; display: flex; gap: 12px; font-family: 'Nunito', sans-serif; }

/* ============================================================
   CONTACT & FORMS
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 1px solid #eeeeee;
}
.contact-item-icon {
  width: 48px; height: 48px;
  background: var(--gold);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 14px; font-weight: 800; margin-bottom: 4px; font-family: 'Nunito', sans-serif; }
.contact-item p, .contact-item a { font-size: 14px; color: var(--text-muted); }

.rru-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid #eeeeee;
}
.rru-form.dark {
  background: var(--dark2);
  border-color: rgba(201,168,76,0.2);
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; font-family: 'Nunito', sans-serif; }
.rru-form.dark .form-group label { color: #cccccc; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 2px solid #eeeeee;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px; color: var(--text);
  transition: 0.2s; outline: none;
  background: #fafafa;
}
.rru-form.dark .form-group input,
.rru-form.dark .form-group select,
.rru-form.dark .form-group textarea {
  background: var(--dark);
  border-color: rgba(201,168,76,0.2);
  color: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.rru-form.dark .form-group input:focus,
.rru-form.dark .form-group select:focus { border-color: var(--gold); background: #2a2a2a; }
.form-group textarea { height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Hours */
.hours-table { display: flex; flex-direction: column; gap: 8px; }
.hours-row {
  display: flex; justify-content: space-between;
  padding: 10px 14px;
  background: var(--dark2);
  border-radius: 10px;
  border: 1px solid rgba(201,168,76,0.1);
  font-size: 13px; font-family: 'Nunito', sans-serif;
}
.hours-row .day  { color: #cccccc; font-weight: 600; }
.hours-row .time { color: var(--gold); font-weight: 700; }

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.book-steps { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.book-step {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px;
  background: var(--dark2);
  border-radius: 14px;
  border: 1px solid rgba(201,168,76,0.12);
}
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 15px; flex-shrink: 0;
  font-family: 'Playfair Display', serif;
}
.step-text h4 { color: var(--white); font-size: 15px; margin-bottom: 3px; }
.step-text p  { color: #888; font-size: 13px; }
.call-box {
  margin-top: 28px; padding: 22px;
  background: rgba(201,168,76,0.1);
  border-radius: 14px;
  border: 1px solid rgba(201,168,76,0.25);
}
.call-box .label { font-size: 13px; color: var(--gold); font-weight: 800; letter-spacing: 1px; margin-bottom: 6px; font-family: 'Nunito', sans-serif; }
.call-box a { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; color: var(--white); }
.call-box p { color: #888; font-size: 13px; margin-top: 4px; font-family: 'Nunito', sans-serif; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--gold);
  padding: 60px 24px;
  text-align: center;
}
.cta-banner h2 { color: var(--black); margin-bottom: 10px; }
.cta-banner p  { font-size: 17px; color: rgba(0,0,0,0.7); margin-bottom: 28px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--black); color: #cccccc; padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.footer-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--gold); font-weight: 900;
  margin-bottom: 10px; display: block;
}
.footer-brand p { font-size: 13px; color: #777; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: var(--gold);
  transition: 0.2s;
}
.footer-social a:hover { background: rgba(201,168,76,0.25); color: var(--gold); }
.footer-col h4 { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; font-family: 'Nunito', sans-serif; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: #777; font-size: 13px; transition: 0.15s; font-family: 'Nunito', sans-serif; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li span { color: #555; font-size: 13px; font-family: 'Nunito', sans-serif; }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 24px;
  font-size: 12px; color: #555;
  font-family: 'Nunito', sans-serif;
}
.footer-bottom span { color: var(--gold); }
.footer-bottom em { color: var(--gold); font-style: italic; }

/* ============================================================
   RATING STATS (Testimonials page)
   ============================================================ */
.rating-stats {
  display: flex; gap: 24px; justify-content: center;
  margin-bottom: 48px; flex-wrap: wrap;
}
.rating-box {
  text-align: center; padding: 28px 36px;
  background: var(--white);
  border-radius: 16px; box-shadow: var(--shadow);
  border: 1px solid #eeeeee;
}
.rating-num { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 900; color: var(--gold); }
.rating-stars { font-size: 22px; color: var(--gold); }
.rating-lbl { font-size: 13px; color: var(--text-muted); margin-top: 8px; font-family: 'Nunito', sans-serif; }

/* ============================================================
   PRICING NOTE
   ============================================================ */
.pricing-note {
  text-align: center; margin-top: 36px; padding: 24px;
  background: var(--white); border-radius: 14px; border: 1px solid #eeeeee;
}
.pricing-note p { font-size: 15px; color: var(--text-muted); font-family: 'Nunito', sans-serif; }
.pricing-note p strong { color: var(--text); }

/* ============================================================
   WORDPRESS DEFAULTS
   ============================================================ */
.wp-block-image img { border-radius: var(--radius); }
.aligncenter { text-align: center; }
.alignleft   { float: left; margin-right: 20px; }
.alignright  { float: right; margin-left: 20px; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner, .grid-2, .contact-grid, .book-grid { grid-template-columns: 1fr; }
  .hero-visual { align-items: center; }
  .hero-card:nth-child(2) { align-self: auto; margin-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .primary-nav { display: none; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: var(--black); padding: 16px 0; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 12px 24px; border-radius: 0; width: 100%; }
  .primary-nav .nav-book-btn > a { margin: 8px 24px; border-radius: 30px; width: auto; }
  .menu-toggle { display: block; }
  .site-header-inner { position: relative; }
  .trust-strip { gap: 16px; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .rating-stats { flex-direction: column; align-items: center; }
}
