:root {
    --primary: #8dc63f;
    --primary-dark: #7ab332;
    --secondary: #1e2640;
    --dark: #121626;
    --light: #f5f7f9;
    --gray: #6b7280;
    --white: #ffffff;
    --font-family: 'Outfit', sans-serif;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-family);
    color: var(--secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

.section-padding {
    padding: 100px 0;
}

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-primary { color: var(--primary) !important; }
.text-gray { color: var(--gray) !important; }
.bg-light { background-color: var(--light); }
.bg-dark { background-color: var(--secondary); }
.bg-primary { background-color: var(--primary); }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.w-100 { width: 100%; }

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--primary);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

.section-title {
    font-size: 36px;
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

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

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

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    background-color: transparent;
}

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

.btn-outline-white {
    border-color: var(--white);
    color: var(--white);
    background-color: transparent;
}

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

/* Topbar */
.topbar {
    background-color: var(--dark);
    color: var(--white);
    font-size: 14px;
    padding: 6px 0;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left span, .topbar-right span {
    margin-right: 20px;
}

.topbar-left i, .topbar-right i {
    color: var(--primary);
    margin-right: 5px;
}

.social-links {
    display: inline-flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
}

.social-links a:hover {
    color: var(--primary);
}

/* Header */
.header {
    background-color: var(--white);
    padding: 8px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
}

.logo img {
    max-height: 72px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.logo-icon {
    color: var(--primary);
    margin-right: 10px;
}

.nav .menu {
    display: flex;
    gap: 30px;
}

.nav .menu a {
    font-weight: 600;
    font-size: 16px;
    color: var(--secondary);
}

.nav .menu a.active, .nav .menu a:hover {
    color: var(--primary);
}

/* Dropdown Menu Styles */
.nav .menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav .menu li {
    position: relative;
    list-style: none;
}

.nav .menu .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #ffffff;
    min-width: 230px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 99999;
    border: 1px solid #edf2f7;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav .menu .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.nav .menu li.dropdown:hover .dropdown-menu,
.nav .menu li.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav .menu .dropdown-menu li {
    width: 100%;
    margin: 0;
}

.nav .menu .dropdown-menu a {
    display: block;
    padding: 12px 22px;
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary);
    transition: all 0.25s ease;
    white-space: nowrap;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.nav .menu .dropdown-menu li:last-child a {
    border-bottom: none;
}

.nav .menu .dropdown-menu a:hover,
.nav .menu .dropdown-menu a.active {
    background-color: rgba(141, 198, 63, 0.1);
    color: var(--primary);
    padding-left: 28px;
}

.nav .menu li.dropdown > a i {
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav .menu li.dropdown:hover > a i,
.nav .menu li.dropdown:focus-within > a i {
    transform: rotate(180deg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--secondary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1545173168-9f1947eebb7f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover;
    padding: 150px 0;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 60%;
    background: linear-gradient(135deg, rgba(30, 38, 64, 0.95) 0%, rgba(30, 38, 64, 0.8) 100%);
    clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-slide {
    width: 100%;
    flex: 1;
    display: none;
}

.hero-slide.active {
    display: block;
}

.hero-content {
    max-width: 600px;
}

.hero .subtitle {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.subtitle-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    margin-left: 15px;
}

.hero .title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero p {
    font-size: 16px;
    color: #e2e8f0;
    margin-bottom: 40px;
    max-width: 500px;
}

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

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    display: inline-block;
}

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

.hero-slider-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Animations */
.animate-text {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s forwards;
}

.hero .subtitle { animation-delay: 0.2s; }
.hero .title { animation-delay: 0.4s; }
.hero p { animation-delay: 0.6s; }
.hero-buttons { animation-delay: 0.8s; }
.hero-slider-nav { animation: fadeInRight 1s forwards; animation-delay: 1s; opacity: 0; transform: translateX(30px); }

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

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

/* Bubbles */
.bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -50px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: floatUp 8s infinite linear;
}

.bubble:nth-child(1) { width: 40px; height: 40px; left: 10%; animation-duration: 8s; }
.bubble:nth-child(2) { width: 20px; height: 20px; left: 20%; animation-duration: 5s; animation-delay: 1s; }
.bubble:nth-child(3) { width: 50px; height: 50px; left: 35%; animation-duration: 10s; animation-delay: 2s; }
.bubble:nth-child(4) { width: 30px; height: 30px; left: 50%; animation-duration: 7s; animation-delay: 0s; }
.bubble:nth-child(5) { width: 25px; height: 25px; left: 65%; animation-duration: 6s; animation-delay: 3s; }
.bubble:nth-child(6) { width: 45px; height: 45px; left: 80%; animation-duration: 9s; animation-delay: 1.5s; }
.bubble:nth-child(7) { width: 15px; height: 15px; left: 25%; animation-duration: 4s; animation-delay: 2.5s; }
.bubble:nth-child(8) { width: 35px; height: 35px; left: 55%; animation-duration: 8s; animation-delay: 4s; }

@keyframes floatUp {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(-1000px) scale(1.5); opacity: 0; }
}

@media (max-width: 991px) {
    .hero-overlay { width: 80%; clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%); }
    .hero .title { font-size: 48px; }
}

@media (max-width: 768px) {
    .hero-overlay { width: 100%; clip-path: none; background: rgba(30, 38, 64, 0.85); }
    .bubbles { width: 100%; }
    .hero-slider-nav { display: none; }
}

/* About Section */
.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
}

