/*
Theme Name: VirtualToursKE
Theme URI: https://virtualtourske.com
Author: VirtualToursKE
Author URI: https://virtualtourske.com
Description: A premium dark WordPress theme for VirtualToursKE — immersive virtual tours captured with Insta360 X5. Features fluid animations, WooCommerce support, full block editor compatibility, and extensive widget areas.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.7
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: virtualtourske
Tags: dark, full-site-editing, block-editor, woocommerce, custom-menu, custom-logo, featured-images, footer-widgets, sticky-post, threaded-comments, translation-ready
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
============================================================ */
:root {
  /* Colors */
  --clr-bg:            #070707;
  --clr-bg-alt:        #0f0f0f;
  --clr-surface:       #141414;
  --clr-surface-2:     #1c1c1c;
  --clr-surface-3:     #252525;
  --clr-border:        #1e1e1e;
  --clr-border-light:  #2d2d2d;

  --clr-orange:        #FF6200;
  --clr-orange-light:  #FF8840;
  --clr-orange-dark:   #D44E00;
  --clr-orange-glow:   rgba(255, 98, 0, 0.12);
  --clr-orange-glow-lg:rgba(255, 98, 0, 0.25);

  --clr-text:          #F0F0F0;
  --clr-text-muted:    #888888;
  --clr-text-subtle:   #4A4A4A;
  --clr-white:         #FFFFFF;
  --clr-black:         #000000;

  /* Typography */
  --font-display:      'Syne', sans-serif;
  --font-body:         'Outfit', sans-serif;

  /* Font Sizes (fluid clamp) */
  --fs-xs:    clamp(0.7rem,  1vw, 0.8rem);
  --fs-sm:    clamp(0.85rem, 1.2vw, 0.95rem);
  --fs-base:  clamp(1rem,    1.4vw, 1.1rem);
  --fs-md:    clamp(1.1rem,  1.6vw, 1.25rem);
  --fs-lg:    clamp(1.3rem,  2vw, 1.6rem);
  --fs-xl:    clamp(1.6rem,  2.5vw, 2.2rem);
  --fs-2xl:   clamp(2rem,    3.5vw, 3rem);
  --fs-3xl:   clamp(2.5rem,  5vw, 4.5rem);
  --fs-4xl:   clamp(3rem,    7vw, 6.5rem);
  --fs-hero:  clamp(3.5rem,  9vw, 9rem);

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2rem;
  --space-xl:   3rem;
  --space-2xl:  5rem;
  --space-3xl:  8rem;
  --space-4xl:  12rem;

  /* Layout */
  --container:    1320px;
  --container-sm: 860px;
  --gutter:       clamp(1.25rem, 4vw, 2rem);

  /* Effects */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  --shadow-orange: 0 0 40px rgba(255, 98, 0, 0.2);
  --shadow-card:   0 8px 40px rgba(0,0,0,0.4);
  --shadow-glow:   0 0 80px rgba(255, 98, 0, 0.15);

  /* Transitions */
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
  --trans-fast: 0.2s var(--ease-out);
  --trans-med:  0.4s var(--ease-out);
  --trans-slow: 0.7s var(--ease-out);

  /* Z-index layers */
  --z-below:   -1;
  --z-base:    1;
  --z-raised:  10;
  --z-overlay: 100;
  --z-modal:   1000;
  --z-cursor:  9999;
}

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

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

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.admin-bar { padding-top: 32px; }

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

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

a:hover { color: var(--clr-orange); }

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
}

:focus-visible {
  outline: 2px solid var(--clr-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* ============================================================
   SCROLLBAR
============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb {
  background: var(--clr-surface-3);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover { background: var(--clr-orange-dark); }

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

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
h5 { font-size: var(--fs-lg); }
h6 { font-size: var(--fs-md); }

p { margin-bottom: 1.2em; color: var(--clr-text-muted); }
p:last-child { margin-bottom: 0; }

strong, b { color: var(--clr-text); font-weight: 600; }

/* ============================================================
   LAYOUT UTILITIES
============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  box-sizing: border-box;
}

.container--sm {
  max-width: var(--container-sm);
}

.section {
  padding-block: var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.section--lg { padding-block: var(--space-4xl); }
.section--sm { padding-block: var(--space-2xl); }

.grid {
  display: grid;
  gap: var(--space-lg);
}

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

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { flex-direction: column; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

/* ============================================================
   BADGES & LABELS
============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35em 0.9em;
  border-radius: var(--radius-full);
  border: 1px solid var(--clr-border-light);
  color: var(--clr-orange);
  background: var(--clr-orange-glow);
}

.badge--dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-orange);
  animation: pulse 2s ease-in-out infinite;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85em 1.8em;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--trans-med);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--trans-fast);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--clr-orange);
  color: var(--clr-white);
  box-shadow: 0 0 30px rgba(255,98,0,0.35);
}
.btn-primary:hover {
  background: var(--clr-orange-light);
  color: var(--clr-white);
  box-shadow: 0 0 50px rgba(255,98,0,0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--clr-text);
  border: 1px solid var(--clr-border-light);
}
.btn-outline:hover {
  border-color: var(--clr-orange);
  color: var(--clr-orange);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--clr-text-muted);
  padding-inline: 0.5em;
}
.btn-ghost:hover { color: var(--clr-orange); }

.btn--lg {
  padding: 1.1em 2.5em;
  font-size: var(--fs-base);
}

.btn--sm {
  padding: 0.6em 1.2em;
  font-size: var(--fs-xs);
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--trans-fast);
}
.btn:hover svg { transform: translateX(3px); }

/* ============================================================
   CARDS
============================================================ */
.card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: all var(--trans-med);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--clr-orange-glow), transparent 70%);
  opacity: 0;
  transition: opacity var(--trans-med);
}

