/* ================= GLOBAL BASE ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #E6F4F4;
  color: #0f172a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================= HEADER STYLES ================= */
.main-header {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
}
/* ================= RESPONSIVE NAVBAR STYLES ================= */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 20px;
  color: #0f172a;
  cursor: pointer;
}

.mobile-only-btn {
  display: flex;
  margin-top: 10px;
  justify-content: center;
}

.desktop-btn {
  display: none;
}

/* Mobile Screen Layout (< 768px) */
@media (max-width: 767px) {
  .main-header {
    position: relative;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 24px;
    right: 24px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    gap: 16px;
    z-index: 100;
  }

  .nav-menu.active {
    display: flex;
    animation: fadeInDown 0.3s ease;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding-left: 12px;
    margin-top: 4px;
    background-color: #f8fafc;
  }
}

/* Desktop Screen Layout (>= 768px) */
@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }

  .mobile-only-btn {
    display: none;
  }

  .desktop-btn {
    display: inline-flex;
  }

  .nav-menu {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition: color 0.3s ease;
  padding-bottom: 2px;
}

.nav-link:hover, .nav-link.active {
  color: #008B8B;
}

.nav-link.active {
  border-bottom: 2px solid #E31E24;
}

.dropdown-wrapper {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-icon {
  font-size: 10px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  width: 200px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 50;
}

.dropdown-wrapper:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-item {
  display: block;
  padding: 12px 20px;
  color: #334155;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-item:hover {
  background-color: #f8fafc;
  color: #008B8B;
}

.header-btn {
  padding: 10px 20px;
  background-color: #ffffff;
  color: #0f172a;
  font-weight: 700;
  font-size: 14px;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.header-btn i {
  color: #E31E24;
}

.header-btn:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ================= GALLERY SECTION ================= */
.gallery-section {
  padding: 40px 0 80px 0;
}

.header-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .header-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.section-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #008B8B;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.tag-line {
  width: 24px;
  height: 2px;
  background-color: #E31E24;
}

.main-heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
}

.description {
  max-width: 480px;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
}

/* Equal Image Dimensions Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-overlay span {
  font-weight: 700;
  font-size: 16px;
}

.expand-icon {
  font-size: 18px;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ================= LIGHTBOX MODAL ================= */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation: zoomIn 0.3s ease;
}

.lightbox-caption {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-top: 16px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 40px;
  cursor: pointer;
  transition: color 0.2s ease;
  z-index: 1001;
}

.lightbox-close:hover {
  color: #E31E24;
}

@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ================= FOOTER STYLES ================= */
.site-footer {
  background-color: #020617;
  color: #94a3b8;
  padding: 64px 0 24px 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-logo-img {
  width: 100%;
  margin-bottom: 16px;
}

.footer-about {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: #008B8B;
}

.footer-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links, .contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a, .contact-info a, .contact-info span {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover, .contact-info a:hover {
  color: #ffffff;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  color: #E31E24;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  font-size: 13px;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.designer-tag a {
  color: #008B8B;
  text-decoration: none;
  font-weight: 600;
}

/* ==========================================================================
   CONTACT PAGE SPECIFIC STYLES
   ========================================================================== */
.service-hero {
  padding: 32px 0 64px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-card, 
.hero-form-box, 
.map-card {
  background-color: #ffffff;
  border-radius: 28px;
  padding: 36px;
  border: 1px solid rgba(0, 139, 139, 0.12);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
}

.card-text {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 14px;
  background-color: #E6F4F4;
  color: #008B8B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-detail-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: #020617;
  margin-bottom: 2px;
}

.contact-detail-item p, 
.contact-detail-item a {
  font-size: 13.5px;
  color: #475569;
  text-decoration: none;
  font-weight: 500;
}

.contact-detail-item a:hover {
  color: #E31E24;
}

/* Contact Form Styling */
.form-title {
  font-size: 22px;
  font-weight: 800;
  color: #020617;
  margin-bottom: 4px;
}

.form-subtext {
  font-size: 13.5px;
  color: #64748b;
  margin-bottom: 20px;
}

.cf7-custom-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cf7-custom-form .form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  font-family: inherit;
  font-size: 14px;
  color: #020617;
  outline: none;
  background-color: #f8fafc;
  transition: all 0.3s ease;
}

.cf7-custom-form .form-control:focus {
  border-color: #008B8B;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 139, 139, 0.1);
}

.cf7-custom-form select.form-control {
  cursor: pointer;
}

.cf7-custom-form .textarea-input {
  resize: vertical;
  min-height: 110px;
}

.btn-submit {
  width: 100%;
  background-color: #E31E24;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 14px;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
  background-color: #c7171c;
  transform: translateY(-2px);
}

/* Google Map Wrapper */
.map-section {
  padding-bottom: 64px;
}

.map-embed-wrapper {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 139, 139, 0.15);
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}


/* ==========================================================================
   ABOUT US PAGE SPECIFIC STYLES
   ========================================================================== */
.about-hero-section {
  padding: 40px 0 64px 0;
}

/* Top Grid Layout */
.about-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
  align-items: start;
}

@media (min-width: 1024px) {
  .about-top-grid {
    grid-template-columns: 7fr 5fr;
  }
}

.about-desc-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .about-desc-col {
    align-items: flex-end;
    text-align: right;
  }
}

.about-lead-text {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 440px;
}

.btn-dark-pill {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
  background-color: #020617;
  color: #ffffff;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.btn-dark-pill:hover {
  background-color: #1e293b;
}

.btn-arrow-icon {
  width: 28px;
  height: 28px;
  background-color: #E31E24;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: transform 0.2s ease;
}

.btn-dark-pill:hover .btn-arrow-icon {
  transform: translateX(3px);
}

/* Main Grid Layout (Stats + Review) */
.about-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .about-main-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.stats-col-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .stats-col-wrapper {
    grid-template-columns: 7fr 5fr;
  }
}

