/*
Theme Name: No Spot Left Behind
Theme URI: https://www.nospotwy.com
Author: No Spot Left Behind Cleaning Co.
Author URI: https://www.nospotwy.com
Description: A fun, whimsical WordPress theme for No Spot Left Behind Cleaning Co. in Cody, Wyoming. Features bubbly design, bright colors, and a playful cleaning vibe.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nospotwy
Tags: cleaning, service, whimsical, colorful, single-page
*/

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

:root {
  /* Brand Colors from nospotwy.com */
  --teal:       #2ABFBF;
  --teal-dark:  #1A9A9A;
  --teal-light: #E0F7F7;
  --coral:      #FF6B6B;
  --coral-dark: #E05555;
  --yellow:     #FFD166;
  --yellow-dark:#E6B800;
  --mint:       #C8F5E0;
  --lavender:   #E8D5FF;
  --navy:       #1C2E4A;
  --white:      #FFFFFF;
  --off-white:  #F8FFFE;
  --gray-light: #F2F2F2;
  --gray:       #888888;
  --text:       #2C3E50;

  /* Typography */
  --font-head: 'Fredoka One', 'Nunito', sans-serif;
  --font-body: 'Nunito', 'Poppins', sans-serif;

  /* Spacing */
  --section-pad: 80px 0;
  --container: 1140px;

  /* Borders */
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 48px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow: 0 8px 32px rgba(42,191,191,0.15);
  --shadow-pop: 0 12px 40px rgba(42,191,191,0.25);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== GOOGLE FONTS IMPORT (inlined in functions.php) ===== */

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

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(255,107,107,0.4);
}
.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(255,107,107,0.5);
}

.btn-secondary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(42,191,191,0.35);
}
.btn-secondary:hover {
  background: var(--teal-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(42,191,191,0.45);
}

.btn-outline {
  background: transparent;
  border: 3px solid var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--teal);
  transform: translateY(-3px);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 50px;
}

.highlight {
  color: var(--teal);
}

.highlight-coral {
  color: var(--coral);
}

/* ===== BUBBLES BACKGROUND DECORATOR ===== */
.bubble-bg {
  position: relative;
  overflow: hidden;
}

.bubble-bg::before,
.bubble-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  pointer-events: none;
}

.bubble-bg::before {
  width: 400px;
  height: 400px;
  background: var(--teal);
  top: -100px;
  right: -100px;
}

.bubble-bg::after {
  width: 300px;
  height: 300px;
  background: var(--coral);
  bottom: -80px;
  left: -80px;
}

/* ===== WAVY DIVIDERS ===== */
.wave-top,
.wave-bottom {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-top svg,
.wave-bottom svg {
  display: block;
  width: 100%;
}

/* ===== HEADER / NAV ===== */
#masthead {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(42,191,191,0.12);
  padding: 0;
  transition: all 0.3s ease;
}

#masthead.scrolled {
  box-shadow: 0 4px 30px rgba(42,191,191,0.2);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-logo .logo-icon {
  width: 52px;
  height: 52px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(42,191,191,0.35);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .logo-main {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 700;
}

.logo-text .logo-sub {
  font-size: 0.7rem;
  color: var(--teal);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
}

/* Nav Menu */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.primary-nav a {
  display: block;
  padding: 8px 18px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}

.primary-nav a:hover,
.primary-nav .current-menu-item a {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.nav-cta a {
  background: var(--coral) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 14px rgba(255,107,107,0.35);
}

.nav-cta a:hover {
  background: var(--coral-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,107,0.4) !important;
}

.nav-phone {
  font-family: var(--font-head);
  color: var(--teal-dark);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  margin-right: 8px;
}
.nav-phone:hover { color: var(--coral); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
  transition: all 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1C4A6E 0%, #1A9A9A 50%, #2ABFBF 100%);
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

/* Floating bubbles animation */
.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  animation: floatBubble linear infinite;
}

@keyframes floatBubble {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.bubble:nth-child(1)  { width: 80px;  height: 80px;  left: 10%; animation-duration: 8s;  animation-delay: 0s;   }
.bubble:nth-child(2)  { width: 40px;  height: 40px;  left: 25%; animation-duration: 6s;  animation-delay: 1s;   }
.bubble:nth-child(3)  { width: 120px; height: 120px; left: 40%; animation-duration: 10s; animation-delay: 2s;   }
.bubble:nth-child(4)  { width: 60px;  height: 60px;  left: 55%; animation-duration: 7s;  animation-delay: 0.5s; }
.bubble:nth-child(5)  { width: 90px;  height: 90px;  left: 70%; animation-duration: 9s;  animation-delay: 1.5s; }
.bubble:nth-child(6)  { width: 50px;  height: 50px;  left: 85%; animation-duration: 6s;  animation-delay: 3s;   }
.bubble:nth-child(7)  { width: 70px;  height: 70px;  left: 5%;  animation-duration: 11s; animation-delay: 2.5s; }
.bubble:nth-child(8)  { width: 30px;  height: 30px;  left: 90%; animation-duration: 5s;  animation-delay: 4s;   }
.bubble:nth-child(9)  { width: 100px; height: 100px; left: 60%; animation-duration: 8s;  animation-delay: 1s;   }
.bubble:nth-child(10) { width: 45px;  height: 45px;  left: 33%; animation-duration: 7s;  animation-delay: 3.5s; }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-full);
  padding: 6px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--yellow);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-title .wavy {
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-style: wavy;
  text-underline-offset: 6px;
}

.hero-description {
  font-size: 1.15rem;
  margin-bottom: 36px;
  opacity: 0.9;
  max-width: 480px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--yellow);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  position: relative;
}

