/*
Theme Name: Techsol Labs Car Wash Theme
Theme URI: https://techsollabs.co
Author: Techsol Labs
Author URI: https://techsollabs.co
Description: This theme is design & Develop by Techsol Labs for Car Wash Business inside GCC Countries.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: turbospa
Tags: car-wash, elementor, business, dark, luxury, gold
*/

/* ============================================================
   FONTS & VARIABLES
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --gold:        #C9A84C;
  --gold-light:  #E2C472;
  --gold-dark:   #9A7A30;
  --black:       #080808;
  --dark:        #0F0F0F;
  --dark-2:      #161616;
  --dark-3:      #1E1E1E;
  --dark-4:      #282828;
  --white:       #FFFFFF;
  --off-white:   #F0EDE8;
  --gray-1:      #999999;
  --gray-2:      #666666;
  --gray-3:      #333333;
  --green:       #25D366;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;
  --utility:'Montserrat', sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max:  1160px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
}
h1 { font-size: clamp(3.5rem, 7vw, 7rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h4 { font-size: 1.2rem; }

.label {
  font-family: var(--utility);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .wrap { padding: 0 24px; } }

.section { padding: 120px 0; }
.section--sm { padding: 80px 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--utility);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.3);
}
.btn--outline {
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--wa {
  background: var(--green);
  color: var(--white);
}
.btn--wa:hover {
  background: #20c05a;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.3);
}
.btn--ghost {
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn--ghost:hover {
  background: var(--gold);
  color: var(--black);
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 16px 48px rgba(37,211,102,0.5);
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
.wa-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--green);
  animation: waPulse 2.5s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 0;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(16px);
  border-color: rgba(255,255,255,0.06);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.logo-mark {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark span {
  font-family: var(--utility);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold);
}
.logo-words { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.01em;
}
.logo-sub {
  font-family: var(--utility);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
}
.primary-nav a {
  font-family: var(--utility);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a { color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-tel {
  font-family: var(--utility);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-tel a { color: inherit; transition: color 0.3s; }
.header-tel a:hover { color: var(--gold); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,8,8,0.5) 0%, rgba(8,8,8,0.2) 40%, rgba(8,8,8,0.75) 100%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&q=80') center/cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px 100px;
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  max-width: 820px;
  margin-bottom: 32px;
  color: var(--white);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-desc {
  max-width: 480px;
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: absolute;
  right: 40px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: right;
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-lbl {
  font-family: var(--utility);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  gap: 0;
  animation: marquee 24s linear infinite;
}
.marquee-inner span {
  font-family: var(--utility);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 32px;
}
.marquee-inner span.dot::after {
  content: '·';
  margin-left: 32px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--dark); padding: 120px 0; }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 72px;
  gap: 40px;
}
.section-header--center { flex-direction: column; align-items: center; text-align: center; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--dark-3);
}
.service-card:nth-child(1) { aspect-ratio: auto; grid-row: span 2; }

.service-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}
.service-card:hover .service-card-img { transform: scale(1.06); }

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.3) 50%, transparent 100%);
  transition: background 0.4s;
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.5) 60%, rgba(8,8,8,0.1) 100%);
}

.service-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 32px;
  transform: translateY(0);
  transition: transform 0.4s var(--ease);
}

.service-badge-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--utility);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.service-card-name {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.2;
}
.service-card-name-ar {
  font-size: 0.8rem;
  color: var(--gold);
  font-family: var(--sans);
  margin-bottom: 12px;
  direction: rtl;
}
.service-card-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.4s;
  opacity: 0;
}
.service-card:hover .service-card-desc {
  max-height: 120px;
  opacity: 1;
}

.service-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.4s;
  opacity: 0;
}
.service-card:hover .service-card-features {
  max-height: 80px;
  opacity: 1;
}
.svc-feat-tag {
  font-family: var(--utility);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 3px 10px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--utility);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s;
}
.service-card-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  transition: transform 0.3s;
}
.service-card:hover .service-card-link { gap: 14px; }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* Service image backgrounds */
.svc-img--silver   { background-image: url('https://images.unsplash.com/photo-1601362840469-51e4d8d58785?w=800&q=80'); }
.svc-img--golden   { background-image: url('https://images.unsplash.com/photo-1607860108855-64acf2078ed9?w=800&q=80'); }
.svc-img--platinum { background-image: url('https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?w=800&q=80'); }
.svc-img--boat     { background-image: url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=800&q=80'); }
.svc-img--deep     { background-image: url('https://images.unsplash.com/photo-1520340356584-f9917d1eea6f?w=800&q=80'); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--black); padding: 120px 0; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  margin-top: 72px;
}
.why-item {
  background: var(--black);
  padding: 48px 40px;
  transition: background 0.3s;
}
.why-item:hover { background: var(--dark-2); }