.card:hover {
  border-color: rgba(255,98,0,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-orange);
}

.card:hover::before { opacity: 1; }

/* ============================================================
   SECTION HEADERS
============================================================ */
.section-header {
  max-width: 700px;
  margin-bottom: var(--space-2xl);
}

.section-header.centered {
  margin-inline: auto;
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: var(--space-sm);
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--clr-orange);
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--clr-white);
  margin-bottom: var(--space-md);
}

.section-title span {
  color: var(--clr-orange);
  position: relative;
}

.section-desc {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ============================================================
   DIVIDERS
============================================================ */
hr, .divider {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin-block: var(--space-xl);
}

/* ============================================================
   CUSTOM CURSOR (disabled by default for performance)
============================================================ */
.cursor, .cursor-ring { display: none !important; }

/* ============================================================
   PRELOADER
============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--clr-bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-lg);
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--clr-white);
  letter-spacing: -0.03em;
}

.preloader-logo span { color: var(--clr-orange); }

.preloader-bar {
  width: 200px;
  height: 2px;
  background: var(--clr-surface-2);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--clr-orange-dark), var(--clr-orange-light));
  width: 0%;
  animation: preload 1.8s var(--ease-out) forwards;
  border-radius: 2px;
}

/* ============================================================
   HEADER
============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-overlay);
  transition: all var(--trans-med);
}

.header-top-bar {
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  padding-block: 0.5rem;
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

.header-top-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

#site-header.scrolled .header-top-bar { display: none; }

.header-main {
  background: rgba(7,7,7,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--trans-med);
  padding-block: 1.2rem;
}

#site-header.scrolled .header-main {
  padding-block: 0.8rem;
  border-bottom-color: var(--clr-border);
  background: rgba(7,7,7,0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

/* Site Logo */
.site-logo {
  flex-shrink: 0;
}

.site-logo a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--clr-white);
}

.site-logo a:hover { color: var(--clr-white); }

.site-logo .logo-mark {
  width: 36px;
  height: 36px;
  background: var(--clr-orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.logo-text span { color: var(--clr-orange); }
.logo-img { height: 40px; width: auto; }

/* Navigation */
.header-nav { flex: 1; display: flex; justify-content: center; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu li { position: relative; }

.nav-menu > li > a {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--trans-fast);
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-ancestor > a {
  color: var(--clr-white);
  background: var(--clr-surface-2);
}

/* Dropdown */
.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all var(--trans-fast);
  box-shadow: var(--shadow-card);
}

.nav-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-menu .sub-menu a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  border-radius: var(--radius-sm);
}
.nav-menu .sub-menu a:hover { color: var(--clr-white); background: var(--clr-surface-2); }

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

/* Header Widget Area */
.header-widget {
  display: flex;
  align-items: center;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all var(--trans-fast);
}

.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--clr-bg);
  z-index: calc(var(--z-overlay) - 1);
  display: flex;
  flex-direction: column;
  padding: 6rem var(--gutter) var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transition: all var(--trans-med);
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-menu { margin-bottom: var(--space-xl); }
.mobile-nav-menu li { border-bottom: 1px solid var(--clr-border); }
.mobile-nav-menu a {
  display: block;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--clr-text-muted);
  transition: color var(--trans-fast);
}
.mobile-nav-menu a:hover { color: var(--clr-orange); }

/* ============================================================
   HERO SECTION
============================================================ */
#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: var(--z-below);
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,98,0,0.12), transparent),
    radial-gradient(ellipse 80% 80% at 80% 80%, rgba(255,98,0,0.04), transparent);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black, transparent);
}

.hero-bg-noise {
  /* SVG noise disabled — caused desktop scroll lag from constant filter compositing.
     If you want a subtle texture back, use a small image instead. */
  display: none;
}

.hero-content {
  position: relative;
  z-index: var(--z-base);
  width: 100%;
}

.hero-badge {
  margin-bottom: var(--space-lg);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--clr-white);
  margin-bottom: var(--space-xl);
}

.hero-title .highlight {
  color: var(--clr-orange);
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-orange), transparent);
  opacity: 0.6;
}