.main-about-img-box {
  height: 360px;
  border-radius: 32px;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

@media (min-width: 640px) {
  .main-about-img-box {
    height: 420px;
  }
}

.main-about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-badges-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  padding: 24px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.stat-teal {
  background-color: #ffffff;
  border: 1px solid rgba(0, 139, 139, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.stat-dark {
  background-color: #020617;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 4px;
}

.stat-teal .stat-number {
  color: #008B8B;
}

.stat-teal .stat-number span {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
}

.stat-dark .stat-number {
  color: #ffffff;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.stat-teal .stat-label {
  color: #475569;
}

.stat-dark .stat-label {
  color: #94a3b8;
}

/* Review Slider Card */
.review-slider-wrapper {
  display: flex;
}

.review-card {
  position: relative;
  width: 100%;
  border-radius: 36px;
  background: linear-gradient(135deg, #ffffff 0%, #e6f4f4 100%);
  padding: 32px;
  border: 1px solid rgba(0, 139, 139, 0.2);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  min-height: 380px;
}

@media (min-width: 640px) {
  .review-card {
    padding: 40px;
  }
}

.quote-bg-icon {
  position: absolute;
  top: 24px;
  left: 24px;
  color: rgba(0, 139, 139, 0.12);
  pointer-events: none;
  font-size: 72px;
}

.slider-content-area {
  position: relative;
  z-index: 10;
  margin-top: 100px;
  margin-bottom: auto;
}

.review-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.review-slide.active {
  display: block;
  opacity: 1;
}

.star-rating {
  display: flex;
  gap: 4px;
  color: #fbbf24;
  font-size: 12px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 18px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.6;
  margin-bottom: 24px;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-avatar.border-teal {
  border: 2px solid #008B8B;
}

.reviewer-avatar.border-red {
  border: 2px solid #E31E24;
}

.reviewer-name {
  font-weight: 700;
  font-size: 14px;
  color: #020617;
}

.reviewer-role {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

/* Slider Navigation Controls */
.slider-controls-row {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 139, 139, 0.2);
  margin-top: 16px;
}

.dots-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background-color: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-dot.active {
  background-color: #008B8B;
  width: 24px;
}

.arrow-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid rgba(0, 139, 139, 0.2);
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.slider-arrow-btn:hover {
  background-color: #008B8B;
  color: #ffffff;
  border-color: #008B8B;
}

/* Founder Section */
.about-founder-section {
  padding: 32px 0 64px 0;
}

.founder-card {
  background-color: #ffffff;
  border-radius: 32px;
  padding: 32px;
  border: 1px solid rgba(0, 139, 139, 0.12);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 1024px) {
  .founder-card {
    grid-template-columns: 5fr 7fr;
    padding: 48px;
  }
}

.founder-img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  aspect-ratio: 4 / 5;
}

.founder-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  padding: 8px 16px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.founder-badge i {
  color: #008B8B;
}

.founder-quote {
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
  font-style: italic;
  margin: 16px 0 24px 0;
}

.hiring-process-box {
  background-color: #E6F4F4;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(0, 139, 139, 0.15);
}

.process-box-title {
  font-size: 14px;
  font-weight: 700;
  color: #020617;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.process-box-title i {
  color: #008B8B;
}

.process-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.process-list li {
  font-size: 13.5px;
  color: #475569;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.process-list i {
  color: #E31E24;
  margin-top: 3px;
  font-size: 13px;
}

/* History / Timeline Section */
.history-section {
  padding-bottom: 80px;
}

.header-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .header-row {
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
  }
}

.description {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
}

.desktop-only {
  display: none;
}

@media (min-width: 640px) {
  .desktop-only {
    display: inline;
  }
}

.timeline-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .timeline-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .timeline-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.timeline-item {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(0, 139, 139, 0.12);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-4px);
}

.timeline-year {
  font-size: 28px;
  font-weight: 900;
  color: #008B8B;
  margin-bottom: 16px;
}

.timeline-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: #E6F4F4;
  color: #E31E24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 12px;
}

.timeline-title {
  font-size: 16px;
  font-weight: 700;
  color: #020617;
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

/* ==========================================================================
   HOMEPAGE SPECIFIC STYLES
   ========================================================================== */

/* 1. HERO SECTION
   ========================================================================== */
.hero-section {
  max-width: var(--max-width, 1280px);
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
  }
  .hero-content { grid-column: span 6; }
  .hero-slider-wrapper { grid-column: span 6; }
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.25rem; } }

.hero-description {
  color: #475569;
  font-size: 1rem;
  max-width: 32rem;
  margin-bottom: 2rem;
  line-height: 1.625;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

/* Hero Slider */
.hero-slider-wrapper {
  position: relative;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 440px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 4px solid #ffffff;
  background-color: #030712;
}

@media (min-width: 640px) { .hero-slider { height: 500px; } }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.6s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 10;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  color: #ffffff;
  z-index: 15;
}

/* Proof Bar */
.proof-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 139, 139, 0.2);
}

.proof-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  border-radius: 1rem;
  border: 1px solid #ffffff;
}

/* 2. WHY CHOOSE US SECTION
   ========================================================================== */
.why-us-section {
  max-width: var(--max-width, 1280px);
  margin: 80px auto 0;
  padding: 0 1.5rem;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .why-us-grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .gallery-col { grid-column: span 6; }
  .features-col { grid-column: span 6; padding-left: 1.5rem; }
}

