/*
Theme Name: Alchemy Axis
Theme URI: https://alchemy-axis.co.za/
Author: MC Hector Dev
Author URI: https://mchectordev.com/
Description: High-converting single-page WordPress theme for Alchemy Axis Air Conditioning & Refrigeration.
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: alchemy-axis
Tags: one-page, responsive, hvac, air-conditioning, business
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand Palette */
  --blue:        #00AEEF;
  --blue-dark:   #0090C9;
  --cyan:        #38BDF8;
  --navy:        #0F172A;
  --navy-mid:    #1E293B;
  --navy-light:  #334155;
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --gray-50:     #F1F5F9;
  --gray-100:    #E2E8F0;
  --gray-300:    #CBD5E1;
  --gray-500:    #64748B;
  --gray-700:    #334155;
  --gold:        #F59E0B;

  /* Gradients */
  --grad-brand:    linear-gradient(135deg, #00AEEF 0%, #38BDF8 100%);
  --grad-hero:     linear-gradient(135deg, #0F172A 0%, #1E3A5F 60%, #0F172A 100%);
  --grad-glass:    linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
  --grad-section:  linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);

  /* Typography */
  --font-head: 'Montserrat', 'Poppins', sans-serif;
  --font-body: 'Inter', 'DM Sans', sans-serif;

  /* Effects */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,174,239,0.15), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg:   0 20px 60px rgba(0,174,239,0.18), 0 8px 24px rgba(0,0,0,0.08);
  --shadow-blue: 0 8px 32px rgba(0,174,239,0.4);
  --glow-blue:   0 0 48px rgba(0,174,239,0.3);

  /* Shape */
  --radius:    10px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s var(--ease);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-700);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--grad-brand);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #0090C9, #00AEEF);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,174,239,0.5);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
  padding: 13px 28px;
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(0,174,239,0.08);
  transform: translateY(-2px);
}

.btn-lg { font-size: 16px; padding: 18px 38px; }

/* ============================================================
   HEADER — slim, no Call Now
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(15, 23, 42, 0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  height: 68px;
}

/* Hamburger LEFT */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: left;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(42deg) translateY(-1px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-42deg) translateY(1px); }

