/*
Theme Name: Ultimate Party Rentals
Theme URI: https://ultimatepartyrentals.com
Template: astra
Author: Ultimate Party Rentals
Description: Custom child theme for Ultimate Party Rentals — professional event & party rental website
Version: 1.0.0
Text Domain: event-rental-child
*/

/* ============================================================
   CSS CUSTOM PROPERTIES — Brand Identity
   ============================================================ */
:root {
  --clr-primary:    #1a1a2e;   /* Deep Navy */
  --clr-secondary:  #c9a84c;   /* Gold */
  --clr-accent:     #e8d5b7;   /* Champagne */
  --clr-dark:       #0f0f1a;   /* Darker Navy */
  --clr-text:       #2d2d2d;
  --clr-text-light: #666666;
  --clr-bg:         #fafafa;
  --clr-white:      #ffffff;
  --clr-border:     #e0e0e0;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 50px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.18);
  --shadow-hover: 0 12px 40px rgba(26,26,46,.20);

  --transition: 0.3s ease;
  --max-width: 1280px;
}

/* ============================================================
   GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ============================================================
   GLOBAL RESETS & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--clr-text);
  background-color: var(--clr-bg);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--clr-primary);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }

a {
  color: var(--clr-secondary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--clr-primary); }

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

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

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

.text-center { text-align: center; }
.text-gold    { color: var(--clr-secondary); }
.text-navy    { color: var(--clr-primary); }
.text-white   { color: var(--clr-white); }

.bg-navy      { background-color: var(--clr-primary); }
.bg-gold      { background-color: var(--clr-secondary); }
.bg-champagne { background-color: var(--clr-accent); }
.bg-white     { background-color: var(--clr-white); }
.bg-light     { background-color: #f5f5f8; }

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--clr-secondary);
  color: var(--clr-primary);
  border-color: var(--clr-secondary);
}
.btn-primary:hover {
  background-color: #b8943f;
  border-color: #b8943f;
  color: var(--clr-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--clr-white);
  border-color: var(--clr-white);
}
.btn-secondary:hover {
  background-color: var(--clr-white);
  color: var(--clr-primary);
}

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

.btn-lg { padding: 18px 44px; font-size: 17px; }
.btn-sm { padding: 10px 22px; font-size: 14px; }

/* ============================================================
   HEADER — BASE
   ============================================================ */
.site-header {
  background-color: var(--clr-primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-lg); }

.header-wrap { background-color: var(--clr-primary); }

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

/* Logo */
.logo-text {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--clr-white);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.logo-text:hover { color: var(--clr-secondary); }

/* ============================================================
   DESKTOP NAV — NAV MENU
   ============================================================ */
.main-navigation { flex: 1; display: flex; justify-content: center; }

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
  height: 72px;
}

.nav-item { position: relative; display: flex; align-items: center; height: 100%; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.88);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  padding: 6px 13px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
  height: 100%;
}
.nav-link:hover,
.nav-item.is-active > .nav-link {
  color: var(--clr-secondary);
  background: rgba(255,255,255,.07);
}

/* chevron icon */
.nav-chevron {
  width: 10px;
  height: 6px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.nav-item.mega-open > .nav-link .nav-chevron,
.nav-item:hover > .nav-link .nav-chevron {
  transform: rotate(180deg);
}

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--clr-secondary);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity var(--transition);
}
.header-phone svg { width: 15px; height: 15px; flex-shrink: 0; }
.header-phone:hover { opacity: .8; color: var(--clr-secondary); }

.header-quote-btn { font-size: 13.5px !important; padding: 9px 20px !important; }

/* ============================================================
   MEGA-MENU PANEL
   ============================================================ */
.mega-menu {
  /* hidden by default — keep translateX(-50%) in both states to avoid lateral hop */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;

  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 700px;
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.18), 0 0 0 1px rgba(0,0,0,.06);
  z-index: 9999;
  /* arrow */
  margin-top: 0;
}

/* show on hover OR keyboard-opened (.mega-open set by JS) */
.nav-item.has-mega:hover > .mega-menu,
.nav-item.mega-open > .mega-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear 0s;
}

/* tiny upward arrow */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top: 0;
  border-bottom-color: var(--clr-white);
}

.mega-menu-inner {
  padding: 24px 28px 20px;
}