.gallery-col {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.img-box-large {
  grid-column: span 6;
  height: 340px;
  border-radius: 24px;
  overflow: hidden;
  border: 4px solid #ffffff;
}

.img-box-stacked {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.img-box-small {
  height: 162px;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid #ffffff;
}

.features-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-col { grid-template-columns: repeat(2, 1fr); }
}

/* 3. HOMEPAGE SERVICES & PROCESS GRIDS
   ========================================================================== */
.home-services-grid, .home-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .home-services-grid, .home-process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .home-services-grid, .home-process-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card-home, .process-card-home {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.service-card-home:hover {
  transform: translateY(-4px);
}

/* 4. POOL TRANSFORMATION & CTA BANNER
   ========================================================================== */
.pool-comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pool-comparison-grid { grid-template-columns: repeat(2, 1fr); }
}

.home-cta-banner {
  background-color: #ffffff;
  border-radius: 2rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 4rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

@media (min-width: 1024px) {
  .home-cta-banner { grid-template-columns: repeat(2, 1fr); }
}

.cta-banner-content { padding: 3rem 2rem; }
.cta-banner-image { height: 100%; min-height: 280px; }
.cta-banner-image img { width: 100%; height: 100%; object-fit: cover; }

/* 5. HOMEPAGE REVIEWS & GALLERY
   ========================================================================== */
.home-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) { .home-gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .home-gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.home-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) { .home-reviews-grid { grid-template-columns: repeat(3, 1fr); } }

















































* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #E6F4F4;
  color: #0f172a;
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.desktop-only {
  display: none;
}

@media (min-width: 640px) {
  .desktop-only { 
    display: block; 
  }
}

/* ================= 2. REUSABLE HEADER STYLES ================= */
.header-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease-out forwards;
}

@media (min-width: 1024px) {
  .header-row {
    grid-template-columns: 7fr 5fr;
  }
}

.section-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.tag-line {
  width: 16px;
  height: 2px;
  background-color: #E31E24;
}

.main-heading {
  font-size: 36px;
  font-weight: 800;
  color: #020617;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

@media (min-width: 640px) {
  .main-heading { font-size: 48px; }
}

@media (min-width: 1024px) {
  .main-heading { font-size: 56px; }
}

.header-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  padding-top: 8px;
}

@media (min-width: 1024px) {
  .header-right {
    padding-left: 24px;
  }
}

.description {
  color: #475569;
  font-size: 17px;
  line-height: 1.6;
  max-width: 440px;
}

.highlight-dot {
  color: #E31E24;
  font-size: 10px;
  vertical-align: middle;
}

/* ================= 3. SERVICES SECTION ================= */
.services-section {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: fadeInUp 0.8s ease-out forwards;
}

.service-card:hover {
  transform: translateY(-8px);
}

.card-image-wrapper {
  height: 260px;
  border-radius: 28px;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  background-color: #cbd5e1;
  position: relative;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .card-image-wrapper img {
  transform: scale(1.08);
}

.card-content {
  padding: 0 4px;
}

.service-title {
  font-size: 18px;
  font-weight: 700;
  color: #020617;
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-description {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  font-weight: 500;
}

/* ================= 4. CTA BANNER SECTION ================= */
.cta-section {
  padding: 64px 0;
}

.cta-banner-card {
  background-color: #D9EEEE;
  border-radius: 36px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  border: 1px solid rgba(0, 139, 139, 0.15);
  animation: fadeInUp 0.8s ease-out forwards;
}

@media (min-width: 1024px) {
  .cta-banner-card {
    grid-template-columns: 5fr 7fr;
    padding: 48px 56px;
    gap: 48px;
  }
}

.cta-left {
  display: flex;
  flex-direction: column;
}

.cta-heading {
  font-size: 32px;
  font-weight: 800;
  color: #020617;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .cta-heading { font-size: 42px; }
}

@media (min-width: 1024px) {
  .cta-heading { font-size: 48px; }
}

.floating-info-card {
  background-color: #ffffff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  max-width: 420px;
  animation: float 4s ease-in-out infinite;
}

.icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: #E6F4F4;
  color: #008B8B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}

.card-text {
  font-size: 13px;
  color: #475569;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  background-color: #020617;
  color: #ffffff;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #1e293b;
  box-shadow: 0 8px 15px rgba(2, 6, 23, 0.2);
}

.btn-icon {
  width: 26px;
  height: 26px;
  background-color: #E31E24;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
  transform: translateX(4px);
}

.cta-right {
  width: 100%;
}

.cta-image-wrapper {
  height: 320px;
  border-radius: 32px;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.08);
}

@media (min-width: 640px) {
  .cta-image-wrapper { height: 380px; }
}

@media (min-width: 1024px) {
  .cta-image-wrapper { height: 440px; }
}

.cta-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cta-image-wrapper:hover img {
  transform: scale(1.05);
}

/* ================= 5. OUR CLIENTS SECTION ================= */
.clients-section {
  padding: 64px 0;
}

.clients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.client-card {
  background-color: #ffffff;
  border-radius: 28px;
  padding: 16px;
  border: 1px solid rgba(0, 139, 139, 0.12);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.8s ease-out forwards;
}

.client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 25px -5px rgba(0, 139, 139, 0.15);
}

.location-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background-color: rgba(2, 6, 23, 0.75);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.location-badge i {
  color: #E31E24;
}

.client-name {
  font-size: 18px;
  font-weight: 700;
  color: #020617;
  margin-bottom: 2px;
}

.client-type {
  font-size: 13px;
  color: #008B8B;
  font-weight: 600;
}