/* Logo CENTER */
.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--grad-brand);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-blue);
}
.logo-text {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.logo-text span { color: var(--cyan); }

/* ============================================================
   NAV DRAWER
   ============================================================ */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.nav-overlay.show { opacity: 1; pointer-events: all; }

.nav-drawer {
  position: fixed;
  top: 0; left: -340px;
  width: 300px;
  height: 100vh;
  background: var(--navy);
  border-right: 1px solid rgba(255,255,255,0.08);
  z-index: 2000;
  transition: left 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.nav-drawer.open { left: 0; }

.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-drawer-close {
  background: rgba(255,255,255,0.07);
  border: none;
  cursor: pointer;
  color: var(--gray-300);
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.nav-drawer-close:hover { background: rgba(0,174,239,0.2); color: var(--cyan); }

.nav-drawer-menu {
  flex: 1;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-drawer-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 12px 16px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-drawer-menu a:hover {
  color: var(--white);
  background: rgba(0,174,239,0.12);
  padding-left: 20px;
}
.nav-drawer-menu a svg { flex-shrink: 0; }

.nav-drawer-foot {
  padding: 20px 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-drawer-foot .btn { width: 100%; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  padding-top: 68px;
  overflow: hidden;
}

/* Animated glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,174,239,0.22) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: orbFloat1 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(56,189,248,0.14) 0%, transparent 70%);
  bottom: 0; left: -80px;
  animation: orbFloat2 11s ease-in-out infinite;
}
@keyframes orbFloat1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-30px,30px) scale(1.05)} }
@keyframes orbFloat2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(20px,-20px) scale(1.08)} }

/* Grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,174,239,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,174,239,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: gridDrift 25s linear infinite;
}
@keyframes gridDrift { from{transform:translateY(0)} to{transform:translateY(64px)} }

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,174,239,0.12);
  border: 1px solid rgba(0,174,239,0.28);
  color: var(--cyan);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: blinkPulse 2s ease-in-out infinite;
}
@keyframes blinkPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.5)} }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero-title .grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.62);
  line-height: 1.72;
  max-width: 460px;
  margin-bottom: 38px;
}
.hero-subtitle strong { color: rgba(255,255,255,0.9); }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat { padding: 0 24px 0 0; }
.hero-stat + .hero-stat { padding-left: 24px; border-left: 1px solid rgba(255,255,255,0.1); }
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Hero Visual */
.hero-visual { position: relative; }

.hero-img-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--glow-blue);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-img-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.hero-img-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,174,239,0.18) 0%, transparent 55%, rgba(56,189,248,0.1) 100%);
}

/* Glass floating card */
.hero-glass-card {
  position: absolute;
  bottom: -22px;
  left: -24px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: floatCard 5s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.glass-card-icon {
  width: 42px; height: 42px;
  background: var(--grad-brand);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.glass-card-txt strong {
  display: block;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.glass-card-txt span {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Top-right glass badge */
.hero-badge-tr {
  position: absolute;
  top: -16px;
  right: -16px;
  background: rgba(15,23,42,0.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0,174,239,0.3);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  text-align: center;
  animation: floatCard 5s ease-in-out infinite reverse;
  box-shadow: var(--shadow-md);
}
.badge-tr-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.badge-tr-lbl {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   TRUST TICKER
   ============================================================ */
.trust-bar {
  background: var(--grad-brand);
  padding: 18px 0;
  overflow: hidden;
}
.trust-ticker {
  display: flex;
  gap: 0;
  white-space: nowrap;
}
.trust-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  flex-shrink: 0;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-100%)} }
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 28px;
  flex-shrink: 0;
}
.trust-sep {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  flex-shrink: 0;
  align-self: center;
}

/* ============================================================
   WHY US — white bg with card grid
   ============================================================ */
.why-us {
  padding: 110px 0;
  background: var(--white);
}
.section-hd {
  text-align: center;
  margin-bottom: 64px;
}
.section-hd h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.section-hd p {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.72;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}
.why-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); background: var(--white); }
.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(0,174,239,0.12), rgba(56,189,248,0.08));
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
  border: 1px solid rgba(0,174,239,0.15);
}
.why-card:hover .why-icon {
  background: var(--grad-brand);
  border-color: transparent;
  box-shadow: var(--shadow-blue);
}
.why-card:hover .why-icon svg { stroke: white; }

.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 9px;
}
.why-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================================
   SERVICES — light-gray gradient bg
   ============================================================ */
.services {
  padding: 110px 0;
  background: var(--grad-section);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,174,239,0.07) 0%, transparent 70%);
  border-radius: 50%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-num {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 900;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 14px;
  transition: opacity 0.3s;
}
.service-card:hover .service-num { opacity: 0.55; }
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 9px;
}
.service-card p {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 18px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue);
  transition: gap 0.2s;
}
.service-card:hover .service-link { gap: 9px; }

/* ============================================================
   PRICING — white bg
   ============================================================ */