.about-main-img {
    border-radius: var(--border-radius);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--secondary);
    color: var(--white);
    padding: 30px;
    border-radius: 50%;
    text-align: center;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 10px solid var(--white);
}

.experience-badge h2 {
    font-size: 36px;
    margin-bottom: 0;
}

.experience-badge p {
    font-size: 12px;
    line-height: 1.2;
}

.about-content {
    flex: 1;
}

.about-content p {
    margin-bottom: 15px;
    color: var(--gray);
    line-height: 1.7;
}

.about-list {
    margin: 20px 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-list i {
    color: var(--primary);
    margin-right: 10px;
}

.features-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Style 2 */
.features-cards.style-2 {
    margin-top: 30px;
}

.feature-card-2 {
    background-color: var(--white);
    padding: 40px 20px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid #eaeaea;
    transition: var(--transition);
    position: relative;
}

.feature-card-2::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 60px;
    height: 60px;
    border-top: 2px solid var(--primary);
    border-left: 2px solid var(--primary);
    border-top-left-radius: 25px;
    transition: var(--transition);
}

.feature-card-2::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 60px;
    height: 60px;
    border-bottom: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    border-bottom-right-radius: 25px;
    transition: var(--transition);
}

.feature-card-2:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.feature-card-2 h3 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.feature-card-2 p {
    font-size: 14px;
    color: #8fa0b3;
    margin-bottom: 0;
}