/* ================= 6. GALLERY SECTION ================= */
.gallery-section {
  padding: 64px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  height: 260px;
  border-radius: 24px;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

@media (min-width: 1024px) {
  .gallery-item.large {
    grid-column: span 2;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.8), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-overlay span {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* ================= 7. GOOGLE REVIEWS SECTION ================= */
.reviews-section {
  padding: 64px 0;
}

.reviews-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}

.reviews-header .section-tag {
  justify-content: center;
}

.google-rating-badge {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  padding: 10px 20px;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 139, 139, 0.1);
  transition: transform 0.3s ease;
}

.google-rating-badge:hover {
  transform: scale(1.03);
}

.google-icon {
  color: #4285F4;
  font-size: 20px;
}

.rating-score {
  font-weight: 800;
  color: #020617;
  font-size: 16px;
}

.stars {
  color: #FBBC05;
  display: flex;
  gap: 2px;
  font-size: 13px;
}

.total-reviews {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* .review-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(0, 139, 139, 0.12);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
} */

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px -5px rgba(0, 0, 0, 0.08);
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #E31E24;
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.avatar.bg-blue { background-color: #0284c7; }
.avatar.bg-green { background-color: #16a34a; }

.user-name {
  font-size: 15px;
  font-weight: 700;
  color: #020617;
}

.review-date {
  font-size: 12px;
  color: #94a3b8;
}

.review-google-icon {
  color: #4285F4;
  font-size: 18px;
}

.card-stars {
  color: #FBBC05;
  font-size: 13px;
  display: flex;
  gap: 2px;
}

.review-text {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.6;
  font-weight: 500;
}

/* ================= 8. FOOTER SECTION ================= */
.site-footer {
  background-color: #020617;
  color: #ffffff;
  padding-top: 64px;
  margin-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 4fr 2fr 2fr 4fr;
  }
}

.footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo span {
  color: #E31E24;
}

.footer-about {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  background-color: #E31E24;
  transform: translateY(-3px);
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.contact-info {
  list-style: none;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #94a3b8;
  font-size: 13px;
  margin-bottom: 12px;
}

.contact-info i {
  color: #E31E24;
  font-size: 14px;
  width: 16px;
}

.contact-info a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: #64748b;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.red-text {
  color: #E31E24;
}

/* ================= 9. ANIMATIONS & KEYFRAMES ================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0px);
  }
}


/* ================= OUR PROCESS SECTION ================= */
.process-section {
  padding: 64px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-card {
  background-color: #ffffff;
  border-radius: 28px;
  padding: 28px 24px;
  border: 1px solid rgba(0, 139, 139, 0.12);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.8s ease-out forwards;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 25px -5px rgba(0, 139, 139, 0.15);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 28px;
  font-weight: 800;
  color: rgba(2, 6, 23, 0.08);
}

.process-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background-color: #E6F4F4;
  color: #008B8B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.process-card:hover .process-icon {
  background-color: #E31E24;
  color: #ffffff;
}

.process-title {
  font-size: 17px;
  font-weight: 700;
  color: #020617;
  margin-bottom: 8px;
}

.process-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  font-weight: 500;
}

/* ================= SWIMMING POOL BEFORE / AFTER ================= */
.pool-section {
  padding: 64px 0;
}

.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 8px;
}

.pool-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .pool-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pool-card {
  background-color: #ffffff;
  border-radius: 32px;
  padding: 20px;
  border: 1px solid rgba(0, 139, 139, 0.12);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease;
}

.pool-card:hover {
  transform: translateY(-4px);
}

.status-badge {
  position: absolute;
  top: 32px;
  left: 32px;
  z-index: 2;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.before-badge {
  background-color: #E31E24;
}

.after-badge {
  background-color: #16a34a;
}

.pool-image-wrapper {
  height: 280px;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.pool-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pool-card:hover .pool-image-wrapper img {
  transform: scale(1.05);
}

.pool-card-content {
  padding: 0 8px 8px 8px;
}

.pool-title {
  font-size: 20px;
  font-weight: 700;
  color: #020617;
  margin-bottom: 6px;
}

.pool-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.5;
  font-weight: 500;
}

/* ================= ABOUT FOUNDER SECTION ================= */
.about-founder-section {
  padding: 64px 0;
}

.founder-card {
  background-color: #ffffff;
  border-radius: 36px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  border: 1px solid rgba(0, 139, 139, 0.12);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
}

@media (min-width: 1024px) {
  .founder-card {
    grid-template-columns: 5fr 7fr;
    padding: 48px;
  }
}

.founder-img-wrapper {
  position: relative;
  height: 380px;
  border-radius: 28px;
  overflow: hidden;
}

.founder-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.founder-card:hover .founder-img-wrapper img {
  transform: scale(1.04);
}

.founder-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background-color: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.founder-badge i {
  color: #E31E24;
}

.founder-quote {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  font-style: italic;
  margin-top: 16px;
  margin-bottom: 24px;
}

.hiring-process-box {
  background-color: #E6F4F4;
  border-radius: 20px;
  padding: 20px 24px;
  border: 1px solid rgba(0, 139, 139, 0.15);
}

.process-box-title {
  font-size: 15px;
  font-weight: 700;
  color: #020617;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.process-box-title i {
  color: #008B8B;
}

.process-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.process-list li {
  font-size: 13px;
  color: #334155;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.process-list li i {
  color: #E31E24;
  font-size: 14px;
}

/* ================= HISTORY & TIMELINE SECTION ================= */
.history-section {
  padding: 64px 0;
}

.timeline-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}

@media (min-width: 640px) {
  .timeline-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .timeline-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
}

.timeline-year {
  display: inline-block;
  align-self: flex-start;
  background-color: #E31E24;
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  padding: 4px 14px;
  border-radius: 9999px;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(227, 30, 36, 0.2);
}

.timeline-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(0, 139, 139, 0.12);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 25px -5px rgba(0, 139, 139, 0.15);
}

.timeline-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background-color: #E6F4F4;
  color: #008B8B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}

.timeline-title {
  font-size: 16px;
  font-weight: 700;
  color: #020617;
  margin-bottom: 8px;
  line-height: 1.3;
}

.timeline-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  font-weight: 500;
}

/* ================= HERO CTA BUTTONS ================= */
.hero-action-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 12px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 2px solid #008B8B;
  color: #008B8B;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #008B8B;
  color: #ffffff;
}

/* ================= SUITABLE GRID ================= */
.service-details-section {
  padding: 48px 0;
}