.pricing {
  padding: 110px 0;
  background: var(--white);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 64px;
}
.pricing-card {
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-100);
  padding: 38px 30px;
  position: relative;
  transition: var(--transition);
  background: var(--white);
}
.pricing-card:not(.featured):hover {
  border-color: var(--blue);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.pricing-card.featured {
  background: var(--navy);
  border-color: var(--blue);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.pricing-popular {
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--grad-brand);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 0 0 10px 10px;
  white-space: nowrap;
}
.pricing-btu {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 900;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-sub {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 26px;
}
.pricing-card.featured .pricing-sub { color: rgba(255,255,255,0.45); }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--gray-700);
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-100);
}
.pricing-card.featured .pricing-features li {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.08);
}
.pricing-features li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--grad-brand);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.pricing-features { margin-bottom: 28px; }
.pricing-cta { width: 100%; justify-content: center; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: 110px 0;
  background: var(--grad-section);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 14px;
  margin-top: 64px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

/* ============================================================
   CTA BANNER — navy + blue glow
   ============================================================ */
.cta-banner {
  padding: 110px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(0,174,239,0.16) 0%, transparent 70%);
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cta-banner h2 .grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0 auto 38px;
  line-height: 1.7;
}
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 900;
  color: var(--cyan);
  transition: var(--transition);
  letter-spacing: -0.01em;
}
.cta-phone:hover { transform: scale(1.04); }
.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ============================================================
   TESTIMONIALS — white bg
   ============================================================ */
.testimonials {
  padding: 110px 0;
  background: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
  margin-top: 64px;
}
.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.t-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.t-stars svg { width: 16px; height: 16px; fill: var(--gold); }
.t-text {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.t-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.t-loc { font-size: 12px; color: var(--gray-500); }

/* ============================================================
   FAQ — light-gray section
   ============================================================ */
.faq {
  padding: 110px 0;
  background: var(--grad-section);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 64px;
  align-items: start;
}
.faq-visual { position: sticky; top: 88px; }
.faq-visual img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--blue); }
.faq-item.open .faq-q { color: var(--blue); }
.faq-icon {
  width: 26px; height: 26px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--grad-brand); transform: rotate(45deg); }
.faq-item.open .faq-icon svg { stroke: white; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
  padding: 0 22px;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 18px; }

/* ============================================================
   CONTACT — navy section
   ============================================================ */
.contact {
  padding: 110px 0;
  background: #0F172A;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { color: #FFFFFF; }
.contact-info p { color: rgba(255,255,255,0.55); font-size: 16px; line-height: 1.72; margin-top: 16px; }

.contact-details { margin-top: 36px; display: flex; flex-direction: column; gap: 22px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; }
.c-icon {
  width: 44px; height: 44px;
  background: rgba(0,174,239,0.12);
  border: 1px solid rgba(0,174,239,0.22);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.c-icon svg { stroke: #38BDF8; }
.c-lbl {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #38BDF8;
  display: block;
  margin-bottom: 3px;
}
.c-val { font-size: 14px; color: rgba(255,255,255,0.65); }
.c-val a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.c-val a:hover { color: #38BDF8; }

/* FORM */
.quote-form {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  padding: 40px;
}
.form-hd {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 14px;
  color: #FFFFFF;
  outline: none;
  transition: all 0.3s ease;
  -webkit-appearance: none;
  box-sizing: border-box;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.22); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #00AEEF;
  background: rgba(0,174,239,0.07);
  box-shadow: 0 0 0 3px rgba(0,174,239,0.18);
}
.form-group select option { background: #0F172A; color: #FFFFFF; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { width: 100%; justify-content: center; margin-top: 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #060D1A;
  padding: 56px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  line-height: 1.75;
  margin-top: 14px;
  max-width: 270px;
}
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-social {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.38);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.06);
}
.footer-social:hover { background: rgba(0,174,239,0.18); color: var(--cyan); border-color: rgba(0,174,239,0.3); }
.footer-hd {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.footer-links li { margin-bottom: 4px; }
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.38);
  padding: 5px 0;
  display: block;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--cyan); padding-left: 6px; }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy,
.footer-credit {
  font-size: 12px;
  color: rgba(255,255,255,0.22);
}
.footer-credit a { color: var(--blue); }

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */

/* Call Now — bottom RIGHT */
.floating-call {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-brand);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: 50px;
  box-shadow: var(--shadow-blue);
  transition: var(--transition);
  animation: callPulse 3.5s ease-in-out infinite;
}
@keyframes callPulse {
  0%,100% { transform:translateY(0) scale(1); box-shadow: var(--shadow-blue); }
  50% { transform:translateY(-4px) scale(1.02); box-shadow: 0 14px 48px rgba(0,174,239,0.55); }
}
.floating-call:hover {
  background: linear-gradient(135deg, #0090C9, #00AEEF);
  transform: scale(1.07) !important;
  box-shadow: 0 16px 56px rgba(0,174,239,0.65) !important;
  animation: none;
}

/* WhatsApp — bottom LEFT */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.42);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,0.55); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-stats { grid-template-columns: repeat(3,1fr); }
  .why-grid, .services-grid, .pricing-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.featured { transform: scale(1); }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-visual { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .gallery-item:first-child { grid-row: span 1; }
}
@media (max-width: 768px) {
  .hero-title { font-size: 40px; }
  .why-grid, .services-grid, .pricing-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { height: 210px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .floating-call { bottom: 18px; right: 18px; font-size: 12px; padding: 11px 18px; }
  .whatsapp-float { bottom: 18px; left: 18px; width: 46px; height: 46px; }
  .hero-stats { grid-template-columns: 1fr; gap: 18px; }
  .cta-actions { flex-direction: column; }
}

/* ============================================================
   GLOBAL PAGE INHERITANCE — all WordPress pages/posts
   inherit theme colours, fonts, and base styles
   ============================================================ */

/* Core body & typography inheritance */
.page-template-default .entry-content,
.single .entry-content,
.page .entry-content,
body.page,
body.single,
body.archive,
body.blog {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
}

/* All headings on any page */
body h1, body h2, body h3, body h4, body h5, body h6 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
}

/* All paragraphs */
body p { color: var(--gray-700); line-height: 1.72; }

/* All links */
body a { color: var(--blue); transition: color 0.2s; }
body a:hover { color: var(--blue-dark); }

/* All buttons & inputs on any page */
body input,
body textarea,
body select,
body button {
  font-family: var(--font-body);
}

/* WordPress block editor colours */
body .has-navy-color           { color: var(--navy) !important; }
body .has-blue-color           { color: var(--blue) !important; }
body .has-cyan-color           { color: var(--cyan) !important; }
body .has-navy-background-color      { background-color: var(--navy) !important; }
body .has-blue-background-color      { background-color: var(--blue) !important; }
body .has-off-white-background-color { background-color: var(--off-white) !important; }

/* WordPress page/post content wrapper spacing */
.site-content {
  padding-top: 68px; /* match header height so content isn't hidden under fixed header */
}

/* Generic page hero for inner pages */
.page-hero {
  background: var(--navy);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,174,239,0.14) 0%, transparent 70%);
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  position: relative;
  z-index: 1;
}
.page-hero .breadcrumb {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   STICKY HEADER — guaranteed always-on-top when scrolling
   ============================================================ */

/* The header is position:fixed in the existing rules.
   These rules reinforce stickiness across all page types. */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
  will-change: transform; /* GPU-composited — never flickers */
}

/* Ensure NOTHING overlaps the header */
body { padding-top: 0; }

/* Push page content below the fixed bar (68px = header height) */
.hero,
.site-content,
.page-template-default main,
.single main {
  padding-top: 68px;
}
/* The one-page hero already has padding-top:68px from earlier rules — 
   this selector prevents double-padding on the home page */
.home .hero { padding-top: 68px; }

/* ============================================================
   FLOATING ACTION BUTTONS — always visible over all content
   ============================================================ */
.floating-call,
.whatsapp-float {
  position: fixed !important;
  z-index: 9999 !important; /* above everything */
  pointer-events: all !important;
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Keep them visible above any WordPress admin bar */
.admin-bar .site-header { top: 32px !important; }
.admin-bar .floating-call,
.admin-bar .whatsapp-float { bottom: 30px; }

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px !important; }
}

/* ============================================================
   HERO URGENCY — immediate action layout
   ============================================================ */