/* ── mega header row ── */
.mega-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--clr-border);
}
.mega-header-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-primary);
  letter-spacing: .3px;
}
.mega-view-all {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-secondary);
  text-decoration: none;
  transition: gap var(--transition);
}
.mega-view-all svg { width: 14px; height: 14px; }
.mega-view-all:hover { gap: 8px; color: var(--clr-secondary); }

/* ── category grid ── */
.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);    /* 4 cols × 14 cats = 4 rows */
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.mega-cat-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  color: var(--clr-text);
}
.mega-cat-link:hover {
  background: var(--clr-accent);
  color: var(--clr-primary);
}
.mega-cat-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  width: 26px;
  text-align: center;
}
.mega-cat-label {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

/* ── mega footer bar ── */
.mega-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--clr-border);
}
.mega-footer-note {
  font-size: 12px;
  color: var(--clr-text-light);
}
.mega-footer .btn svg { width: 14px; height: 14px; }

/* ============================================================
   HAMBURGER TOGGLE BUTTON
   ============================================================ */
.mobile-menu-toggle {
  display: none;                    /* shown via media query at ≤860px */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.22);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  flex-shrink: 0;
}
.mobile-menu-toggle:hover  { background: rgba(255,255,255,.2); }
.mobile-menu-toggle:focus-visible {
  outline: 2px solid var(--clr-secondary);
  outline-offset: 2px;
}
/* Active state — gold accent when drawer is open */
.mobile-menu-toggle[aria-expanded="true"] {
  background: rgba(201,168,76,.18);
  border-color: var(--clr-secondary);
}

/* The three bars */
.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}
/* Morph into × on open */
.mobile-menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   OFF-CANVAS DRAWER — transform-based (smooth open AND close)
   The drawer is always in the DOM; JS only toggles .is-open.
   No display:none so CSS transitions can run in both directions.
   ============================================================ */

/* ── Wrapper (backdrop + panel container) ── */
.oc-drawer {
  position: fixed;
  inset: 0;
  z-index: 9000;
  /* Hidden but in DOM — use visibility+pointer-events, not display */
  visibility: hidden;
  pointer-events: none;
  /* Delay visibility collapse until after close transition (0.35s) */
  transition: visibility 0s linear 0.35s;
}
.oc-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;   /* Show immediately on open */
}

/* ── Dark scrim ── */
.oc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 20, 0.62);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.35s ease;
  cursor: pointer;
}
.oc-drawer.is-open .oc-overlay { opacity: 1; }

/* ── Slide-in panel ── */
.oc-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 92vw);
  background: var(--clr-white);
  display: flex;
  flex-direction: column;
  overflow: hidden;                            /* panel clips; list scrolls inside */
  /* Start off-screen to the right */
  transform: translateX(110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  box-shadow: -6px 0 40px rgba(0,0,0,.22), -1px 0 0 rgba(0,0,0,.06);
}
.oc-drawer.is-open .oc-panel {
  transform: translateX(0);
}

/* ── Panel header (navy) ── */
.oc-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 64px;
  background: var(--clr-primary);
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.oc-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-white);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.oc-logo:hover { color: var(--clr-secondary); }

.oc-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.1);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform 0.2s;
  flex-shrink: 0;
}
.oc-close svg { width: 18px; height: 18px; display: block; }
.oc-close:hover  { background: rgba(255,255,255,.22); }
.oc-close:active { transform: rotate(90deg); }
.oc-close:focus-visible { outline: 2px solid var(--clr-secondary); outline-offset: 2px; }

/* ── Scrollable nav list ── */
.oc-nav {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.oc-nav-list {
  list-style: none;
  padding: 8px 0 16px;
  margin: 0;
}
.oc-nav-item {
  border-bottom: 1px solid #f0f0f0;
}
.oc-nav-item:last-child { border-bottom: none; }

.oc-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px;
  height: 52px;
  color: var(--clr-primary);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 10px;
  transition: background 0.18s, color 0.18s;
}
.oc-nav-link:hover,
.oc-nav-link:focus-visible { background: #f7f5ef; color: var(--clr-secondary); outline: none; }

.oc-nav-link-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.oc-nav-icon {
  font-size: 18px;
  line-height: 1;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

/* Chevron on expandable items */
.oc-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--clr-text-light);
  transition: transform 0.28s ease, color 0.2s;
}
.oc-sub-toggle[aria-expanded="true"] { color: var(--clr-secondary); background: #f7f5ef; }
.oc-sub-toggle[aria-expanded="true"] .oc-chevron {
  transform: rotate(180deg);
  color: var(--clr-secondary);
}

/* ── Rentals submenu ── */
.oc-submenu {
  background: #fafaf8;
  border-top: 1px solid #ebebeb;
  /* Smooth height transition */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1);
}
.oc-submenu.is-open { max-height: 1100px; }

