:root {
    --primary: #F97316;        /* warm orange */
    --primary-dark: #EA580C;

    --secondary: #22C55E;      /* soft green */

    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;

    --text-dark: #111827;
    --text-light: #6B7280;

    --border: #E5E7EB;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.06);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: var(--bg-light);
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
	width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Header Styles */
.header {
    position: sticky;
    top: 25px;
    z-index: 999;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: 65px;
}


.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    height: 70px;
    position: relative;
}
.logo a {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
	margin-left:10px;
}
.logo-icon {
    width: 25px;
    height: 25px;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.logo-text {
    display: flex;
    flex-direction: column;
    font-weight: 1000;
    font-size: 18px;
    color: var(--text-dark);
}

.logo-text span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
}
.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.25s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}
.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}
.gradient-text {
    background: linear-gradient(90deg, #3B82F6, #8B5CF6, #F97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}


.btn-primary {
    background: linear-gradient(135deg, #0A66C2, #3B82F6);
    color: #fff;
    box-shadow: 0 10px 25px rgba(10,102,194,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(10,102,194,0.4);
}

.btn-secondary {
    background: #2ECC71;
    color: #ffffff;
}

.btn-secondary:hover {
    background: #27AE60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.btn-call {
    background: #2ECC71;
    color: #000000;
    padding: 10px 25px;
    border-radius: 25px;
}

.btn-call:hover {
    background: #27AE60;
    transform: translateY(-2px);
}
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin-top: 25px;
    flex-wrap: wrap;
}
.hero-stat-item {
    text-align: center;
    min-width: 120px;
}

.hero-stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: #2563EB; /* blue like screenshot */
    margin-bottom: 5px;
}

.hero-stat-item p {
    color: #6B7280;
    font-size: 14px;
}

/* Hero Section */
.hero {
    background: linear-gradient(
        to bottom,
        #fcf7ed 0%,
        #ebfcfc 60%
    );
    padding: 50px 0 50px;
    text-align: center;
}
.service-badge {
    display: inline-block;
    background: #FFF3E0;
    color: #EA580C;
    padding: 5px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}
.services-badge {
    display: inline-block;
    background: #FFF3E0;
    color: #EA580C;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
   
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover Effect (Second Image Style) */
.service-badge:hover {
    background: #111827;
    color: #F97316;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}
.services-badge:hover {
    background: #111827;
    color: #F97316;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}
.hero .service-badge {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: fit-content;
}


.hero-content {
    max-width: 1100px;
    margin: 0 auto;
}
.hero-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin: 0 auto 15px;
	max-width: 1000px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgb(75 85 99);
    max-width: 950px;
    margin: 0 auto;
	line-height: 1.6;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}
.mobile-actions {
    display: none;
}


/* Services Section */

.services {
    padding: 30px 0;
    background: linear-gradient(
        to bottom,
        #ebfcfc 0%,
        #fcf7ed 60%
    );
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: rgb(75 85 99);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.service-card-modern {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.service-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.service-card-modern h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111827;
}
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.service-tags span {
    font-size: 10px;
    font-weight: 500;
    padding: 7px 14px;
    background: #ffffff;
    color: #374151;
    border-radius: 25px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    transition: all 0.2s ease;
    white-space: nowrap;
}

/* Hover effect (optional but premium) */
.service-tags span:hover {
    background: #F9FAFB;
    border-color: #D1D5DB;
    transform: translateY(-1px);
}
.service-link-modern {
    color: #2563EB;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}
.service-link-modern:hover {
    text-decoration: underline;
}

/* Description */
.service-card-modern p {
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 18px;
}
.service-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E0E7FF, #FFEAD5);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #2563EB;
}


.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1E88E5, #2196F3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon svg {
    color: #ffffff;
}


.service-link {
    color: #1E88E5;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #1976D2;
}
/* Why Choose Modern Section */
.why-choose-modern {
    background: linear-gradient(
        to bottom,
        #fcf7ed 0%,
        #ebfcfc 60%
    );
    padding: 50px 0;
}
.why-choose-modern1 {
    background: linear-gradient(
        to bottom,
        #ebfcfc 0%,
        #fcf7ed 60%
    );
    padding: 50px 0;
}
.why-chose-modern {
    background: linear-gradient(
        to bottom,
        #ebfcfc 0%,
        #fcf7ed 60%
    );
    padding: 30px 0;
}

/* Header Center */
.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center h2 {
    font-size: 40px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.section-header-center p {
    color: #6B7280;
    font-size: 16px;
}

/* Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Card */
.why-card {
    background: #ffffff;
    padding: 13px;
    border-radius: 14px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Icon Box */
.why-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #4F46E5, #F97316);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 15px;
}

/* Title */
.why-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

/* Text */
.why-card p {
    font-size: 14px;
    color: #6B7280;
}
/* Service Areas Section */
.service-areas-modern {
    background: linear-gradient(
        to bottom,
        #ebfcfc 0%,
        #fcf7ed 60%
    );
    padding: 30px 0 10px;
}


/* Areas Grid */
.areas-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Area Card */
.area-card-modern {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 20px 10px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    width: 100%;
}

.area-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.area-icon {
    font-size: 22px;
    color: #F97316;
    display: block;
    margin-bottom: 6px;
}

.area-card-modern h4 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}
/* Blue Booking Section */
.booking-hero-section {
    background:linear-gradient(135deg, #2F5DE5, #1E40AF);
    padding:  50px 0 70px  0;
    color: #fff;
}

/* Layout */
.booking-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 345px;
    gap: 60px;
    align-items: center;
}

/* Left Content */
.booking-hero-content h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
}

.booking-hero-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 520px;
}

/* List */
.booking-hero-list {
    list-style: none;
    margin-bottom: 30px;
}

.booking-hero-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
    font-size: 15px;
}

.booking-hero-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #F97316;
    font-weight: bold;
}