/* The main CTA action strip below hero title */
.hero-urgency-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,174,239,0.1);
  border: 1px solid rgba(0,174,239,0.25);
  border-radius: var(--radius);
  padding: 12px 18px;
  margin-bottom: 30px;
  max-width: 480px;
}
.hero-urgency-dot {
  width: 8px; height: 8px;
  background: #22C55E;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  animation: blinkPulse 1.8s ease-in-out infinite;
}
.hero-urgency-text {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.hero-urgency-text strong { color: var(--cyan); }

/* Make hero CTA buttons larger and more prominent */
.hero-actions .btn-primary {
  font-size: 17px;
  padding: 18px 36px;
  box-shadow: 0 10px 40px rgba(0,174,239,0.55);
  letter-spacing: 0.03em;
}
.hero-actions .btn-ghost {
  font-size: 17px;
  padding: 16px 34px;
}

/* Hero trust micro-icons below CTA */
.hero-trust-micro {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.hero-trust-micro-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-head);
  letter-spacing: 0.04em;
}
.hero-trust-micro-item svg { flex-shrink: 0; }

/* ============================================================
   WORDPRESS ADMIN BAR COMPENSATION
   ============================================================ */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

/* ============================================================
   LOGO STYLING — ALL DEVICES
   ============================================================ */
.custom-logo,
.site-logo img,
.custom-logo-link img {
  filter: brightness(0) invert(1);
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}

/* MOBILE */
@media only screen and (max-width: 1023px) {
  .site-branding,
  .custom-logo-link,
  .navbar-brand {
    position: absolute !important;
    top: 10px !important;
    right: 15px !important;
    left: auto !important;
    z-index: 99999;
  }
  .custom-logo,
  .site-logo img,
  .custom-logo-link img {
    width: 45px !important;
    height: 45px !important;
    object-fit: contain !important;
  }
  header,
  .navbar,
  .main-navigation {
    position: relative;
  }
}

/* DESKTOP */
@media only screen and (min-width: 1024px) {
  .site-branding,
  .custom-logo-link,
  .navbar-brand {
    position: absolute;
    top: 15px;
    right: 30px;
    z-index: 99999;
  }
  header,
  .navbar,
  .main-navigation {
    position: relative;
  }
}

/* ============================================================
   QUOTE MODAL OVERLAY
   ============================================================ */
/* ============================================================
   QUOTE MODAL — hardened with explicit values (no CSS-var dependency)
   ============================================================ */
.quote-modal-overlay {
  position: fixed !important;
  inset: 0 !important;
  top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
  background: rgba(10, 15, 30, 0.82) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99995 !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
}
.quote-modal-overlay.open {
  opacity: 1 !important;
  pointer-events: all !important;
}

.quote-modal {
  background: #0F172A !important;
  border: 1px solid rgba(0,174,239,0.25) !important;
  border-radius: 28px !important;
  width: 100% !important;
  max-width: 560px !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  padding: 40px !important;
  position: relative !important;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,174,239,0.12);
}
.quote-modal-overlay.open .quote-modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute !important;
  top: 18px !important;
  right: 18px !important;
  width: 34px !important; height: 34px !important;
  background: rgba(255,255,255,0.08) !important;
  border: none !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  color: rgba(255,255,255,0.55) !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  transition: all 0.3s ease;
  z-index: 2;
}
.modal-close:hover { background: rgba(0,174,239,0.18) !important; color: #38BDF8 !important; }

.modal-header { margin-bottom: 28px !important; }
.modal-header h3 {
  font-family: 'Montserrat', 'Poppins', sans-serif !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  margin-bottom: 6px !important;
}
.modal-header p {
  font-size: 13.5px !important;
  color: rgba(255,255,255,0.48) !important;
  line-height: 1.6 !important;
}

/* Form fields inside modal */
.quote-modal .form-group { margin-bottom: 18px !important; }
.quote-modal .form-group label {
  display: block !important;
  font-family: 'Montserrat', 'Poppins', sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.45) !important;
  margin-bottom: 7px !important;
}
.quote-modal .form-group input,
.quote-modal .form-group select,
.quote-modal .form-group textarea {
  width: 100% !important;
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  border-radius: 10px !important;
  padding: 13px 16px !important;
  font-family: 'Inter', 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  color: #FFFFFF !important;
  outline: none !important;
  transition: all 0.3s ease !important;
  -webkit-appearance: none !important;
  box-sizing: border-box !important;
}
.quote-modal .form-group input::placeholder,
.quote-modal .form-group textarea::placeholder { color: rgba(255,255,255,0.25) !important; }
.quote-modal .form-group input:focus,
.quote-modal .form-group select:focus,
.quote-modal .form-group textarea:focus {
  border-color: #00AEEF !important;
  background: rgba(0,174,239,0.08) !important;
  box-shadow: 0 0 0 3px rgba(0,174,239,0.2) !important;
}
.quote-modal .form-group select option { background: #0F172A !important; color: #FFFFFF !important; }
.quote-modal .form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
}
.quote-modal .btn.btn-primary {
  background: linear-gradient(135deg, #00AEEF 0%, #38BDF8 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 17px 24px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  width: 100% !important;
  justify-content: center !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  cursor: pointer !important;
}
.quote-modal .btn.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(0,174,239,0.45) !important;
  transform: translateY(-1px) !important;
}

