/*
 * Gentle Glow Child Theme — Brand CSS
 * Version: 9.2.0
 * Parent: Hello Elementor
 * Compatible: ElementsKit Lite, Elementor Free, WooCommerce
 */

/* ============================================================
   1. CSS CUSTOM PROPERTIES (BRAND TOKENS)
   ============================================================ */
:root {
  --gg-blue:          #87CEEA;
  --gg-blue-light:    #C5E8F7;
  --gg-blue-dark:     #5BAECC;
  --gg-purple:        #B39DDB;
  --gg-purple-light:  #D9CEFF;
  --gg-purple-dark:   #6B4FA0;
  --gg-white:         #FFFFFF;
  --gg-bg-light:      #F8F7FF;
  --gg-bg-section:    #F0EDFF;
  --gg-text-dark:     #2D2D4E;
  --gg-text-mid:      #5A5A7A;
  --gg-text-light:    #9090B0;
  --gg-gradient:      linear-gradient(135deg, #87CEEA 0%, #B39DDB 50%, #6B4FA0 100%);
  --gg-gradient-soft: linear-gradient(135deg, #C5E8F7 0%, #D9CEFF 100%);
  --gg-shadow:        0 8px 32px rgba(107,79,160,0.15);
  --gg-shadow-hover:  0 16px 48px rgba(107,79,160,0.28);
  --gg-radius:        16px;
  --gg-radius-btn:    50px;
  --gg-transition:    all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-heading:     'Playfair Display', Georgia, serif;
  --font-body:        'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================================
   2. 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 {
  font-family: var(--font-body);
  color: var(--gg-text-dark);
  background-color: var(--gg-white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; transition: opacity 0.3s ease; }
img[loading="lazy"] { opacity: 0; }
img[loading="lazy"].loaded { opacity: 1; }
@keyframes imgFadeIn { from{opacity:0;transform:scale(0.98)} to{opacity:1;transform:scale(1)} }
img.loaded { animation: imgFadeIn 0.4s ease forwards; }
a { color: var(--gg-purple-dark); text-decoration: none; transition: var(--gg-transition); }
a:hover { color: var(--gg-blue-dark); }
h1,h2,h3,h4,h5,h6 { font-family:var(--font-heading); color:var(--gg-text-dark); line-height:1.3; font-weight:700; }

/* ============================================================
   3. ELEMENTOR COMPATIBILITY
   ============================================================ */
.elementor-section { width: 100%; }
.elementor-widget-wrap { width: 100%; }
body.elementor-template-canvas { --wp-admin--admin-bar--height: 0px; }
body.elementor-template-canvas #site-header,
body.elementor-template-canvas #site-footer { display: none; }

/* ============================================================
   4. TYPOGRAPHY UTILITIES
   ============================================================ */
.gg-h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
.gg-h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.gg-h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
.gg-subtitle { font-size: 1.1rem; color: var(--gg-text-mid); font-weight: 400; max-width: 640px; margin: 0 auto; }
.highlight {
  background: var(--gg-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ============================================================
   5. LAYOUT UTILITIES
   ============================================================ */
.gg-container  { width:100%; max-width:1280px; margin:0 auto; padding:0 1.5rem; }
.gg-section    { padding: 80px 0; }
.gg-section-lg { padding: 120px 0; }
.gg-text-center{ text-align: center; }
.gg-flex       { display: flex; }
.gg-flex-center{ display: flex; align-items: center; justify-content: center; }
.gg-grid       { display: grid; }
.gg-gap-4{ gap:1rem; } .gg-gap-6{ gap:1.5rem; } .gg-gap-8{ gap:2rem; }
.gg-mt-4{ margin-top:1rem; } .gg-mt-6{ margin-top:1.5rem; } .gg-mt-8{ margin-top:2rem; }
.gg-mb-8{ margin-bottom:2rem; }
.gg-sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

/* ============================================================
   6. BUTTONS
   ============================================================ */
.gg-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border-radius: var(--gg-radius-btn);
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  cursor: pointer; border: none; transition: var(--gg-transition);
  text-decoration: none; white-space: nowrap;
  min-height: 48px; justify-content: center;
}
.gg-btn-primary { background: var(--gg-gradient); color: var(--gg-white); box-shadow: 0 4px 20px rgba(107,79,160,0.3); }
.gg-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(107,79,160,0.5); color: var(--gg-white); }
.gg-btn-outline { background: transparent; color: var(--gg-purple-dark); border: 2px solid var(--gg-purple-dark); }
.gg-btn-outline:hover { background: var(--gg-gradient); color: var(--gg-white); border-color: transparent; transform: translateY(-2px); }
.gg-btn-white { background: var(--gg-white); color: var(--gg-purple-dark); font-weight: 700; }
.gg-btn-white:hover { background: var(--gg-bg-light); transform: translateY(-2px); box-shadow: var(--gg-shadow-hover); color: var(--gg-purple-dark); }
.gg-btn-sm { padding: 0.6rem 1.4rem; font-size: 0.88rem; min-height: 40px; }

/* ============================================================
   7. NAVIGATION / HEADER
   ============================================================ */
#site-header {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(135,206,234,0.2);
  transition: var(--gg-transition);
}
#site-header.scrolled { box-shadow: 0 4px 24px rgba(107,79,160,0.12); }
.site-nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
}
.site-logo img { height: 60px; width: auto; }
.site-logo .logo-text {
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700;
  background: var(--gg-gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-menu { display: flex; list-style: none; gap: 0.25rem; align-items: center; }
.nav-menu li a { padding:0.5rem 0.9rem; border-radius:8px; font-weight:600; font-size:0.95rem; color:var(--gg-text-dark); transition:var(--gg-transition); }
.nav-menu li a:hover,
.nav-menu li.current-menu-item a,
.nav-menu li.current_page_item a { color:var(--gg-purple-dark); background:var(--gg-bg-light); }
.nav-cta { margin-left: 1rem; }
.nav-toggle { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:8px; background:none; border:none; }
.nav-toggle span { display:block; width:26px; height:2.5px; background:var(--gg-text-dark); border-radius:4px; transition:var(--gg-transition); }
.nav-toggle.open span:nth-child(1){ transform:translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   8. HERO SECTION
   ============================================================ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background: linear-gradient(145deg, #C5E8F7 0%, #D9CEFF 50%, #EDE0FF 100%);
  padding-top: 80px;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: url('https://gentleglowcleaningservice.com/wp-content/themes/gentle-glow/assets/images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.12;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 4rem 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.8); color: var(--gg-purple-dark);
  padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 700; margin-bottom: 1.2rem;
  backdrop-filter: blur(8px); border: 1px solid rgba(179,157,219,0.3);
  animation: gg-badge-pulse 3s ease-in-out infinite;
}
@keyframes gg-badge-pulse {
  0%,100%{ box-shadow:0 0 0 0 rgba(135,206,234,0.4); }
  50%    { box-shadow:0 0 0 12px rgba(135,206,234,0); }
}
.hero-title { font-size: clamp(2.4rem,5vw,4rem); font-family:var(--font-heading); color:var(--gg-text-dark); line-height:1.2; margin-bottom:1.2rem; }
.hero-subtitle { font-size:1.15rem; color:var(--gg-text-mid); margin-bottom:2rem; line-height:1.7; }
.hero-cta-group { display:flex; gap:1rem; flex-wrap:wrap; }
.hero-stats { display:flex; gap:2rem; margin-top:2.5rem; flex-wrap:wrap; }
.hero-stat .number { font-size:2rem; font-weight:900; font-family:var(--font-heading); background:var(--gg-gradient); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.hero-stat .label { font-size:0.82rem; color:var(--gg-text-mid); font-weight:600; }
.hero-image-wrap { position:relative; display:flex; justify-content:center; }
.hero-image-wrap img { border-radius:24px; box-shadow:var(--gg-shadow-hover); max-height:520px; object-fit:cover; width:100%; }

/* ============================================================
   9. BUBBLE & SPARKLE ANIMATIONS
   ============================================================ */
.bubbles-container { position:absolute; inset:0; pointer-events:none; overflow:hidden; z-index:1; }
.bubble {
  position:absolute; bottom:-100px; border-radius:50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.85), rgba(135,206,234,0.3));
  border: 1px solid rgba(255,255,255,0.6);
  animation: floatBubble linear infinite;
}
@keyframes floatBubble {
  0%  { transform:translateY(0) translateX(0) scale(1); opacity:0; }
  10% { opacity:1; }
  90% { opacity:0.6; }
  100%{ transform:translateY(-110vh) translateX(var(--sway)) scale(0.85); opacity:0; }
}
.sparkle { position:absolute; pointer-events:none; animation:sparkleAnim 2s ease-in-out infinite; }
@keyframes sparkleAnim {
  0%,100%{ transform:scale(0) rotate(0deg); opacity:0; }
  50%    { transform:scale(1) rotate(180deg); opacity:1; }
}

/* ============================================================
   10. TRUST BAR
   ============================================================ */
.trust-bar { background:var(--gg-white); border-top:1px solid rgba(135,206,234,0.25); border-bottom:1px solid rgba(135,206,234,0.25); padding:1.5rem 0; }
.trust-bar-inner { max-width:1280px; margin:0 auto; padding:0 1.5rem; display:flex; align-items:center; justify-content:center; gap:2.5rem; flex-wrap:wrap; }
.trust-item { display:flex; align-items:center; gap:0.6rem; font-size:0.9rem; font-weight:700; color:var(--gg-text-dark); }
.trust-item .icon { width:36px; height:36px; background:var(--gg-gradient-soft); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1rem; color:var(--gg-purple-dark); }

/* ============================================================
   11. SECTION HEADERS
   ============================================================ */
.section-header { text-align:center; margin-bottom:3.5rem; }
.section-label { display:inline-block; background:var(--gg-gradient-soft); color:var(--gg-purple-dark); padding:0.35rem 1rem; border-radius:50px; font-size:0.82rem; font-weight:800; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:0.8rem; }
.section-title { font-size:clamp(1.8rem,3.5vw,2.8rem); font-family:var(--font-heading); color:var(--gg-text-dark); margin-bottom:1rem; }
.section-subtitle { font-size:1.05rem; color:var(--gg-text-mid); max-width:600px; margin:0 auto; line-height:1.7; }

/* ============================================================
   12. SERVICE CARDS
   ============================================================ */
.services-section { background: var(--gg-bg-light); }
.services-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:1.75rem; align-items:stretch; }
.service-card { background:var(--gg-white); border-radius:var(--gg-radius); padding:2rem 1.75rem; box-shadow:var(--gg-shadow); transition:var(--gg-transition); border:1px solid rgba(135,206,234,0.15); display:flex; flex-direction:column; height:100%; }
.service-card:hover { transform:translateY(-8px); box-shadow:var(--gg-shadow-hover); border-color:var(--gg-blue); }
.service-icon { width:64px; height:64px; background:var(--gg-gradient-soft); border-radius:16px; display:flex; align-items:center; justify-content:center; font-size:1.6rem; color:var(--gg-purple-dark); margin-bottom:1.2rem; }
.service-card h3 { font-size:1.25rem; margin-bottom:0.6rem; color:var(--gg-text-dark); }
.service-card p  { color:var(--gg-text-mid); font-size:0.95rem; margin-bottom:1rem; flex:1; }
.service-price   { font-size:0.9rem; font-weight:700; color:var(--gg-purple-dark); margin-bottom:1.2rem; }
.service-card .gg-btn { align-self:flex-start; font-size:0.88rem; padding:0.65rem 1.5rem; }
/* Individual service page hero */
.service-hero { background:var(--gg-gradient); padding:140px 0 80px; text-align:center; color:white; position:relative; overflow:hidden; }
.service-hero h1 { color:white; font-size:clamp(2rem,4vw,3.2rem); margin-bottom:1rem; }
.service-hero p  { color:rgba(255,255,255,0.88); font-size:1.1rem; max-width:600px; margin:0 auto 2rem; }

/* ============================================================
   13. HOW IT WORKS
   ============================================================ */
.hiw-section { background:var(--gg-white); }
.hiw-steps { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
.hiw-step { text-align:center; padding:2.5rem 1.5rem; background:var(--gg-bg-light); border-radius:var(--gg-radius); }
.hiw-number { width:64px; height:64px; background:var(--gg-gradient); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.5rem; font-weight:900; color:white; margin:0 auto 1.2rem; font-family:var(--font-heading); }
.hiw-step h3 { font-size:1.2rem; margin-bottom:0.6rem; }
.hiw-step p  { color:var(--gg-text-mid); font-size:0.95rem; }

/* ============================================================
   14. BEFORE / AFTER SLIDER
   ============================================================ */
.ba-section { background:var(--gg-bg-section); }
.ba-grid    { display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr)); gap:2rem; }
.ba-slider  { position:relative; border-radius:var(--gg-radius); overflow:hidden; box-shadow:var(--gg-shadow); cursor:col-resize; user-select:none; aspect-ratio:4/3; }
.ba-before, .ba-after { position:absolute; inset:0; background-size:cover; background-position:center; }
.ba-before { z-index:1; }
.ba-after  { z-index:2; clip-path:inset(0 50% 0 0); transition:clip-path 0.04s linear; }
.ba-slider.sweeping .ba-after { transition:none; }
.ba-handle { position:absolute; top:0; bottom:0; left:50%; width:4px; background:white; z-index:3; cursor:col-resize; transform:translateX(-50%); transition:left 0.04s linear; }
.ba-handle::before { content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%) scale(1); width:56px; height:56px; border-radius:50%; border:3px solid rgba(255,255,255,0.6); animation:gg-handle-pulse 2s ease-out infinite; pointer-events:none; }
@keyframes gg-handle-pulse {
  0%  { transform:translate(-50%,-50%) scale(0.7); opacity:0.8; }
  70% { transform:translate(-50%,-50%) scale(1.4); opacity:0; }
  100%{ transform:translate(-50%,-50%) scale(0.7); opacity:0; }
}
.ba-handle::after { content:'◀ ▶'; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); background:white; border-radius:50%; width:44px; height:44px; display:flex; align-items:center; justify-content:center; font-size:0.6rem; box-shadow:0 2px 12px rgba(0,0,0,0.2); color:var(--gg-purple-dark); font-weight:900; }
.ba-label { position:absolute; top:12px; padding:0.3rem 0.75rem; border-radius:50px; font-size:0.78rem; font-weight:800; z-index:4; text-transform:uppercase; }
.ba-label-before{ left:12px;  background:rgba(255,100,100,0.85); color:white; }
.ba-label-after { right:12px; background:rgba(107,79,160,0.85);  color:white; }

/* ============================================================
   15. TESTIMONIALS CAROUSEL
   ============================================================ */
.testimonials-section { background:var(--gg-white); }
.testimonials-carousel{ position:relative; overflow:hidden; }
.testimonials-track   { display:flex; transition:transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.testimonial-card { min-width:100%; padding:2.5rem; background:var(--gg-bg-light); border-radius:var(--gg-radius); border-left:4px solid var(--gg-blue); box-shadow:var(--gg-shadow); }
.testimonial-stars    { color:#FFB800; font-size:1.2rem; margin-bottom:1rem; }
.testimonial-text     { font-size:1.05rem; color:var(--gg-text-dark); line-height:1.75; margin-bottom:1.5rem; font-style:italic; }
.testimonial-author   { display:flex; align-items:center; gap:1rem; }
.testimonial-avatar   { width:52px; height:52px; border-radius:50%; background:var(--gg-gradient); display:flex; align-items:center; justify-content:center; font-size:1.4rem; color:white; font-weight:700; }
.testimonial-name     { font-weight:700; font-size:1rem; }
.testimonial-location { font-size:0.85rem; color:var(--gg-text-mid); }
.carousel-controls    { display:flex; justify-content:center; gap:0.75rem; margin-top:1.5rem; }
.carousel-dot { width:10px; height:10px; border-radius:50%; background:var(--gg-purple-light); border:none; cursor:pointer; transition:var(--gg-transition); }
.carousel-dot.active{ background:var(--gg-gradient); transform:scale(1.3); }

/* ============================================================
   16. ABOUT SECTION
   ============================================================ */
.about-section { background:var(--gg-bg-light); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; }
.about-images { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.about-images img { border-radius:var(--gg-radius); object-fit:cover; box-shadow:var(--gg-shadow); }
.about-images img:first-child { grid-column:1/-1; max-height:280px; width:100%; }
.about-text h2 { font-size:clamp(1.8rem,3.5vw,2.6rem); margin-bottom:1.2rem; }
.about-text p  { color:var(--gg-text-mid); margin-bottom:1rem; line-height:1.8; }
.about-perks   { list-style:none; margin:1.5rem 0; }
.about-perks li{ display:flex; align-items:center; gap:0.7rem; margin-bottom:0.75rem; font-weight:600; }
.about-perks li i { color:var(--gg-purple-dark); font-size:1rem; }
.team-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:2rem; margin-top:3rem; }
.team-card { text-align:center; }
.team-card img { width:160px; height:160px; border-radius:50%; object-fit:cover; margin:0 auto 1rem; box-shadow:var(--gg-shadow); border:4px solid var(--gg-white); outline:3px solid var(--gg-purple-light); }
.team-card h3   { font-size:1.1rem; margin-bottom:0.25rem; }
.team-card .role{ font-size:0.88rem; color:var(--gg-text-mid); }
.values-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:1.5rem; margin-top:2rem; }
.value-card  { background:var(--gg-white); border-radius:var(--gg-radius); padding:1.75rem 1.5rem; text-align:center; box-shadow:var(--gg-shadow); }
.value-card .value-icon { font-size:2rem; color:var(--gg-purple-dark); margin-bottom:0.75rem; }
.value-card h4 { font-size:1rem; margin-bottom:0.5rem; }
.value-card p  { font-size:0.88rem; color:var(--gg-text-mid); }

/* ============================================================
   17. VIDEO SECTION
   ============================================================ */
.video-section { background:var(--gg-bg-section); padding:80px 0; }
.video-wrap { max-width:800px; margin:0 auto; border-radius:24px; overflow:hidden; box-shadow:var(--gg-shadow-hover); background:var(--gg-text-dark); aspect-ratio:16/9; position:relative; }
.video-wrap video, .video-wrap iframe { width:100%; height:100%; object-fit:cover; }
.video-placeholder { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; background:linear-gradient(145deg,var(--gg-text-dark) 0%,var(--gg-purple-dark) 100%); color:white; text-align:center; padding:2rem; }
.video-placeholder img { width:120px; border-radius:50%; margin-bottom:1rem; object-fit:cover; }
.video-placeholder h3  { font-size:1.4rem; color:white; margin-bottom:0.5rem; }
.video-placeholder p   { color:rgba(255,255,255,0.75); font-size:0.95rem; }

/* ============================================================
   18. NEWSLETTER / GLOW CLUB
   ============================================================ */
.newsletter-section { background:var(--gg-gradient); padding:80px 0; position:relative; overflow:hidden; }
.newsletter-section::before { content:''; position:absolute; inset:0; background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.newsletter-inner { position:relative; z-index:1; text-align:center; max-width:640px; margin:0 auto; padding:0 1.5rem; }
.newsletter-inner h2 { color:white; font-size:clamp(1.8rem,3vw,2.6rem); margin-bottom:1rem; }
.newsletter-inner p  { color:rgba(255,255,255,0.88); margin-bottom:2rem; font-size:1.05rem; }
.newsletter-form { display:flex; gap:0.75rem; max-width:480px; margin:0 auto; }
.newsletter-form input { flex:1; padding:0.9rem 1.2rem; border-radius:var(--gg-radius-btn); border:2px solid rgba(255,255,255,0.4); background:rgba(255,255,255,0.15); color:white; font-family:var(--font-body); font-size:0.95rem; outline:none; backdrop-filter:blur(8px); }
.newsletter-form input::placeholder { color:rgba(255,255,255,0.7); }
.newsletter-form input:focus { border-color:white; background:rgba(255,255,255,0.22); }
.coupon-badge { display:inline-block; background:rgba(255,255,255,0.2); border:2px dashed rgba(255,255,255,0.5); border-radius:12px; padding:0.75rem 1.5rem; font-size:1.4rem; font-weight:900; color:white; letter-spacing:0.1em; margin-bottom:1.5rem; }

/* ============================================================
   19. LEAD-MAGNET POPUP
   ============================================================ */
#gg-popup-overlay { position:fixed; inset:0; background:rgba(30,20,60,0.65); z-index:9998; display:none; align-items:center; justify-content:center; backdrop-filter:blur(4px); padding:1rem; }
#gg-popup-overlay.visible { display:flex; }
#gg-popup { background:var(--gg-white); border-radius:24px; padding:2.5rem; max-width:480px; width:100%; position:relative; text-align:center; box-shadow:0 24px 80px rgba(107,79,160,0.3); animation:popupIn 0.4s cubic-bezier(0.34,1.56,0.64,1) both; }
@keyframes popupIn { from{transform:scale(0.85) translateY(20px);opacity:0} to{transform:scale(1) translateY(0);opacity:1} }
.popup-close { position:absolute; top:1rem; right:1rem; background:var(--gg-bg-light); border:none; border-radius:50%; width:36px; height:36px; cursor:pointer; font-size:1.1rem; display:flex; align-items:center; justify-content:center; color:var(--gg-text-mid); transition:var(--gg-transition); }
.popup-close:hover { background:var(--gg-gradient); color:white; }
.popup-emoji  { font-size:3rem; margin-bottom:0.5rem; }
.popup-badge  { display:inline-block; background:var(--gg-gradient); color:white; padding:0.4rem 1.2rem; border-radius:50px; font-weight:900; font-size:1.1rem; margin-bottom:1rem; }
#gg-popup h3  { font-size:1.6rem; margin-bottom:0.5rem; }
#gg-popup p   { color:var(--gg-text-mid); margin-bottom:1.5rem; font-size:0.95rem; }
.popup-form   { display:flex; flex-direction:column; gap:0.75rem; }
.popup-form input { width:100%; padding:0.85rem 1.2rem; border-radius:var(--gg-radius-btn); border:2px solid rgba(179,157,219,0.3); font-family:var(--font-body); font-size:0.95rem; outline:none; transition:var(--gg-transition); background:var(--gg-bg-light); }
.popup-form input:focus { border-color:var(--gg-purple); background:white; }
.popup-form .gg-btn { width:100%; justify-content:center; }
.popup-skip { margin-top:0.75rem; font-size:0.8rem; color:var(--gg-text-light); cursor:pointer; background:none; border:none; text-decoration:underline; }

/* ============================================================
   20. STICKY MOBILE CTA BAR
   ============================================================ */
#sticky-cta-bar { display:none; position:fixed; bottom:0; left:0; right:0; z-index:990; background:var(--gg-gradient); padding:0.85rem 1.5rem; text-align:center; box-shadow:0 -4px 20px rgba(107,79,160,0.25); }
#sticky-cta-bar a { color:white; font-weight:800; font-size:0.95rem; letter-spacing:0.02em; }

/* ============================================================
   21. QUOTE CALCULATOR
   ============================================================ */
.quote-section { background:var(--gg-bg-light); min-height:80vh; }
.quote-wizard  { max-width:700px; margin:0 auto; background:var(--gg-white); border-radius:24px; box-shadow:var(--gg-shadow); overflow:hidden; }
.quote-progress    { height:6px; background:var(--gg-bg-section); }
.quote-progress-bar{ height:100%; background:var(--gg-gradient); transition:width 0.4s ease; }
.quote-step        { display:none; padding:2.5rem; }
.quote-step.active { display:block; }
.quote-step h3 { font-size:1.4rem; margin-bottom:0.5rem; }
.quote-step p  { color:var(--gg-text-mid); margin-bottom:2rem; }
.quote-options { display:grid; grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); gap:0.75rem; }
.quote-option  { padding:1rem; border:2px solid rgba(179,157,219,0.25); border-radius:var(--gg-radius); cursor:pointer; text-align:center; transition:var(--gg-transition); background:var(--gg-bg-light); }
.quote-option:hover, .quote-option.selected { border-color:var(--gg-purple); background:var(--gg-gradient-soft); transform:translateY(-2px); }
.quote-option .opt-icon  { font-size:2rem; margin-bottom:0.4rem; color:var(--gg-purple-dark); }
.quote-option .opt-label { font-weight:700; font-size:0.9rem; }
.quote-option .opt-price { font-size:0.8rem; color:var(--gg-text-mid); margin-top:0.2rem; }
.quote-nav { display:flex; justify-content:space-between; align-items:center; margin-top:2rem; padding-top:1.5rem; border-top:1px solid rgba(179,157,219,0.2); }
.quote-result { background:var(--gg-gradient); border-radius:16px; padding:2rem; text-align:center; color:white; margin:1.5rem 0; }
.quote-amount { font-size:3rem; font-weight:900; font-family:var(--font-heading); }
.quote-range  { font-size:0.9rem; opacity:0.85; margin-top:0.3rem; }

/* ============================================================
   22. BOOKING SECTION
   ============================================================ */
.booking-section { background:var(--gg-bg-section); }
.booking-hero { background:var(--gg-gradient); padding:140px 0 80px; text-align:center; color:white; }
.booking-hero h1 { color:white; margin-bottom:1rem; font-size:clamp(2rem,4vw,3.2rem); }
.booking-hero p  { color:rgba(255,255,255,0.88); font-size:1.1rem; max-width:600px; margin:0 auto; }
.booking-grid { display:grid; grid-template-columns:1.2fr 1fr; gap:3rem; align-items:start; }
.booking-form-wrap { background:var(--gg-white); border-radius:var(--gg-radius); padding:2.5rem; box-shadow:var(--gg-shadow); }
.ssa-booking-container { padding:1rem 0; }
.booking-form .form-group { margin-bottom:1.25rem; }
.booking-form label { display:block; font-weight:700; font-size:0.88rem; color:var(--gg-text-dark); margin-bottom:0.4rem; }
.booking-form input, .booking-form select, .booking-form textarea { width:100%; padding:0.85rem 1.1rem; border:2px solid rgba(179,157,219,0.25); border-radius:10px; font-family:var(--font-body); font-size:0.95rem; color:var(--gg-text-dark); background:var(--gg-bg-light); outline:none; transition:var(--gg-transition); }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color:var(--gg-purple); background:white; box-shadow:0 0 0 3px rgba(179,157,219,0.15); }
.booking-form .form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.booking-info-card { background:var(--gg-gradient); border-radius:var(--gg-radius); padding:2.5rem; color:white; }
.booking-info-card h3 { color:white; font-size:1.4rem; margin-bottom:1rem; }
.booking-fee-box { background:rgba(255,255,255,0.15); border-radius:12px; padding:1.5rem; text-align:center; margin-bottom:1.5rem; border:1px solid rgba(255,255,255,0.3); }
.booking-fee-amount { font-size:2.5rem; font-weight:900; font-family:var(--font-heading); }
.booking-fee-label  { font-size:0.9rem; opacity:0.85; }
.booking-perks { list-style:none; }
.booking-perks li { display:flex; align-items:center; gap:0.6rem; margin-bottom:0.75rem; font-size:0.95rem; }
.booking-perks li i { color:rgba(255,255,255,0.8); }

/* ============================================================
   23. BLOG
   ============================================================ */
.blog-section { background:var(--gg-bg-light); }
.blog-grid    { display:grid; grid-template-columns:repeat(auto-fill,minmax(320px,1fr)); gap:2rem; }
.blog-card    { background:var(--gg-white); border-radius:var(--gg-radius); overflow:hidden; box-shadow:var(--gg-shadow); transition:var(--gg-transition); }
.blog-card:hover { transform:translateY(-6px); box-shadow:var(--gg-shadow-hover); }
.blog-card-img { width:100%; aspect-ratio:16/9; background:var(--gg-gradient); display:flex; align-items:center; justify-content:center; font-size:3rem; position:relative; overflow:hidden; }
.blog-card-img img { width:100%; height:100%; object-fit:cover; position:relative; z-index:1; }
.blog-card-body { padding:1.5rem; }
.blog-category  { font-size:0.75rem; font-weight:800; text-transform:uppercase; letter-spacing:0.08em; color:var(--gg-purple-dark); margin-bottom:0.6rem; }
.blog-card h3   { font-size:1.1rem; margin-bottom:0.5rem; line-height:1.4; }
.blog-card h3 a { color:var(--gg-text-dark); }
.blog-card h3 a:hover { color:var(--gg-purple-dark); }
.blog-card p    { font-size:0.9rem; color:var(--gg-text-mid); margin-bottom:1rem; }
.blog-meta      { font-size:0.8rem; color:var(--gg-text-light); display:flex; gap:1rem; }
.single-post    { max-width:820px; margin:0 auto; padding:80px 1.5rem; }
.single-post h1 { font-size:clamp(1.8rem,4vw,3rem); margin-bottom:1rem; }
.post-meta      { display:flex; gap:1.5rem; margin-bottom:2rem; flex-wrap:wrap; }
.post-meta span { font-size:0.88rem; color:var(--gg-text-mid); }
.post-content h2 { font-size:1.6rem; margin:2.5rem 0 1rem; }
.post-content h3 { font-size:1.25rem; margin:2rem 0 0.8rem; }
.post-content p  { margin-bottom:1.2rem; color:var(--gg-text-mid); line-height:1.85; }
.post-content ul, .post-content ol { margin:1rem 0 1.5rem 1.5rem; }
.post-content li { margin-bottom:0.5rem; color:var(--gg-text-mid); }
.post-cta-box { background:var(--gg-gradient-soft); border-radius:var(--gg-radius); padding:2rem; margin:2.5rem 0; text-align:center; border:1px solid rgba(179,157,219,0.3); }

/* ============================================================
   24. CAREERS
   ============================================================ */
.careers-section { background:var(--gg-bg-light); }
.careers-grid { display:grid; grid-template-columns:1fr 1.5fr; gap:3rem; align-items:start; }
.careers-form { background:var(--gg-white); border-radius:var(--gg-radius); padding:2.5rem; box-shadow:var(--gg-shadow); }
.careers-form .form-group { margin-bottom:1.25rem; }
.careers-form label { display:block; font-weight:700; font-size:0.88rem; margin-bottom:0.4rem; }
.careers-form input, .careers-form select, .careers-form textarea { width:100%; padding:0.85rem 1.1rem; border:2px solid rgba(179,157,219,0.25); border-radius:10px; font-family:var(--font-body); font-size:0.95rem; background:var(--gg-bg-light); outline:none; transition:var(--gg-transition); }
.careers-form input:focus, .careers-form select:focus, .careers-form textarea:focus { border-color:var(--gg-purple); background:white; }
.file-upload-box { border:2px dashed rgba(179,157,219,0.5); border-radius:10px; padding:1.5rem; text-align:center; cursor:pointer; transition:var(--gg-transition); background:var(--gg-bg-light); }
.file-upload-box:hover { border-color:var(--gg-purple); background:var(--gg-gradient-soft); }
.file-upload-box input[type="file"]{ display:none; }
.file-upload-icon { font-size:2rem; color:var(--gg-purple-dark); margin-bottom:0.5rem; }
.file-upload-text { font-size:0.88rem; color:var(--gg-text-mid); }
.file-upload-text strong { color:var(--gg-purple-dark); }
.wpforms-container { padding:0 !important; }
.wpforms-field-container .wpforms-field { margin-bottom:1.25rem !important; }

/* ============================================================
   25. CONTACT
   ============================================================ */
.contact-section { background:var(--gg-bg-light); }
.contact-grid { display:grid; grid-template-columns:1.2fr 1fr; gap:3rem; align-items:start; }
.contact-form-wrap { background:var(--gg-white); border-radius:var(--gg-radius); padding:2.5rem; box-shadow:var(--gg-shadow); }
.wpcf7-form .wpcf7-text, .wpcf7-form .wpcf7-textarea, .wpcf7-form .wpcf7-select { width:100%; padding:0.85rem 1.1rem !important; border:2px solid rgba(179,157,219,0.25) !important; border-radius:10px !important; font-family:var(--font-body) !important; font-size:0.95rem !important; background:var(--gg-bg-light) !important; margin-bottom:1rem !important; transition:var(--gg-transition) !important; }
.wpcf7-form .wpcf7-text:focus, .wpcf7-form .wpcf7-textarea:focus { border-color:var(--gg-purple) !important; background:white !important; }
.wpcf7-form .wpcf7-submit { background:var(--gg-gradient) !important; color:white !important; border:none !important; padding:0.85rem 2.2rem !important; border-radius:var(--gg-radius-btn) !important; font-family:var(--font-body) !important; font-size:1rem !important; font-weight:700 !important; cursor:pointer !important; transition:var(--gg-transition) !important; }
.wpcf7-form .wpcf7-submit:hover { transform:translateY(-2px) !important; }
.contact-info-card { background:var(--gg-gradient); border-radius:var(--gg-radius); padding:2.5rem; color:white; }
.contact-info-card h3 { color:white; font-size:1.4rem; margin-bottom:1.5rem; }
.contact-info-item { display:flex; align-items:flex-start; gap:1rem; margin-bottom:1.5rem; }
.contact-info-item i { font-size:1.2rem; margin-top:0.2rem; flex-shrink:0; }
.contact-info-item strong { display:block; margin-bottom:0.2rem; }
.contact-info-item p { color:rgba(255,255,255,0.85); font-size:0.9rem; margin:0; }
.contact-map { border-radius:var(--gg-radius); overflow:hidden; margin-top:1.5rem; box-shadow:var(--gg-shadow); }
.contact-map iframe { width:100%; height:280px; border:none; display:block; }
.service-areas-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(160px,1fr)); gap:0.75rem; margin-top:1.5rem; }
.service-area-chip { background:var(--gg-gradient-soft); border-radius:50px; padding:0.4rem 1rem; font-size:0.82rem; font-weight:700; color:var(--gg-purple-dark); text-align:center; }