/* "View All" banner inside submenu */
.oc-sub-viewall {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--clr-secondary);
  text-decoration: none;
  border-bottom: 2px solid #e8e2d0;
  background: #fdf9ef;
  gap: 8px;
  transition: background 0.18s;
}
.oc-sub-viewall:hover { background: #f5edcf; }
.oc-sub-viewall svg { width: 14px; height: 14px; flex-shrink: 0; }

/* 2-column category grid */
.oc-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  list-style: none;
  padding: 8px 12px 12px;
  margin: 0;
}
.oc-sub-cat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  color: var(--clr-text);
}
.oc-sub-cat:hover { background: var(--clr-accent); color: var(--clr-primary); }
.oc-sub-cat-icon  { font-size: 18px; flex-shrink: 0; line-height: 1; }
.oc-sub-cat-label { font-size: 12.5px; font-weight: 500; line-height: 1.3; color: inherit; }

/* ── Panel footer ── */
.oc-panel-footer {
  flex-shrink: 0;
  padding: 16px 20px 28px;
  border-top: 2px solid var(--clr-accent);
  background: var(--clr-white);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.oc-footer-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-decoration: none;
  background: var(--clr-secondary);
  color: var(--clr-primary);
  transition: background 0.2s, transform 0.15s;
}
.oc-footer-quote:hover { background: #b8943f; color: var(--clr-primary); transform: translateY(-1px); }

.oc-footer-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  text-decoration: none;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.oc-footer-phone:hover { background: var(--clr-primary); color: var(--clr-white); }

.oc-footer-note {
  text-align: center;
  font-size: 12px;
  color: var(--clr-text-light);
  margin: 0;
}

/* ============================================================
   HEADER RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  /* shrink nav links */
  .nav-link { font-size: 13.5px; padding: 6px 10px; }
  .mega-menu { width: 620px; }
  .mega-grid { grid-template-columns: repeat(3, 1fr); }
  .header-phone { display: none; }          /* hide phone at tablet */
}

@media (max-width: 860px) {
  .main-navigation { display: none; }       /* hide desktop nav */
  .header-right .header-quote-btn { display: none; }  /* hide CTA — in drawer */
  .mobile-menu-toggle { display: flex; }
}

/* ============================================================
   PAGE HERO — shared by Contact, FAQ, Packages, Service Areas
   ============================================================ */
.page-hero-section {
  background: linear-gradient(135deg, var(--clr-primary) 0%, #2a2a4a 100%);
  padding: 72px 0 60px;
  text-align: center;
}
.page-hero-section .section-label { color: var(--clr-secondary); }
.page-hero-section h1 { color: var(--clr-white); margin: 10px 0 16px; }
.page-hero-section p  { color: rgba(255,255,255,.78); font-size: 17px; max-width: 620px; margin: 0 auto; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-color: var(--clr-primary);
  overflow: hidden;
}

.hero-section .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero-section .hero-content {
  position: relative;
  z-index: 2;
  color: var(--clr-white);
  max-width: 760px;
}

.hero-section h1 {
  color: var(--clr-white);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-section h1 span { color: var(--clr-secondary); }

.hero-section .hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-section .hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background-color: var(--clr-secondary);
  padding: 20px 0;
}

.trust-bar .trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-bar .trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--clr-primary);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

.trust-bar .trust-item .trust-icon {
  font-size: 22px;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-label {
  display: inline-block;
  color: var(--clr-secondary);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--clr-text-light);
  font-size: 17px;
}