/* Gradient top bar on modal */
.modal-top-bar {
  position: absolute !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  height: 3px !important;
  background: linear-gradient(135deg, #00AEEF 0%, #38BDF8 100%) !important;
  border-radius: 28px 28px 0 0 !important;
}

/* Scrollbar styling for modal */
.quote-modal::-webkit-scrollbar { width: 4px; }
.quote-modal::-webkit-scrollbar-track { background: transparent; }
.quote-modal::-webkit-scrollbar-thumb { background: rgba(0,174,239,0.3); border-radius: 4px; }

@media (max-width: 600px) {
  .quote-modal { padding: 28px 22px !important; }
  .quote-modal .form-row { grid-template-columns: 1fr !important; }
}

/* ============================================================
   ADMIN SETTINGS PAGE STYLES
   ============================================================ */
.aa-settings-wrap {
  max-width: 740px;
  padding: 30px 0;
}
.aa-settings-wrap h1 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #1d2327;
}
.aa-settings-card {
  background: #fff;
  border: 1px solid #dde1e6;
  border-radius: 8px;
  padding: 28px 32px;
  margin-top: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.aa-settings-card h2 {
  font-size: 15px;
  font-weight: 700;
  color: #1d2327;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.aa-settings-card h2 span {
  display: inline-block;
  width: 10px; height: 10px;
  background: linear-gradient(135deg, #00AEEF, #38BDF8);
  border-radius: 50%;
}
.aa-field-row {
  margin-bottom: 20px;
}
.aa-field-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #3c434a;
  margin-bottom: 6px;
}
.aa-field-row .aa-desc {
  font-size: 12px;
  color: #8c8f94;
  margin-top: 5px;
}
.aa-field-row input[type="text"],
.aa-field-row input[type="email"],
.aa-field-row textarea {
  width: 100%;
  max-width: 500px;
  padding: 9px 12px;
  border: 1px solid #c3c4c7;
  border-radius: 5px;
  font-size: 14px;
  color: #2c3338;
  transition: border-color 0.2s;
  font-family: inherit;
}
.aa-field-row input:focus,
.aa-field-row textarea:focus {
  border-color: #00AEEF;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0,174,239,0.15);
}
.aa-save-btn {
  background: linear-gradient(135deg, #00AEEF, #38BDF8);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  letter-spacing: 0.03em;
}
.aa-save-btn:hover { opacity: 0.88; }
.aa-notice-success {
  background: #edfaef;
  border-left: 4px solid #00a32a;
  padding: 10px 14px;
  border-radius: 0 5px 5px 0;
  font-size: 13px;
  color: #1d7a34;
  margin-bottom: 16px;
}