.suitable-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .suitable-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.suitable-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(0, 139, 139, 0.12);
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.suitable-card i {
  font-size: 28px;
  color: #E31E24;
  margin-bottom: 10px;
}

.suitable-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #020617;
}

/* ================= BENEFIT CARDS ================= */
.benefits-section {
  padding: 64px 0;
}

.card-content-box {
  background-color: #ffffff;
  padding: 28px 20px;
  border-radius: 28px;
  border: 1px solid rgba(0, 139, 139, 0.12);
  height: 100%;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background-color: #E6F4F4;
  color: #008B8B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}

/* ================= LOCATIONS SECTION ================= */
.locations-section {
  padding: 64px 0;
}

.locations-card {
  background-color: #ffffff;
  border-radius: 36px;
  padding: 36px;
  border: 1px solid rgba(0, 139, 139, 0.12);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
}

.areas-badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.area-badge {
  background-color: #E6F4F4;
  color: #020617;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 139, 139, 0.15);
}

.area-badge i {
  color: #E31E24;
}

/* ================= FAQ SECTION ================= */
.faq-section {
  padding: 64px 0;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: #ffffff;
  padding: 20px 24px;
  border-radius: 20px;
  border: 1px solid rgba(0, 139, 139, 0.12);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.faq-question {
  font-size: 16px;
  font-weight: 700;
  color: #020617;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-question i {
  color: #008B8B;
}

.faq-answer {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
  padding-left: 26px;
  font-weight: 500;
}

/* ================= HERO LAYOUT ================= */
.service-hero {
  padding: 48px 0;
}

.hero-card {
  background-color: #ffffff;
  border-radius: 36px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  border: 1px solid rgba(0, 139, 139, 0.12);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
}

@media (min-width: 1024px) {
  .hero-card {
    grid-template-columns: 7fr 5fr;
    padding: 48px;
  }
}

.tagline-sub {
  font-size: 18px;
  font-weight: 700;
  color: #E31E24;
  margin-top: -6px;
  margin-bottom: 16px;
}

.hero-img-box {
  height: 340px;
  border-radius: 28px;
  overflow: hidden;
}

.hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-action-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 2px solid #008B8B;
  color: #008B8B;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #008B8B;
  color: #ffffff;
}

/* ================= IDEAL FOR BOX ================= */
.info-section {
  padding: 48px 0;
}

.ideal-for-box {
  background-color: #E6F4F4;
  border-radius: 28px;
  padding: 28px;
  margin-top: 32px;
  border: 1px solid rgba(0, 139, 139, 0.15);
}

.ideal-title {
  font-size: 16px;
  font-weight: 800;
  color: #020617;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ideal-title i {
  color: #008B8B;
}

.ideal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 768px) {
  .ideal-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.ideal-item {
  background-color: #ffffff;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 700;
  color: #020617;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.ideal-item i {
  color: #E31E24;
}

.ideal-note {
  font-size: 13.5px;
  font-weight: 600;
  color: #475569;
  margin-top: 20px;
}

/* ================= BENEFITS GRID ================= */
.benefits-section {
  padding: 64px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(0, 139, 139, 0.12);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.benefit-card p {
  font-size: 14px;
  font-weight: 700;
  color: #020617;
  line-height: 1.4;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 16px;
  background-color: #E6F4F4;
  color: #008B8B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* ================= LOCATIONS & TYPES ================= */
.locations-section {
  padding: 64px 0;
}

.locations-card {
  background-color: #ffffff;
  border-radius: 36px;
  padding: 36px;
  border: 1px solid rgba(0, 139, 139, 0.12);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
}

.locations-subgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .locations-subgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.subgrid-title {
  font-size: 16px;
  font-weight: 700;
  color: #020617;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.subgrid-title i {
  color: #008B8B;
}

.mt-4 {
  margin-top: 28px;
}

.offer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-list li {
  font-size: 13.5px;
  color: #475569;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.offer-list li i {
  color: #E31E24;
  margin-top: 3px;
}

.areas-badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.area-badge {
  background-color: #E6F4F4;
  color: #020617;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 139, 139, 0.15);
}

.area-badge i {
  color: #E31E24;
}

/* ================= FAQ ACCORDION ================= */
.faq-section {
  padding: 64px 0;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0, 139, 139, 0.12);
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.faq-question {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 700;
  color: #020617;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question i.fa-circle-question {
  color: #008B8B;
  margin-right: 8px;
}

.faq-icon {
  font-size: 14px;
  color: #64748b;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  background-color: #f8fafc;
  padding: 0 24px;
}

.faq-answer p {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.6;
  font-weight: 500;
}

.faq-item.active {
  border-color: #008B8B;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #E31E24;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 16px 24px 20px 24px;
}


/* ================= WASHROOM SPECIFIC CUSTOM CSS ================= */
.scope-card {
  background-color: #ffffff;
  border-radius: 28px;
  padding: 32px;
  margin-top: 32px;
  border: 1px solid rgba(0, 139, 139, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.scope-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 768px) {
  .scope-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.scope-item {
  background-color: #f8fafc;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: #020617;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e2e8f0;
}

.scope-item i {
  color: #008B8B;
}

.audience-box, .tech-box {
  background-color: #ffffff;
  border-radius: 28px;
  padding: 32px;
  border: 1px solid rgba(0, 139, 139, 0.12);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.mb-3 {
  margin-bottom: 16px;
}

.mb-2 {
  margin-bottom: 8px;
}

/* ================= CONTACT PAGE STYLES ================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 6fr 6fr;
  }
}

.contact-info-card {
  background-color: #ffffff;
  border-radius: 32px;
  padding: 36px;
  border: 1px solid rgba(0, 139, 139, 0.12);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 14px;
  background-color: #E6F4F4;
  color: #008B8B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-detail-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: #020617;
  margin-bottom: 2px;
}

.contact-detail-item p, 
.contact-detail-item a {
  font-size: 13.5px;
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-detail-item a:hover {
  color: #E31E24;
}

.cf7-custom-form .textarea-input {
  resize: vertical;
  min-height: 100px;
}

/* ================= MAP SECTION ================= */
.map-section {
  padding: 0 0 64px 0;
}

.map-card {
  background-color: #ffffff;
  border-radius: 36px;
  padding: 36px;
  border: 1px solid rgba(0, 139, 139, 0.12);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
}

.map-embed-wrapper {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 139, 139, 0.15);
}

.mb-4 {
  margin-bottom: 24px;
}

/* ================= FORM SPECIFIC STYLES ================= */
.hero-form-box {
  background-color: #ffffff;
  border-radius: 28px;
  padding: 32px;
  border: 1px solid rgba(0, 139, 139, 0.15);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.form-title {
  font-size: 22px;
  font-weight: 800;
  color: #020617;
  margin-bottom: 4px;
}

.form-subtext {
  font-size: 13.5px;
  color: #64748b;
  margin-bottom: 20px;
}

.cf7-custom-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cf7-custom-form .form-group {
  width: 100%;
}

.cf7-custom-form .form-control {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  font-family: inherit;
  font-size: 14px;
  color: #020617;
  outline: none;
  background-color: #f8fafc;
  transition: all 0.3s ease;
}

.cf7-custom-form .form-control:focus {
  border-color: #008B8B;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 139, 139, 0.1);
}

.cf7-custom-form textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.cf7-custom-form select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%3c64748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  cursor: pointer;
}

.cf7-custom-form .btn-submit {
  width: 100%;
  background-color: #E31E24;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 14px;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cf7-custom-form .btn-submit:hover {
  background-color: #c7171c;
  transform: translateY(-2px);
}
















/* ROOT VARIABLES & RESET */
:root {
  --brand-red: #E31E24;
  --brand-teal: #008B8B;
  --bg-soft-teal: #E6F4F4;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.site-body {
  background-color: var(--bg-soft-teal);
  color: var(--slate-900);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* NAVBAR */
.main-header {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-logo {
  max-height: 50px;
  width: auto;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-700);
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
}

.nav-link:hover {
  color: var(--brand-teal);
  transition: color 0.2s;
}

.nav-link.active {
  color: var(--slate-900);
  border-bottom: 2px solid var(--brand-red);
  padding-bottom: 2px;
}

.dropdown-wrapper {
  position: relative;
}

.dropdown-wrapper:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.arrow-down {
  font-size: 10px;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 8px;
  width: 208px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 50;
}

.dropdown-item {
  display: block;
  padding: 12px 20px;
  color: var(--slate-700);
}

.dropdown-item:hover {
  background-color: #f8fafc;
  color: var(--brand-teal);
}

.btn-phone {
  padding: 10px 20px;
  background: #ffffff;
  color: var(--slate-900);
  font-weight: 700;
  font-size: 14px;
  border-radius: 9999px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--slate-200);
  transition: all 0.2s;
}

.btn-phone:hover {
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.phone-icon {
  color: var(--brand-red);
}

/* HERO SECTION */
.hero-section {
  max-width: 1280px;
  width: 100%;
  margin: auto;
  padding: 32px 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 48px;
  }
  .hero-left {
    grid-column: span 6;
  }
  .hero-right {
    grid-column: span 6;
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--slate-950);
  line-height: 1.08;
  margin-bottom: 24px;
}

@media (min-width: 640px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.25rem; } }

.highlight-red {
  color: var(--brand-red);
}

.hero-desc {
  color: var(--slate-600);
  font-size: 1rem;
  max-width: 32rem;
  margin-bottom: 32px;
  line-height: 1.625;
}

.cta-button-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-black {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  background: var(--slate-950);
  color: #ffffff;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.2s;
}

.btn-black:hover {
  background: #1e293b;
}

.btn-arrow-circle {
  width: 28px;
  height: 28px;
  background: #ffffff;
  color: var(--slate-950);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.btn-arrow-circle.red-bg {
  background: var(--brand-red);
  color: #ffffff;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--brand-teal);
  color: #ffffff;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.2s;
}

.btn-whatsapp:hover {
  background: #006666;
}

/* Proof Bar */
.proof-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 139, 139, 0.2);
}

.proof-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  padding: 8px 16px 8px 8px;
  border-radius: 16px;
  border: 1px solid #ffffff;
}

.proof-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}

.proof-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--slate-900);
}

