/* ========================================
   SP Cleaning Services - Modern Redesign CSS
   Professional, Elegant, Clean Design
   ======================================== */

:root {
  --primary-purple: #4b2b96;
  --primary-orange: #ff6201;
  --light-blue: #9ec9eb;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --text-dark: #333333;
  --text-gray: #666666;
  --footer-dark: #2d1b5e;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ========================================
   HERO BANNER WITH BLACK OVERLAY
   ======================================== */

.slider-area,
.page-banner-area,
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 315px;
}

.slider-area::before,
.page-banner-area::before,
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.68);
  z-index: 1;
  pointer-events: none;
}

.slider-text,
.page-banner-content,
.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
}

.slider-text h1,
.page-banner-content h1,
.hero-content h1 {
  color: var(--white);
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
  line-height: 1.2;
}

.slider-text p,
.page-banner-content p,
.hero-content p {
  color: var(--white);
  font-size: 18px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

/* Remove legacy shine overlay elements (keep bubbles only) */
#starshine,
.shine {
  display: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Remove purple gradient overlays applied over regular images (keep hero overlays) */
.services-img .bg-opacity,
.single-service-img .overlay,
.portfolio-item .overlay,
.overlay {
  background: transparent !important;
  background-image: none !important;
}

/* ========================================
   OUR CLEANING SERVICES (Home) - Consistent image sizing
   ======================================== */
.service-item .services-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.service-item .services-img img {
  width: 100%;
  height: 360px !important; /* unify desktop image height */
  object-fit: cover;
  display: block;
}

/* Fallback: ensure any responsive image inside service-item respects the unified height */
.about-area .service-item .img-responsive {
  width: 100% !important;
  height: 360px !important;
  object-fit: cover !important;
  display: block !important;
}

@media (max-width: 991px) {
  .service-item .services-img img {
    height: 300px !important; /* tablet */
  }
  .about-area .service-item .img-responsive {
    height: 300px !important;
  }
}

@media (max-width: 767px) {
  .service-item .services-img img {
    height: 220px !important; /* mobile */
  }
  .about-area .service-item .img-responsive {
    height: 220px !important;
  }
}

/* ========================================
   CUSTOMER TESTIMONIALS - Improved readability
   ======================================== */
.reviews-area .review-item {
  border: 1px solid rgba(75, 43, 150, 0.08);
  border-radius: 16px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
  padding: 28px !important;
  height: auto !important;       /* allow content to define height */
  min-height: 220px;             /* keep cards balanced */
}

.reviews-area .review-header {
  border-bottom: 1px dashed #e9e6f3 !important;
  padding-bottom: 12px !important;
  margin-bottom: 14px !important;
}

.reviews-area .review-rating i {
  color: #FFB703 !important;    /* warm gold */
  font-size: 18px !important;
}

.reviews-area .review-source { /* hide source badge/icon */
  display: none !important;
}

.reviews-area .review-content p {
  color: #444 !important;
  font-size: 17px !important;
  line-height: 1.75 !important;
  letter-spacing: 0.2px;
  -webkit-line-clamp: 6 !important;
  line-clamp: 6 !important;
  position: relative;
  padding-left: 26px;
}

.reviews-area .review-content p::before {
  content: "\201C"; /* opening smart quote */
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 32px;
  line-height: 1;
  color: rgba(75, 43, 150, 0.25);
}

.reviews-area .reviewer-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700 !important;
  color: var(--primary-purple, #4b2b96) !important;
  margin-top: 12px !important;
  position: static !important;  /* keep inside flow */
  border-top: none !important;
  padding-top: 0 !important;
}

.reviews-area .reviewer-name::before {
  content: "\f007";            /* FontAwesome user icon */
  font-family: 'FontAwesome';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-purple, #4b2b96), var(--primary-orange, #ff6201));
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(75, 43, 150, 0.2);
}

.reviews-area .google-icon {
  height: 22px !important;
}

@media (max-width: 767px) {
  .reviews-area .review-content p {
    -webkit-line-clamp: 8 !important;
    line-clamp: 8 !important;
    font-size: 16px !important;
  }
}

/* ========================================
   ELEGANT BUBBLE ANIMATION
   ======================================== */

.bubbles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2; /* Above overlay, below text */
  pointer-events: none;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(158, 201, 235, 0.4), rgba(158, 201, 235, 0.1));
  box-shadow: 
    inset 0 0 20px rgba(255, 255, 255, 0.3),
    0 0 20px rgba(158, 201, 235, 0.2);
  animation: floatBubble 15s ease-in-out infinite;
  opacity: 0.6;
}

.bubble::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  width: 40%;
  height: 40%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.6), transparent);
}

.bubble-sm {
  width: 30px;
  height: 30px;
}

.bubble-md {
  width: 60px;
  height: 60px;
}

.bubble-lg {
  width: 100px;
  height: 100px;
}

.bubble-xl {
  width: 140px;
  height: 140px;
}

