/*
Theme Name: Pro Power
Theme URI: https://propowerclean.com/
Description: Custom high-performance theme for Pro Power Professional Trash Bin Cleaning (Pixel-Perfect React Migration).
Version: 1.1.0
Author: Antigravity
Author URI: https://agentic.google/
Text Domain: propower
*/

/* ==========================================================================
   1. GLOBAL STYLES (index.css)
   ========================================================================== */
:root {
  --primary: #1879d8;
  --secondary: #0c1a30;
  --accent: #55e6ff;
  --bg-light: #f4f7fa;
  --white: #ffffff;
  --text-main: #333333;
  --text-light: #666666;
  --container-max: 1200px;
  --header-h: 80px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--secondary);
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Global Button Styles */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: #1569bc;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(24, 121, 216, 0.2);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

section {
  padding: 100px 0;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

/* ==========================================================================
   2. HEADER STYLES (Header.css)
   ========================================================================== */
.site-header-wrapper {
  position: fixed;
  top: 30px;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
}

.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.nav-pill {
  background: var(--white);
  height: 80px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  padding: 0 10px 0 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  width: 100%;
  max-width: 1100px;
}

.site-logo-container {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.btn-pay-now-header {
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-pay-now-header:hover {
  background: #1569bc;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(24, 121, 216, 0.2);
}

.floating-logo-img {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
  transition: transform 0.3s ease;
}

.floating-logo-img:hover {
  transform: scale(1.05);
}

.info-badges-wrapper {
  margin-left: 130px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  flex-grow: 1;
  padding-right: 15px;
  transition: all 0.3s ease;
}

.info-badges {
  display: flex;
  gap: 15px;
}

.info-badge {
  background: #f8f9fa;
  padding: 8px 16px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  border: 1px solid #eee;
}

.badge-icon {
  color: var(--primary);
}

.main-navigation ul {
  display: flex;
  gap: 30px;
}

.main-navigation ul li a {
  color: var(--secondary);
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
}

.main-navigation ul li a:hover {
  color: var(--primary);
}

.btn-cta-pill {
  background: #0047AB;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 71, 171, 0.3);
}

.btn-cta-pill:hover {
  background: #003380;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 71, 171, 0.4);
}

.mobile-menu-toggle {
  display: none;
  background: var(--white);
  border: 1.5px solid var(--primary);
  color: var(--primary);
  cursor: pointer;
  padding: 10px;
  border-radius: 12px;
  margin-right: 15px;
  z-index: 1100;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle svg {
  stroke: var(--primary);
}

@media (max-width: 1200px) {
  .nav-pill { max-width: 95%; }
}

@media (max-width: 992px) {
  .mobile-menu-toggle { display: flex; margin-left: auto; }
  .info-badges-wrapper { 
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }
  .nav-content-wrapper {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 30px;
    flex-direction: column;
    gap: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-content-wrapper.show-mobile-nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-navigation ul { flex-direction: column; align-items: center; gap: 20px; }
  .info-badges { gap: 8px; }
  .info-badge { padding: 4px 10px; font-size: 12px; background: transparent; border: none; }
  .header-cta { width: 100%; display: flex; justify-content: center; }
  .btn-cta-pill { width: 100%; justify-content: center; padding: 15px; }
}

@media (max-width: 768px) {
  .site-header-wrapper { top: 15px; }
  .nav-pill { height: 75px; padding-right: 15px; }
  .floating-logo-img { height: 95px; }
  .site-logo-container { left: 0; }
}

@media (max-width: 576px) {
  .nav-pill { height: 65px; border-radius: 35px; }
  .floating-logo-img { height: 80px; }
}

/* ==========================================================================
   3. HERO STYLES (Hero.css)
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.hero-container {
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding-top: 100px;
  padding-bottom: 150px;
  width: 100%;
  max-width: 1550px;
  margin: 0 auto;
  padding-left: 180px;
  padding-right: 180px;
}

.hero-content {
  width: 100%;
  animation: fadeInLeft 1s ease-out;
}

.hero-headline {
  font-size: 72px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
  color: #FFFFFF;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-headline .accent {
  color: #55e6ff;
}

.hero-desc {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
}

.check-circle {
  background: var(--primary);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-solid-blue {
  background: var(--primary);
  color: var(--white);
  padding: 18px 36px;
  border-radius: 60px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(24, 121, 216, 0.3);
  box-sizing: border-box;
  text-decoration: none;
  min-height: 62px;
}

.btn-solid-blue:hover {
  transform: translateY(-3px);
  background: #1569bc;
}

.btn-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.btn-icon-img {
  height: 20px;
  width: auto;
}

.btn-solid-blue:hover .btn-icon-img {
  transform: rotate(-15deg) scale(1.1);
  animation: shake 0.2s infinite;
}

.btn-solid-blue:hover .btn-icon-wrapper::before,
.btn-solid-blue:hover .btn-icon-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 6px;
  height: 6px;
  background: rgba(85, 230, 255, 0.8);
  border-radius: 50%;
  pointer-events: none;
  animation: spray 0.6s linear infinite;
}

@keyframes shake {
  0% { transform: rotate(-15deg) translate(0, 0); }
  50% { transform: rotate(-15deg) translate(-1px, 1px); }
  100% { transform: rotate(-15deg) translate(0, 0); }
}

@keyframes spray {
  0% { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(40px, -20px) scale(0.2); }
}

.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  padding: 16px 36px; /* Adjust padding to account for 2px border */
  border-radius: 60px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-decoration: none;
  min-height: 62px;
}

.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.hero-bottom-bar {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.bottom-grid-container {
  background: rgba(12, 26, 48, 0.9);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  max-width: 1400px; 
  width: 95%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 15px 10px;
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 30px;
  position: relative;
}

.highlight-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.card-icon img {
  height: 42px;
  width: auto;
}

.card-text h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.card-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1550px) { .hero-headline { font-size: 64px; } }
@media (max-width: 1200px) {
  .hero-headline { font-size: 56px; }
  .hero-container { padding-left: 40px; padding-right: 40px; }
  .bottom-grid-container { max-width: 95%; }
}
@media (max-width: 992px) {
  .hero-headline { font-size: 48px; }
  .hero-container { padding-top: 80px; padding-bottom: 120px; padding-left: 30px; padding-right: 30px; }
  .bottom-grid-container { grid-template-columns: repeat(2, 1fr); padding: 20px; gap: 10px; }
}
@media (max-width: 768px) {
  .hero-section { padding-top: 60px; min-height: auto; }
  .hero-headline { font-size: 38px; }
  .hero-headline br { display: none; }
  .hero-desc { font-size: 16px; }
  .hero-desc br { display: none; }
  .hero-bottom-bar { position: relative; bottom: 0; transform: none; left: 0; margin-top: 40px; padding: 0 20px 40px; }
  .bottom-grid-container { grid-template-columns: 1fr; border-radius: 15px; width: 100%; }
}
@media (max-width: 576px) {
  .hero-headline { font-size: 32px; }
  .hero-buttons { flex-direction: column !important; width: 100%; margin-top: 20px; }
  .btn-solid-blue, .btn-outline-white { width: 100%; justify-content: center; }
  .bottom-grid-container { grid-template-columns: 1fr; }
  .highlight-card { padding: 20px; justify-content: flex-start; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .highlight-card:last-child { border-bottom: none; }
  .highlight-card::after { display: none; }
}

/* ==========================================================================
   4. ABOUT STYLES (About.css)
   ========================================================================== */
.about-section {
  padding: 100px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: relative;
  overflow: hidden;
}

.about-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.about-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-text-content { flex: 1; }

.about-text-content .tagline {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1e88e5;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--secondary);
}

.about-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--text-light);
}

.about-image-visual {
  flex: 0 0 450px;
  display: flex;
  justify-content: center;
}

.professional-circle {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 12px solid var(--white);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

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

.about-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.result-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: var(--white);
  transition: transform 0.3s ease;
}

.result-card:hover { transform: translateY(-5px); }

.result-card img { width: 100%; height: 220px; object-fit: cover; }

@media (max-width: 992px) {
  .about-top-row { flex-direction: column; text-align: center; }
  .about-image-visual { order: -1; }
  .about-results-grid { grid-template-columns: repeat(2, 1fr); }
  .about-title { font-size: 38px; }
}

/* ==========================================================================
   5. FEATURES STYLES (Features.css)
   ========================================================================== */
.features-section { padding: 100px 0; background: #fcfdfe; }
.features-list { display: flex; flex-direction: column; gap: 30px; }
.feature-card {
  display: flex;
  align-items: center;
  background: #eef2ff;
  border-radius: 30px;
  padding: 50px;
  gap: 40px;
  transition: transform 0.3s ease;
}
.feature-card:hover { transform: translateY(-5px); }
.feature-icon-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-wave-bg {
  position: absolute;
  width: 140px;
  height: 140px;
  background: #dde6ff;
  border-radius: 50%;
  opacity: 0.6;
}
.feature-img-icon { width: 100px; height: auto; z-index: 1; }
.feature-text-content h3 { font-size: 38px; font-weight: 800; margin-bottom: 18px; color: var(--secondary); }
.feature-text-content p { font-size: 18px; color: var(--text-light); }

@media (max-width: 768px) {
  .feature-card { flex-direction: column; text-align: center; padding: 40px 20px; }
  .feature-text-content h3 { font-size: 28px; }
}

/* ==========================================================================
   6. CTA STYLES (CTA.css)
   ========================================================================== */
.cta-section {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 140px 0;
  color: var(--white);
  overflow: hidden;
}
.cta-container { position: relative; z-index: 2; }
.cta-title { font-size: 72px; font-weight: 900; margin-bottom: 25px; text-transform: uppercase; color: #ffffff; }
.cta-text { font-size: 24px; margin-bottom: 45px; opacity: 0.9; }
.btn-cta-pill-blue {
  background: #1e88e5;
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 60px;
  font-weight: 700;
  display: inline-block;
  box-shadow: 0 10px 25px rgba(30, 136, 229, 0.4);
}
@media (max-width: 992px) { .cta-title { font-size: 48px; } .cta-text { font-size: 18px; } }

/* ==========================================================================
   7. FOOTER STYLES (Footer.css)
   ========================================================================== */
.site-footer {
  position: relative;
  background-size: cover;
  background-position: center bottom;
  color: #ffffff;
  padding: 100px 0 40px;
  overflow: hidden;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 80px;
}

.footer-column {
  flex: 1;
}

.footer-column.branding {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
}

.footer-social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-3px);
  border-color: var(--primary);
}

.footer-logo {
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.footer-column.contact-info {
  flex: 1.25;
  padding-left: 50px;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.footer-column.quick-links {
  flex: 0.75;
  padding-left: 50px;
}

.footer-column h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 35px;
  letter-spacing: -0.5px;
}

.contact-item {
  margin-bottom: 25px;
}

.contact-item .label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  opacity: 0.9;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.contact-item p {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  color: #ffffff;
  line-height: 1.4;
}

.footer-column.quick-links ul {
  list-style: none;
  padding: 0;
}

.footer-column.quick-links ul li {
  margin-bottom: 18px;
}

.footer-column.quick-links ul li a {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-column.quick-links ul li a:hover {
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  text-align: center;
}

.footer-bottom p {
  font-size: 15px;
  color: #ffffff;
  margin: 0;
  opacity: 1;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.dev-link {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 800;
  transition: all 0.3s ease;
  margin-left: 5px;
}

.dev-link:hover {
  color: #1e88e5;
  text-decoration: none;
  opacity: 0.9;
}

@media (max-width: 1200px) {
  .footer-column.contact-info,
  .footer-column.quick-links {
    padding-left: 30px;
  }
}

@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 60px;
  }
  
  .footer-column.contact-info {
    padding-left: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 40px;
    width: 100%;
  }
  
  .footer-column.quick-links {
    padding-left: 0;
    width: 100%;
  }
  
  .footer-logo {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 80px 0 30px;
  }
  
  .footer-column h2 {
    font-size: 32px;
  }
  
  .contact-item p {
    font-size: 16px;
  }
}

/* --- SERVICES PAGE --- */
.services-page {
  padding-top: 0;
  background-color: #ffffff;
}

.services-hero {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  background-size: cover;
  background-position: center;
  padding: 220px 0 150px;
  color: #ffffff;
}

.services-hero-content {
  max-width: 850px;
  text-align: left;
}

.hero-title-main {
  font-family: 'Montserrat', sans-serif;
  font-size: 92px;
  font-weight: 950;
  line-height: 1.05;
  margin-bottom: 30px;
  letter-spacing: -2.5px;
  color: #ffffff !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-subtext {
  font-size: 22px;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 650px;
  margin-bottom: 45px;
  font-weight: 500;
}

.hero-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 50px 0;
}

.hero-checklist li {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #ffffff;
}

.check-icon-blue {
  color: #1e88e5;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

.hero-button-group {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 40px;
}

/* Cleaning Plan Section */
.cleaning-plan-section {
  position: relative;
  background-color: var(--bg-light);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.plan-section-title {
  font-size: 50px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}

.plan-section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.plan-grid-container {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 30px;
  margin-top: 60px;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .plan-grid-container {
    grid-template-columns: 1fr !important;
  }
}

.pricing-card-flex {
  background: var(--white);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  width: 100%;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(24, 121, 216, 0.1);
}

.pricing-card-flex:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(24, 121, 216, 0.12);
  border-color: var(--primary);
}

.plan-pricing h2 {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary);
  margin: 0 0 10px 0;
  line-height: 1;
}

.plan-details-block {
  text-align: center;
  width: 100%;
}

.plan-title-main {
  font-size: 32px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
}

.plan-subtitle-extra {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
  text-transform: uppercase;
}

.plan-description-text {
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.8;
  margin-bottom: 20px;
}

.plan-popular-accent {
  color: #1879d8; /* Brand Primary */
  font-weight: 800;
  font-style: italic;
  margin-bottom: 20px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-disclaimer-notes {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  font-style: italic;
  font-weight: 600;
  margin-top: auto;
}

.plan-buttons-group {
  margin-top: 35px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-select-plan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--primary);
  color: #fff;
  padding: 18px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(24, 121, 216, 0.4);
  border: 4px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  max-width: 320px;
  cursor: pointer;
  margin: 0 auto;
}

.btn-select-plan:hover {
  background: var(--secondary);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(12, 26, 48, 0.5);
  border-color: rgba(255, 255, 255, 0.4);
}


/* Custom Services Help CTA */
.services-help-cta {
  background-size: cover;
  background-position: center;
  padding: 150px 0;
  color: #ffffff;
}

.help-cta-frame {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 35px;
  padding: 85px 70px;
  backdrop-filter: blur(5px);
  background: rgba(0, 31, 77, 0.1);
  position: relative;
  overflow: hidden;
}

.help-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.help-cta-text {
  flex: 1;
}

.help-cta-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 68px;
  font-weight: 950;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #ffffff;
  letter-spacing: -2px;
}

.help-cta-text p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

.btn-contact-now {
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  padding: 20px 50px;
  border-radius: 60px;
  font-weight: 800;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(24, 121, 216, 0.4);
}

.btn-contact-now:hover {
  transform: translateY(-5px) scale(1.05);
  background: #1569bc;
  box-shadow: 0 15px 35px rgba(24, 121, 216, 0.5);
}

.help-cta-image {
  flex: 0 0 450px;
}

.help-cta-image img {
  width: 100%;
  height: 450px;
  border-radius: 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

@media (max-width: 1200px) {
  .help-cta-text h2 {
    font-size: 56px;
  }
  .help-cta-image {
    flex: 0 0 400px;
  }
}

@media (max-width: 992px) {
  .help-cta-content {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
  .help-cta-text p {
    margin-left: auto;
    margin-right: auto;
  }
  .help-cta-image {
    flex: 1;
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .services-help-cta {
    padding: 100px 0;
  }
  .help-cta-frame {
    padding: 60px 40px;
  }
  .help-cta-text h2 {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .services-help-cta {
    padding: 60px 0;
  }
  .help-cta-frame {
    padding: 50px 25px;
    border-radius: 25px;
  }
  .help-cta-text h2 {
    font-size: 34px;
    letter-spacing: -1px;
  }
  .help-cta-text p {
    font-size: 17px;
    margin-bottom: 30px;
  }
  .btn-contact-now {
    width: 100% !important;
    display: block !important;
    text-align: center;
    padding: 18px 20px;
    font-size: 18px;
    box-sizing: border-box;
  }
  .help-cta-image {
    display: block !important;
    width: 100%;
    margin-top: 20px;
  }
  .help-cta-image img {
    height: 300px;
  }
}

/* --- BOOKING PAGE --- */
.booking-page {
  padding-top: 0;
  background-color: #ffffff;
}

/* Booking Hero Section */
.booking-hero {
  position: relative;
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  background-color: #1a2340;
  padding: 220px 0 150px;
  color: #ffffff;
  text-align: center;
}

.booking-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.booking-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 84px;
  font-weight: 950;
  line-height: 1.05;
  margin-bottom: 25px;
  letter-spacing: -2px;
  color: #ffffff !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.text-blue {
  color: #1e88e5;
}

.booking-subtitle {
  font-size: 22px;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 750px;
  margin: 0 auto 50px;
  font-weight: 500;
}

.booking-benefits-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 25px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
  font-size: 15px;
}

.benefit-icon {
  color: #1e88e5;
}

/* Booking Form Section */
.booking-form-section {
  padding: 100px 0 150px;
  background-color: #ffffff;
  margin-top: -80px;
  z-index: 10;
  position: relative;
}

.booking-form-container {
  background: #ffffff;
  max-width: 850px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0, 50, 120, 0.12);
  padding: 60px;
  border: 1px solid #e1e8f0;
}

.booking-form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  padding-bottom: 25px;
  border-bottom: 1px solid #edf2f7;
}

.booking-form-header h2 {
  font-size: 32px;
  font-weight: 900;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
}

.step-indicator {
  background: #1e88e5;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 13px;
}

.booking-form .form-section {
  margin-bottom: 50px;
}

.booking-form .form-section h3 {
  font-size: 16px;
  font-weight: 800;
  color: #1a365d;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-icon {
  color: #1e88e5;
  width: 20px;
  height: 20px;
  stroke: #1e88e5;
  flex-shrink: 0;
}

.booking-form .form-section h3 svg {
  color: #1e88e5;
  stroke: #1e88e5;
  width: 18px;
  height: 18px;
}

.booking-form .form-row {
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
}

.booking-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.booking-form .form-group label {
  font-size: 14px;
  font-weight: 800;
  color: #444;
  margin-bottom: 5px;
  display: block;
}

/* Frequency Selector Style */
.frequency-selector-wp .wpcf7-radio {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  width: 100%;
}

.frequency-selector-wp .wpcf7-list-item label {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 20px 15px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  display: block;
  margin: 0;
}

.frequency-selector-wp .wpcf7-list-item label:hover {
  border-color: #1e88e5;
  background: #f0f7ff;
}

.frequency-selector-wp .wpcf7-list-item input {
  display: none;
}

/* Magic for checked state */
.frequency-selector-wp .wpcf7-list-item:has(input:checked) label {
  background: #1e88e5;
  border-color: #1e88e5;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(30, 136, 229, 0.3);
  transform: translateY(-3px);
}

.frequency-selector-wp .wpcf7-list-item label .wpcf7-list-item-label {
  font-weight: 900;
  font-size: 18px;
}

.booking-form .form-footer {
  margin-top: 60px;
  text-align: center;
}

.booking-form .form-disclaimer {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 35px;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto 35px;
}

.btn-confirm-booking {
  background: #1e88e5;
  color: #ffffff;
  padding: 22px 60px;
  border: none;
  border-radius: 60px;
  font-weight: 900;
  font-size: 19px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 15px 35px rgba(30, 136, 229, 0.4);
}

.btn-confirm-booking:hover {
  background: #1976d2;
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(30, 136, 229, 0.5);
}

@media (max-width: 768px) {
  .frequency-selector-wp span.wpcf7-list-item {
    grid-template-columns: 1fr;
  }
}

/* --- CONTACT PAGE --- */
.contact-page {
  padding-top: 0;
  background-color: #ffffff;
}

/* Contact Hero Section */
.contact-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: #1a2340;
  padding: 220px 0 150px;
  color: #ffffff;
  text-align: center;
}