/* Call Box */
.booking-hero-call {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 20px 35px;        /* padding increase */
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 25px;

    min-width: 560px;          /* box wider */
}
.booking-hero-call:hover {
    transform: none;
}

/* Icon */
.call-icon {
    font-size: 32px;
    color: #F97316;
}

/* Text */
.call-text span {
    display: block;
    font-size: 15px;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 4px;
}
.call-number {
    font-size: 28px;
    font-weight: 700;
    color: #28282B;          /* default white */
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Hover only on number */
.call-number:hover {
    color: #FFA726;          /* orange on hover */
}


/* Form Card */
.booking-hero-form {
    background: #ffffff;
    color: #111827;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
	width: 100%;
    max-width: 520px;
}

.booking-hero-form h3 {
    margin-bottom: 18px;
    font-size: 24px;
}

/* Form Fields */
.booking-hero-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.booking-hero-form label {
    font-size: 13px;
    font-weight: 600;
}
.booking-hero-form select {
    padding: 12px;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
}
.booking-hero-form input,
.booking-hero-form textarea {
    padding: 12px;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    font-size: 14px;
}
/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Popup Box */
.popup-box {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 14px;
    text-align: center;
    max-width: 380px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    animation: popupFade 0.3s ease;
}

/* Icon */
.popup-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

/* Title */
.popup-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #111827;
}

/* Text */
.popup-box p {
    color: #6B7280;
    font-size: 15px;
    margin-bottom: 20px;
}

/* Button */
.popup-btn {
    background: #16A34A;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.popup-btn:hover {
    background: #15803D;
}