/* Icon base for both */
.feature-icon {
    font-size: 45px;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Services */
/* Services New Layout */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card-new {
    position: relative;
    text-align: center;
    transition: var(--transition);
}

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

.service-card-new:hover .service-content-new {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-img {
    width: calc(100% - 40px);
    height: 210px;
    object-fit: cover;
    border-radius: 30px;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.service-content-new {
    background-color: var(--white);
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    margin-top: -60px;
    padding: 100px 30px 40px;
    position: relative;
    z-index: auto;
    transition: var(--transition);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23f2f4f8' fill='none' stroke-width='0.5'%3E%3Cpath d='M0,50 Q40,30 70,60 T100,50'/%3E%3Cpath d='M0,60 Q40,40 70,70 T100,60'/%3E%3Cpath d='M0,70 Q40,50 70,80 T100,70'/%3E%3Cpath d='M0,80 Q40,60 70,90 T100,80'/%3E%3Cpath d='M0,90 Q40,70 70,100 T100,90'/%3E%3C/g%3E%3C/svg%3E");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100% 60%;
}

.service-icon-new {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    border: 6px solid var(--white);
    color: var(--white);
    z-index: 3;
}

.service-icon-new.color-blue {
    background-color: #2643a6;
}

.service-icon-new.color-green {
    background-color: var(--primary);
}

.service-content-new h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.service-content-new p {
    font-size: 14px;
    color: #9aa7b5;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-read-more {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    border: 1px solid #e0e0e0;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: transparent;
    transition: var(--transition);
}

.btn-read-more:hover {
    background-color: #1a36a8;
    color: var(--white);
    border-color: #1a36a8;
}

/* Contact Banner */
.contact-banner-container {
    display: flex;
    background-color: var(--secondary);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.contact-item {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 40px;
    color: var(--white);
}

.contact-item:first-child {
    background-color: var(--primary);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

/* Details Section */
.details-section {
    padding-bottom: 30px;
}
.details-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.details-content {
    flex: 1;
}

.details-image {
    flex: 1;
}

.details-image img {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.details-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.detail-item {
    background-color: var(--light);
    padding: 18px 20px;
    border-radius: var(--border-radius);
    font-size: 14.5px;
    font-weight: 400;
    color: var(--secondary);
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.detail-item i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.detail-item strong {
    color: var(--secondary);
    font-weight: 700;
}

.details-author {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.author-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Top Laundry Services Section */
.top-services-section {
    padding: 0 0 80px;
    background-color: #ffffff;
}

.top-services-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 50px;
}

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

.top-services-card {
    background-color: #ffffff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #edf1f7;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.top-services-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--primary);
    transition: width 0.35s ease;
}

.top-services-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(141, 198, 63, 0.15);
    border-color: var(--primary);
}

.top-services-card:hover::after {
    width: 100%;
}

.top-services-icon {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 22px;
    display: inline-block;
    transition: transform 0.35s ease, color 0.35s ease;
}

.top-services-card:hover .top-services-icon {
    transform: scale(1.15) rotate(5deg);
}

.top-services-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e2640;
    margin-bottom: 12px;
    transition: color 0.35s ease;
}

.top-services-card:hover h3 {
    color: var(--primary);
}

.top-services-card p {
    font-size: 14.5px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    position: relative;
}

.process-step {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 50%;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px dashed var(--primary);
    position: relative;
}

.process-step.active {
    background-color: var(--primary);
    color: var(--white);
    border-style: solid;
}

.step-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.process-step.active .step-icon {
    color: var(--white);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(rgba(30, 38, 64, 0.8), rgba(30, 38, 64, 0.8)), url('https://images.unsplash.com/photo-1545173168-9f1947eebb7f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover;
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-content h2 {
    margin-bottom: 0;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.team-member {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255,255,255,0.9);
    padding: 15px;
    text-align: center;
    transform: translateY(100%);
    transition: var(--transition);
}

.team-member:hover .team-info {
    transform: translateY(0);
}

/* FAQ */
.faq-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.faq-content {
    flex: 1;
}

.faq-image {
    flex: 1;
}

.faq-image img {
    border-radius: var(--border-radius);
}

.faq-accordion {
    margin-top: 30px;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-item.active .faq-header {
    background-color: var(--primary);
    color: var(--white);
}

.faq-body {
    padding: 0 20px 20px;
    display: none;
}

.faq-item.active .faq-body {
    display: block;
    background-color: var(--primary);
    color: var(--white);
}

/* Appointment */
.appointment-container {
    display: flex;
    gap: 50px;
}

.testimonial-side, .form-side {
    flex: 1;
}

.testimonial-card {
    background-color: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.testimonial-card p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 30px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.form-side {
    padding: 40px;
    border-radius: var(--border-radius);
}

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

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background-color: var(--white);
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    transition: var(--transition);
}

.pricing-card.active {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-10px);
}

.pricing-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.pricing-card.active .pricing-header {
    border-color: rgba(255,255,255,0.1);
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
}

.price span {
    font-size: 18px;
    color: var(--gray);
}

.pricing-card.active .price span {
    color: #ccc;
}

.pricing-features {
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 15px;
}

/* Brands */
.brands {
    padding: 40px 0;
}

.brands-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.7;
}

/* Blog */
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

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

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-meta i {
    color: var(--primary);
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    padding: 80px 0 0;
}
.footer .text-gray {
    color: var(--white) !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

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

.footer-links a:hover {
    color: var(--primary);
}

.contact-list li {
    margin-bottom: 15px;
    color: var(--white) !important;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.contact-list i {
    color: var(--primary);
    margin-top: 4px;
    min-width: 16px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    outline: none;
}

.newsletter-form button {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 0 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
}

.footer-bottom {
    background-color: rgba(0,0,0,0.2);
    padding: 20px 0;
}

/* About Us Page Styles */
.about-page-header {
    background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('https://images.unsplash.com/photo-1517677208171-0bc6725a3e60?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    margin-bottom: 60px;
}

.about-page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
    letter-spacing: -0.5px;
}

.about-breadcrumb {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.about-breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.about-breadcrumb a:hover {
    color: var(--primary);
}

.about-page-section {
    padding: 40px 0 80px;
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.badge-pill-light {
    display: inline-block;
    background-color: #f0f4f8;
    color: #4a5568;
    font-size: 13.5px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
}

.about-page-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.25;
    margin-bottom: 12px;
}

.about-page-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 25px;
}

.about-page-content p {
    color: var(--gray);
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.about-page-image-col {
    position: relative;
}

.about-promo-img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 4px solid var(--white);
    transition: var(--transition);
}

.about-promo-img-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 132, 255, 0.15);
}

.about-promo-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-floating-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--white);
    padding: 22px 28px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    text-align: center;
    border: 1px solid rgba(0, 132, 255, 0.15);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.experience-floating-badge:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 45px rgba(0, 132, 255, 0.25);
    border-color: var(--primary);
}

.exp-badge-icon {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 5px;
}

.exp-badge-number {
    font-size: 38px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 4px;
}

.exp-badge-text {
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
}

.mission-vision-section {
    padding: 20px 0 60px;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.mv-card {
    background-color: var(--white);
    padding: 40px 35px;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #00c6ff);
    opacity: 0;
    transition: 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 132, 255, 0.14);
    border-color: rgba(0, 132, 255, 0.2);
}

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

.mv-icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 132, 255, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 22px;
    transition: all 0.4s ease;
}

.mv-card:hover .mv-icon-box {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(6deg);
}

.mv-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
    transition: 0.3s ease;
}

.mv-card:hover h3 {
    color: var(--primary);
}

.mv-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.cta-extraordinary-section {
    padding: 20px 0 80px;
}

.cta-extraordinary-card {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.07);
    border: 1px solid #eef2f6;
    padding: 30px 45px 30px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.cta-extraordinary-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 132, 255, 0.15);
    border-color: rgba(0, 132, 255, 0.3);
}