.hero-card::before {
  content: '✨';
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 2.5rem;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.2) rotate(15deg); }
}

.card-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.card-sub {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 24px;
}

.quick-form .form-group {
  margin-bottom: 14px;
}

.quick-form input,
.quick-form textarea,
.quick-form select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E8F0FE;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color 0.2s;
  outline: none;
}

.quick-form input:focus,
.quick-form textarea:focus,
.quick-form select:focus {
  border-color: var(--teal);
}

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

.quick-form .btn {
  width: 100%;
  text-align: center;
}

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 2;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--yellow);
  padding: 18px 0;
  overflow: hidden;
}

.trust-ticker {
  display: flex;
  gap: 48px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--navy);
  flex-shrink: 0;
}

.trust-item .icon {
  font-size: 1.3rem;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  padding: var(--section-pad);
  background: var(--white);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.feature-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-pop);
  border-color: var(--teal-light);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
}

.feature-icon.teal    { background: var(--teal-light); }
.feature-icon.coral   { background: #FFE5E5; }
.feature-icon.yellow  { background: #FFF8E1; }
.feature-icon.lavender { background: var(--lavender); }

.feature-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature-text {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: var(--section-pad);
  background: var(--off-white);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-pop);
}

.service-img {
  height: 220px;
  object-fit: cover;
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-img-wrap {
  overflow: hidden;
  position: relative;
}

.service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.service-img-placeholder {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.service-body {
  padding: 28px 24px;
}

.service-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.price-tag {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--teal-dark);
}

.price-tag .from {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: normal;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: var(--section-pad);
  background: linear-gradient(135deg, var(--navy) 0%, #1A9A9A 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -200px;
  right: -100px;
}

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

.about-img-wrap {
  position: relative;
}

.about-img-blob {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  overflow: hidden;
  height: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.about-img-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  background: rgba(255,255,255,0.1);
}

.about-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  color: var(--navy);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 8px 30px rgba(255,209,102,0.5);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.about-content .section-title {
  text-align: left;
  color: var(--white);
}

.about-content p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  opacity: 0.9;
  line-height: 1.8;
}

.about-checks {
  list-style: none;
  margin: 24px 0 36px;
}

.about-checks li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 1rem;
}

.about-checks .check-icon {
  width: 26px;
  height: 26px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--section-pad);
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  border: 2px solid var(--teal-light);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--teal);
  opacity: 0.2;
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--navy);
}

.author-title {
  font-size: 0.8rem;
  color: var(--gray);
}