.hero-sub {
  font-size: var(--fs-lg);
  color: var(--clr-text-muted);
  max-width: 580px;
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--clr-border);
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1;
  margin-bottom: 0.2em;
}

.hero-stat-num span { color: var(--clr-orange); }

.hero-stat-label {
  font-size: var(--fs-xs);
  color: var(--clr-text-subtle);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero visual (right side) */
.hero-visual {
  position: relative;
}

.hero-tour-preview {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--clr-border-light);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  background: var(--clr-surface);
  aspect-ratio: 16/10;
  position: relative;
}

.hero-tour-preview iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.hero-tour-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  background: var(--clr-surface);
  color: var(--clr-text-subtle);
  font-size: var(--fs-sm);
}

.hero-tour-badge {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background: rgba(7,7,7,0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-sm);
}

.tour-dot {
  width: 8px;
  height: 8px;
  background: var(--clr-orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ============================================================
   MARQUEE / TICKER
============================================================ */
.marquee-wrap {
  overflow: hidden;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding-block: 1rem;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-inline: 2.5rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-text-subtle);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--clr-orange);
  opacity: 0.6;
}

/* ============================================================
   SERVICES SECTION
============================================================ */
#services { background: var(--clr-bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--clr-border);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.service-card {
  background: var(--clr-surface);
  padding: var(--space-2xl) var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: background var(--trans-med);
}

.service-card:hover { background: var(--clr-surface-2); }

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-orange), transparent);
  opacity: 0;
  transition: opacity var(--trans-med);
}

.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--clr-orange-glow);
  border: 1px solid rgba(255,98,0,0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--clr-orange);
  font-size: 1.5rem;
  transition: all var(--trans-med);
}

.service-card:hover .service-icon {
  background: var(--clr-orange);
  color: var(--clr-white);
  box-shadow: var(--shadow-orange);
}

.service-title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-sm);
}

.service-desc { font-size: var(--fs-sm); color: var(--clr-text-muted); margin: 0; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: var(--space-md);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-orange);
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--trans-med);
}

.service-card:hover .service-link {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   TOUR SHOWCASE
============================================================ */
#tour-showcase {
  background: var(--clr-bg-alt);
}

.tour-embed-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--clr-border-light);
  box-shadow: var(--shadow-card), 0 0 100px rgba(255,98,0,0.08);
  position: relative;
  background: var(--clr-surface);
}

.tour-embed-container iframe {
  width: 100%;
  display: block;
  border: 0;
  min-height: 500px;
}

.tour-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.tour-tab {
  padding: 0.6em 1.4em;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-text-muted);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  cursor: pointer;
  transition: all var(--trans-fast);
}

.tour-tab.active,
.tour-tab:hover {
  background: var(--clr-orange);
  color: var(--clr-white);
  border-color: var(--clr-orange);
}

/* ============================================================
   ABOUT / PROCESS
============================================================ */
#about { background: var(--clr-bg); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  counter-reset: steps;
}

.step {
  position: relative;
  padding-top: var(--space-lg);
}

.step::before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: 800;
  color: var(--clr-surface-2);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-md);
}

.step-connector {
  position: absolute;
  top: 2rem;
  left: 50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--clr-orange), var(--clr-border));
  opacity: 0.3;
}
.step:last-child .step-connector { display: none; }

.step-title {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-xs);
}

.step-desc { font-size: var(--fs-sm); color: var(--clr-text-muted); margin: 0; }

/* ============================================================
   STATS BAND
============================================================ */
.stats-band {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding-block: var(--space-2xl);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: var(--clr-border);
}

.stat-num {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-num .suffix { color: var(--clr-orange); }
.stat-label { font-size: var(--fs-xs); color: var(--clr-text-subtle); text-transform: uppercase; letter-spacing: 0.1em; }

/* ============================================================
   TESTIMONIALS
============================================================ */
#testimonials { background: var(--clr-bg-alt); }

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  transition: all var(--trans-med);
}

.testimonial-card:hover {
  border-color: rgba(255,98,0,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--clr-orange);
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.testimonial-quote {
  font-size: var(--fs-md);
  color: var(--clr-text);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.testimonial-quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--clr-orange);
  opacity: 0.3;
  line-height: 0;
  vertical-align: -1.5rem;
  margin-right: 0.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-orange-glow);
  border: 2px solid rgba(255,98,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--clr-orange);
  font-size: var(--fs-sm);
  flex-shrink: 0;
  overflow: hidden;
}

.author-avatar img { width: 100%; height: 100%; object-fit: cover; }

.author-name { font-weight: 700; color: var(--clr-white); font-size: var(--fs-sm); }
.author-role { font-size: var(--fs-xs); color: var(--clr-text-subtle); }

/* ============================================================
   PRICING
============================================================ */
#pricing { background: var(--clr-bg); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: start;
}

.pricing-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
  transition: all var(--trans-med);
}