/* ============================================================
   CATEGORY GRID
   ============================================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.category-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}

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

.category-card .cat-image {
  height: 200px;
  overflow: hidden;
  background-color: var(--clr-primary);
}

.category-card .cat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.category-card:hover .cat-image img { transform: scale(1.05); }

.category-card .cat-info {
  padding: 20px;
}

.category-card .cat-info h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--clr-primary);
}

.category-card .cat-info p {
  font-size: 13px;
  color: var(--clr-text-light);
  margin: 0;
}

.category-card .cat-info .cat-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-secondary);
}

/* ============================================================
   PRODUCT CARDS (WooCommerce Override)
   ============================================================ */
.woocommerce ul.products li.product,
.products-grid .product-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: none !important;
}

.woocommerce ul.products li.product:hover,
.products-grid .product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--clr-primary);
  padding: 16px 16px 4px;
}

.woocommerce ul.products li.product .price {
  color: var(--clr-secondary);
  font-weight: 700;
  font-size: 15px;
  padding: 0 16px;
}

.woocommerce ul.products li.product a.add_to_cart_button,
.woocommerce ul.products li.product a.button {
  background-color: var(--clr-primary) !important;
  color: var(--clr-white) !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 20px !important;
  margin: 12px 16px 16px;
  width: calc(100% - 32px);
  text-align: center;
}

.woocommerce ul.products li.product a.add_to_cart_button:hover,
.woocommerce ul.products li.product a.button:hover {
  background-color: var(--clr-secondary) !important;
  color: var(--clr-primary) !important;
}

/* Product image hover */
.woocommerce ul.products li.product a img {
  transition: transform var(--transition);
}
.woocommerce ul.products li.product:hover a img { transform: scale(1.04); }

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
.how-it-works .steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  text-align: center;
}

.how-it-works .step {
  position: relative;
}

.how-it-works .step-number {
  width: 72px;
  height: 72px;
  background: var(--clr-secondary);
  color: var(--clr-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  margin: 0 auto 24px;
}

.how-it-works .step h3 { font-size: 20px; margin-bottom: 12px; }
.how-it-works .step p { color: var(--clr-text-light); font-size: 15px; }

/* ============================================================
   PACKAGE CARDS
   ============================================================ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.package-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--clr-border);
  transition: all var(--transition);
  text-align: center;
  position: relative;
}

.package-card.featured {
  border-color: var(--clr-secondary);
  transform: scale(1.04);
}

.package-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-secondary);
  color: var(--clr-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.package-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--clr-secondary);
}

.package-card .pkg-icon { font-size: 48px; margin-bottom: 16px; }

.package-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--clr-primary);
}

.package-card .pkg-tagline {
  color: var(--clr-text-light);
  font-size: 14px;
  margin-bottom: 20px;
}

.package-card .pkg-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--clr-secondary);
  margin-bottom: 4px;
}

.package-card .pkg-price span { font-size: 16px; color: var(--clr-text-light); }

.package-card ul {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
}

.package-card ul li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--clr-text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.package-card ul li::before {
  content: '✓';
  color: var(--clr-secondary);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background-color: var(--clr-primary); }

.testimonials-section .section-header .section-label,
.testimonials-section .section-header h2 { color: var(--clr-white); }
.testimonials-section .section-header p { color: rgba(255,255,255,.7); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--clr-secondary);
}

.testimonial-card .stars {
  color: var(--clr-secondary);
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card .review-text {
  color: rgba(255,255,255,.9);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--clr-primary);
  font-size: 18px;
  flex-shrink: 0;
}

.testimonial-card .reviewer-info .reviewer-name {
  color: var(--clr-white);
  font-weight: 600;
  font-size: 15px;
}

.testimonial-card .reviewer-info .reviewer-event {
  color: var(--clr-secondary);
  font-size: 13px;
}

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.blog-card .blog-img {
  height: 220px;
  overflow: hidden;
  background-color: var(--clr-primary);
}

.blog-card .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.blog-card:hover .blog-img img { transform: scale(1.04); }

.blog-card .blog-body { padding: 24px; }

.blog-card .blog-cat {
  display: inline-block;
  background: var(--clr-accent);
  color: var(--clr-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card h3 a { color: var(--clr-primary); }
.blog-card h3 a:hover { color: var(--clr-secondary); }

.blog-card p { font-size: 14px; color: var(--clr-text-light); margin-bottom: 16px; }

.blog-card .blog-meta {
  font-size: 13px;
  color: var(--clr-text-light);
  border-top: 1px solid var(--clr-border);
  padding-top: 14px;
}

/* ============================================================
   BOOKING FORM
   ============================================================ */
.booking-form-wrap {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

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

.booking-form-wrap .form-intro {
  text-align: center;
  color: var(--clr-text-light);
  margin-bottom: 32px;
  font-size: 15px;
}

.booking-form-section-label {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clr-secondary);
  border-bottom: 2px solid var(--clr-accent);
  padding-bottom: 8px;
  margin: 28px 0 20px;
}

/* CF7 overrides */
.wpcf7 input:not([type=submit]),
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--clr-text);
  background: #fafafa;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--clr-secondary);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
  background: var(--clr-white);
}