.cta-left-graphic {
    position: relative;
    width: 220px;
    flex-shrink: 0;
}

.cta-laundry-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 100px 0 0 100px;
    display: block;
}

.cta-phone-badge {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    background-color: var(--white);
    border: 4px solid #f0f8ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(0, 132, 255, 0.2);
    transition: all 0.4s ease;
}

.cta-extraordinary-card:hover .cta-phone-badge {
    transform: translateY(-50%) scale(1.1) rotate(15deg);
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--white);
}

.cta-center-text {
    flex: 1;
    padding-left: 20px;
}

.cta-center-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.35;
    margin: 0;
}

.cta-btn-wrapper .btn-book-now {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #0084ff;
    color: var(--white);
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 132, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
}

.cta-btn-wrapper .btn-book-now:hover {
    background-color: #006bce;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 132, 255, 0.45);
}

.cta-btn-wrapper .btn-book-now i {
    transition: transform 0.3s ease;
}

.cta-btn-wrapper .btn-book-now:hover i {
    transform: rotate(20deg) scale(1.1);
}

/* Services Page Styles */
.services-page-header {
    background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('https://images.unsplash.com/photo-1545173168-9f1947eebb7f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    margin-bottom: 60px;
}

.services-page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
    letter-spacing: -0.5px;
}