.pricing-card:hover {
  border-color: var(--clr-border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.pricing-card.featured {
  background: var(--clr-surface-2);
  border-color: var(--clr-orange);
  box-shadow: 0 0 0 1px var(--clr-orange), var(--shadow-glow);
  transform: scale(1.03);
}

.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-orange);
  color: var(--clr-white);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3em 1em;
  border-radius: var(--radius-full);
}

.pricing-tier {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: var(--space-sm);
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  margin-bottom: var(--space-sm);
}

.price-currency {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--clr-text-muted);
  margin-top: 0.5rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1;
}

.price-period {
  font-size: var(--fs-xs);
  color: var(--clr-text-subtle);
  align-self: flex-end;
  margin-bottom: 0.3rem;
}

.pricing-desc { font-size: var(--fs-sm); color: var(--clr-text-muted); margin-bottom: var(--space-xl); }

.pricing-divider {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin-block: var(--space-xl);
}

.pricing-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: var(--space-xl); }

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

.pricing-feature .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--clr-orange-glow);
  border: 1px solid rgba(255,98,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-orange);
  font-size: 10px;
  margin-top: 0.1rem;
}

.pricing-feature .cross {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--clr-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-text-subtle);
  font-size: 10px;
  margin-top: 0.1rem;
}

.pricing-feature.unavailable { opacity: 0.5; }

.pricing-card .btn { width: 100%; justify-content: center; }

/* ============================================================
   CONTACT SECTION
============================================================ */
#contact { background: var(--clr-bg-alt); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-info { padding-top: var(--space-sm); }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--clr-orange-glow);
  border: 1px solid rgba(255,98,0,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-orange);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-label { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.1em; color: var(--clr-text-subtle); margin-bottom: 0.25rem; }
.contact-value { font-weight: 600; color: var(--clr-white); }

/* Contact Form */
.contact-form-wrap {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 0.85em 1.1em;
  font-size: var(--fs-sm);
  color: var(--clr-text);
  transition: all var(--trans-fast);
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--clr-text-subtle); }

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--clr-orange);
  background: var(--clr-surface-3);
  box-shadow: 0 0 0 3px rgba(255,98,0,0.1);
}

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

.wpcf7 .wpcf7-form-control-wrap input,
.wpcf7 .wpcf7-form-control-wrap textarea,
.wpcf7 .wpcf7-form-control-wrap select {
  width: 100%;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 0.85em 1.1em;
  font-size: var(--fs-sm);
  color: var(--clr-text);
  font-family: var(--font-body);
  transition: all var(--trans-fast);
}

.wpcf7 .wpcf7-form-control-wrap input:focus,
.wpcf7 .wpcf7-form-control-wrap textarea:focus {
  outline: none;
  border-color: var(--clr-orange);
  box-shadow: 0 0 0 3px rgba(255,98,0,0.1);
}

.wpcf7 input[type="submit"] {
  background: var(--clr-orange) !important;
  color: var(--clr-white) !important;
  border: none !important;
  padding: 0.9em 2.2em !important;
  border-radius: var(--radius-full) !important;
  font-family: var(--font-body) !important;
  font-size: var(--fs-sm) !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all var(--trans-med) !important;
}
.wpcf7 input[type="submit"]:hover { background: var(--clr-orange-light) !important; transform: translateY(-2px) !important; }

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, var(--clr-orange-glow), transparent);
  pointer-events: none;
}

.cta-banner .section-title { font-size: var(--fs-2xl); }
.cta-banner .section-desc { max-width: 500px; margin-inline: auto; margin-bottom: var(--space-xl); }
.cta-banner .hero-actions { justify-content: center; }

/* ============================================================
   FOOTER
============================================================ */
#site-footer {
  background: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-border);
}

/* Pre-footer widget area */
.footer-above {
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  padding-block: var(--space-xl);
}

/* Main footer */
.footer-main {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--space-xl);
}

.footer-brand .site-logo a {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-md);
  display: inline-flex;
}

.footer-tagline {
  font-size: var(--fs-sm);
  color: var(--clr-text-subtle);
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
  max-width: 280px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  transition: all var(--trans-fast);
}

.social-link:hover {
  background: var(--clr-orange-glow);
  border-color: rgba(255,98,0,0.3);
  color: var(--clr-orange);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.footer-menu { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-menu a {
  font-size: var(--fs-sm);
  color: var(--clr-text-subtle);
  transition: color var(--trans-fast);
}
.footer-menu a:hover { color: var(--clr-orange); }

/* Footer bottom */
.footer-bottom {
  padding-block: var(--space-lg);
  border-top: 1px solid var(--clr-border);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-bottom-left,
.footer-bottom-right {
  flex: 1 1 auto;
  min-width: 0;
}

.footer-bottom-right { text-align: right; }

.footer-copy {
  font-size: var(--fs-xs);
  color: var(--clr-text-subtle);
}

.footer-copy a { color: var(--clr-orange); }
.footer-copy a:hover { text-decoration: underline; }

/* Widget area styling in footer */
.widget {
  margin-bottom: var(--space-lg);
}

.widget:last-child { margin-bottom: 0; }

.widget-title {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-md);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--clr-border);
}

/* ============================================================
   SIDEBAR
============================================================ */
.sidebar .widget {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.sidebar .widget ul li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--clr-border);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}
.sidebar .widget ul li:last-child { border-bottom: none; }
.sidebar .widget ul li a { color: var(--clr-text-muted); }
.sidebar .widget ul li a:hover { color: var(--clr-orange); }