.wpcf7 .wpcf7-submit {
  background-color: var(--clr-secondary) !important;
  color: var(--clr-primary) !important;
  border: none !important;
  padding: 16px 40px !important;
  border-radius: var(--radius-pill) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  width: 100%;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.5px;
}

.wpcf7 .wpcf7-submit:hover {
  background-color: #b8943f !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.three { grid-template-columns: 1fr 1fr 1fr; }
.form-row.single { grid-template-columns: 1fr; }

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text);
}
.form-field .required { color: #e53e3e; }

/* ============================================================
   SINGLE PRODUCT PAGE
   ============================================================ */
.single-product-hero {
  background: var(--clr-primary);
  color: var(--clr-white);
  padding: 60px 0;
}

.product-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}

.product-specs-table th,
.product-specs-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
  font-size: 15px;
}

.product-specs-table th {
  background: var(--clr-primary);
  color: var(--clr-white);
  font-weight: 600;
  width: 40%;
}

.product-specs-table tr:nth-child(even) td { background: #f8f8f8; }

.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.pricing-box {
  background: var(--clr-white);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: border-color var(--transition);
}

.pricing-box:hover { border-color: var(--clr-secondary); }

.pricing-box .price-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-text-light);
  margin-bottom: 8px;
}

.pricing-box .price-amount {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--clr-secondary);
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumb-wrap {
  background: var(--clr-accent);
  padding: 14px 0;
}

.breadcrumb-wrap nav {
  font-size: 13px;
  color: var(--clr-text-light);
}

.breadcrumb-wrap nav a { color: var(--clr-primary); }
.breadcrumb-wrap nav a:hover { color: var(--clr-secondary); }
.breadcrumb-wrap nav .separator { margin: 0 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
#colophon,
.site-footer {
  background-color: var(--clr-dark) !important;
  color: rgba(255,255,255,.8);
  padding: 80px 0 0 !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-col h4 {
  color: var(--clr-secondary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.footer-col p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.65); }

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--clr-secondary); }

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 16px;
  display: block;
}

.social-icons { display: flex; gap: 12px; margin-top: 20px; }

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 16px;
  transition: all var(--transition);
  text-decoration: none;
}
.social-icon:hover {
  background: var(--clr-secondary);
  color: var(--clr-primary);
  transform: translateY(-2px);
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.contact-info .ci-icon { color: var(--clr-secondary); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--clr-secondary); }

/* ============================================================
   MOBILE STICKY QUOTE BUTTON
   ============================================================ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.mobile-sticky-cta a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-secondary);
  color: var(--clr-primary);
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  transition: all var(--transition);
}

.mobile-sticky-cta a:hover {
  background: #b8943f;
  transform: translateY(-2px);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--clr-primary);
  color: var(--clr-white);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  z-index: 999;
  border: none;
  text-decoration: none;
}

.back-to-top.visible { display: flex; }
.back-to-top:hover {
  background: var(--clr-secondary);
  color: var(--clr-primary);
  transform: translateY(-2px);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section .faq-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-section .faq-item.open { border-color: var(--clr-secondary); }

.faq-section .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--clr-white);
  font-weight: 600;
  font-size: 16px;
  color: var(--clr-primary);
  gap: 16px;
}

.faq-section .faq-question .faq-toggle {
  width: 28px;
  height: 28px;
  background: var(--clr-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: 16px;
  color: var(--clr-primary);
}

.faq-section .faq-item.open .faq-toggle {
  background: var(--clr-secondary);
  color: var(--clr-primary);
  transform: rotate(45deg);
}

.faq-section .faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--clr-text-light);
  font-size: 15px;
  line-height: 1.8;
}

.faq-section .faq-item.open .faq-answer { display: block; }

/* ============================================================
   SERVICE AREA PAGE
   ============================================================ */