.services-main-title {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.services-sub-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 50px;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 70px;
}

.service-card-item {
    background-color: var(--white);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #edf2f7;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 132, 255, 0.15);
    border-color: rgba(0, 132, 255, 0.3);
}

.service-card-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-item:hover .service-card-img-wrap img {
    transform: scale(1.08);
}

.service-corner-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0084ff;
    font-size: 22px;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card-item:hover .service-corner-badge {
    transform: rotate(12deg) scale(1.1);
    background: #0084ff;
    color: var(--white);
}

.service-card-body {
    padding: 28px 25px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.service-card-body h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
    transition: 0.3s ease;
}

.service-card-item:hover .service-card-body h3 {
    color: #0084ff;
}

.service-card-body p {
    color: var(--gray);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 25px;
    flex: 1;
}

.service-card-actions {
    display: flex;
    gap: 12px;
}

.btn-whatsapp-card {
    flex: 1;
    background: #25d366;
    color: #fff;
    padding: 12px 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-card:hover {
    background: #1ebc59;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}

.btn-callnow-card {
    flex: 1;
    background: #0084ff;
    color: #fff;
    padding: 12px 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 12px rgba(0, 132, 255, 0.25);
}

.btn-callnow-card:hover {
    background: #006bce;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 132, 255, 0.45);
}

/* Vaishali Nagar Page Premium Styles */
.vaishali-page-header {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(0, 86, 179, 0.75)), url('https://images.unsplash.com/photo-1517677208171-0bc6725a3e60?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.vaishali-page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #0084ff, #00d2ff, #25d366);
}

.vaishali-page-header h1 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--white);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.vaishali-intro-section {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.vaishali-main-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #0056b3 0%, #0084ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.vaishali-sub-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vaishali-sub-title::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 4px;
    background: #0084ff;
    border-radius: 2px;
}

.vaishali-intro-text {
    color: var(--gray);
    font-size: 16.5px;
    line-height: 1.9;
    margin-bottom: 60px;
    text-align: justify;
    background: #ffffff;
    padding: 30px 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border-left: 5px solid #0084ff;
    border: 1px solid #edf2f7;
    border-left-width: 5px;
    border-left-color: #0084ff;
    transition: all 0.3s ease;
}

.vaishali-intro-text:hover {
    box-shadow: 0 15px 40px rgba(0, 132, 255, 0.08);
    transform: translateY(-3px);
}

.vaishali-pickup-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.vaishali-pickup-text h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--secondary);
    position: relative;
}

.vaishali-pickup-text p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 22px;
    text-align: justify;
}

.vaishali-pickup-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.vaishali-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    background: #ffffff;
    padding: 14px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #edf2f7;
    transition: all 0.3s ease;
}