/* Animation */
@keyframes popupFade {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.booking-hero-form textarea {
    min-height: 90px;
    resize: vertical;
}

/* Button */
.booking-hero-form button {
    margin-top: 10px;
    background: #2F5DE5;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.booking-hero-form button:hover {
    background: #1E40AF;
}


.btn-cta-call {
    background: #F97316;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-cta-call:hover {
    background: #EA580C;
}

.btn-cta-whatsapp {
    border: 2px solid #22C55E;
    color: #22C55E;
    padding: 10px 26px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-cta-whatsapp:hover {
    background: #22C55E;
    color: #fff;
}


/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1E88E5, #2196F3);
    padding: 60px 0;
    text-align: center;
    color: #ffffff;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* About Page */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2rem;
    color: #1E88E5;
    margin-bottom: 1rem;
}

.about-text h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 2rem 0 1rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, #1E88E5, #2196F3);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: #ffffff;
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1rem;
    opacity: 0.9;
}

.why-choose-about {
    padding: 80px 0;
    background: #F5F5F5;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.value-card h3 {
    font-size: 1.25rem;
    color: #1E88E5;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.service-areas {
    padding: 80px 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.area-card {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
}

/* Booking Page */
.booking-section {
    padding: 80px 0;
    background: #F5F5F5;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.booking-form-container {
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1E88E5;
}

.form-group textarea {
    resize: vertical;
}

.error-text {
    color: #E74C3C;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.error-text.show {
    display: block;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.alert-error {
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
    font-size: 1.5rem;
    color: #1E88E5;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item svg {
    color: #1E88E5;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    color: #333;
    margin-bottom: 0.25rem;
}

.info-item p {
    color: #666;
    margin: 0;
}

.info-item a {
    color: #1E88E5;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #1976D2;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ECC71;
    font-weight: bold;
}

/* Top Bar */
.top-bar {
    background: #1d4ed8;
    color: #D1D5DB;
    font-size: 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 25px;
    display: flex;
    align-items: center;
}

.top-bar-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 25px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-left {
    font-weight: 600;
	width: 100%;
    white-space: nowrap;
}
.top-left span {
    margin-right: 10px;
}

.top-right {
    font-weight: 600;
	width: 100%;
	flex-direction: column;
	margin-left: auto;
    text-align: right;
    font-weight: 600;
    white-space: nowrap;
}

.serving-marquee {
    overflow: hidden;
}

.serving-marquee span {
    white-space: nowrap;
}



/* Header Buttons */
.btn-whatsapp {
    background: #ECFDF5;
    color: #16A34A;
    border: 1px solid #BBF7D0;
    padding: 8px 18px;
    border-radius: 100px;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background: #16A34A;
    color: #fff;
}
.btn-call-now {
    background: var(--primary);
    color: #fff;
    border-radius: 100px;
	padding: 8px 18px;
}

.btn-call-now:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}
/* Mobile Call Button */
.mobile-call-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #2ECC71;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(46, 204, 113, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.mobile-call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.5);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in:nth-child(2) {
    animation-delay: 0.1s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.2s;
}

.fade-in:nth-child(4) {
    animation-delay: 0.3s;
}

.fade-in:nth-child(5) {
    animation-delay: 0.4s;
}

.fade-in:nth-child(6) {
    animation-delay: 0.5s;
}
.mobile-menu-header {
    display: none;
}

.mobile-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.footer-modern {
    background: linear-gradient(135deg, #0F172A, #020617);
    color: #CBD5E1;
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 50px;
}

/* Brand */
.footer-logo {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 28px;
    height: auto;
}

.footer-logo h3 {
    margin: 0;
    font-size: 18px;
    color: #fff;
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}
/* Social */
.footer-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    color: #fff;
    margin-right: 8px;
    font-size: 16px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #F97316;
    transform: translateY(-2px);
}

/* Columns */
.footer-column h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 17px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    font-size: 13px;
    margin-bottom: 10px;
    color: #CBD5E1;
}

.footer-column a {
    color: #CBD5E1;
}

.footer-column a:hover {
    color: #F97316;
}

/* Bottom */
.footer-bottom-modern {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #94A3B8;
	padding-top:15px;
}
/* Service Hero */
.service-hero{
    background: linear-gradient(
        to bottom,
        #fcf7ed 0%,
        #ebfcfc 60%
    );
    padding: 50px 0 50px 0;
}

.service-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 50px;
    align-items: center;
}