/* ============================================================
   26. FOOTER
   ============================================================ */
#site-footer { background:var(--gg-text-dark); color:rgba(255,255,255,0.8); padding:64px 0 0; }
.footer-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr 1.2fr; gap:2.5rem; max-width:1280px; margin:0 auto; padding:0 1.5rem 3rem; }
.footer-brand img { height:56px; margin-bottom:1.2rem; filter:brightness(0) invert(1); }
.footer-brand p   { font-size:0.9rem; line-height:1.7; margin-bottom:1.5rem; }
.footer-social    { display:flex; gap:0.75rem; }
.footer-social a  { width:40px; height:40px; border-radius:50%; background:rgba(255,255,255,0.1); display:flex; align-items:center; justify-content:center; color:white; font-size:1rem; transition:var(--gg-transition); }
.footer-social a:hover { background:var(--gg-gradient); transform:translateY(-2px); }
.footer-col h4    { color:white; font-size:1rem; margin-bottom:1.2rem; font-family:var(--font-heading); }
.footer-links     { list-style:none; }
.footer-links li  { margin-bottom:0.6rem; }
.footer-links li a{ color:rgba(255,255,255,0.7); font-size:0.9rem; transition:var(--gg-transition); }
.footer-links li a:hover { color:var(--gg-blue); padding-left:4px; }
.footer-contact-item { display:flex; gap:0.6rem; margin-bottom:0.75rem; font-size:0.9rem; }
.footer-contact-item .icon { color:var(--gg-blue); flex-shrink:0; }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.1); padding:1.5rem; display:flex; align-items:center; justify-content:space-between; font-size:0.82rem; color:rgba(255,255,255,0.5); max-width:1280px; margin:0 auto; flex-wrap:wrap; gap:0.5rem; }
.footer-bottom a { color:rgba(255,255,255,0.6); }
.footer-bottom a:hover { color:var(--gg-blue); }
.footer-areas { margin-top:1rem; font-size:0.82rem; color:rgba(255,255,255,0.5); }