.proof-sub {
  font-size: 10px;
  color: var(--slate-500);
}

.rating-card {
  display: flex;
  align-items: center;
  gap: 8px;
}

.star-icon {
  color: #fbbf24;
  font-size: 20px;
}

.rating-score {
  font-size: 18px;
  font-weight: 900;
  color: var(--slate-900);
  line-height: 1;
}

.rating-sub {
  font-size: 11px;
  color: var(--slate-500);
  font-weight: 500;
}

/* HERO SLIDER */
.hero-right {
  position: relative;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 4px solid #ffffff;
  background: var(--slate-900);
}

@media (min-width: 640px) {
  .slider-container {
    height: 540px;
  }
}

.hero-slide {
  position: absolute;
  inset: 0;
  transition: opacity 0.7s ease;
  opacity: 0;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 10;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.7), transparent);
}

.slide-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  color: #ffffff;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 9999px;
  margin-bottom: 8px;
}

.badge-red { background: var(--brand-red); color: #fff; }
.badge-teal { background: var(--brand-teal); color: #fff; }
.badge-amber { background: #f59e0b; color: var(--slate-950); }

.badge-desc {
  font-size: 12px;
  color: var(--slate-200);
}

.floating-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 20;
  background: rgba(2, 6, 23, 0.9);
  color: #ffffff;
  backdrop-filter: blur(8px);
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: none;
}

@media (min-width: 640px) {
  .floating-badge { display: block; }
}

.floating-badge-val {
  font-size: 24px;
  font-weight: 900;
}

.floating-badge-txt {
  font-size: 10px;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-900);
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: background 0.2s;
}

.slider-btn:hover { background: #ffffff; }
.prev-btn { left: 16px; }
.next-btn { right: 16px; }

.slider-dots {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 20;
  display: flex;
  gap: 6px;
  background: rgba(2, 6, 23, 0.4);
  padding: 8px;
  border-radius: 9999px;
  backdrop-filter: blur(4px);
}

.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.slide-dot.active {
  background: #ffffff;
}

/* WHY CHOOSE US SECTION */
.why-us-section {
  max-width: 1280px;
  margin: 100px auto 0;
  padding: 0 24px;
}

.section-header-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 48px;
}

@media (min-width: 1024px) {
  .section-header-grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .section-header-grid > div:first-child { grid-column: span 7; }
  .header-right-col { grid-column: span 5; }
}

.tag-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--slate-700);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.tag-line-red {
  width: 16px;
  height: 2px;
  background: var(--brand-red);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--slate-950);
  letter-spacing: -0.025em;
  line-height: 1.12;
}