.service-hero-content h1 {
    font-size: 50px;
    font-weight: 600;
    color: #111827;
    margin: 15px 0;
	letter-spacing: -0.5px;
    line-height: 1.15;   
    word-spacing: -2px;
}

.service-hero-content p {
    color: #6B7280;
    font-size: 16px;
    max-width: 520px;
}

.service-hero-buttons {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

/* Call Box */
.service-call-box {
    background: #ffffff;
    padding: 18px 204px 18px 54px;
    border-radius: 14px;

    /* Matching Border */
    border: 2px solid rgba(37, 99, 235, 0.15);

    /* Soft shadow for depth */
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.08);

    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px; 
}
.service-call-box:hover {
    border-color: rgba(249, 115, 22, 0.35); /* orange theme */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-call-box span {
    font-size: 14px;
    color: #6B7280;
    display: block;
}

/* Right Image Card */
.service-hero-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-hero-image img {
    width: 100%;
    display: block;
}
.service-hero-image2 {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-hero-image2 img {
    width: 100%;
    display: block;
	height:40%;
}
/* Washing Machine Services Section */
.wm-services {
    background: linear-gradient(
        to bottom,
        #ebfcfc 0%,
        #fcf7ed 60%
    );
    padding: 30px 0;
}

.wm-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
	align-items: stretch;
}

/* Card */
.wm-service-item {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 22px 26px;

    display: flex;
    align-items: center;
    gap: 14px;

    height: 100%;              /* equal height */
    min-height: 90px;          /* same size look */

    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
}

.wm-service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Check icon */
.wm-check {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #22C55E;
    color: #22C55E;
    font-size: 14px;
    font-weight: bold;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Text */
.wm-service-item p {
    font-size: 15px;
    color: #1F2937;
    font-weight: 500;
    margin: 0;
	line-height: 1.4;
}
/* Pricing Section */
.wm-pricing-section {
    padding: 30px 0;
    background: linear-gradient(
        to bottom,
        #ebfcfc 0%,
        #fcf7ed 60%
    );
}
.wm-pricing-section1 {
    padding: 10px 0 30px;
    background: linear-gradient(
        to bottom,
        #fcf7ed 0%,
        #ebfcfc 60%
    );
}
.wm-pricing-section .container {
    max-width: 900px;   /* side space ke liye */
}
.wm-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

/* Price Card */
.wm-price-card {
    background: #ffffff;
    padding: 22px 28px;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: 0.25s;
}
.price-left {
    font-size: 18px;
    font-weight: 600;
    color: #1F2937;
    max-width: 70%;
}

/* Price */
.price-right {
    font-size: 24px;
    font-weight: 700;
    color: #2563EB;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.1;
}
.price-right span {
    font-size: 14px;
    font-weight: 500;
    color: #6B7280;
    margin-left: 4px;
}
.price-note {
    font-size: 13px;
    font-weight: 500;
    color: #6B7280;
    margin-top: 2px;
}
.wm-price-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

/* Full width AMC */
.wm-price-card.full-width {
    grid-column: span 2;
}

/* Note Box */
.wm-pricing-note {
    margin-top: 30px;
    padding: 18px 22px;
    background: #FFF7ED;
    border: 1px solid #FDBA74;
    border-radius: 10px;
    font-size: 15px;
    color: #374151;
}
/* ===== Book Page ===== */

.book-form-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    max-width: 420px;
    width: 100%;
}

/* Form */
.booking-form-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-form-modern label {
    font-size: 13px;
    font-weight: 600;
}

.booking-form-modern input,
.booking-form-modern select,
.booking-form-modern textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    font-size: 14px;
}

.booking-form-modern input:focus,
.booking-form-modern select:focus,
.booking-form-modern textarea:focus {
    outline: none;
    border-color: #F97316;
}

/* Button */
.book-submit-btn {
    background: #F97316;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.book-submit-btn:hover {
    background: #EA580C;
}