.service-area-hero {
  background: linear-gradient(135deg, var(--clr-primary) 0%, #2a2a4a 100%);
  color: var(--clr-white);
  padding: 80px 0;
  text-align: center;
}

.service-area-hero h1 { color: var(--clr-white); }
.service-area-hero p { color: rgba(255,255,255,.8); font-size: 18px; max-width: 600px; margin: 16px auto 0; }

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.city-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  color: var(--clr-primary);
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
  text-decoration: none;
}

.city-link:hover {
  border-color: var(--clr-secondary);
  background: var(--clr-accent);
  color: var(--clr-primary);
  transform: translateY(-2px);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--clr-primary) 0%, #2a2a4a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section h2 { color: var(--clr-white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.8); font-size: 18px; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-section .cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   SKIP LINK (Accessibility)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 12px 20px;
  background: var(--clr-secondary);
  color: var(--clr-primary);
  font-weight: 700;
  z-index: 10000;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

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

/* ============================================================
   RESPONSIVE — LARGE TABLET (≤1200px)
   ============================================================ */
@media (max-width: 1200px) {
  :root { --max-width: 100%; }
  .container { padding: 0 20px; }
}

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  /* Typography */
  h1 { font-size: clamp(1.8rem, 4.5vw, 3rem); }
  h2 { font-size: clamp(1.4rem, 3.5vw, 2.2rem); }

  /* Layout */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .categories-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }

  /* Section padding */
  .section-pad { padding: 64px 0; }

  /* Homepage */
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .package-card.featured { transform: scale(1.02); }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr 1fr; }

  /* WooCommerce */
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr 1fr; }

  /* Single product */
  .product-layout { grid-template-columns: 1fr !important; }

  /* Cities grid */
  .cities-grid { grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); }
}

/* ============================================================
   RESPONSIVE — MOBILE BREAK (≤860px)
   ============================================================ */