.bubble:nth-child(1) {
  left: 10%;
  bottom: -100px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.bubble:nth-child(2) {
  left: 25%;
  bottom: -120px;
  animation-delay: 2s;
  animation-duration: 20s;
}

.bubble:nth-child(3) {
  left: 45%;
  bottom: -80px;
  animation-delay: 4s;
  animation-duration: 16s;
}

.bubble:nth-child(4) {
  left: 65%;
  bottom: -150px;
  animation-delay: 6s;
  animation-duration: 22s;
}

.bubble:nth-child(5) {
  left: 80%;
  bottom: -90px;
  animation-delay: 8s;
  animation-duration: 19s;
}

.bubble:nth-child(6) {
  left: 15%;
  bottom: -110px;
  animation-delay: 3s;
  animation-duration: 17s;
}

.bubble:nth-child(7) {
  left: 55%;
  bottom: -130px;
  animation-delay: 5s;
  animation-duration: 21s;
}

.bubble:nth-child(8) {
  left: 90%;
  bottom: -70px;
  animation-delay: 7s;
  animation-duration: 15s;
}

@keyframes floatBubble {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  50% {
    transform: translateY(-400px) translateX(50px) scale(1.1);
    opacity: 0.4;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-800px) translateX(-30px) scale(0.8);
    opacity: 0;
  }
}

/* ========================================
   MODERN BUTTONS
   ======================================== */

.btn-modern,
.btn-primary-modern {
  display: inline-block;
  padding: 14px 32px;
  background: var(--primary-orange);
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 98, 1, 0.3);
  transition: var(--transition);
  cursor: pointer;
}

.btn-modern:hover,
.btn-primary-modern:hover {
  background: var(--primary-purple);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(75, 43, 150, 0.4);
  color: var(--white);
}

.btn-secondary-modern {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--primary-purple);
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  border: 2px solid var(--primary-purple);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-secondary-modern:hover {
  background: var(--primary-purple);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(75, 43, 150, 0.3);
}

/* ========================================
   MODERN CARDS & SECTIONS
   ======================================== */

.modern-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(75, 43, 150, 0.08);
}

.modern-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.section-modern {
  padding: 80px 0;
  position: relative;
}

.section-title-modern {
  text-align: center;
  margin-bottom: 60px;
}

.section-title-modern h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title-modern h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-orange);
  border-radius: 2px;
}

.section-title-modern p {
  font-size: 18px;
  color: var(--text-gray);
  max-width: 700px;
  margin: 20px auto 0;
}

/* ========================================
   CONTENT BANNERS WITH GRADIENTS
   ======================================== */

.content-banner {
  background: linear-gradient(135deg, rgba(75, 43, 150, 0.95), rgba(158, 201, 235, 0.85));
  border-radius: 20px;
  padding: 60px 40px;
  margin: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.content-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotateBanner 20s linear infinite;
}

@keyframes rotateBanner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.content-banner h2,
.content-banner h3 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.content-banner p {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.content-banner .btn-modern {
  background: var(--primary-orange);
  position: relative;
  z-index: 1;
}

.content-banner .btn-modern:hover {
  background: var(--white);
  color: var(--primary-purple);
}

/* ========================================
   MODERN IMAGE FRAMES
   ======================================== */

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.image-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-orange)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
  pointer-events: none;
}

.image-frame:hover::before {
  opacity: 1;
}

.image-frame:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.image-frame:hover img {
  transform: scale(1.05);
}

/* ========================================
   MODERN QUOTE FORM
   ======================================== */

.quote-form-section {
  background: linear-gradient(135deg, rgba(158, 201, 235, 0.1), rgba(75, 43, 150, 0.05));
  border-radius: 20px;
  padding: 50px;
  margin: 60px 0;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.quote-form-title {
  text-align: center;
  margin-bottom: 40px;
}

.quote-form-title h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 10px;
}

.quote-form-title p {
  font-size: 16px;
  color: var(--text-gray);
}

.modern-form-group {
  margin-bottom: 25px;
}

.modern-form-label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modern-form-input,
.modern-form-select,
.modern-form-textarea {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid rgba(75, 43, 150, 0.15);
  border-radius: 12px;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  font-family: inherit;
}

.modern-form-input:focus,
.modern-form-select:focus,
.modern-form-textarea:focus {
  outline: none;
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 3px rgba(75, 43, 150, 0.1);
}

.modern-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.modern-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.math-question {
  background: rgba(255, 98, 1, 0.08);
  border: 2px solid rgba(255, 98, 1, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin: 25px 0;
  text-align: center;
}

.math-question label {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-purple);
  display: block;
  margin-bottom: 12px;
}

.math-question input {
  width: 100px;
  padding: 10px;
  border: 2px solid var(--primary-orange);
  border-radius: 8px;
  font-size: 18px;
  text-align: center;
  font-weight: 600;
}