.contact-hero-content {
  max-width: 800px;
  text-align: left;
}

.contact-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 88px;
  font-weight: 950;
  line-height: 1.05;
  margin-bottom: 30px;
  letter-spacing: -2.5px;
  color: #ffffff;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.contact-hero-subtext {
  font-size: 24px;
  line-height: 1.6;
  opacity: 1;
  max-width: 650px;
  margin-bottom: 50px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.contact-hero-button {
  display: flex;
  align-items: center;
}

.btn-call-now {
  background: #1e88e5;
  color: #ffffff;
  padding: 20px 50px;
  border-radius: 60px;
  font-weight: 800;
  font-size: 20px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(30, 136, 229, 0.4);
}

.btn-call-now:hover {
  background: #1976d2;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(30, 136, 229, 0.6);
  color: #ffffff;
}

/* Get in Touch Section Styles */
.contact-form-section {
  padding: 120px 0;
  background-color: #ffffff;
}

.contact-grid {
  display: flex;
  gap: 100px;
  align-items: flex-start;
}

.contact-info-col {
  flex: 1;
}

.contact-form-col {
  flex: 1.1;
}

.contact-section-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 54px;
  font-weight: 950;
  color: #1e88e5;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}

.contact-section-desc {
  font-size: 19px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 50px;
  max-width: 580px;
  font-weight: 500;
}