/* Alerts */
.alert-success {
    background: #ECFDF5;
    color: #16A34A;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.alert-error {
    background: #FEF2F2;
    color: #DC2626;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}

/* Trust Section */
.book-trust {
    background: linear-gradient(
        to bottom,
        #ebfcfc 0%,
        #fcf7ed 60%
    );
    padding: 40px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: stretch;   /* important for equal height */
}

.trust-item {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #E5E7EB;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);

    display: flex;
    flex-direction: column;
    justify-content: center;

    min-height: 170px;   /* same height for all */
    height: 100%;
    transition: all 0.3s ease;
}

/* Hover effect (optional but premium look) */
.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Text */
.trust-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #111827;
}

.trust-item p {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.5;
}
.wm-details-section {
    padding: 70px 0;
    background: linear-gradient(
        to bottom,
        #fcf7ed 0%,
        #ebfcfc 60%
    );
}

/* Layout */
.wm-details-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    align-items: start;
}

/* ===== LEFT STICKY ===== */

.wm-details-left {
    position: relative;
    height: 100%;
}

.wm-sticky-box {
    position: sticky;
    top: 120px; 
    align-self: start;
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    border: 2px solid #F97316;
    width: 100%;
    box-sizing: border-box;
}

/* Sidebar items */
.wm-side-item {
    display: block;
    width: 100%;
    text-align: left;
    padding: 18px 22px;
    font-size: 15px;
    margin-bottom: 12px;
    border-radius: 40px;
    background: #E5E7EB;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}
/* Hover */
.wm-side-item:hover {
    background: #FDBA74;
    color: #111;
}

/* Active item */
.wm-side-item.active {
    background: #F97316;
    color: #fff;
}

/* ===== RIGHT CONTENT ===== */
.wm-details-content {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}
/* Headings */
.wm-details-content h2 {
    font-size: 26px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #111827;
}

.wm-details-content h2:first-child {
    margin-top: 0;
}

/* Paragraph */
.wm-details-content p {
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Problem List */
.wm-problem-list {
    margin: 15px 0 25px;
    padding-left: 0;
}

.wm-problem-list li {
    list-style: none;
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    color: #374151;
}

/* Check icon */
.wm-problem-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #F97316;
    font-weight: bold;
}

/* Images */
.wm-detail-img {
    display: block;
    width: 100%;
    max-width: 400px;   /* image chhoti hogi */
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.wm-details-section,
.wm-details-wrapper,
.wm-details-left {
    overflow: visible;
}
/* Detailed Problem Section */
.wm-problem-detailed {
    margin-top: 15px;
}

/* Intro text */
.wm-problem-intro {
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Each problem box */
.wm-problem-item {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-bottom: 22px;
}
/* Problem title */
.wm-problem-item h4 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #F97316;
    font-weight: 600;
}

/* Problem description */
.wm-problem-item p {
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    margin: 0;
}
.wm-problem-item {
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding-bottom: 16px;
}
.wm-problem-item:last-child {
    border-bottom: none;
}
/* Dropdown Parent */
.nav-item-dropdown {
    position: relative;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 8px 0;
    display: none;
    z-index: 1000;
}

/* Links */
.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    color: #374151;
    transition: 0.2s;
}

.dropdown-menu a:hover {
    background: #F9FAFB;
    color: var(--primary);
}
/* Privacy Policy Page */

.policy-section {
    padding: 80px 0;
    background: linear-gradient(
        to bottom,
        #fcf7ed 0%,
        #ebfcfc 60%
    );
}

.policy-container {
    width: 100%;
	margin: 0 auto;
}

.policy-header {
    text-align: center;
    margin-bottom: 40px;
}

.policy-header h1 {
    font-size: 40px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.policy-header p {
    color: #6B7280;
    font-size: 16px;
    line-height: 1.6;
}

.policy-content {
    background: transparent;   /* remove white box */
    padding: 20px 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.policy-content h2 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #111827;
}

.policy-content h3 {
    font-size: 18px;
    margin-top: 18px;
    margin-bottom: 6px;
    color: #F97316;
}

.policy-content p {
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 12px;
}

.policy-content ul {
    margin: 10px 0 20px;
    padding-left: 20px;
}

.policy-content ul li {
    margin-bottom: 6px;
    color: #374151;
}
/* List */
.policy-list {
    list-style: none;
    padding-left: 0;
    margin: 10px 0;
}

.policy-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 6px;
    color: #374151;
}

.policy-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #F97316;
    font-size: 12px;
}