.vaishali-feature-item i {
    color: #0084ff;
    font-size: 20px;
    background: rgba(0, 132, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.vaishali-feature-item:hover {
    transform: translateX(8px);
    border-color: rgba(0, 132, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 132, 255, 0.1);
}

.vaishali-pickup-img-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    border: 2px solid #edf2f7;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.vaishali-pickup-img-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 132, 255, 0.2);
    border-color: #0084ff;
}

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

.vaishali-pickup-img-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.vaishali-pickup-img-card:hover img {
    transform: scale(1.08);
}

.vaishali-img-caption {
    padding: 18px 25px;
    background: linear-gradient(90deg, #f8fafd 0%, #f0f6ff 100%);
    color: var(--secondary);
    font-size: 14px;
    font-weight: 700;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.vaishali-img-caption i {
    color: #0084ff;
    font-size: 16px;
}

.vaishali-dark-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 100px 0;
    margin: 40px 0 60px;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #0084ff;
    border-bottom: 4px solid #0084ff;
}

.vaishali-dark-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 132, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.vaishali-dark-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.vaishali-dark-card {
    background: linear-gradient(145deg, #ffffff 0%, #f4f7fb 100%);
    border: 2px solid rgba(0, 132, 255, 0.25);
    border-radius: 22px;
    padding: 45px 38px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vaishali-dark-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vaishali-dark-card:hover {
    background: #ffffff;
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(141, 198, 63, 0.4);
    border-color: var(--primary);
}

.vaishali-dark-card:hover::before {
    opacity: 1;
}

.vaishali-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(141, 198, 63, 0.1);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(141, 198, 63, 0.15);
}

.vaishali-dark-card:hover .vaishali-card-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    transform: rotateY(180deg) scale(1.1);
    box-shadow: 0 12px 25px rgba(141, 198, 63, 0.35);
}

.vaishali-dark-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--secondary);
    transition: 0.3s ease;
}

.vaishali-dark-card:hover h3 {
    color: var(--primary);
}

.vaishali-dark-card p {
    color: #4a5568;
    font-size: 15.5px;
    line-height: 1.85;
    margin: 0;
}

/* Vaishali Services Wheel Section */
.vaishali-services-wheel-section {
    background: #eef3f9;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.wheel-grid-container {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.wheel-col-left, .wheel-col-right {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.wheel-col-left .wheel-item {
    text-align: center;
}

.wheel-col-right .wheel-item {
    text-align: center;
}

.wheel-col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.wheel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 20px 15px;
    border-radius: 20px;
}

.wheel-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 15px 35px rgba(0, 132, 255, 0.08);
}

.wheel-icon-box {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: #0f172a;
    margin-bottom: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wheel-item:hover .wheel-icon-box {
    color: #0084ff;
    transform: scale(1.18);
}

.wheel-item h3 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.wheel-item:hover h3 {
    color: #0084ff;
}

.wheel-item p {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    max-width: 260px;
}

.wheel-center-img-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 10px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.9);
    width: 100%;
    max-width: 440px;
}

.wheel-center-img-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 35px 70px rgba(0, 132, 255, 0.25);
    border-color: #0084ff;
}

.wheel-center-img-card img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    transition: transform 0.6s ease;
}

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

/* Jhotwara Page Styles */
.highlight-blue-box {
    background: #0084ff;
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 6px 16px rgba(0, 132, 255, 0.3);
}

.jhotwara-main-heading {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    margin: 30px 0 20px;
    color: var(--secondary);
}

.jhotwara-express-section {
    padding: 70px 0 40px;
    background: #ffffff;
    text-align: center;
}

.jhotwara-express-section h2 {
    color: #0084ff;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
}

.jhotwara-express-section h4 {
    color: var(--secondary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.jhotwara-express-section p {
    max-width: 850px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.85;
}

/* Contact Us Page Styles */
.contact-page-section {
    padding: 80px 0 0 0;
}

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

.contact-left-col h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.contact-left-col p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.contact-info-cards-container {
    margin-top: 35px;
    margin-bottom: 35px;
}

.contact-info-card-full {
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid #f1f5f9;
    transition: var(--transition);
}

.contact-info-card-full:hover,
.contact-info-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
    border-color: #e2e8f0;
}

.contact-info-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-info-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    color: var(--primary);
    font-size: 22px;
}

.contact-info-card-full h4,
.contact-info-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.contact-info-card-full p,
.contact-info-card p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 500;
}

.contact-social-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.contact-social-icons {
    display: flex;
    gap: 12px;
}