.why-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: border-color 0.3s, background 0.3s;
}
.why-item:hover .why-icon {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.why-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

.why-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}
.why-text { font-size: 0.88rem; color: var(--gray-1); line-height: 1.8; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { background: var(--dark); padding: 120px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-visual { position: relative; }
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background:
    linear-gradient(rgba(8,8,8,0.3), rgba(8,8,8,0.1)),
    url('https://images.unsplash.com/photo-1507136566006-cfc505b114fc?w=900&q=80') center/cover;
}
.about-img-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  aspect-ratio: 1;
  background: url('https://images.unsplash.com/photo-1605559424843-9e4c228bf1c2?w=600&q=80') center/cover;
  border: 4px solid var(--dark);
}
.about-img-badge {
  position: absolute;
  top: 40px;
  left: -24px;
  background: var(--gold);
  color: var(--black);
  padding: 20px 24px;
}
.about-img-badge strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
}
.about-img-badge span {
  font-family: var(--utility);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-content { padding-right: 20px; }
.about-content .label { margin-bottom: 20px; display: block; }
.about-content h2 { margin-bottom: 28px; }
.about-content h2 em { font-style: italic; color: var(--gold); }
.about-content p { color: var(--gray-1); line-height: 1.9; margin-bottom: 20px; }

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px 0;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ah-item {}
.ah-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.ah-label {
  font-family: var(--utility);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-2);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--black); padding: 120px 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 72px;
}
.t-card {
  background: var(--dark-2);
  padding: 48px 40px;
  position: relative;
  transition: background 0.3s;
}
.t-card:hover { background: var(--dark-3); }

.t-quote-mark {
  font-family: var(--serif);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.12;
  line-height: 0.8;
  margin-bottom: 24px;
  display: block;
}
.t-stars { color: var(--gold); letter-spacing: 2px; font-size: 0.75rem; margin-bottom: 20px; }
.t-text {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 32px;
}
.t-author { display: flex; align-items: center; gap: 16px; }
.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark-4);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.t-name {
  font-family: var(--utility);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.t-loc { font-size: 0.72rem; color: var(--gray-2); }

/* ============================================================
   BOOKING SECTION
   ============================================================ */
.booking-section {
  background: var(--dark-2);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.booking-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.05), transparent 60%),
    url('https://images.unsplash.com/photo-1552519507-da3b142c6e3d?w=1600&q=60') center/cover;
  opacity: 0.08;
}

.booking-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.booking-inner .label { margin-bottom: 20px; display: block; }
.booking-inner h2 { margin-bottom: 16px; }
.booking-inner h2 em { font-style: italic; color: var(--gold); }
.booking-inner > p { color: var(--gray-1); margin-bottom: 48px; font-size: 1rem; line-height: 1.8; }

.booking-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
}
.bso {
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: flex;
  align-items: center;
  gap: 16px;
}
.bso:hover, .bso.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.bso-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: all 0.3s;
}
.bso.selected .bso-dot, .bso:hover .bso-dot {
  background: var(--gold);
  border-color: var(--gold);
}
.bso-name {
  font-family: var(--utility);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
}
.bso-desc { font-size: 0.72rem; color: var(--gray-2); margin-top: 2px; }

.booking-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-section { background: var(--dark); padding: 120px 0; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 72px;
}
.blog-card {
  background: var(--dark-3);
  overflow: hidden;
  transition: background 0.3s;
}
.blog-card:hover { background: var(--dark-4); }