/* ============================================================
   BLOG / ARCHIVE
============================================================ */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-2xl);
  align-items: start;
}

.post-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--trans-med);
  margin-bottom: var(--space-lg);
}

.post-card:hover {
  border-color: rgba(255,98,0,0.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.post-thumbnail { aspect-ratio: 16/9; overflow: hidden; }
.post-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--trans-slow); }
.post-card:hover .post-thumbnail img { transform: scale(1.04); }

.post-body { padding: var(--space-xl); }
.post-meta { display: flex; gap: 0.75rem; align-items: center; font-size: var(--fs-xs); color: var(--clr-text-subtle); margin-bottom: var(--space-sm); flex-wrap: wrap; }
.post-cat { color: var(--clr-orange); font-weight: 600; }
.post-title a { font-family: var(--font-display); font-size: var(--fs-xl); font-weight: 700; color: var(--clr-white); line-height: 1.2; }
.post-title a:hover { color: var(--clr-orange); }
.post-excerpt { font-size: var(--fs-sm); color: var(--clr-text-muted); margin-top: 0.75rem; }

/* ============================================================
   SINGLE POST
============================================================ */
.entry-header { margin-bottom: var(--space-xl); }
.entry-title { font-size: var(--fs-3xl); line-height: 1.1; }
.entry-meta { font-size: var(--fs-xs); color: var(--clr-text-subtle); margin-top: var(--space-md); display: flex; gap: 1rem; flex-wrap: wrap; }
.entry-meta a { color: var(--clr-orange); }

.entry-content {
  max-width: 720px;
  font-size: var(--fs-md);
  line-height: 1.8;
  color: var(--clr-text-muted);
}

.entry-content h2, .entry-content h3, .entry-content h4 { color: var(--clr-white); margin-top: 2em; margin-bottom: 0.75em; }
.entry-content p { margin-bottom: 1.4em; }
.entry-content a { color: var(--clr-orange); text-decoration: underline; text-decoration-color: transparent; transition: text-decoration-color var(--trans-fast); }
.entry-content a:hover { text-decoration-color: var(--clr-orange); }
.entry-content ul, .entry-content ol { padding-left: 1.5em; margin-bottom: 1.4em; }
.entry-content li { margin-bottom: 0.5em; color: var(--clr-text-muted); }
.entry-content img { border-radius: var(--radius-lg); margin-block: var(--space-xl); }
.entry-content blockquote { border-left: 3px solid var(--clr-orange); padding-left: var(--space-lg); margin-block: var(--space-xl); font-style: italic; color: var(--clr-text); }
.entry-content code { background: var(--clr-surface-2); border: 1px solid var(--clr-border); border-radius: 4px; padding: 0.15em 0.4em; font-size: 0.9em; color: var(--clr-orange); }
.entry-content pre { background: var(--clr-surface-2); border: 1px solid var(--clr-border); border-radius: var(--radius-md); padding: var(--space-lg); overflow-x: auto; margin-block: var(--space-xl); }
.entry-content pre code { background: none; border: none; padding: 0; color: var(--clr-text); }
.entry-content table { width: 100%; border-collapse: collapse; margin-block: var(--space-xl); }
.entry-content th { background: var(--clr-surface-2); color: var(--clr-white); font-weight: 600; text-align: left; padding: 0.75rem; border: 1px solid var(--clr-border); }
.entry-content td { padding: 0.75rem; border: 1px solid var(--clr-border); color: var(--clr-text-muted); }

/* ============================================================
   COMMENTS
============================================================ */
.comments-area {
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--clr-border);
}

.comment-list .comment { padding-block: var(--space-lg); border-bottom: 1px solid var(--clr-border); }
.comment-author { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.comment-author img { border-radius: 50%; }
.comment-author .fn { font-weight: 700; color: var(--clr-white); }
.comment-metadata { font-size: var(--fs-xs); color: var(--clr-text-subtle); }
.comment-content p { font-size: var(--fs-sm); }

.comment-form input,
.comment-form textarea {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 0.8em 1em;
  color: var(--clr-text);
  font-family: var(--font-body);
  width: 100%;
  margin-bottom: var(--space-md);
}
.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--clr-orange);
  outline: none;
}
.comment-form input[type="submit"] {
  width: auto;
  background: var(--clr-orange);
  color: var(--clr-white);
  font-weight: 600;
  border-radius: var(--radius-full);
  padding: 0.8em 2em;
  cursor: pointer;
  transition: background var(--trans-fast);
}
.comment-form input[type="submit"]:hover { background: var(--clr-orange-light); }