@media (min-width: 640px) { .section-title { font-size: 3rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3.75rem; } }

.header-right-col {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .header-right-col {
    padding-left: 24px;
    align-items: flex-end;
  }
}

.section-subtitle {
  color: var(--slate-600);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 28rem;
}

@media (min-width: 1024px) {
  .section-subtitle { text-align: right; }
}

.why-us-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 1024px) {
  .why-us-content-grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .masonry-grid { grid-column: span 6; }
  .features-grid { grid-column: span 6; }
}

/* Masonry Grid */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.masonry-col-large { grid-column: span 6; }
.masonry-col-stacked {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.img-box {
  border-radius: 32px;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-tall { height: 360px; }
.img-short { height: 170px; }

@media (min-width: 640px) {
  .img-tall { height: 420px; }
  .img-short { height: 200px; }
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .features-grid { padding-left: 32px; }
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #ccfbf1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.teal-icon { color: var(--brand-teal); }
.red-icon { color: var(--brand-red); }

.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--slate-950);
  margin-bottom: 6px;
}

.feature-desc {
  font-size: 13px;
  color: var(--slate-600);
  line-height: 1.5;
}

/* SERVICES & GENERAL SECTION STYLES */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.header-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .header-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.section-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--slate-700);
  margin-bottom: 12px;
}

.center-tag {
  justify-content: center;
}

.tag-line {
  width: 16px;
  height: 2px;
  background: var(--brand-red);
}

.main-heading {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--slate-950);
  line-height: 1.15;
}

.description {
  color: var(--slate-600);
  font-size: 16px;
  line-height: 1.6;
  max-width: 480px;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 8px; }

/* SERVICES GRID */
.services-section { padding: 80px 0; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.service-card:hover { transform: translateY(-4px); }

.card-image-wrapper {
  height: 200px;
  width: 100%;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content { padding: 20px; }

.service-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--slate-950);
  margin-bottom: 8px;
}

.service-description {
  font-size: 12px;
  color: var(--slate-600);
  line-height: 1.5;
}

/* PROCESS SECTION */
.process-section { padding: 80px 0; }

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-card {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.step-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 28px;
  font-weight: 900;
  color: var(--slate-200);
}

.process-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-soft-teal);
  color: var(--brand-teal);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.process-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--slate-950);
}

.process-desc {
  font-size: 12px;
  color: var(--slate-600);
  line-height: 1.5;
}

/* POOL SECTION */
.pool-section { padding: 80px 0; }

.pool-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}

@media (min-width: 768px) { .pool-grid { grid-template-columns: repeat(2, 1fr); } }

.pool-card {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.status-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
}

.before-badge { background: var(--brand-red); }
.after-badge { background: var(--brand-teal); }

.pool-image-wrapper { height: 260px; }
.pool-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.pool-card-content { padding: 24px; }
.pool-title { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.pool-desc { font-size: 13px; color: var(--slate-600); }

/* CTA SECTION */
.cta-section { padding: 80px 0; }

.cta-banner-card {
  background: var(--slate-950);
  border-radius: 36px;
  padding: 40px;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .cta-banner-card { grid-template-columns: repeat(12, 1fr); }
  .cta-left { grid-column: span 7; }
  .cta-right { grid-column: span 5; }
}

.cta-heading {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
}

.floating-info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: 24px;
  backdrop-filter: blur(8px);
}

.icon-badge {
  width: 40px;
  height: 40px;
  background: var(--brand-red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-text {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.5;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  color: var(--slate-950);
  padding: 10px 20px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 13px;
}

.btn-icon {
  width: 24px;
  height: 24px;
  background: var(--slate-950);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.cta-image-wrapper {
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
}

.cta-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }

/* CLIENTS SECTION */
.clients-section { padding: 80px 0; }

.clients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .clients-grid { grid-template-columns: repeat(5, 1fr); } }

.client-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.client-card .card-image-wrapper {
  position: relative;
  height: 140px;
}

.location-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(2, 6, 23, 0.8);
  color: #ffffff;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 6px;
}

.client-name { font-size: 14px; font-weight: 700; }
.client-type { font-size: 11px; color: var(--slate-500); }

/* GALLERY SECTION */
.gallery-section { padding: 80px 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-item.large {
    grid-column: span 2;
  }
}

.gallery-item {
  position: relative;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
}

/* REVIEWS SECTION */
.reviews-section { padding: 80px 0; }

.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 9999px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  margin-top: 16px;
}