.blog-thumb {
  height: 220px;
  background: var(--dark-4) center/cover;
  position: relative;
  overflow: hidden;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: var(--dark-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.blog-body { padding: 32px; }
.blog-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.blog-cat-tag {
  font-family: var(--utility);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.blog-date { font-size: 0.72rem; color: var(--gray-2); }

.blog-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 14px;
  transition: color 0.3s;
}
.blog-card:hover .blog-title { color: var(--gold); }

.blog-excerpt { font-size: 0.85rem; color: var(--gray-1); line-height: 1.8; margin-bottom: 24px; }

.blog-link {
  font-family: var(--utility);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}
.blog-card:hover .blog-link { gap: 14px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 120px 0;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(201,168,76,0.07), transparent 70%);
}
.cta-banner > .wrap { position: relative; z-index: 1; }
.cta-banner .label { margin-bottom: 20px; display: block; }
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner h2 em { font-style: italic; color: var(--gold); }
.cta-banner p { color: var(--gray-1); max-width: 500px; margin: 0 auto 48px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-desc {
  font-size: 0.85rem;
  color: var(--gray-2);
  line-height: 1.9;
  margin: 20px 0 28px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-2);
  font-size: 0.85rem;
  transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col-title {
  font-family: var(--utility);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--gray-2);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: var(--gray-2);
}
.footer-contact-item a { color: var(--gray-2); transition: color 0.3s; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.78rem; color: var(--gray-2); }
.footer-copy a { color: var(--gray-2); transition: color 0.3s; }
.footer-copy a:hover { color: var(--gold); }
.footer-dev { font-size: 0.72rem; color: var(--gray-2); }
.footer-dev a { color: var(--gold); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero-wrap {
  padding: 160px 0 80px;
  background:
    linear-gradient(rgba(8,8,8,0.7), rgba(8,8,8,0.85)),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&q=70') center/cover fixed;
  text-align: center;
  position: relative;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-family: var(--utility);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--gray-2);
  text-transform: uppercase;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: 0.4; }

.page-hero-wrap h1 { font-size: clamp(2.5rem, 5vw, 5rem); }
.page-hero-wrap h1 em { font-style: italic; color: var(--gold); }
.page-hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 28px auto 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 em { font-style: italic; color: var(--gold); }
.contact-info > p { color: var(--gray-1); margin: 20px 0 40px; line-height: 1.9; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.ci-label {
  font-family: var(--utility);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.ci-value { font-size: 0.92rem; color: var(--white); }
.ci-value a { color: var(--white); transition: color 0.3s; }
.ci-value a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 48px;
}
.contact-form-title { margin-bottom: 32px; }
.contact-form-title em { font-style: italic; color: var(--gold); }

.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--utility);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.form-control {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.9rem;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-control:focus { border-color: var(--gold); }
.form-control::placeholder { color: var(--gray-2); }
select.form-control { cursor: pointer; }
select.form-control option { background: var(--dark-2); }
textarea.form-control { height: 130px; resize: vertical; }

.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

/* ============================================================
   ELEMENTOR
   ============================================================ */
:root {
  --e-global-color-primary:   #C9A84C;
  --e-global-color-secondary: #080808;
  --e-global-color-text:      #F0EDE8;
  --e-global-color-accent:    #E2C472;
}
body.elementor-page #masthead,
body.elementor-page .site-header { z-index: 9999; }

/* ============================================================
   WORDPRESS CORE
   ============================================================ */
.alignleft  { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin: 0 auto; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.entry-content h2 { margin: 2.5em 0 1em; font-size: 1.8rem; }
.entry-content h3 { margin: 2em 0 0.8em; font-size: 1.4rem; }
.entry-content p  { margin-bottom: 1.2em; color: var(--gray-1); }
.entry-content ul { padding-left: 1.5em; margin-bottom: 1.2em; }
.entry-content ul li { list-style: disc; color: var(--gray-1); margin-bottom: 6px; }
.entry-content ol li { list-style: decimal; color: var(--gray-1); margin-bottom: 6px; }
.entry-content a { color: var(--gold); }
.entry-content blockquote {
  border-left: 2px solid var(--gold);
  padding: 16px 24px;
  margin: 2em 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(1) { aspect-ratio: 3/4; grid-row: span 1; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 2px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  .section { padding: 80px 0; }
  .primary-nav { display: none; }
  .primary-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(8,8,8,0.98);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 24px 40px;
  }
  .primary-nav.open ul { flex-direction: column; gap: 20px; }
  .menu-toggle { display: flex; }
  .header-tel { display: none; }
  .header-inner { padding: 0 24px; }
  .hero-stats { display: none; }
  .hero-content { padding: 0 24px 80px; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .booking-services { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .about-highlights { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  .hero-actions, .cta-actions, .booking-actions { flex-direction: column; }
  .hero-actions .btn, .cta-actions .btn, .booking-actions .btn { text-align: center; justify-content: center; }
  .why-grid { grid-template-columns: 1fr; }
}