/* ============================================================
   PAGINATION
============================================================ */
.pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: var(--space-2xl);
}

.page-numbers {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  transition: all var(--trans-fast);
}

.page-numbers:hover,
.page-numbers.current {
  background: var(--clr-orange);
  border-color: var(--clr-orange);
  color: var(--clr-white);
}

/* ============================================================
   WOOCOMMERCE OVERRIDES
============================================================ */
.woocommerce-page .site-main { padding-block: var(--space-3xl); }

/* Product cards */
.woocommerce ul.products li.product {
  background: var(--clr-surface) !important;
  border: 1px solid var(--clr-border) !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  transition: all var(--trans-med) !important;
  padding: 0 !important;
}

.woocommerce ul.products li.product:hover {
  border-color: rgba(255,98,0,0.3) !important;
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-card) !important;
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 4/3;
  object-fit: cover;
  margin: 0 !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  color: var(--clr-white) !important;
  font-size: var(--fs-md) !important;
  padding: var(--space-md) var(--space-md) 0 !important;
}

.woocommerce ul.products li.product .price {
  color: var(--clr-orange) !important;
  padding: 0.25rem var(--space-md) var(--space-md) !important;
  font-weight: 700 !important;
}

.woocommerce ul.products li.product .button {
  background: var(--clr-orange) !important;
  color: var(--clr-white) !important;
  border-radius: var(--radius-full) !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  transition: all var(--trans-fast) !important;
  margin: 0 var(--space-md) var(--space-md) !important;
  width: calc(100% - var(--space-lg)) !important;
  text-align: center !important;
}

.woocommerce ul.products li.product .button:hover {
  background: var(--clr-orange-light) !important;
  color: var(--clr-white) !important;
}

/* Breadcrumbs */
.woocommerce .woocommerce-breadcrumb { font-size: var(--fs-sm); color: var(--clr-text-subtle); margin-bottom: var(--space-xl); }
.woocommerce .woocommerce-breadcrumb a { color: var(--clr-orange); }

/* Single product */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li { background: none; border: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { color: var(--clr-text-muted); font-family: var(--font-body); font-weight: 600; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--clr-orange); }

/* Add to cart */
.woocommerce .single_add_to_cart_button {
  background: var(--clr-orange) !important;
  color: var(--clr-white) !important;
  border-radius: var(--radius-full) !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  font-size: var(--fs-base) !important;
}
.woocommerce .single_add_to_cart_button:hover { background: var(--clr-orange-light) !important; }

.woocommerce .price { color: var(--clr-orange) !important; font-weight: 800 !important; font-family: var(--font-display) !important; font-size: var(--fs-2xl) !important; }

/* Cart / Checkout */
.woocommerce table.shop_table { border: 1px solid var(--clr-border) !important; border-radius: var(--radius-md) !important; overflow: hidden !important; }
.woocommerce table.shop_table th { background: var(--clr-surface) !important; color: var(--clr-text-muted) !important; border: none !important; border-bottom: 1px solid var(--clr-border) !important; font-family: var(--font-body) !important; font-size: var(--fs-xs) !important; letter-spacing: 0.08em !important; text-transform: uppercase !important; }
.woocommerce table.shop_table td { border: none !important; border-bottom: 1px solid var(--clr-border) !important; color: var(--clr-text-muted) !important; }

/* ============================================================
   GUTENBERG / BLOCK EDITOR
============================================================ */
.wp-block-group { padding-block: var(--space-xl); }
.wp-block-separator { border-color: var(--clr-border); }
.wp-block-quote { border-left: 3px solid var(--clr-orange); padding-left: var(--space-lg); margin-block: var(--space-xl); }
.wp-block-quote p { font-style: italic; color: var(--clr-text); }
.wp-block-code { background: var(--clr-surface-2); border: 1px solid var(--clr-border); border-radius: var(--radius-md); }
.wp-block-pullquote { border-top: 4px solid var(--clr-orange); border-bottom: 4px solid var(--clr-orange); }
.wp-block-button .wp-block-button__link {
  background: var(--clr-orange);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  transition: background var(--trans-fast);
}
.wp-block-button .wp-block-button__link:hover { background: var(--clr-orange-light); }
.wp-block-cover { border-radius: var(--radius-xl); }

/* Alignments */
.alignwide  { max-width: 1100px; margin-inline: auto; }
.alignfull  { width: 100vw; margin-left: calc(50% - 50vw); }
.aligncenter { margin-inline: auto; display: block; }
.alignleft  { float: left; margin-right: var(--space-lg); margin-bottom: var(--space-md); }
.alignright { float: right; margin-left: var(--space-lg); margin-bottom: var(--space-md); }

/* ============================================================
   PAGE CONTENT — Block Editor Friendly
============================================================ */

/* Standard page content (most pages) gets normal width + spacing */
.vtke-page-content {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-top: clamp(80px, 12vw, 140px);
  padding-bottom: var(--space-3xl);
}