.contact-social-icons a {
    width: 40px;
    height: 40px;
    background: #7c8ba1;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.contact-social-icons a:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(132, 204, 22, 0.3);
}

/* Right Column: Form Card */
.contact-form-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 45px 40px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02);
}

.contact-form-card h3 {
    font-size: 30px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 30px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.contact-form-grid .contact-input-wrapper {
    margin-bottom: 0;
}

.contact-input-wrapper input,
.contact-input-wrapper select,
.contact-input-wrapper textarea {
    width: 100%;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px 45px 14px 18px;
    font-size: 14px;
    color: var(--secondary);
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.contact-input-wrapper select {
    appearance: none;
    cursor: pointer;
}

.contact-input-wrapper textarea {
    padding: 16px 45px 16px 18px;
    height: 140px;
    resize: none;
}

.contact-input-wrapper input:focus,
.contact-input-wrapper select:focus,
.contact-input-wrapper textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(132, 204, 22, 0.15);
}

.contact-input-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 15px;
    pointer-events: none;
}

.contact-textarea-wrapper .contact-input-icon {
    top: 24px;
    transform: none;
}

.contact-submit-btn {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 16px 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 5px;
}

.contact-submit-btn:hover {
    background: #65a30d;
    box-shadow: 0 8px 25px rgba(132, 204, 22, 0.35);
    transform: translateY(-2px);
}

/* Map Section */
.contact-map-section {
    width: 100%;
    margin-top: 80px;
    display: flex;
}