@media (max-width: 860px) {
  /* Already handled in header section: hamburger shows, desktop nav hides */

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Trust bar — wrap tightly */
  .trust-bar .trust-items { gap: 16px 32px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr 1fr; }

  /* Packages */
  .packages-grid { grid-template-columns: 1fr 1fr; }

  /* FAQ layout */
  .faq-layout { grid-template-columns: 1fr !important; }
  .faq-sidebar { position: static !important; flex-direction: row; flex-wrap: wrap; }
  .faq-sidebar-card { flex: 1 1 220px; }

  /* Contact layout */
  .contact-layout { grid-template-columns: 1fr !important; }

  /* Quote page */
  .quote-layout { grid-template-columns: 1fr !important; }

  /* Shop layout */
  .shop-layout { grid-template-columns: 1fr !important; }
  .shop-sidebar { order: 2; }

  /* Service detail hero */
  .svc-detail-hero-inner { grid-template-columns: 1fr !important; }
  .svc-trust-card { display: grid; grid-template-columns: 1fr 1fr; }

  /* Package CTA box */
  .svc-pkg-cta-box { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Base */
  :root { --max-width: 100%; }
  .container { padding: 0 16px; }
  .section-pad { padding: 48px 0; }

  /* Typography */
  h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  h2 { font-size: clamp(1.3rem, 5vw, 1.9rem); }
  h3 { font-size: clamp(1rem, 4vw, 1.4rem); }
  body { font-size: 15px; }

  /* Header */
  .header-inner { padding: 0 16px; height: 64px; }

  /* Hero section */
  .hero-section { min-height: 75vh; padding: 60px 0 48px; }
  .hero-section .hero-content { max-width: 100%; }
  .hero-section h1 { font-size: clamp(1.7rem, 7vw, 2.5rem); }
  .hero-section .hero-sub { font-size: 15px; }
  .hero-section .hero-buttons { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-section .hero-buttons .btn { width: 100%; justify-content: center; }

  /* Trust bar */
  .trust-bar .trust-items { flex-wrap: wrap; gap: 12px 24px; justify-content: flex-start; }
  .trust-bar .trust-item { font-size: 13px; }

  /* Section headers */
  .section-header { margin-bottom: 36px; }
  .section-header p { font-size: 15px; }

  /* Categories grid */
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .category-card .cat-image { height: 160px; }

  /* How it works */
  .how-it-works .steps { grid-template-columns: 1fr; gap: 28px; }

  /* Packages */
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .package-card.featured { transform: none; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }

  /* Cities grid */
  .cities-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .city-link { padding: 12px 14px; font-size: 13px; }

  /* Service areas region cards */
  .sa-regions-grid { grid-template-columns: 1fr 1fr; }

  /* CTA section */
  .cta-section .cta-buttons { flex-direction: column; align-items: center; }
  .cta-section .cta-buttons .btn { width: 100%; max-width: 340px; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  /* Mobile sticky CTA */
  .mobile-sticky-cta { display: block; }

  /* Forms */
  .form-row { grid-template-columns: 1fr !important; }
  .form-row.three { grid-template-columns: 1fr !important; }
  .booking-form-wrap { padding: 20px 14px; }

  /* WooCommerce shop */
  .woocommerce ul.products { grid-template-columns: 1fr 1fr !important; gap: 14px !important; }
  .products { grid-template-columns: 1fr 1fr !important; gap: 14px !important; }

  /* Product page */
  .pricing-table { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* Service detail pages */
  .svc-cards-grid { grid-template-columns: 1fr; }
  .svc-equip-grid { grid-template-columns: 1fr; }
  .svc-usecases-grid { grid-template-columns: 1fr; }
  .svc-why-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  /* Package steps */
  .pkg-steps { grid-template-columns: 1fr !important; }
  .pkg-step-divider { display: none; }
  .addons-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }

  /* Service areas */
  .sa-regions-grid { grid-template-columns: 1fr 1fr; }
  .sa-cities-grid  { grid-template-columns: 1fr 1fr; }

  /* Contact strips */
  .contact-strips-inner { flex-direction: column; }
  .contact-strip-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,.07); padding: 16px; }

  /* Contact info cards */
  .contact-info-col { flex-direction: column; }

  /* FAQ */
  .faq-jump-list { gap: 4px; }
  .faq-jump-list a { font-size: 12px; padding: 4px 10px; }
  .faq-question { font-size: 14.5px; padding: 15px 16px; }

  /* Single product page */
  .product-layout { grid-template-columns: 1fr !important; }

  /* Blog post page */
  [style*="grid-template-columns:2fr"] { grid-template-columns: 1fr !important; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .section-pad { padding: 36px 0; }

  /* Hero */
  .hero-section { min-height: 65vh; }
  .hero-section h1 { font-size: clamp(1.5rem, 8vw, 2rem); }

  /* Categories — single column */
  .categories-grid { grid-template-columns: 1fr; }

  /* Trust bar — vertical */
  .trust-bar .trust-items { flex-direction: column; gap: 10px; }
  .trust-bar { padding: 16px 0; }

  /* Packages */
  .packages-grid { max-width: 100%; }

  /* Pricing table on product page */
  .pricing-table { grid-template-columns: 1fr 1fr; }

  /* Cities */
  .cities-grid { grid-template-columns: 1fr 1fr; }

  /* Service areas */
  .sa-regions-grid { grid-template-columns: 1fr; }
  .sa-cities-grid  { grid-template-columns: 1fr 1fr; }

  /* WooCommerce */
  .woocommerce ul.products { grid-template-columns: 1fr !important; }
  .products { grid-template-columns: 1fr !important; }

  /* Package grid */
  .pkg-grid { grid-template-columns: 1fr; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr; }

  /* Footer columns */
  .footer-grid { gap: 20px; }

  /* Addons */
  .addons-grid { grid-template-columns: 1fr; }

  /* Contact strips */
  .contact-strip-item { padding: 12px 16px; }

  /* Buttons */
  .btn { padding: 12px 24px; font-size: 14px; }
  .btn-lg { padding: 14px 28px; font-size: 15px; }

  /* Back to top + mobile CTA spacing */
  .back-to-top { bottom: 72px; }
}

/* ============================================================
   RESPONSIVE — TINY (≤360px)
   ============================================================ */
@media (max-width: 360px) {
  .container { padding: 0 10px; }
  .trust-bar .trust-item { font-size: 12px; }
  .hero-section h1 { font-size: 1.5rem; }
  .categories-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .hero-section .hero-buttons { gap: 10px; }
  .gal-grid { columns: 1 !important; }
  .sa-cities-grid { grid-template-columns: 1fr; }
}