/* Contact box */
.policy-contact {
    margin-top: 40px;
    padding: 18px 22px;
    background: #FFF7ED;
    border: 1px solid #FDBA74;
    border-radius: 10px;
    font-size: 15px;
}
.float-whatsapp {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: 0.3s;
}



.float-whatsapp:hover {
    transform: scale(1.1);
}

/* Floating Call */
.float-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #F97316;
    color: #fff;
    font-size: 26px;
    border-radius: 50%;
    
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.4);
    z-index: 999;
    transition: 0.3s;
display: none;
}

.float-call:hover {
    transform: scale(1.1);
}
.footer-locations {
    grid-column: span 1;   /* desktop pe thoda wide */
}

.office-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 12px;
    transition: 0.3s;
	margin-left: -25px;
}

.office-box:hover {
    border-color: #F97316;
    transform: translateY(-2px);
}

.office-box h5 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 6px;
}

.office-box p {
    font-size: 12px;
    color: #CBD5E1;
    line-height: 1.5;
    margin: 0;
}
.brand-slider-section {
    padding: 30px 0 30px;
    background: linear-gradient(
        to bottom,
        #ebfcfc 0%,
        #fcf7ed 60%
    );
}


.brand-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.brand-slider {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    gap: 20px;
    width: 100%;
}

.brand-card {
    min-width: 300px;          /* slider width */
    height: 220px;             /* box ko lamba karne ke liye (adjust kar sakte ho) */
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;  /* content upar se start */
}

.brand-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #111827;
}

.brand-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.brand-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 2;
}

.brand-arrow.left {
    left: -20px;
}

.brand-arrow.right {
    right: -20px;
}
.brand-subheading {
    text-align: center;
    margin: 20px 0 30px;
    font-size: 22px;
    font-weight: 600;
    color: #111827;
}

/* Reviews Section */
.reviews-section {
    padding: 30px 0 30px;
    background: #f8fafc;
	background: linear-gradient(
        to bottom,
        #fcf7ed 0%,
        #ebfcfc 60%
    );
}

.review-wrapper {
    position: relative;
    margin-top: 30px;
}

.review-slider {
    display: flex;
    gap: 20px;
    overflow: hidden;
    scroll-behavior: smooth;
}

/* Card */
.review-card {
    min-width: 320px;
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.review-stars {
    color: #f59e0b;
    font-size: 18px;
    margin-bottom: 10px;
}

.review-card p {
    font-size: 15px;
    color: #475569;
    margin-bottom: 15px;
}

.review-card h4 {
    margin: 0;
    font-size: 16px;
    color: #0f172a;
}

.review-card span {
    font-size: 13px;
    color: #94a3b8;
}

/* Arrows */
.review-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #0f172a;
    color: #fff;
    border: none;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
}

.review-arrow.left { left: -10px; }
.review-arrow.right { right: -10px; }




/* Responsive Design */
@media (max-width: 968px) {
.float-call {display:inline !important;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #F97316;
    color: #fff;
    font-size: 26px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.4);
    z-index: 999;
    transition: 0.3s;
}