.contact-map-section iframe {
    width: 100%;
    height: 480px;
    display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
    .features-cards, .services-grid, .services-grid-new, .process-grid, .team-grid, .pricing-grid, .blog-grid, .top-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .details-container, .faq-container, .appointment-container {
        flex-direction: column;
    }
    .about-container {
        flex-direction: column-reverse;
    }
    .cta-container {
        flex-direction: column;
        gap: 20px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .experience-floating-badge {
        top: 10px;
        right: 10px;
        padding: 15px 20px;
    }
    .mv-grid {
        grid-template-columns: 1fr;
    }
    .cta-extraordinary-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }
    .cta-left-graphic {
        width: 100%;
        max-width: 250px;
    }
    .cta-laundry-img {
        border-radius: 50px;
    }
    .cta-phone-badge {
        right: 10px;
    }
    .cta-center-text {
        padding-left: 0;
    }
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .vaishali-pickup-grid, .vaishali-dark-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .features-cards, .services-grid, .services-grid-new, .process-grid, .team-grid, .pricing-grid, .blog-grid, .details-grid, .top-services-grid {
        grid-template-columns: 1fr;
    }
    .top-services-title {
        font-size: 28px;
        margin-bottom: 35px;
    }
    .contact-banner-container {
        flex-direction: column;
    }
    .topbar {
        display: none;
    }
    .hero .title {
        font-size: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .about-page-header h1 {
        font-size: 32px;
    }
    .about-page-title {
        font-size: 30px;
    }
    .services-cards-grid {
        grid-template-columns: 1fr;
    }
    .services-main-title {
        font-size: 28px;
    }
    .service-card-actions {
        flex-direction: column;
    }
    .vaishali-main-title {
        font-size: 28px;
    }
    .vaishali-pickup-text h3 {
        font-size: 24px;
    }
    .vaishali-dark-card {
        padding: 30px 20px;
    }
    .logo img {
        max-height: 58px;
    }
    .nav .menu {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    .nav .menu .dropdown-menu {
        position: static;
        box-shadow: none;
        border: 1px solid #edf2f7;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: 100%;
        margin-top: 8px;
        display: none;
    }
    .nav .menu li.dropdown:hover .dropdown-menu,
    .nav .menu li.dropdown:focus-within .dropdown-menu {
        display: flex;
    }
    .wheel-grid-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .wheel-col-left, .wheel-col-right, .wheel-col-center {
        gap: 40px;
    }
    .wheel-center-img-card img {
        height: 250px;
    }
    .jhotwara-main-heading {
        font-size: 28px;
    }
    .jhotwara-express-section h2 {
        font-size: 26px;
    }
    .contact-info-cards-row, .contact-form-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-card {
        padding: 30px 20px;
    }
    .contact-left-col h2 {
        font-size: 30px;
    }
    .contact-map-section iframe {
        height: 350px;
    }
}

/* Floating Action Buttons */
.floating-contact-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.floating-btn.whatsapp-btn {
    background: #25D366;
}

.floating-btn.call-btn {
    background: #0084ff;
}

@media (max-width: 768px) {
    .floating-contact-container {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    .floating-btn {
        width: 54px;
        height: 54px;
        font-size: 26px;
    }
}

/* Feature Strip Section (Above Footer) */
.feature-strip-section {
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.feature-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}

.feature-strip-box {
    padding: 30px 40px;
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.feature-strip-box:hover {
    filter: brightness(1.08);
}

.feature-strip-box.box-dark {
    background-color: #08131f;
}

.feature-strip-box.box-blue {
    background-color: #2845d6;
}

.feature-strip-box.box-green {
    background-color: #7ec22e;
}

.feature-strip-icon {
    width: 75px;
    height: 75px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 15px;
    color: #ffffff;
    transition: transform 0.4s ease;
}

.feature-strip-box:hover .feature-strip-icon {
    transform: rotateY(360deg) scale(1.05);
}

.feature-strip-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.feature-strip-box p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
    max-width: 300px;
}

@media (max-width: 991px) {
    .feature-strip-grid {
        grid-template-columns: 1fr;
    }
    .feature-strip-box {
        padding: 25px 20px;
    }
}

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

/* Hamburger Menu Button */
.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--secondary);
    cursor: pointer;
    background: none;
    border: none;
    margin-left: 20px;
}

/* Tablet & Mobile (max-width: 991px) */
@media (max-width: 991px) {
    /* Topbar */
    .topbar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .topbar-left, .topbar-right {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Header & Navigation */
    .mobile-menu-btn {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1000;
        transition: right 0.4s ease;
        padding-top: 80px;
        overflow-y: auto;
    }
    
    .nav.active {
        right: 0;
    }

    .nav .menu {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .nav .menu li {
        width: 100%;
        margin: 0;
    }

    .nav .menu li a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid #edf1f7;
    }
    
    .nav .menu .dropdown-menu {
        position: relative;
        top: 0;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        display: none;
        padding-left: 15px;
    }

    .nav .menu .dropdown:hover .dropdown-menu {
        display: block;
    }

    .header-actions {
        margin-left: auto;
    }

    /* Sections Padding & Typography */
    .section-padding { padding: 80px 0; }
    h2.section-title { font-size: 32px; }

    /* About Section */
    .about-container {
        flex-direction: column-reverse;
        gap: 30px;
    }
    .about-image-wrapper { width: 100%; }

    /* Services Grid */
    .top-services-grid { grid-template-columns: repeat(2, 1fr); }
    
    /* Process Grid */
    .process-steps { flex-direction: column; gap: 40px; }
    .process-step { margin: 0 auto; }
    .process-line { display: none; }

    /* Stats Grid */
    .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }

    /* Footer */
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    /* Header */
    .header-actions .btn {
        display: none;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    /* Hero Typography */
    .hero .title { font-size: 42px; line-height: 1.2; }
    .hero-buttons { flex-direction: column; width: 100%; gap: 10px; }
    .hero-buttons .btn { width: 100%; text-align: center; }

    /* Services Grid */
    .top-services-grid { grid-template-columns: 1fr; }
    
    /* Feature Cards */
    .features-cards.style-2 { flex-direction: column; }

    /* Stats Grid */
    .counter-grid { grid-template-columns: 1fr; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; }

    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