/* ============================================================
   27. 404 PAGE
   ============================================================ */
.page-404 { min-height:80vh; display:flex; align-items:center; justify-content:center; text-align:center; padding:120px 1.5rem; background:var(--gg-bg-light); }
.page-404 .error-code { font-size:8rem; font-weight:900; font-family:var(--font-heading); background:var(--gg-gradient); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1; }
.page-404 h2 { font-size:2rem; margin:1rem 0 0.5rem; }
.page-404 p  { color:var(--gg-text-mid); max-width:480px; margin:0 auto 2rem; }

/* ============================================================
   28. SCROLL ANIMATIONS
   ============================================================ */
.fade-up { opacity:0; transform:translateY(30px); transition:opacity 0.6s ease,transform 0.6s ease; }
.fade-up.animated { opacity:1; transform:translateY(0); }
.fade-in { opacity:0; transition:opacity 0.6s ease; }
.fade-in.animated { opacity:1; }
.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; }

/* ============================================================
   29. COOKIE BANNER
   ============================================================ */
#cookie-banner { position:fixed; bottom:1rem; left:1rem; right:1rem; max-width:520px; background:var(--gg-text-dark); color:white; border-radius:16px; padding:1.25rem 1.5rem; z-index:9999; box-shadow:0 8px 32px rgba(0,0,0,0.25); display:flex; gap:1rem; align-items:center; flex-wrap:wrap; animation:slideUp 0.4s ease both; }
@keyframes slideUp { from{transform:translateY(20px);opacity:0} to{transform:translateY(0);opacity:1} }
#cookie-banner p { font-size:0.85rem; flex:1; color:rgba(255,255,255,0.85); margin:0; }
#cookie-banner .gg-btn { font-size:0.82rem; padding:0.5rem 1.2rem; flex-shrink:0; }
#cookie-banner.hidden { display:none; }