.contact-info-cards-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-card {
  display: flex;
  gap: 25px;
  padding: 30px;
  background-color: #f0f7ff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.contact-info-card:hover {
  transform: translateX(10px);
}

.info-card-icon {
  width: 50px;
  height: 50px;
  background-color: transparent;
  color: #1e88e5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card-text h3 {
  font-size: 22px;
  font-weight: 800;
  color: #000;
  margin-bottom: 10px;
}

.info-card-text p {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin: 0;
  font-weight: 600;
}

.info-card-text .sub-detail {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
  font-weight: 500;
}

/* Form Styling */
.contact-form-container {
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  padding: 50px;
}

.pro-power-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row-dual {
  display: flex;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.form-group label {
  font-size: 15px;
  font-weight: 800;
  color: #333;
}

.form-group input, 
.form-group textarea {
  padding: 15px 20px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  background-color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: #1e88e5;
  box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.1);
}

.form-consent {
  font-size: 13px;
  line-height: 1.5;
  color: #666;
  margin: 10px 0;
  font-weight: 500;
}

.btn-send-request {
  background: #1e88e5;
  color: #ffffff;
  padding: 20px;
  border: none;
  border-radius: 50px;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(30, 136, 229, 0.3);
}

.btn-send-request:hover {
  background: #1976d2;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(30, 136, 229, 0.45);
}