.float-whatsapp img {
width: 30px;
    height: 30px;
    position: relative!important;
    top: 18%!important;
    left: 18%!important;

}
.float-whatsapp{
display:inline !important;
position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: 0.3s;
}
.review-card {
        min-width: 85%;
    }
	.brand-card {
        height: auto;        /* mobile me content ke hisaab se */
        min-width: 85%;
    }
	.policy-contact {
    font-size: 12px;
}
	.office-box {
    margin-left: 0;
	}
	.footer-locations {
        grid-column: span 1;
    }
	.section-header-center h2 {
    font-size: 35px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}
	.section-header h2 {
    font-size: 35px;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
	.top-right{
		width:200%;
	}
	.policy-content {
        padding: 25px;
    }

    .policy-header h1 {
        font-size: 28px;
    }
	.dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        padding-left: 10px;
        display: none;
    }

    .nav-item-dropdown.active .dropdown-menu {
        display: block;
    }

    .services-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
	  * {
        max-width: 100%;
    }
	
	.wm-details-wrapper {
        grid-template-columns: 1fr;
    }

    .wm-sticky-box {
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }
	.trust-grid {
        grid-template-columns: repeat(2, 1fr);  /* 2 per row */
        gap: 18px;
    }
	.trust-item {
        min-height: 150px;
        padding: 20px;
    }

    .trust-item h3 {
        font-size: 16px;
    }

    .trust-item p {
        font-size: 13px;
    }

    .book-form-card {
        max-width: 100%;
    }
	.wm-pricing-grid {
        grid-template-columns: 1fr;
    }
	.wm-pricing-section .container {
        max-width: 100%;
    }

    .wm-price-card.full-width {
        grid-column: span 1;
    }
	.wm-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .wm-service-item p {
        font-size: 15px;
    }
	.service-hero-wrapper {
        grid-template-columns: 1fr;
    }

	.service-hero-content h1 {
        font-size: 32px;       /* size control */
        line-height: 1.2;      /* lines close */
        letter-spacing: -0.5px;
        word-spacing: -1px;
    }
	.service-call-box{
		min-width: 0;          /* remove desktop width */
        width: 100%;
        max-width: 100%;
        padding: 18px 20px;
        box-sizing: border-box;
	}
	.booking-hero-call {
        min-width: 0;          /* remove desktop width */
        width: 100%;
        max-width: 100%;
        padding: 18px 20px;
        box-sizing: border-box;
    }
	.booking-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .booking-hero-content h2 {
        font-size: 26px;
    }
	 .call-number {
        font-size: 22px;
    }
	.hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 30px;
    }

    .hero-stat-item h3 {
        font-size: 24px;
    }
	.serving-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

    .serving-marquee span {
        display: inline-block;
        padding-left: 100%;
        animation: serving-scroll 12s linear infinite;
    }

    @keyframes serving-scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-200%);
        }
    }
	.top-left{
		display: none;
	}
	.top-left span{
		display: none;
	}
	/* Hide desktop buttons */
.header-actions {
    display: none;
}
/* Mobile Menu Improvements */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger to X animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-white);
    padding: 25px 25px 50px;
    box-shadow: 10px 0 30px rgba(0,0,0,0.15);
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    z-index: 1000;
}

.nav.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.mobile-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.mobile-close:hover {
    background: var(--bg-light);
}

.nav-list {
    flex-direction: column;
    gap: 0;
}

.nav-list li {
    margin-bottom: 10px;
}
.nav-list li:last-child {
        margin-bottom: -20px;
    }

    .nav-list li:last-child .nav-link {
        border-bottom: none;
    }
.nav-link {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--bg-light);
    padding-left: 10px;
}

.nav-link::after {
    display: none;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.mobile-actions a {
    text-align: center;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
}

/* Overlay for mobile menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
    .hero-title {
        font-size: 35px;
    }

    .hero-subtitle {
        font-size: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .booking-wrapper {
        grid-template-columns: 1fr;
    }
	.areas-grid-modern {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 per row */
        gap: 15px;
        padding: 0 5px;
    }
	 .area-card-modern {
        padding: 18px 10px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    .area-card-modern h4 {
        font-size: 14px;
    }
	.area-icon {
        font-size: 18px;
        margin-bottom: 4px;
    }

}
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}
/* Desktop Hover */
@media (min-width: 969px) {
    .nav-item-dropdown:hover .dropdown-menu {
        display: block;
    }
}