.star-rating {
  color: var(--yellow-dark);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: var(--section-pad);
  background: var(--off-white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: var(--radius-md);
  padding: 48px 40px;
  color: var(--white);
}

.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.contact-info .sub {
  opacity: 0.85;
  margin-bottom: 36px;
  font-size: 0.95rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-text strong {
  font-family: var(--font-head);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 3px;
}

.contact-item-text p,
.contact-item-text a {
  font-size: 0.9rem;
  opacity: 0.85;
  color: inherit;
  text-decoration: none;
  line-height: 1.6;
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.2s;
  color: white;
}
.social-btn:hover {
  background: rgba(255,255,255,0.4);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 48px 40px;
  box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form-wrap .sub {
  color: var(--gray);
  font-size: 0.92rem;
  margin-bottom: 28px;
}

.wpcf7 .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.wpcf7 .form-group {
  margin-bottom: 16px;
}

.wpcf7 label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select,
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid #E8F0FE;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color 0.2s;
  outline: none;
  display: block;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  background: white;
}

.wpcf7 textarea,
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.wpcf7 input[type="submit"],
.contact-form button[type="submit"] {
  background: var(--coral);
  color: white;
  border: none;
  padding: 14px 40px;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(255,107,107,0.35);
  width: 100%;
}

.wpcf7 input[type="submit"]:hover,
.contact-form button[type="submit"]:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

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

.footer-brand .logo-main { color: white; }
.footer-brand .logo-sub { color: var(--teal); }

.footer-tagline {
  font-size: 0.9rem;
  margin: 16px 0 24px;
  line-height: 1.7;
  opacity: 0.75;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  color: white;
  transition: all 0.2s;
}
.footer-social-btn:hover {
  background: var(--teal);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  align-items: flex-start;
}

.footer-contact-item .icon {
  font-size: 1rem;
  opacity: 0.6;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}
.footer-contact-item a:hover { color: var(--teal); }

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

.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.6;
}

.footer-bottom a {
  color: var(--teal);
  text-decoration: none;
}

/* ===== FLOATING CTA BUTTON ===== */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--coral);
  color: white;
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 30px rgba(255,107,107,0.45);
  z-index: 999;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 4s ease-in-out infinite;
}

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

.floating-cta:hover {
  background: var(--coral-dark);
  box-shadow: 0 12px 40px rgba(255,107,107,0.55);
  animation: none;
  transform: translateY(-4px);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-hero::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.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: white;
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== SERVICES PAGE ===== */
.services-page {
  padding: var(--section-pad);
  background: var(--white);
}

.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--off-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s;
}

.service-detail-card:hover {
  box-shadow: var(--shadow-pop);
}

.service-detail-card.reverse {
  direction: rtl;
}

.service-detail-card.reverse > * {
  direction: ltr;
}

.service-detail-img {
  height: 320px;
  width: 100%;
  object-fit: cover;
  display: block;
}

.service-detail-img-placeholder {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.service-detail-body {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-detail-badge {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}

.service-detail-title {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 14px;
}

.service-detail-desc {
  color: var(--gray);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-includes {
  list-style: none;
  margin-bottom: 28px;
}

.service-includes li {
  padding: 6px 0;
  padding-left: 26px;
  font-size: 0.9rem;
  color: var(--text);
  position: relative;
}

.service-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}

.service-detail-price {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--teal-dark);
  margin-bottom: 20px;
}

.service-detail-price .from {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: normal;
}

/* ===== ABOUT PAGE ===== */
.about-page {
  padding: var(--section-pad);
}

.about-story {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.about-story p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-values {
  background: var(--off-white);
  padding: var(--section-pad);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.value-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
}

.value-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.value-text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-card { max-width: 100%; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content .section-title { text-align: center; }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-detail-card {
    grid-template-columns: 1fr;
  }

  .service-detail-card.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .primary-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    align-items: flex-start;
    gap: 4px;
  }

  .primary-nav.open { display: flex; }

  .nav-toggle { display: flex; }

  .nav-phone { display: none; }

  .wpcf7 .form-row { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 500px) {
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-form-wrap, .contact-info { padding: 30px 24px; }
  .floating-cta { bottom: 16px; right: 16px; font-size: 0.85rem; padding: 12px 18px; }
}

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

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* ===== MISC ===== */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0 !important; }

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

a { color: var(--teal); }

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

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--teal);
  color: white;
  padding: 8px 12px;
  z-index: 9999;
  border-radius: 0 0 8px 0;
  font-size: 0.9rem;
}
.skip-link:focus { top: 0; }

/* WP core alignment classes */
.alignleft  { float: left; margin-right: 24px; margin-bottom: 16px; }
.alignright { float: right; margin-left: 24px; margin-bottom: 16px; }
.aligncenter { display: block; margin: 0 auto 16px; }