.form-error {
  color: #dc3545;
  font-size: 14px;
  margin-top: 8px;
  display: none;
}

.form-success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: none;
}

/* ========================================
   FOOTER REDESIGN - DARK PURPLE
   ======================================== */

.footer-modern {
  background: var(--footer-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}

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

.footer-widget {
  margin-bottom: 40px;
}

.footer-widget h3 {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 15px;
}

.footer-widget h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-orange);
  border-radius: 2px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 200px;
  height: auto;
}

.footer-widget p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
  word-break: normal;
  overflow-wrap: anywhere;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

.footer-contact-item i {
  color: var(--primary-orange);
  font-size: 18px;
  margin-right: 2px;
  min-width: 20px;
}

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

.footer-contact-item a:hover {
  color: var(--primary-orange);
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  column-gap: 24px;
}

.footer-menu li {
  margin-bottom: 10px;
  break-inside: avoid;
}

.footer-menu li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  position: relative;
  padding-left: 20px;
  line-height: 1.6;
}

.footer-menu li a::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-orange);
  transition: var(--transition);
}

.footer-menu li a:hover {
  color: var(--white);
  padding-left: 25px;
}

.footer-menu li a:hover::before {
  left: 5px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 98, 1, 0.3);
}

/* Organize services list in two columns on desktop (3rd column widget) */
.footer-top .row > div:nth-child(3) .footer-menu {
  columns: 2;
}

@media (max-width: 991px) {
  .footer-top .row > div:nth-child(3) .footer-menu {
    columns: 1; /* single column on tablet/mobile */
  }
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 25px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 40px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

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

.footer-bottom a:hover {
  color: var(--white);
}

/* Ensure footer links stack vertically on all screen sizes */
.footer-modern .footer-menu {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  columns: initial !important;
  -webkit-columns: initial !important;
  -moz-columns: initial !important;
}

.footer-modern .footer-menu li {
  margin: 0 0 10px 0 !important;
}

.footer-modern .footer-menu li a {
  display: block;
  width: fit-content;
}

/* Remove any special multi-column rule on the 3rd column */
.footer-top .row > div:nth-child(3) .footer-menu {
  columns: 1 !important;
}

/* ========================================
   SERVICES GRID
   ======================================== */

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

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-purple), var(--primary-orange));
  transform: scaleX(0);
  transition: var(--transition);
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(75, 43, 150, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, rgba(75, 43, 150, 0.1), rgba(158, 201, 235, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--primary-purple);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-orange));
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 35px;
  box-shadow: var(--shadow-md);
  position: relative;
  margin: 20px 0;
  border-left: 4px solid var(--primary-orange);
}

.testimonial-quote {
  font-size: 48px;
  color: rgba(75, 43, 150, 0.1);
  position: absolute;
  top: 20px;
  right: 30px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.testimonial-author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
}

.testimonial-author-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-purple);
  margin: 0;
}

.testimonial-author-info p {
  font-size: 14px;
  color: var(--text-gray);
  margin: 0;
}

.testimonial-stars {
  color: var(--primary-orange);
  font-size: 16px;
  margin-top: 5px;
}

/* ========================================
   MOBILE RESPONSIVENESS
   ======================================== */

@media (max-width: 991px) {
  .section-modern {
    padding: 60px 0;
  }
  
  .section-title-modern h2 {
    font-size: 36px;
  }
  
  .content-banner {
    padding: 40px 30px;
  }
  
  .quote-form-section {
    padding: 35px 25px;
  }
  
  .modern-form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .slider-area,
  .page-banner-area,
  .hero-section {
    min-height: 350px;
  }
  
  .slider-text h1,
  .page-banner-content h1,
  .hero-content h1 {
    font-size: 32px;
  }
  
  .slider-text p,
  .page-banner-content p,
  .hero-content p {
    font-size: 16px;
  }
  
  .section-title-modern h2 {
    font-size: 28px;
  }
  
  .section-title-modern p {
    font-size: 16px;
  }
  
  .modern-card {
    padding: 25px;
  }
  
  .content-banner {
    padding: 30px 20px;
    margin: 40px 0;
  }
  
  .quote-form-section {
    padding: 25px 20px;
    margin: 40px 0;
  }
  
  .quote-form-title h3 {
    font-size: 24px;
  }
  
  .btn-modern,
  .btn-primary-modern,
  .btn-secondary-modern {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .footer-modern {
    padding: 40px 0 0;
  }
  
  .footer-widget {
    text-align: center;
  }
  
  .footer-widget h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-contact-item {
    justify-content: center;
  }
  
  .footer-menu li a {
    padding-left: 0;
  }
  
  .footer-menu li a::before {
    display: none;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .bubble-lg,
  .bubble-xl {
    display: none;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

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

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.bg-light-gradient {
  background: linear-gradient(135deg, rgba(158, 201, 235, 0.05), rgba(75, 43, 150, 0.05));
}

.position-relative {
  position: relative;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}