/* ============================================================
   30. WP ADMIN BAR OFFSET
   ============================================================ */
.admin-bar #site-header { top:32px; }
@media (max-width:782px) { .admin-bar #site-header { top:46px; } }

/* ============================================================
   31. ACCESSIBILITY
   ============================================================ */
:focus-visible { outline:3px solid var(--gg-purple); outline-offset:3px; }
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible { outline:3px solid var(--gg-purple-dark); outline-offset:3px; border-radius:4px; }
.skip-link { position:absolute; top:-100%; left:1rem; background:var(--gg-purple-dark); color:white; padding:0.5rem 1rem; border-radius:4px; z-index:99999; font-weight:700; transition:top 0.2s; }
.skip-link:focus { top:0; }

/* ============================================================
   32. PRINT
   ============================================================ */
@media print {
  #site-header,#site-footer,#gg-popup-overlay,#cookie-banner,#sticky-cta-bar { display:none !important; }
  body { padding-top:0; }
}

/* ============================================================
   33. RESPONSIVE — TABLET (≤1023px)
   ============================================================ */
@media (max-width:1023px) {
  .hero-content    { grid-template-columns:1fr; gap:2rem; text-align:center; }
  .hero-text       { order:1; }
  .hero-image-wrap { order:2; max-width:500px; margin:0 auto; }
  .hero-cta-group  { justify-content:center; }
  .hero-stats      { justify-content:center; }
  .nav-toggle      { display:flex; }
  .nav-menu { display:none; position:absolute; top:80px; left:0; right:0; background:var(--gg-white); flex-direction:column; padding:1.5rem; gap:0.25rem; box-shadow:0 8px 24px rgba(107,79,160,0.15); border-bottom-left-radius:16px; border-bottom-right-radius:16px; }
  .nav-menu.open   { display:flex; }
  .nav-menu li     { width:100%; }
  .nav-menu li a   { display:block; width:100%; padding:0.75rem 1rem; }
  .nav-cta         { margin:0.5rem 0; width:100%; text-align:center; }
  .services-grid   { grid-template-columns:repeat(2,1fr); }
  .hiw-steps       { grid-template-columns:1fr; gap:1.5rem; }
  .ba-grid         { grid-template-columns:1fr; max-width:560px; margin:0 auto; }
  .about-grid      { grid-template-columns:1fr; }
  .careers-grid    { grid-template-columns:1fr; }
  .contact-grid    { grid-template-columns:1fr; }
  .booking-grid    { grid-template-columns:1fr; }
  .footer-grid     { grid-template-columns:1fr 1fr; gap:2rem; }
}

/* ============================================================
   34. RESPONSIVE — MOBILE (≤767px)
   ============================================================ */
@media (max-width:767px) {
  body { font-size:15px; }
  .gg-container    { padding:0 1.25rem; }
  .gg-section      { padding:60px 0; }
  .site-nav        { min-height:70px; padding:0.5rem 1rem; height:auto; flex-wrap:wrap; }
  .site-logo img   { height:48px; }
  .nav-cta         { display:none; }
  .hero-content    { padding:1.5rem 0 2rem; }
  .hero-image-wrap img { max-height:280px; }
  .hero-stats      { flex-wrap:wrap; gap:1rem; }
  .hero-cta-group  { flex-direction:column; align-items:stretch; gap:0.75rem; }
  .services-grid   { grid-template-columns:1fr; }
  .ba-slider       { aspect-ratio:4/3; }
  .testimonial-card{ min-width:calc(100vw - 2.5rem); }
  .about-grid      { grid-template-columns:1fr; gap:2rem; }
  .booking-form .form-row { grid-template-columns:1fr; }
  .footer-grid     { grid-template-columns:1fr; gap:2rem; }
  .footer-bottom   { flex-direction:column; text-align:center; gap:0.5rem; }
  .newsletter-form { flex-direction:column; }
  .newsletter-form input { width:100%; }
  .hiw-steps       { grid-template-columns:1fr; gap:1.5rem; }
  #sticky-cta-bar  { display:block; }
  #gg-popup { width:calc(100vw - 2rem) !important; max-width:100% !important; padding:1.75rem 1.25rem !important; border-radius:16px !important; }
}

/* ============================================================
   35. RESPONSIVE — SMALL MOBILE (≤390px)
   ============================================================ */
@media (max-width:390px) {
  .hero-title    { font-size:clamp(1.6rem,7vw,2.2rem) !important; }
  .section-title { font-size:clamp(1.4rem,6vw,2rem) !important; }
  .gg-container  { padding:0 1rem; }
  .gg-section    { padding:50px 0; }
  .service-card  { padding:1.5rem 1.25rem; }
}