/* Responsive Overrides for Get in Touch */
@media (max-width: 1024px) {
  .contact-grid {
    gap: 50px;
  }
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
  .hero-title-main, .booking-hero h1, .contact-hero-title {
    font-size: 56px !important;
  }
  
  .contact-grid {
    flex-direction: column-reverse;
    gap: 60px;
  }
  
  .booking-container {
    margin: -40px 20px 80px;
    padding: 40px 25px;
  }

  .hero-button-group {
    flex-direction: column;
    width: 100%;
    max-width: 350px;
    margin: 40px auto 0;
  }
  
  .btn-solid-blue, .btn-outline-white {
    width: 100%;
    justify-content: center;
  }

  .help-cta-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 60px;
  }
  
  .help-cta-text {
    text-align: center;
  }
  
  .help-cta-text p {
    margin: 0 auto 40px;
  }

  .help-cta-frame {
    padding: 60px 25px;
  }

  .frequency-selector-wp .wpcf7-radio {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-hero {
    padding: 180px 0 120px;
    text-align: center;
    background-position: 70% center;
  }
  
  .contact-hero-content {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  
  .contact-hero-title {
    font-size: 56px;
    letter-spacing: -1.5px;
  }
  
  .contact-hero-subtext {
    margin: 0 auto 40px;
    font-size: 20px;
  }
  
  .contact-hero-button {
    justify-content: center;
  }
  
  .btn-call-now {
    width: 100%;
    max-width: 380px;
    justify-content: center;
  }

  .contact-grid {
    gap: 50px;
  }
}

@media (max-width: 500px) {
  .frequency-selector-wp .wpcf7-radio {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title-main, .booking-hero h1, .contact-hero-title {
    font-size: 38px !important;
  }
  
  .services-hero, .booking-hero, .contact-hero {
    padding: 220px 20px 80px;
    text-align: center;
  }

  .booking-benefits-grid {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
  }

  .benefit-item {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Booking Form Mobile Polish */
  .booking-form-section {
    padding: 60px 0 100px;
    margin-top: -60px;
  }
  
  .booking-form-container {
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 50, 120, 0.08);
  }

  .booking-form-header {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
  }

  .booking-form-header h2 {
    font-size: 24px;
    letter-spacing: -0.5px;
  }

  .booking-form .form-row {
    flex-direction: column;
    gap: 0;
  }

  .booking-form .form-group {
    margin-bottom: 20px;
  }

  .booking-form .form-section {
    margin-bottom: 30px;
  }

  .booking-form .form-section h3 {
    font-size: 14px;
    margin-bottom: 20px;
    justify-content: center;
  }

  .frequency-selector-wp .wpcf7-radio {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .frequency-selector-wp .wpcf7-list-item label {
    padding: 16px;
  }

  .frequency-selector-wp .wpcf7-list-item label .wpcf7-list-item-label {
    font-size: 16px;
  }

  .booking-form .form-footer {
    margin-top: 40px;
  }

  .btn-confirm-booking {
    width: 100%;
    padding: 18px 30px;
    font-size: 17px;
  }

  .contact-hero-subtext {
    margin: 0 auto 30px;
  }

  .contact-hero-button {
    display: flex;
    justify-content: center;
  }

  .btn-call-now {
    width: 100%;
    justify-content: center;
  }

  .contact-hero-title {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .contact-hero-subtext {
    font-size: 18px;
    padding: 0 20px;
  }

  .contact-grid {
    flex-direction: column;
    gap: 70px;
  }
  
  .contact-section-heading {
    text-align: center;
    font-size: 42px;
  }
  
  .contact-section-desc {
    text-align: center;
    margin: 0 auto 50px;
  }
  
  .contact-form-container {
    padding: 35px 25px;
  }

  .contact-section-heading {
    font-size: 34px;
  }
  
  .form-row-dual {
    flex-direction: column;
  }
  
  .contact-info-card {
    padding: 25px 20px;
  }
}

/* ==========================================================================
   FORM STYLES (Contact Form 7)
   ========================================================================== */
.pro-power-form .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 20px;
}

.pro-power-form input[type="text"],
.pro-power-form input[type="email"],
.pro-power-form input[type="tel"],
.pro-power-form select,
.pro-power-form textarea {
  width: 100%;
  padding: 15px 20px;
  background: #f8fbff;
  border: 1.5px solid #e1e8f5;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: var(--secondary);
  transition: all 0.3s ease;
}

.pro-power-form input:focus,
.pro-power-form select:focus,
.pro-power-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(30, 136, 229, 0.1);
}

.pro-power-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  color: var(--secondary);
}

/* Booking Grid */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.booking-grid .full-width {
  grid-column: span 2;
}

@media (max-width: 600px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }
  .booking-grid .full-width {
    grid-column: span 1;
  }
}