.vtke-page-content > * {
  max-width: 800px;
  margin-inline: auto;
}

/* Full-width content from blocks should escape the container */
.vtke-page-content .alignwide {
  max-width: 1100px;
  margin-inline: auto;
}

.vtke-page-content .alignfull {
  max-width: none;
  width: calc(100vw - 8px);
  margin-left: 50%;
  transform: translateX(-50%);
}

/* === HOMEPAGE / FULL-WIDTH TEMPLATE === */
/* No padding, no max-width — blocks control their own layout */
.vtke-fullwidth .entry-content,
.vtke-page-content--fullwidth {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.vtke-fullwidth .entry-content > *,
.vtke-page-content--fullwidth > * {
  max-width: none;
  margin-inline: auto;
}

/* But default-width blocks inside full-width still respect a sensible width */
.vtke-fullwidth .entry-content > *:not(.alignfull):not(.alignwide):not(.wp-block-cover):not(.wp-block-group):not([class*="vtke-pattern"]),
.vtke-page-content--fullwidth > *:not(.alignfull):not(.alignwide):not(.wp-block-cover):not(.wp-block-group):not([class*="vtke-pattern"]) {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Push the full-width homepage below the fixed header */
.vtke-fullwidth { padding-top: 80px; }

@media (max-width: 768px) {
  .vtke-fullwidth { padding-top: 64px; }
}

/* ============================================================
   404 PAGE
============================================================ */
.error-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: var(--space-md);
}

.error-code {
  font-family: var(--font-display);
  font-size: 12rem;
  font-weight: 800;
  color: var(--clr-surface-2);
  line-height: 1;
  letter-spacing: -0.05em;
  position: relative;
}

.error-code::before {
  content: '404';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--clr-orange), var(--clr-orange-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-scale.is-visible { opacity: 1; transform: scale(1); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   KEYFRAME ANIMATIONS
============================================================ */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.85); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes preload {
  0%   { width: 0%; }
  60%  { width: 80%; }
  100% { width: 100%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255,98,0,0.2); }
  50%       { box-shadow: 0 0 50px rgba(255,98,0,0.5); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero animations */
.hero-badge { animation: fade-in-up 0.6s var(--ease-out) 0.2s both; }
.hero-title { animation: fade-in-up 0.8s var(--ease-out) 0.4s both; }
.hero-sub    { animation: fade-in-up 0.8s var(--ease-out) 0.6s both; }
.hero-actions{ animation: fade-in-up 0.8s var(--ease-out) 0.8s both; }
.hero-stats  { animation: fade-in-up 0.8s var(--ease-out) 1s   both; }
.hero-visual { animation: fade-in-up 1s var(--ease-out) 0.5s both; }

/* ============================================================
   RESPONSIVE — Mobile-first comprehensive rewrite
   Breakpoints:  480 / 640 / 768 / 1024 / 1200
============================================================ */

/* === Large desktop down (1200px) === */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .footer-grid > *:nth-child(5) { grid-column: span 2; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  :root { --container: 1100px; }
}

/* === Tablet landscape down (1024px) === */
@media (max-width: 1024px) {
  :root {
    --space-3xl: 6rem;
    --space-4xl: 9rem;
  }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .testimonials-track { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .testimonials-track > *:last-child { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .pricing-card.featured { transform: scale(1); }
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .blog-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > *:nth-child(4),
  .footer-grid > *:nth-child(5) { grid-column: span 1; }
  /* Hero stacks on tablet */
  #hero .grid-2 { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .hero-visual { max-width: 600px; margin-inline: auto; width: 100%; }
}

/* === Tablet portrait (768px) === */
@media (max-width: 768px) {
  :root {
    --space-3xl: 4.5rem;
    --space-4xl: 6rem;
    --space-2xl: 3.5rem;
    --gutter:    1.25rem;
  }

  /* Header */
  .header-nav { display: none; }
  .header-cta .btn-outline { display: none; }
  .header-cta .btn-primary.btn--sm { padding: 0.7em 1.2em; font-size: 13px; }
  .nav-toggle { display: flex; }
  .header-top-bar { font-size: 11px; }
  .header-top-bar .container { flex-direction: column; gap: 0.25rem; padding-block: 0.4rem; }

  /* Hero */
  #hero { min-height: auto; padding-top: 100px; padding-bottom: var(--space-2xl); }
  .hero-title { font-size: clamp(2.4rem, 11vw, 4rem); }
  .hero-sub { font-size: 1rem; }
  .hero-stats { gap: var(--space-md); margin-top: var(--space-xl); padding-top: var(--space-md); }
  .hero-stat-num { font-size: 1.4rem; }
  .hero-tour-preview { aspect-ratio: 4/3; }
  .hero-tour-badge { font-size: 11px; padding: 0.5rem 0.75rem; }

  /* Sections */
  .section { padding-block: var(--space-2xl); }
  .section--lg { padding-block: var(--space-3xl); }
  .section-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .section-desc { font-size: 1rem; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: var(--space-xl) var(--space-lg); }
  .process-steps { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .step-connector { display: none; }
  .testimonials-track { grid-template-columns: 1fr; }
  .testimonials-track > *:last-child { display: block; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .stat-item::after { display: none !important; }
  .stat-num { font-size: 2rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form-wrap { padding: var(--space-lg); }

  /* Tour cards */
  .tour-tabs { gap: 0.4rem; }
  .tour-tab { padding: 0.5em 1em; font-size: 12px; }

  /* CTA banner */
  .cta-banner { padding: var(--space-xl) var(--space-lg); }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: var(--space-xl);
  }
  .footer-grid > *:first-child {
    grid-column: 1 / -1;
    text-align: left;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.5rem;
    padding-block: var(--space-md);
  }
  .footer-bottom .container {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
  }
  .footer-bottom-left, .footer-bottom-right { width: 100%; }
  .footer-copy { font-size: 11px; line-height: 1.6; }

  /* Pricing */
  .pricing-card { padding: var(--space-lg); }

  /* Blog/Single */
  .entry-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .entry-content { font-size: 1rem; }
}

/* === Mobile (640px) === */
@media (max-width: 640px) {
  :root {
    --gutter:     1rem;
    --space-3xl:  3.5rem;
    --space-4xl:  4.5rem;
    --space-2xl:  3rem;
  }

  body { font-size: 15px; }

  /* Header */
  .site-logo a { font-size: 1rem; }
  .site-logo .logo-mark { width: 30px; height: 30px; font-size: 0.85rem; }
  .header-main { padding-block: 0.8rem; }
  .header-cta { gap: 0.4rem; }
  .header-cta .btn { padding: 0.55em 1em; font-size: 12px; }

  /* Hide cart count on smallest screens */
  .btn-cart svg { width: 18px; height: 18px; }

  /* Hero buttons stack */
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; gap: 0.75rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn--lg { padding: 0.95em 1.5em; font-size: 0.95rem; }

  /* Stats: smaller grid */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; gap: var(--space-md); }
  .hero-stat { flex: 1 1 calc(50% - 1rem); min-width: 0; }

  /* Process steps single column */
  .process-steps { grid-template-columns: 1fr; }
  .step::before { font-size: 3rem; }

  /* Cards */
  .card { padding: var(--space-lg); }
  .service-card { padding: var(--space-lg); }
  .testimonial-card { padding: var(--space-lg); }
  .pricing-card { padding: var(--space-lg); }

  /* Footer single column */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-lg);
  }
  .footer-grid > * { grid-column: 1 / -1 !important; }
  .footer-tagline { max-width: 100%; }
  .footer-main { padding-top: var(--space-xl); padding-bottom: var(--space-md); }

  /* Section headers */
  .section-header { margin-bottom: var(--space-xl); }
  .section-title { font-size: clamp(1.5rem, 8vw, 2.1rem); }

  /* 404 */
  .error-code { font-size: 7rem; }

  /* Pricing addons stack */
  .pricing-price .price-amount { font-size: 2.2rem; }

  /* WooCommerce — single column product grid */
  .woocommerce.columns-3 ul.products li.product,
  .woocommerce.columns-4 ul.products li.product,
  .woocommerce-page.columns-3 ul.products li.product,
  .woocommerce-page.columns-4 ul.products li.product {
    width: 100% !important;
    margin-right: 0 !important;
  }
}

/* === Smallest phones (480px) === */
@media (max-width: 480px) {
  :root {
    --gutter:    0.9rem;
    --space-3xl: 3rem;
  }
  .hero-title { font-size: clamp(2rem, 12vw, 3rem); line-height: 1; }
  .hero-sub { font-size: 0.95rem; }
  .badge { font-size: 10px; padding: 0.3em 0.7em; }
  .hero-tour-badge span:last-child { display: none; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-num { font-size: 1.8rem; }
  .marquee-item { padding-inline: 1.5rem; font-size: 12px; }

  /* Mobile nav */
  .mobile-nav-menu a { font-size: 1.4rem; padding: 0.85rem 0; }

  /* Tighter contact form */
  .contact-form-wrap { padding: var(--space-md); }
  .form-input, .form-textarea, .form-select { padding: 0.75em 1em; font-size: 0.95rem; }
}

/* === Landscape phones (orientation) === */
@media (max-width: 900px) and (orientation: landscape) {
  #hero { padding-top: 100px; padding-bottom: var(--space-xl); }
  .hero-title { font-size: 2.5rem; }
}

/* === Tablet portrait specific (641-1024) — better grids === */
@media (min-width: 641px) and (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; max-width: 720px; }
  .pricing-grid > *:nth-child(3) { grid-column: 1 / -1; max-width: 360px; margin-inline: auto; width: 100%; }
}

/* ============================================================
   PRINT STYLES
============================================================ */
@media print {
  #site-header, #site-footer, .cursor, .cursor-ring, #preloader { display: none; }
  body { background: #fff; color: #000; }
  a { color: #000; }
}
