/* Color System Variables */
:root {
    --primary-teal: #29abe2;
    --light-teal-bg: #EAF8F6;
    --text-primary: #1A1A1A;
    --text-secondary: #6B7280;
    --card-bg: #FFFFFF;
    --soft-border: #E5E7EB;
}

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

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    padding-top: 80px;
    color: var(--text-primary);
    line-height: 1.6;
}

/* Responsive Images & Videos */
img, video {
    max-width: 100%;
    height: auto;
    display: block;
    contain: layout;
}

/* Critical Image Dimensions for CLS Prevention */
.hero-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center 10%;
    transform: translateY(8px);
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.advantage-stacked-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.testimonial-avatar img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

/* Advanced Navigation System */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-100%);
    animation: slideDown 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Scrolled State */
.navbar.scrolled {
    height: 70px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.navbar-logo {
    flex-shrink: 0;
}

.logo-link {
    display: block;
    width: 192px;
    height: 48px;
    position: relative;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-link:active {
    transform: scale(0.98);
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Logo Text Styles */
.navbar-logo a {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

.logo-clean {
    color: #29abe2;
}

.logo-foldz {
    color: #6aa82f;
}

.logo-text .clean {
    color: #29abe2; /* Blue */
}

.logo-text .foldz {
    color: #6aa82f; /* Green */
}

/* Desktop Navigation */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #111827;
}

/* Underline Animation */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #3EC7B7;
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

.nav-link.active {
    color: #29abe2;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
    left: 0;
    background: #29abe2;
}

/* CTA Button */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-button {
    padding: 10px 18px;
    background: linear-gradient(135deg, #29abe2, #6aa82f);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.cta-button:hover {
    background: #2BA39C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:active {
    transform: scale(0.98);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: background-color 0.3s ease;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: #374151;
    margin: 2px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle:hover .hamburger-line {
    background: #29abe2;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100dvh;
    max-height: 100dvh;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.mobile-logo {
    width: 160px;
    height: 40px;
    position: relative;
}

.mobile-menu-close {
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.close-line {
    width: 16px;
    height: 2px;
    background: #374151;
    transition: all 0.3s ease;
}

.close-line:first-child {
    transform: rotate(45deg) translate(1px, 1px);
}

.close-line:last-child {
    transform: rotate(-45deg) translate(1px, -1px);
}

.mobile-menu-close:hover .close-line {
    background: #29abe2;
}

.mobile-menu-nav {
    flex: 1;
    overflow-y: auto;
    padding: 14px 16px;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav-link {
    display: block;
    padding: 9px 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(20px);
    animation: slideInRight 0.3s ease forwards;
}

.mobile-nav-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-link:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav-link:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav-link:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav-link:nth-child(5) { animation-delay: 0.5s; }
.mobile-nav-link:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-nav-link:hover {
    color: #29abe2;
    background: rgba(41, 171, 226, 0.05);
}

.mobile-menu-footer {
    padding: 12px 20px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    margin-bottom: 8px;
}

/* Mobile menu active state */
.mobile-nav-link.active {
    background: rgba(41, 171, 226, 0.12);
    color: #29abe2;
    font-weight: 600;
    border-radius: 10px;
}

.mobile-cta-button {
    width: 100%;
    padding: 12px 24px;
    background: #29abe2;
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.3s ease 0.4s forwards;
}

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

.mobile-cta-button:hover {
    background: #1a8bb8;
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Mobile GPU Optimization - Sidebar Backdrop */
@media (max-width: 768px) {
    .mobile-menu-backdrop {
        backdrop-filter: blur(2px);
    }
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar-container {
        padding: 0 20px;
    }
    
    .navbar-nav {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }
    
    .navbar.scrolled {
        height: 65px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .cta-button {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar-container {
        padding: 0 16px;
    }
    
    .logo-link {
        width: 160px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 12px;
    }
    
    .logo-link {
        width: 140px;
        height: 35px;
    }
    
    .mobile-menu {
        width: 260px;
        right: -260px;
    }
}

.nav-right .contact-btn {
    background: transparent;
    border: 2px solid var(--primary-teal);
    color: var(--primary-teal);
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Hero Section - OLD RULE REMOVED - Video-only hero defined below at line 718 */

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hero-left {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-heading {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 32px;
    color: var(--text-primary);
    text-align: left;
}

.cta-btn {
    background: linear-gradient(135deg, #29abe2, #6aa82f);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(62, 199, 183, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 12px;
    align-self: flex-start;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(62, 199, 183, 0.4);
}

.hero-description {
    margin-bottom: 12px;
    max-width: 450px;
    text-align: left;
}

.hero-subtitle {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.hero-text {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.5;
    font-weight: 400;
}

.hero-contact {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #e5e7eb;
}

.contact-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    font-weight: 500;
}

.contact-number {
    font-size: 18px;
    font-weight: 700;
    color: #2563EB;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease;
}

.contact-number:hover {
    color: #1D4ED8;
}

/* Testimonials Row */
.testimonials-row {
    display: flex;
    gap: 20px;
    margin-top: 60px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* Testimonial Card */
.testimonial-card {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    border: 2px solid transparent;
    animation: borderGlow 3s ease-in-out infinite;
}

.testimonial-card + .testimonial-card {
    margin-top: 0;
}

@keyframes borderGlow {
    0%, 100% {
        border-color: rgba(62, 199, 183, 0.3);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 0 20px rgba(62, 199, 183, 0.2);
    }
    50% {
        border-color: rgba(62, 199, 183, 0.8);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 0 30px rgba(62, 199, 183, 0.4);
    }
}

.testimonial-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 16px;
}

.explore-btn {
    background: var(--primary-teal);
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background: #36b5a5;
}

.testimonial-quote {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    font-style: italic;
}

/* Hero Right Side */
.hero-right {
    position: relative;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(62, 199, 183, 0.2) 0%, rgba(62, 199, 183, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    z-index: 1;
}

/* Hero Background Video */
.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    max-height: 100% !important;
    overflow: hidden;
    z-index: 1;
}

.hero-background-video video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center 10%;
}

/* Desktop - crop bottom to remove watermark */
@media (min-width: 769px) {
    .hero-background-video video {
        height: 110%;
        object-position: center top;
        transform: translateY(-5%);
    }
}

/* Mobile - full video visible without cropping */
/* Mobile hero styles moved to main mobile media query section below */

/* Hero Section - Video Only */
.hero {
    height: calc(100dvh - 30px) !important;
    max-height: calc(100dvh - 30px) !important;
    min-height: calc(100dvh - 30px) !important;
    position: relative;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;
    contain: layout style paint;
    display: block !important;
    opacity: 1;
    transition: opacity 0.6s ease-out, max-height 0.6s ease-out, margin 0.6s ease-out;
}

/* Hero finished state - smooth fade and collapse */
.hero.hero-finished {
    opacity: 0;
    max-height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
}

/* Hero Content Section */
.hero-content {
    padding: 0 0 60px 0;
    background: white;
}

.hero-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.hero-content-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-content-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Image Container */
.hero-image {
    position: relative;
    width: 100%;
    max-width: 500px;
}

/* Floating Tags */
.floating-tag {
  position: absolute;
  padding: 8px 16px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  z-index: 10;
}

.tag-mudah {
  top: 35%;
  right: 15%;
}

.tag-cepat {
  top: 50%;
  left: 5%;
}

/* Trust Card */
.trust-card {
  position: absolute;
  bottom: 15%;
  left: -5%;
  background: white;
  border-radius: 15px;
  padding: 12px 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
}

.trust-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.trust-content {
    flex: 1;
}

.trust-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.trust-text {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.3;
}

.trust-number.hero-heading {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0 0 8px 0;
    align-self: flex-start;
}

/* Outlets Card */
.outlets-card {
    background: var(--primary-teal);
    color: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(62, 199, 183, 0.3);
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 5;
    max-width: 220px;
}

.outlets-number {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.2;
}

.outlets-text {
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.95;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    z-index: 10;
}

.scroll-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--soft-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.scroll-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Advantages Section - User's Exact Code */
.advantages {
  padding: 80px 0;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.header {
  max-width: 400px;
}

.label {
  color: #6b7280;
  font-size: 14px;
}

.header h2 {
  font-size: 48px;
  line-height: 1.2;
  margin: 10px 0 20px;
}

.btn {
  background: #3EC7B7;
  border: none;
  padding: 12px 22px;
  border-radius: 30px;
  color: white;
  cursor: pointer;
}

/* GRID SYSTEM */
.grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 40px;
  margin-top: 60px;
  align-items: start;
}

/* CARD BASE */
.card {
  background: #fff;
  border-radius: 20px;
  border: 2px solid #3EC7B7;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  overflow: visible;
  display: flex;
  flex-direction: column;
}

/* IMAGE */
.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 12px 12px 0 0;
}

/* CONTENT */
.content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.content h3 {
  margin: 10px 0;
  font-size: 20px;
  color: #000000;
  font-weight: 600;
}

.content p {
  color: #000000 !important;
  font-size: 16px !important;
  line-height: 1.5;
  margin: 0;
  display: block !important;
  visibility: visible !important;
}

/* ADVANTAGES CARDS CONTENT - MORE SPECIFIC */
.advantages .card .content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
  background: white;
}

.advantages .card .content h3 {
  margin: 10px 0;
  font-size: 20px;
  color: #000000 !important;
  font-weight: 600;
  display: block !important;
  visibility: visible !important;
}

.advantages .card .content p {
  color: #000000 !important;
  font-size: 16px !important;
  line-height: 1.5;
  margin: 0;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.advantages .card .content .icon {
  width: 36px;
  height: 36px;
  background: #EAF8F6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 10px;
}

/* POSITIONING MAGIC */

/* LEFT CARD (LOWER) */
.left {
  grid-column: 1;
  grid-row: 1;
  margin-top: 80px;
  height: auto;
  min-height: 320px;
}

/* CENTER CARD (MAIN FOCUS) */
.center {
  grid-column: 2;
  grid-row: 1;
  margin-top: 20px;
  height: auto;
  min-height: 360px;
}

/* RIGHT CARD (TOP) */
.right {
  grid-column: 3;
  grid-row: 1;
  margin-top: -80px;
  height: auto;
  min-height: 300px;
}

/* FOURTH CARD - Laundry Services */
.card.fourth {
  grid-column: 3;
  grid-row: 2;
  margin-top: -40px;
}

.card.fourth h3 {
  font-size: 22px;
}

.card.fourth p {
  font-size: 14px;
}

/* Services Section */
.services-section {
  padding: 80px 0 50px 0;
  font-family: 'Poppins', sans-serif;
}

/* Service Price Styling */
.service-price {
  font-weight: normal !important;
  color: #29abe2 !important;
  white-space: nowrap !important;
}

/* Services Grid Alignment */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  align-items: stretch;
}


.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-quick-info {
  margin-top: 20px;
  padding-top: 0;
}


/* Pricing Button Styling */
.pricing-btn {
  background: #6aa82f !important;
  color: white !important;
  padding: 8px 16px !important;
  border: none !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  display: inline-block !important;
  font-size: 14px !important;
  text-align: center !important;
  transition: background-color 0.2s ease !important;
}

.pricing-btn:hover {
  background: #5a9626 !important;
}

/* TOP TEXT */
.top-text {
  max-width: 500px;
  margin-bottom: 40px;
}

.top-text h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.top-text p {
  color: #6b7280;
}

/* LAYOUT */
.service-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT TABS */
.service-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 250px;
}

.tab {
  padding: 14px 18px;
  border-radius: 30px;
  border: 1px solid #e5e7eb;
  background: white;
  cursor: pointer;
  text-align: left;
  transition: 0.3s;
}

.tab.active {
  background: #3EC7B7;
  color: white;
  border: none;
}

/* RIGHT CONTENT */
.service-content {
  flex: 1;
}

.content {
  display: none;
}

.content.active {
  display: block;
}

/* CARD STYLE */
.content img {
  width: 100%;
  border-radius: 20px;
  height: 300px;
  object-fit: cover;
  background: #EAF8F6;
}

/* Specific fix for Wash Dry & Fold image - crop from top */
#tab-2 img {
  object-position: center bottom;
}

.content h4 {
  margin: 20px 0 10px;
  font-size: 20px;
}

.content p {
  color: #6b7280;
}

/* Service Know More Button */
.service-know-more {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 24px;
  background: #2563EB;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.service-know-more:hover {
  background: #1D4ED8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: #f9fafb;
  font-family: 'Poppins', sans-serif;
}

.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.testimonials-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.testimonials-header p {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
}

/* Testimonial Card */
.testimonial-card {
  max-width: 600px;
  margin: 0 auto 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.testimonial-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.testimonial-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px 0;
}

.customer-name {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
}

.review-date {
  font-size: 14px;
  color: #6b7280;
}

.divider {
  height: 1px;
  background: #e5e7eb;
  margin: 16px 30px;
}

.review-text {
  text-align: center;
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.6;
  padding: 0 30px 30px;
  font-style: italic;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 18px;
  color: #3EC7B7;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Infinite Scroll Testimonials */
.infinite-scroll-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}

/* Gradient Fade Masks */
.gradient-mask-left,
.gradient-mask-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 10;
  pointer-events: none;
}

.gradient-mask-left {
  left: 0;
  background: linear-gradient(to right, 
    rgba(102, 126, 234, 1) 0%, 
    rgba(102, 126, 234, 0.8) 30%, 
    rgba(102, 126, 234, 0) 100%
  );
}

.gradient-mask-right {
  right: 0;
  background: linear-gradient(to left, 
    rgba(118, 75, 162, 1) 0%, 
    rgba(118, 75, 162, 0.8) 30%, 
    rgba(118, 75, 162, 0) 100%
  );
}

/* Scroll Tracks */
.scroll-track {
  display: flex;
  gap: 24px;
  animation: scrollLeft 60s linear infinite;
  will-change: transform;
}

.scroll-track-reverse {
  display: flex;
  gap: 24px;
  animation: scrollRight 45s linear infinite;
  will-change: transform;
}

/* Infinite Scroll Testimonial Cards */
.scroll-track .testimonial-card,
.scroll-track-reverse .testimonial-card {
  background: white;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  min-width: 320px;
  max-width: 380px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  color: #1a1a1a;
  margin: 0;
}

.scroll-track .testimonial-card::before,
.scroll-track-reverse .testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3EC7B7, #667eea);
}

.scroll-track .testimonial-card:hover,
.scroll-track-reverse .testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.scroll-track .testimonial-avatar,
.scroll-track-reverse .testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #EAF8F6;
  flex-shrink: 0;
}

.scroll-track .testimonial-header,
.scroll-track-reverse .testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.scroll-track .customer-name,
.scroll-track-reverse .customer-name {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 1rem;
  line-height: 1.2;
}

.scroll-track .testimonial-rating,
.scroll-track-reverse .testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 15px;
}

.star {
  color: #fbbf24;
  font-size: 1.1rem;
}

.scroll-track .testimonial-text,
.scroll-track-reverse .testimonial-text {
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 20px;
  position: relative;
  padding: 0 10px;
  text-align: center;
  font-style: italic;
}

.scroll-track .testimonial-text::before,
.scroll-track-reverse .testimonial-text::before,
.scroll-track .testimonial-text::after,
.scroll-track-reverse .testimonial-text::after {
  content: '"';
  font-size: 2.5rem;
  color: #EAF8F6;
  position: absolute;
  line-height: 1;
  opacity: 0.6;
}

.scroll-track .testimonial-text::before,
.scroll-track-reverse .testimonial-text::before {
  top: -15px;
  left: -5px;
}

.scroll-track .testimonial-text::after,
.scroll-track-reverse .testimonial-text::after {
  content: '"';
  bottom: -25px;
  right: -5px;
}

.scroll-track .testimonial-author,
.scroll-track-reverse .testimonial-author {
  text-align: center;
}

.scroll-track .author-name,
.scroll-track-reverse .author-name {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 2px;
  font-size: 1rem;
}

.scroll-track .author-location,
.scroll-track-reverse .author-location {
  color: #9ca3af;
  font-size: 0.85rem;
  text-align: center;
  margin-top: 8px;
}

.scroll-row {
  margin-bottom: 30px;
}

.scroll-row:last-child {
  margin-bottom: 0;
}

/* Infinite Scroll Animations */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

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

/* Ensure animations work properly - FASTER SPEED */
.scroll-track {
  animation: scrollLeft 20s linear infinite;
}

.scroll-track-reverse {
  animation: scrollRight 15s linear infinite;
}

/* Pause on hover */
.scroll-track:hover,
.scroll-track-reverse:hover {
  animation-play-state: paused;
}

/* Debug: Make sure scroll tracks are visible */
.scroll-track,
.scroll-track-reverse {
  display: flex !important;
  gap: 24px !important;
}

.scroll-track .testimonial-card,
.scroll-track-reverse .testimonial-card {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Update testimonials background for infinite scroll */
.testimonials {
  background: white;
  padding: 60px 0;
}

.testimonials-header h2 {
  color: #1a1a1a;
  text-shadow: none;
}

.testimonials-header p {
  color: #6b7280;
}

/* Franchise Section */
.franchise-section {
  padding: 40px 0 100px 0;
  background: white;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.franchise-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(135deg, rgba(62, 199, 183, 0.05) 0%, rgba(135, 172, 83, 0.05) 100%);
  z-index: 0;
}

.franchise-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left Column */
.franchise-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.franchise-headline {
  margin-bottom: 24px;
}

.franchise-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.franchise-title .cleanfoldz {
  background: linear-gradient(90deg, #29abe2 0%, #6aa82f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.franchise-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  line-height: 1.6;
  max-width: 500px;
}

/* CTA Button */
.franchise-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #29abe2 0%, #1a8fc4 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(41, 171, 226, 0.15);
  max-width: fit-content;
  text-decoration: none;
}

.franchise-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 25px 50px rgba(41, 171, 226, 0.3);
}

/* Secondary Button - Green */
.franchise-btn-secondary {
  background: linear-gradient(135deg, #6aa82f 0%, #5a9626 100%);
  box-shadow: 0 10px 20px rgba(106, 168, 47, 0.15);
}

.franchise-btn-secondary:hover {
  box-shadow: 0 25px 50px rgba(106, 168, 47, 0.3);
}

.franchise-btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-arrow {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.franchise-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Trust Indicators */
.franchise-trust {
  display: flex;
  gap: 32px;
  padding-top: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.trust-dot.green {
  background: #6aa82f;
}

.trust-dot.primary {
  background: #29abe2;
}

.trust-text {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Right Column - Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Mobile GPU Optimization - Feature Cards */
@media (max-width: 768px) {
  .feature-card {
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
  }
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.feature-icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.primary-bg {
  background: rgba(62, 199, 183, 0.1);
}

.green-bg {
  background: rgba(135, 172, 83, 0.1);
}

.icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.cta-button .icon {
  width: 16px;
  height: 16px;
}

.primary-bg .icon {
  color: #29abe2;
}

.green-bg .icon {
  color: #6aa82f;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-description {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 16px;
}

.feature-bar {
  height: 4px;
  border-radius: 2px;
  width: 32px;
  transition: width 0.5s ease;
}

.feature-card:hover .feature-bar {
  width: 48px;
}

.primary-bar {
  background: rgba(62, 199, 183, 0.2);
}

.green-bar {
  background: rgba(135, 172, 83, 0.2);
}

/* Stats Row */
.franchise-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-value.primary {
  color: #29abe2;
}

.stat-value.green {
  color: #6aa82f;
}

.stat-label {
  font-size: 0.875rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .franchise-grid {
    gap: 40px;
  }
  
  .franchise-title {
    font-size: 2.5rem;
  }
  
  .features-grid {
    gap: 20px;
  }
  
  .feature-card {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .franchise-section {
    padding: 60px 0;
  }
  
  .franchise-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .franchise-left {
    gap: 30px;
  }
  
  .franchise-title {
    font-size: 2rem;
  }
  
  .franchise-subtitle {
    font-size: 1rem;
  }
  
  /* Center franchise buttons on mobile */
  .franchise-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .franchise-btn {
    max-width: 100%;
    justify-content: center;
  }
  
  /* Center trust indicators on mobile */
  .franchise-trust {
    justify-content: center;
    flex-wrap: nowrap;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .franchise-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
  }
  
  .stat-value {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .franchise-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .franchise-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .franchise-trust {
    flex-direction: column;
    gap: 16px;
  }
}

/* Coverage Section */
.coverage-section {
  padding: 100px 0;
  background: white;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

/* Section Header */
.coverage-header {
  margin-bottom: 48px;
  text-align: center;
}

.coverage-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
}

.text-primary {
  color: #29abe2;
}

.text-green {
  color: #6aa82f;
}

.coverage-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.font-bold {
  font-weight: 700;
}

/* City Cards Bento Grid */
.city-cards-bento {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 60px;
}

/* Coverage Top Row: Mumbai and Thane */
.coverage-top-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}


/* Row 2 and Row 3: 3 columns */
.city-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* City Cards - 3D Container */
.city-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 20px 22px;
}

/* Simple Stable Hover Effect */
.city-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(62, 199, 183, 0.25), 
              0 0 30px rgba(62, 199, 183, 0.15);
}

/* City Image */
.city-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #EAF8F6 0%, #F0F9F4 100%);
}

/* Mumbai Card - Increased Image Height */
.coverage-top-row .city-card:first-child .city-image {
  height: 200px;
}

/* Mumbai Card - Crop from top instead of bottom */
.coverage-top-row .city-card:first-child .city-image img {
  object-position: center 40%;
}

/* Thane Card - Increased Image Height */
.coverage-top-row .city-card:nth-child(2) .city-image {
  height: 200px;
}

/* Flagship Badge */
.flagship-badge {
  position: absolute;
  top: 20px;
  left: 16px;
  font-size: 9px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  background: #ff6b00;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  z-index: 20;
  box-shadow: 0 3px 10px rgba(255, 107, 0, 0.4);
}

.city-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: all 0.3s ease;
  filter: brightness(1.05) contrast(1.05);
  border-radius: 12px 12px 0 0;
}


.city-card:hover .city-image img {
  filter: brightness(1.1) contrast(1.1);
}


/* Image Overlay for Better Contrast */
.city-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
  pointer-events: none;
}

/* City Content */
.city-content {
  padding: 24px;
  background: white;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* City Locations */
.city-locations {
  margin-bottom: 16px;
}

/* Mumbai Locations - 3 Column Grid */
.mumbai-locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 16px;
}

/* Thane Locations - 2 Column Grid */
.coverage-top-row .city-card:nth-child(2) .city-locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
}

/* Mumbai Mobile Layout - Hidden by Default */
.mumbai-locations-mobile {
  display: none;
}

/* Comments Navigation Buttons - Hidden by Default (Desktop) */
.comments-nav {
  display: none;
}

/* Desktop - Preserve Original Infinite Scroll */
@media (min-width: 769px) {
  .comments-wrapper,
  .comments-track {
    display: block;
    width: auto;
    overflow: visible;
    padding: 0;
  }
  
  .comments-track > * {
    flex: none;
    min-width: auto;
    max-width: none;
    transform: none;
    padding: 30px;
  }
  
  .scroll-arrow {
    display: none;
  }
}

/* Mumbai Mobile List Styling */
.location-title {
  font-size: 14px;
  margin-bottom: 10px;
  color: #444;
}

.location-list {
  margin-bottom: 16px;
}

.city-location {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.city-location:last-child {
  margin-bottom: 0;
}

.location-dot {
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #3EC7B7 0%, #2BA39C 100%);
  border-radius: 50%;
  margin-top: 6px;
  margin-right: 14px;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(62, 199, 183, 0.3);
}

.location-info {
  flex: 1;
}

.location-name {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
  font-size: 0.9375rem;
}

.location-count {
  font-size: 0.8125rem;
  color: #6b7280;
  font-weight: 500;
}

/* City Opener */
.city-opener {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 14px;
  line-height: 1.5;
}

/* Mumbai Card - Increase gap between opener and store list */
.coverage-top-row .city-card:first-child .city-opener {
  margin-bottom: 24px;
}

/* City Name */
.city-name {
  font-weight: 600;
  color: #000;
}

/* CleanFoldz Brand Styling */
.brand-clean {
  font-weight: 700;
  color: #29abe2;
}

.brand-foldz {
  font-weight: 700;
  color: #6aa82f;
}

/* City Locations */
.city-locations {
  margin-bottom: 0;
}

.location-item {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 6px;
  position: relative;
  padding-left: 14px;
}

.location-item::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #3EC7B7;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 6px;
}

/* City CTA */
.city-cta {
  font-size: 0.9rem;
  color: #555;
  margin-top: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
  min-height: 60px;
}

/* Hide city-cta in expansion card to match row 2 height */
.expansion-card .city-cta {
  display: none;
}

/* Navi Mumbai specific - tighter spacing to buttons */
.city-cta.navi-mumbai-desc {
  margin-top: 8px;
  margin-bottom: 0;
}

.city-card:nth-child(2) .city-actions {
  padding-top: 8px;
}

/* City Actions */
.city-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
}

/* Primary Button */
.primary-btn {
  flex: 1;
  display: inline-block;
  padding: 9px 16px;
  border-radius: 8px;
  background: #2563EB;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
  border: none;
}

.primary-btn:hover {
  background: #1D4ED8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* Secondary Button */
.secondary-btn {
  flex: 1;
  display: inline-block;
  padding: 9px 16px;
  border-radius: 8px;
  background: transparent;
  color: #333;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  border: 1.5px solid #ddd;
  transition: all 0.2s ease;
}

.secondary-btn:hover {
  border-color: #999;
  background: #f5f5f5;
  transform: translateY(-1px);
}

/* CTA Button */
.coverage-cta {
  margin-top: 32px;
}

.coverage-cta .cta-button {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: #3EC7B7;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(62, 199, 183, 0.3);
}

.coverage-cta .cta-button:hover {
  background: #2BA39C;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(62, 199, 183, 0.4);
}

.cta-arrow {
  width: 20px;
  height: 20px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.coverage-cta .cta-button:hover .cta-arrow {
  transform: translateX(4px);
}

/* Floating Growth Panel */
.growth-panel {
  position: fixed;
  top: 100px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(62, 199, 183, 0.3);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.growth-panel.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: float 3s ease-in-out infinite;
}

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

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

.active-stores {
  font-size: 1rem;
  font-weight: 700;
  color: #29abe2;
  margin-bottom: 4px;
}

.coming-soon {
  font-size: 0.875rem;
  color: #6aa82f;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .coverage-section {
    padding: 80px 0;
  }
  
  .coverage-title {
    font-size: 2.5rem;
  }
  
  .coverage-top-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .city-row-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .coverage-section {
    padding: 60px 0;
  }
  
  .coverage-title {
    font-size: 2rem;
  }
  
  .coverage-subtitle {
    font-size: 1rem;
  }
  
  .city-cards-bento {
    gap: 20px;
  }
  
  .coverage-top-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .city-row-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .city-card {
    padding: 0;
    /* Disable 3D effects on mobile */
    transform: none !important;
    perspective: none !important;
  }
  
  .city-image,
  .city-content {
    transform: none !important;
  }
  
  .city-content {
    padding: 20px;
  }
  
  .growth-panel {
    top: auto;
    bottom: 20px;
    right: 20px;
    left: 20px;
  }
  
  /* Mumbai Mobile Layout Switch */
  .mumbai-locations-desktop {
    display: none;
  }
  
  .mumbai-locations-mobile {
    display: block;
  }

  /* Mobile - Fix image positioning for Hyderabad, Pune, Ahmedabad to crop from top */
  .city-row-3 .city-card:nth-child(2) .city-image img {
    object-position: center 39%;
  }

  .coming-soon-card .city-image img {
    object-position: center 40%;
  }

  /* Mobile - Fix Thane image positioning to crop from top */
  .coverage-top-row .city-card:nth-child(2) .city-image img {
    object-position: center 45%;
  }
}

@media (max-width: 480px) {
  .city-content {
    padding: 16px;
  }
  
  .coverage-cta .cta-button {
    padding: 12px 24px;
    font-size: 0.875rem;
  }
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: white;
  font-family: 'Poppins', sans-serif;
}

.cta-header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 60px;
}

.cta-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.cta-header p {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
}

/* CTA Card */
.cta-card {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, #3EC7B7 0%, #2db5a5 100%);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 15px 40px rgba(62, 199, 183, 0.2);
}

.cta-content {
  flex: 1;
  color: white;
}

.cta-content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  opacity: 0.95;
}

.cta-tags {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.tag {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-button {
  border: none;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button.primary {
  background: white;
  color: #3EC7B7;
}

.cta-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cta-image {
  flex: 0 0 300px;
}

.cta-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  /* Hide specific testimonials on mobile */
  .testimonial-kavita,
  .testimonial-sarthak {
    display: none !important;
  }
  
  .testimonials-header h2,
  .cta-header h2 {
    font-size: 32px;
  }
  
  .testimonials-header p,
  .cta-header p {
    font-size: 16px;
  }
  
  .testimonial-card {
    margin: 0 20px 40px;
  }
  
  /* Customer Comments Mobile Swipe */
  .infinite-scroll-container,
  .customer-comments,
  .comments-section {
    overflow: visible !important;
  }
  
  .comments-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
  }
  
  .comments-wrapper::-webkit-scrollbar {
    display: none;
  }
  
  .comments-track {
    display: flex;
    gap: 12px;
    min-width: max-content;
  }
  
  .comments-track > * {
    flex: 0 0 85%;
    max-width: 85%;
    scroll-snap-align: start;
    padding: 14px !important;
    transform: scale(0.96);
    transition: transform 0.3s ease;
  }
  
  .comments-track > *:active {
    transform: scale(1);
  }
  
  .comments-track p,
  .comments-track .testimonial-text {
    font-size: 13px !important;
    line-height: 1.4 !important;
  }
  
  /* Scroll Arrows - Visual Hint Only */
  .scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #999;
    z-index: 5;
    pointer-events: none;
  }
  
  .scroll-arrow.left {
    left: 6px;
  }
  
  .scroll-arrow.right {
    right: 6px;
  }
  
  /* Disable infinite scroll animation on mobile */
  .scroll-track {
    animation: none !important;
  }
  
  /* Comments Navigation Buttons - Mobile Only */
  .comments-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
  }
  
  .comments-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    font-size: 16px;
    color: #555;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
  .comments-btn:active {
    transform: scale(0.95);
  }
  
  .testimonial-meta {
    padding: 16px 20px 0;
  }
  
  .divider {
    margin: 12px 20px;
  }
  
  .review-text {
    padding: 0 20px 20px;
    font-size: 15px;
  }
  
  .cta-card {
    flex-direction: column;
    margin: 0 20px;
    padding: 30px;
    gap: 30px;
  }
  
  .cta-content h3 {
    font-size: 28px;
  }
  
  .cta-image {
    flex: none;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .cta-tags {
    justify-content: center;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-heading {
        font-size: 48px;
    }
    
    .hero-right {
        height: 500px;
        margin-top: 40px;
    }
    
    .hero-image {
        width: 350px;
        height: 450px;
        right: 50%;
        transform: translateX(50%) translateY(-50%);
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .card-2 {
        transform: scale(1);
    }
    
    .extra-text {
        text-align: center;
    }
    
    .extra-text p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    /* ========================================
       MOBILE PERFORMANCE OPTIMIZATIONS
       ======================================== */
    
    /* Reduce GPU-heavy effects on mobile */
    * {
        will-change: auto !important;
    }
    
    /* Reduce blur effects on mobile */
    .hero-background-video::before {
        backdrop-filter: none !important;
        background: rgba(0, 0, 0, 0.3) !important;
    }
    
    /* Reduce expensive transforms */
    .floating-card {
        transform: none !important;
        animation: none !important;
    }
    
    /* Reduce filter effects */
    .navbar {
        backdrop-filter: none !important;
        background: rgba(255, 255, 255, 0.95) !important;
    }
    
    /* Optimize video performance */
    .hero-background-video video {
        transform: none !important;
        object-position: center center !important;
    }
    
    /* ========================================
       MOBILE BODY PADDING FOR FIXED NAVBAR
       ======================================== */
    
    body {
        padding-top: 70px;
    }
    
    /* ========================================
       HERO SECTION - MOBILE FIXES
       ======================================== */
    
    /* Removed - handled in main mobile media query above */
    
    .hero {
        height: 68dvh !important;
        max-height: 68dvh !important;
        min-height: 68dvh !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
    }
    
    .hero-background-video {
        margin-bottom: 0 !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .hero-background-video video {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
    }
    
    .hero + section {
        margin-top: 0 !important;
    }
    
    .hero-content {
        margin-top: 20px !important;
    }
    
    .hero-content {
        padding: 0 20px 10px 20px !important;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* ========================================
       POST-HERO (HERO-CONTENT) - MOBILE FIXES
       ======================================== */
    
    .hero-content-container {
        display: flex;
        flex-direction: column;
        padding: 16px 20px 0 20px;
        gap: 0;
    }
    
    /* Content Order Fix */
    .hero-content-left {
        width: 100%;
        text-align: left;
        order: 1;
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 3;
        margin-bottom: 16px;
        margin-top: 0 !important;
        gap: 6px !important;
    }
    
    .hero-content-left h1,
    .hero-content-left .hero-heading {
        order: 1;
        margin-bottom: 8px !important;
    }
    
    .cta-btn,
    .hero-content-left .cta-btn {
        order: 2;
        margin-top: 0 !important;
        margin-bottom: 16px !important;
        width: fit-content;
        position: relative;
        z-index: 10;
        padding: 10px 20px !important;
        font-size: 14px !important;
    }
    
    .hero-content-left p,
    .hero-content-left .hero-description {
        order: 3;
        margin-top: 0 !important;
    }
    
    .hero-contact,
    .hero-content-left .hero-contact {
        order: 4;
        margin-top: 12px;
    }
    
    /* Image Container - RESTORE VISIBILITY */
    .hero-content-right {
        display: flex !important;
        width: 100%;
        position: relative;
        order: 5;
        margin-top: 24px;
        margin-bottom: 0px;
        min-height: auto;
        justify-content: center;
    }
    
    /* Center Image Properly - SET AS POSITION REFERENCE */
    .hero-image,
    .post-hero-image {
        position: relative;
        width: 100%;
        max-width: 450px;
        margin: 110px auto 0px auto !important;
        padding: 0;
        border-radius: 16px;
        overflow: visible;
        min-height: auto;
        z-index: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    /* SAFETY FIX - Ensure Image Visibility */
    .hero-image img,
    .hero-content-right img,
    .post-hero-right img,
    .post-hero-image img {
        width: 110%;
        height: 320px;
        object-fit: cover;
        object-position: center top;
        display: block;
        margin: 0 auto;
        opacity: 1 !important;
        border-radius: 16px;
    }
    
    /* Floating Cards - Stay ON Image with Z-Index */
    .floating-tag,
    .floating-card,
    .outlets-card {
        position: absolute;
        z-index: 2;
        transform: none !important;
    }
    
    /* All Floating Cards - Premium Badge Look */
    .floating-card {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }
    
    /* Mobile GPU Optimization - Floating Cards */
    .floating-card {
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }
    
    /* Reduce Floating Tag Size */
    .floating-tag {
        font-size: 11px;
        padding: 6px 10px;
        border-radius: 16px;
        font-weight: 600;
    }
    
    /* Premium Badge - Top Right */
    .tag-mudah,
    .floating-card.premium,
    .floating-tag.tag-mudah {
        top: 270px;
        right: 12px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Fresh Badge - Bottom Left - POSITION ONLY */
    .floating-tag.fresh {
        position: absolute;
        bottom: 12px;
        left: 12px;
    }
    
    /* Trust Card (15k+) - Compact Style */
    .trust-card,
    .floating-card.stats {
        position: absolute;
        bottom: 170px;
        left: -15px;
        display: flex;
        align-items: center;
        gap: 5px;
        background: white;
        padding: 4px 7px;
        border-radius: 8px;
        font-size: 8px;
        max-width: 105px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }
    
    .trust-number {
        font-size: 11px;
        font-weight: 600;
    }
    
    .trust-text {
        font-size: 8px;
        line-height: 1.2;
    }
    
    .trust-avatar img {
        width: 16px;
        height: 16px;
        border-radius: 50%;
    }
    
    /* Outlets Card (14+) - Bottom Right - COMPACT BADGE */
    .outlets-card {
        top: auto !important;
        left: auto !important;
        bottom: 127px;
        right: 12px;
        width: 110px !important;
        min-width: 110px !important;
        max-width: 110px !important;
        height: auto !important;
        max-height: 80px;
        padding: 8px !important;
        border-radius: 10px;
        display: flex !important;
        flex-direction: column;
        gap: 4px;
        box-sizing: border-box !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        overflow: hidden;
    }
    
    /* Force width constraint with multiple specificity levels */
    .hero-image .outlets-card,
    .hero-content-right .outlets-card,
    .hero-content-right .hero-image .outlets-card {
        width: 110px !important;
        min-width: 110px !important;
        max-width: 110px !important;
        max-height: 80px;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
    }
    
    .outlets-number {
        font-size: 16px;
        font-weight: 700;
        line-height: 1.1;
        margin: 0;
    }
    
    .outlets-text {
        font-size: 10px;
        line-height: 1.2;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 0;
    }
    
    /* Testimonials - Stack Vertically */
    .testimonials-row {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: -130px !important;
        padding-top: 0 !important;
        order: 6;
        position: relative;
        z-index: 10;
    }
    
    .testimonial-card {
        width: 100%;
        padding: 16px !important;
        border-radius: 12px !important;
    }
    
    .testimonial-avatar img {
        width: 40px !important;
        height: 40px !important;
    }
    
    .testimonial-name {
        font-size: 14px !important;
    }
    
    .testimonial-quote {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }
    
    /* ========================================
       OTHER MOBILE FIXES
       ======================================== */
    
    .hero-right {
        min-height: 300px;
        height: auto;
    }
    
    .hero-container {
        gap: 24px;
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-left {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .hero-container,
    .advantages-container {
        padding: 0 20px;
    }
    
    .hero-heading {
        font-size: 36px;
    }
    
    .cta-btn {
        padding: 14px 32px;
        font-size: 16px;
    }
    
    .hero-image {
        width: 380px;
        max-width: 90%;
        height: 480px;
    }
    
    .floating-card {
        display: none;
    }
    
    .advantages-heading {
        font-size: 36px;
    }
    
    .advantages {
        padding: 60px 0;
    }
    
    /* Compact services section */
    .services {
        padding: 40px 0;
    }
    
    .services .container {
        padding: 0 16px;
    }
    
    /* Compact services section header */
    .services .top-text {
        margin-bottom: 20px;
    }
    
    .services .top-text h3 {
        font-size: 20px;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .services .top-text p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .service-wrapper {
        flex-direction: column;
        gap: 16px;
    }
    
    .service-tabs {
        flex-direction: row;
        overflow-x: auto;
        width: 100%;
        gap: 6px;
        padding: 0 4px;
        flex-wrap: wrap;
    }
    
    .tab {
        white-space: nowrap;
        padding: 8px 12px;
        font-size: 11px;
        border-radius: 20px;
        flex-shrink: 0;
    }
    
    /* Compact service content in mobile */
    .services .content {
        display: none;
    }
    
    .services .content.active {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .services .content img {
        height: 200px !important;
        border-radius: 12px;
    }
    
    .services .content h4 {
        margin: 0;
        font-size: 18px;
    }
    
    .services .content p {
        margin: 0;
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Move Know More button to bottom-right */
    .service-know-more {
        align-self: flex-end;
        margin-top: auto;
        padding: 8px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .nav-left {
        display: none;
    }
    
    .hero-heading {
        font-size: 28px;
    }
    
    .testimonial-card {
        max-width: 100%;
    }
    
    .hero-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 600px;
        margin-bottom: -180px !important;
    }
    
    .advantages-heading {
        font-size: 28px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-description {
        font-size: 14px;
    }
}

/* ========================================
   GLOBAL MOBILE GRID COLLAPSE
   ======================================== */

@media (max-width: 768px) {
    }

/* Mobile Responsive for Services - Complete Layout Reset */
@media (max-width: 768px) {
  /* 1. GLOBAL OVERFLOW PROTECTION */
  html,
  body,
  .services-section {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  /* 2. SERVICES GRID FIX - Use Flex Column */
  .services-section .services-grid {
    display: flex !important;
    flex-direction: column !important;
    
    width: 100% !important;
    max-width: 100% !important;
    
    gap: 18px !important;
    padding: 0 14px !important;
    
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }
  
  /* 3. HARD RESET CARD */
  .services-section .service-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    
    display: flex !important;
    flex-direction: column !important;
    
    overflow: hidden !important;
    box-sizing: border-box !important;
    
    margin: 0 !important;
    
    /* Remove desktop behavior */
    height: auto !important;
    align-items: stretch !important;
  }
  
  /* CRITICAL: Ensure hidden cards stay hidden in mobile */
  .services-section .service-card.hidden {
    display: none !important;
  }
  
  /* 4. IMAGE FIX */
  .services-section .service-image,
  .services-section .service-image img {
    width: 100% !important;
    max-width: 100% !important;
    
    height: 180px !important;
    
    object-fit: cover !important;
    display: block !important;
  }
  
  /* 5. REMOVE DESKTOP HEIGHT LOGIC */
  .services-section .service-content {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    
    /* Remove desktop flex behavior */
    flex: none !important;
    height: auto !important;
  }
  
  /* 6. BUTTON ROW FIX */
  .services-section .service-actions {
    display: flex !important;
    gap: 10px !important;
    
    /* Remove desktop positioning */
    margin-top: 0 !important;
  }
  
  .services-section .service-actions button,
  .services-section .service-actions a {
    flex: 1 !important;
  }
  
  /* 7. REMOVE DESKTOP SIZING LOGIC */
  .services-section .service-header,
  .services-section .service-quick-info,
  .services-section .service-details {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
  
  /* 8. REMOVE PROBLEMATIC DESKTOP PROPERTIES */
  .services-section * {
    min-width: unset !important;
    width: fit-content unset !important;
    flex-shrink: 1 !important;
    grid-template-columns: unset !important;
    transform: unset !important;
    scale: unset !important;
    aspect-ratio: unset !important;
  }
  
  /* 9. Typography scaling */
  .services-section .service-title {
    font-size: 18px !important;
  }
  
  .services-section .service-short-desc {
    font-size: 14px !important;
  }
  
  .services-section .service-price {
    font-size: 14px !important;
  }
  
  .services-section .pricing-btn {
    font-size: 12px !important;
    padding: 6px 12px !important;
  }
  
  /* 10. FIX DISCLAIMER TEXT OVERFLOW ON MOBILE */
  .services-section div[style*="white-space: nowrap"],
  .services-section .services-disclaimer,
  .services-section .pricing-note,
  .services-section .services-note {
    width: 100% !important;
    max-width: 100% !important;
    
    padding: 0 16px !important;
    box-sizing: border-box !important;
    
    white-space: normal !important;
    word-break: break-word !important;
    
    text-align: center !important;
    
    font-size: 0.78rem !important;
    line-height: 1.5 !important;
    
    margin-top: 12px !important;
  }
  
  /* 11. FIX SERVICE TAB CONTENT IMAGES - PREVENT BRANDING CROP */
  .services .content img {
    object-fit: contain !important;
    object-position: center !important;
    background: #f9fafb !important;
  }
}

/* ========================================
   WHY CUSTOMERS CHOOSE CLEANFOLDZ - ENTERPRISE LAYOUT
   ======================================== */

.why-choose-section {
    padding: 60px 0 120px 0;
    margin-top: -80px;
    background: #ffffff;
    position: relative;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Centered Header Section */
.why-choose-header {
    text-align: center;
    margin-bottom: 80px;
}

.why-choose-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #1A1A1A;
    margin-bottom: 24px;
}

.why-choose-description {
    font-size: 18px;
    line-height: 1.6;
    color: #6B7280;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 4-Card Grid Layout */
.advantage-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* Individual Card Design */
.advantage-card {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #29abe2, #6aa82f);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-image {
    position: relative;
    overflow: hidden;
    background: #F9FAFB;
    height: 200px;
    flex-shrink: 0;
}

.advantage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Specific fix for Premium Laundry Care image - crop from right and bottom */
.advantage-card:nth-child(4) .advantage-image img {
    object-position: right 20%;
    transform: scale(1.18);
}

.advantage-card:hover .advantage-image img {
    transform: scale(1.22);
}

.advantage-content {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.advantage-title {
    font-size: 20px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 12px;
    line-height: 1.3;
    min-height: 52px;
    display: flex;
    align-items: flex-start;
}

.advantage-description {
    font-size: 15px;
    line-height: 1.6;
    color: #6B7280;
    margin: 0;
}

/* Specific adjustment for Transparent Pricing title */
.transparent-pricing-title {
    margin-bottom: 4px !important;
    margin-top: -4px !important;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .advantage-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .why-choose-title {
        font-size: 42px;
    }
    
    .why-choose-description {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 0px 0 80px 0;
        margin-top: -100px;
    }
    
    .why-choose-container {
        padding: 0 20px;
    }
    
    .why-choose-header {
        margin-bottom: 60px;
    }
    
    .why-choose-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .why-choose-description {
        font-size: 16px;
    }
    
    .advantage-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .advantage-image {
        height: 180px;
    }
    
    .advantage-content {
        padding: 24px 20px;
    }
    
    .advantage-title {
        font-size: 18px;
        margin-bottom: 10px;
        min-height: 48px;
        display: flex;
        align-items: flex-start;
    }
    
    .advantage-description {
        font-size: 14px;
    }
    
    /* Mobile fix for Premium Laundry Care card - crop from right and bottom */
    .advantage-card:nth-child(4) .advantage-image img {
        object-position: left top;
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 20px 0 60px 0;
    }
    
    .why-choose-title {
        font-size: 28px;
    }
    
    .why-choose-description {
        font-size: 15px;
    }
    
    .advantage-image {
        height: 160px;
    }
    
    .advantage-content {
        padding: 20px 16px;
    }
}

/* ========================================
   CHATBOT WIDGET (embed.js)
   ======================================== */

#cleanfoldz-chatbot,
.chatbot-container {
    z-index: 999999 !important;
}