/* CF7 Buttons */
.pro-power-form .wpcf7-submit {
  border: none;
  border: 4px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  width: auto;
  min-width: 200px;
  background: var(--primary);
  color: var(--white);
  padding: 15px 35px;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 10px 20px rgba(30, 136, 229, 0.3);
}

.pro-power-form .wpcf7-submit:hover {
  background: #1569bc;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(30, 136, 229, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}


/* CF7 Validation Messages */
.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 14px;
  margin-top: 5px;
  font-weight: 600;
}

.wpcf7-response-output {
  margin: 20px 0 0 !important;
  padding: 15px 20px !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  border: 2px solid transparent !important;
}

.wpcf7-mail-sent-ok {
  background: #e6fffa !important;
  border-color: #38b2ac !important;
  color: #234e52 !important;
}

.wpcf7-validation-errors {
  background: #fff5f5 !important;
  border-color: #feb2b2 !important;
  color: #742a2a !important;
}

/* ==========================================================================
   8. BEFORE & AFTER STYLES (BeforeAfter.css)
   ========================================================================== */
.before-after-section {
  padding: 100px 0;
  background-color: var(--bg-light);
  overflow: hidden;
}

.ba-header {
  text-align: center;
  margin-bottom: 50px;
}

.ba-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--secondary);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 15px;
}

.ba-subtitle {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.ba-carousel-wrapper {
  position: relative;
  width: 100%;
}

.ba-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 30px;
  padding: 20px 0 40px;
  scrollbar-width: none; /* Firefox */
}

.ba-carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.ba-card {
  flex: 0 0 85%;
  max-width: 900px;
  scroll-snap-align: center;
  display: flex;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.ba-image-wrapper {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.ba-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ba-card:hover .ba-image-wrapper img {
  transform: scale(1.03);
}

.ba-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(12, 26, 48, 0.85);
  color: var(--white);
  padding: 8px 24px;
  border-radius: 30px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.label-after {
  background: rgba(24, 121, 216, 0.9); /* Primary Blue */
}

.ba-carousel-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 700;
  margin-top: -10px;
  font-size: 15px;
}

@media (max-width: 992px) {
  .ba-title { font-size: 38px; }
  .ba-card { flex-direction: column; flex: 0 0 90%; }
  .ba-image-wrapper img { height: 350px; }
}

@media (max-width: 576px) {
  .ba-title { font-size: 32px; }
  .ba-image-wrapper img { height: 250px; }
  .ba-card { flex: 0 0 95%; }
}