.google-icon { color: #4285F4; font-size: 18px; }
.rating-score-num { font-weight: 900; }
.stars { color: #fbbf24; font-size: 12px; display: flex; gap: 2px; }
.total-reviews { font-size: 12px; color: var(--slate-500); }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

/* .review-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
} */

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.user-info { display: flex; align-items: center; gap: 12px; }

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-red);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.avatar.bg-blue { background: #3b82f6; }
.avatar.bg-green { background: #10b981; }

.user-name { font-size: 14px; font-weight: 700; }
.review-date { font-size: 10px; color: var(--slate-500); }
.review-google-icon { color: #94a3b8; }
.card-stars { color: #fbbf24; font-size: 11px; margin-bottom: 12px; }
.review-text { font-size: 12px; color: var(--slate-600); line-height: 1.6; }

/* FOOTER */
.site-footer {
  background: var(--slate-950);
  color: #ffffff;
  padding: 48px 0 24px;
  border-top: 1px solid #1e293b;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) { .footer-container { grid-template-columns: repeat(4, 1fr); } }

.footer-title { font-size: 20px; font-weight: 700; margin-bottom: 16px; }
.footer-desc { font-size: 12px; color: #94a3b8; line-height: 1.6; }

.footer-heading {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #e2e8f0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links { display: flex; flex-direction: column; gap: 8px; font-size: 12px; color: #94a3b8; }
.footer-links a:hover { color: #ffffff; }

.contact-info { font-size: 12px; color: #94a3b8; margin-bottom: 8px; }
.icon-red { color: var(--brand-red); margin-right: 8px; }

.footer-bottom {
  max-width: 1280px;
  margin: 32px auto 0;
  padding: 32px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-center;
  font-size: 12px;
  color: #64748b;
}

/* HELPER CLASSES */
@media (min-width: 640px) {
  .desktop-only { display: inline; }
}
@media (max-width: 639px) {
  .desktop-only { display: none; }
}





/* REVIEWS SECTION UPDATED */
.reviews-section { 
  padding: 80px 0; 
}

.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 10px 20px;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-top: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.google-icon { 
  color: #4285F4; 
  font-size: 20px; 
}

.rating-score-num { 
  font-weight: 800; 
  font-size: 16px;
}

.stars { 
  color: #fbbf24; 
  font-size: 13px; 
  display: flex; 
  gap: 3px; 
}

.total-reviews { 
  font-size: 13px; 
  color: var(--slate-500); 
}

/* Reviews Grid & Cards Fixes */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
  align-items: stretch; /* Saare cards equal height rahenge */
}

@media (min-width: 768px) { 
  .reviews-grid { 
    grid-template-columns: repeat(3, 1fr); 
  } 
}

.review-card {
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 24px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
  border: 1px solid rgba(0, 139, 139, 0.12); /* Light border contrast ke liye */
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
      gap: 16px;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.user-info { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-red);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.avatar.bg-blue { background: #2563eb; }
.avatar.bg-green { background: #059669; }

.user-name { 
  font-size: 15px; 
  font-weight: 700; 
  color: var(--slate-950);
}

.review-date { 
  font-size: 11px; 
  color: var(--slate-500); 
  display: block;
  margin-top: 2px;
}

.review-google-icon { 
  color: #94a3b8; 
  font-size: 18px;
}

.card-stars { 
  color: #fbbf24; 
  font-size: 13px; 
  display: flex;
  gap: 3px;
  margin-bottom: 16px; 
}

.review-text { 
  font-size: 14px; 
  color: var(--slate-700); 
  line-height: 1.6; 
}

/* MODERN SERVICES SECTION CSS */
.services-section {
  padding: 90px 20px;
  background-color: #e6f4f4;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Header Styling */
.services-header {
  margin-bottom: 50px;
}

.text-center { text-align: center; }

.badge-pill {
  display: inline-block;
  padding: 6px 16px;
  background-color: #e6f4f4;
  color: #008b8b;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.main-title {
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  margin: 0 0 12px 0;
}

.sub-title {
  font-size: 16px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Auto Responsive Grid (CSS Grid) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

/* Tablet Layout */
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop Layout */
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Premium Glass Card Design */
.service-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.12);
  border-color: #cbd5e1;
}

/* Image Container with Dark Gradient Overlay */
.card-image-box {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .card-image-box img {
  transform: scale(1.08);
}

.card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #e31e24;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 30px;
  letter-spacing: 0.5px;
}

/* Card Body & Typography */
.card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px 0;
}

.card-text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

/* Animated Action Button */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #008b8b;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.arrow-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.card-link:hover {
  color: #0369a1;
}

.card-link:hover .arrow-icon {
  transform: translateX(5px);
}





/* ABOUT FOUNDER SECTION STYLING */
.about-founder-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.founder-card {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 992px) {
  .founder-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }
}

/* Founder Image Layout */
.founder-image-col {
  flex: 1;
  width: 100%;
  max-width: 480px;
  position: sticky;
  top: 100px; /* Desktop par scroll hone par sticky rahega */
}

.founder-img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.founder-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.founder-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}

.founder-badge i {
  color: #38bdf8;
}

/* Founder Text Content Layout */
.founder-content-col {
  flex: 1.3;
}

.section-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0284c7;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.tag-line {
  width: 30px;
  height: 2px;
  background-color: #0284c7;
}

.main-heading {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .main-heading {
    font-size: 32px;
  }
}

.founder-quote {
  font-size: 16px;
  color: #0f172a;
  line-height: 1.7;
  background: #f0f9ff;
  padding: 20px;
  border-left: 4px solid #0284c7;
  border-radius: 0 12px 12px 0;
  margin-bottom: 20px;
}

.founder-description {
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 18px;
}

/* Highlighted Bold Text styling */
.founder-description strong,
.founder-quote strong {
  color: #0f172a;
  font-weight: 700;
}

/* Bottom Highlight Box */
.hiring-process-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  margin-top: 30px;
}

.process-box-title {
  font-size: 16px;
  font-weight: 700;
  color: #0284c7;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mb-0 {
  margin-bottom: 0 !important;
}