.hero-description,
.location-content .lead {
    font-weight: 400 !important;
}
/* Unify font size and line height for hero/service sections */
.hero-description,
.location-content .lead {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
}

.hero-title,
.location-content h1 {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
}

.hero-subtitle,
.location-subtitle {
    font-size: 1.2rem !important;
    line-height: 1.3 !important;
}
.latest-blog-excerpt {
    font-size: 0.92rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.4em;
}
/* Latest Blogs Widget - Sidebar (Blog Detail) */
.latest-blogs-widget .widget-content {
    background: #fff;
    border-radius: 0 0 12px 12px;
    box-shadow: none;
    padding: 0 0 0 0;
}
.latest-blog-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0f0f0;
}
.latest-blog-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.latest-blog-image {
    width: 64px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}
.latest-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.latest-blog-content {
    flex: 1;
    min-width: 0;
}
.latest-blog-title {
    font-size: 1rem;
    font-weight: 600;
    color: #009688;
    margin-bottom: 4px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    font-family: 'Poppins', sans-serif;
}
.latest-blog-title a {
    color: #009688;
    text-decoration: none;
    transition: color 0.2s;
}
.latest-blog-title a:hover {
    color: #006666;
    text-decoration: underline;
}
.latest-blog-excerpt {
    font-size: 0.92rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.4em;
}
.latest-blog-meta {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin-top: 2px;
    font-family: 'Poppins', sans-serif;
}
@media (max-width: 576px) {
    .latest-blog-item {
        gap: 8px;
        margin-bottom: 14px;
        padding-bottom: 14px;
    }
    .latest-blog-image {
        width: 56px;
        height: 42px;
    }
    .latest-blog-title {
        font-size: 0.98rem;
    }
    .latest-blog-excerpt {
        font-size: 0.88rem;
    }
}
/* Custom CSS for Swabi Laundry Website */

/* Location Dropdown Multi-Column Layout */
.dropdown-menu-locations {
    min-width: 600px;
    max-width: 800px;
    padding: 15px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.dropdown-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.dropdown-column {
    list-style: none;
    padding: 0;
}

.dropdown-column .dropdown-item {
    padding: 10px 14px;
    font-size: 14px;
    color: #495057;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 1px solid transparent;
    margin-bottom: 2px;
}

.dropdown-column .dropdown-item:hover {
    background: linear-gradient(135deg, #008080 0%, #20b2aa 100%);
    color: white;
    transform: translateY(-1px);
    border-color: #008080;
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.25);
}

.dropdown-item-special {
    padding: 8px 12px;
    font-size: 13px;
    color: #008080;
    font-style: italic;
    font-weight: 500;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .dropdown-menu-locations {
        min-width: 320px;
        max-width: 95vw;
        padding: 12px;
        left: 50% !important;
        transform: translateX(-50%);
        max-height: 70vh;
        overflow-y: auto;
        margin-top: 8px;
    }
    
    .dropdown-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .dropdown-column .dropdown-item {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .dropdown-column .dropdown-item:hover {
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 128, 128, 0.2);
    }
}

@media (max-width: 480px) {
    .dropdown-menu-locations {
        min-width: 280px;
        padding: 10px;
        max-height: 60vh;
    }
    
    .dropdown-columns {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .dropdown-column .dropdown-item {
        padding: 12px 10px;
        font-size: 14px;
        text-align: center;
        margin-bottom: 4px;
    }
    
    .dropdown-item-special {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* Mobile Touch Improvements */
@media (hover: none) and (pointer: coarse) {
    .dropdown-column .dropdown-item:active {
        background: linear-gradient(135deg, #008080 0%, #20b2aa 100%);
        color: white;
    }
}

/* Mobile Menu Location Dropdown Enhancement */
@media (max-width: 991px) {
    .navbar-nav .nav-item.dropdown .dropdown-menu {
        position: static !important;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
        transform: none !important;
    }
    
    .dropdown-menu-locations {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px);
        border-radius: 8px;
        margin: 10px 0;
        padding: 10px;
    }
}

/* Ensure dropdown works on touch devices */
@media (max-width: 991px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Mobile Navbar Dropdown Fix */
@media (max-width: 991px) {
    .navbar-collapse .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin-top: 0;
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        backdrop-filter: blur(10px);
    }
    
    .navbar-collapse .dropdown-item {
        color: white !important;
        padding: 8px 20px;
    }
    
    .navbar-collapse .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.2);
        color: #fff !important;
    }
}

/* Mobile Location Grid Layout */
.mobile-location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

@media (max-width: 480px) {
    .mobile-location-grid {
        grid-template-columns: 1fr;
        gap: 3px;
    }
}

.mobile-location-column {
    display: flex;
    flex-direction: column;
}

#location-dropdown .mobile-dropdown-item {
    padding: 8px 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    margin-bottom: 2px;
    transition: all 0.3s ease;
}

#location-dropdown .mobile-dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.mobile-location-extra {
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.mobile-location-extra .mobile-dropdown-item.text-muted {
    font-style: italic;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Enhanced Mobile Dropdown Scrolling */
@media (max-width: 767px) {
    #location-dropdown {
        max-height: 60vh;
        overflow-y: auto;
        padding-right: 5px;
    }
    
    #location-dropdown::-webkit-scrollbar {
        width: 4px;
    }
    
    #location-dropdown::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }
    
    #location-dropdown::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
    }
    
    #location-dropdown::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }
}

/* Mobile Navigation - Empty block removed */

:root {
    --bg-primary: rgba(250, 240, 230, 1);
    --selection-primary: rgba(0, 128, 128, 1);
    --selection-white: rgba(255, 255, 255, 1);
    --selection-cream: rgba(243, 228, 213, 1);
    --selection-gold: rgba(255, 212, 0, 1);
    --selection-light: rgba(250, 240, 230, 1);
    --selection-gray: rgba(224, 221, 217, 1);
    --text-black: rgba(0, 0, 0, 1);
    --text-dark: rgba(30, 30, 30, 1);
    --text-muted: rgba(175, 175, 175, 1);
    --accent-green: rgba(48, 191, 57, 1);

    /* Legacy variables for compatibility */
    --teal-primary: var(--selection-primary);
    --teal-dark: #006666;
    --teal-light: #4DCCCC;
    --bg-light: var(--bg-primary);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #FAF0E6 !important;
    font-size: 18px;
}

/* Global paragraph styles */
p {
    font-size: 18px;
    line-height: 1.7;
}

.lead {
    font-size: 18px;
    font-weight: 300;
}

/* Custom Container with Reduced Padding */
.container-custom {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 10px;
    padding-left: 10px;
}

@media (min-width: 576px) {
    .container-custom {
        max-width: 540px;
        padding-right: 12px;
        padding-left: 12px;
    }
}

@media (min-width: 768px) {
    .container-custom {
        max-width: 720px;
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (min-width: 992px) {
    .container-custom {
        max-width: 960px;
        padding-right: 18px;
        padding-left: 18px;
    }
}

@media (min-width: 1200px) {
    .container-custom {
        max-width: 1140px;
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (min-width: 1400px) {
    .container-custom {
        max-width: 1320px;
        padding-right: 22px;
        padding-left: 22px;
    }
}

/* Custom Bootstrap Classes */
.bg-teal {
    background-color: var(--selection-primary) !important;
}

.bg-cream {
    background-color: var(--selection-cream) !important;
}

.bg-gold {
    background-color: var(--selection-gold) !important;
}

.bg-gray-light {
    background-color: var(--selection-gray) !important;
}

.text-teal {
    color: var(--selection-primary) !important;
}

.text-gold {
    color: var(--selection-gold) !important;
}

.text-green {
    color: var(--accent-green) !important;
}

.btn-teal {
    background-color: var(--selection-primary);
    border-color: var(--selection-primary);
    color: var(--selection-white);
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-teal:hover {
    background-color: var(--teal-dark);
    border-color: var(--teal-dark);
    color: var(--selection-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.3);
}

.btn-teal:focus {
    background-color: var(--teal-dark);
    border-color: var(--teal-dark);
    color: var(--selection-white);
    box-shadow: 0 0 0 0.2rem rgba(0, 128, 128, 0.25);
}

.btn-gold {
    background-color: var(--selection-gold);
    border-color: var(--selection-gold);
    color: var(--text-black);
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #FFD700;
    border-color: #FFD700;
    color: var(--text-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 212, 0, 0.3);
}

.btn-green {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
    color: var(--selection-white);
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-green:hover {
    background-color: #2E8B32;
    border-color: #2E8B32;
    color: var(--selection-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(48, 191, 57, 0.3);
}

/* Top Offer Banner Styles */
.top-offer-banner {
    font-size: 0.85rem;
    background-color: #faf0e6;
    padding: 8px 0;
    width: 100%;
}

/* Main Navigation Styles */
.navbar {
    padding: 0.75rem 0;
    background-color: var(--selection-primary) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-logo {
    max-height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    color: var(--selection-white) !important;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--selection-white) !important;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.contact-info {
    font-size: 0.75rem;
    line-height: 1.3;
}

.qr-code-container {
    background-color: var(--selection-white) !important;
    border-radius: 6px;
    padding: 2px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-code-img {
    border-radius: 4px;
    max-width: 100%;
    max-height: 100%;
}

.contact-button .btn {
    font-size: 0.8rem;
    border-radius: 6px;
}

/* Dropdown Styles */
.dropdown-menu {
    border: 1px solid var(--selection-gray);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.dropdown-item {
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 6px;
    font-weight: 500;
    border: 1px solid transparent;
    margin-bottom: 2px;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #008080 0%, #20b2aa 100%);
    color: white !important;
    transform: translateY(-1px);
    border-color: #008080;
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.25);
}

/* Hero Section */
.hero-section {
    padding: 60px 0;
    background-color: var(--bg-primary);
}

.hero-subtitle {
    font-size: 0.9rem;
    color: var(--selection-primary);
}

.hero-title {
    line-height: 1.2;
    font-size: 2.2rem;
}

.hero-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.hero-main-image {
    max-width: 100%;
    height: auto;
}


/* Services Introduction Section */
.services-intro-section {
    background-color: #FAF0E6;
    padding: 80px 0;
}

.services-intro-content {
    background-color: #F3E4D5;
    border-radius: 20px;
    padding: 60px 40px;
    margin: 0 20px;
}

.services-intro-text {
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: center;
    color: var(--selection-primary);
    font-weight: 500;
}

.service-intro-card {
    padding: 25px 20px;
    border-radius: 12px;
    margin: 0 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bg-light-cream {
    background-color: #faf0e6;
}

.service-card-title {
    font-size: 1rem;
    color: var(--selection-primary);
    margin-bottom: 15px;
}

.service-card-text {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.85rem;
    flex-grow: 1;
}

.feature-item-new {
    padding: 20px 10px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Legacy Service Cards (if needed) */
.service-card {
    padding: 2rem;
    background: var(--selection-white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--selection-gray);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Features */
.feature-item {
    padding: 1.5rem;
    background: var(--selection-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Core Services Section */
.core-services {
    background-color: #faf0e6;
}

.core-services .row {
    display: flex;
    align-items: stretch;
}

.core-services .col-lg-4,
.core-services .col-lg-8,
.core-services .col-md-5,
.core-services .col-md-7 {
    display: flex;
    flex-direction: column;
}

.core-services .col-lg-8 .row,
.core-services .col-md-7 .row {
    flex: 1;
    margin: 0;
}

.services-sidebar {
    background-color: var(--teal-primary);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px;
}

.sidebar-cta-btn {
    transition: all 0.3s ease;
}

.sidebar-cta-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: white !important;
    text-decoration: none !important;
}

.sidebar-cta-btn:hover .arrow-circle {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.arrow-circle {
    transition: all 0.3s ease;
}

.core-service-card {
    transition: all 0.3s ease;
    border: 2px solid var(--teal-primary);
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 12px 18px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.core-service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--teal-primary);
}

.core-service-card .service-card-title {
    color: var(--teal-primary) !important;
}

.services-intro {
    position: relative;
    overflow: hidden;
    background: var(--selection-primary);
}

.services-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1));
    transform: rotate(45deg);
    pointer-events: none;
}

.service-item {
    transition: all 0.3s ease;
    border: 1px solid var(--selection-gray);
    background: var(--selection-white);
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--selection-primary);
}


/* Testimonial Cards */
.testimonials-section {
    background-color: var(--bg-primary) !important;
}

.testimonials-section h2 {
    color: #008080 !important;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonials-section p {
    color: #008080 !important;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.testimonials-section .row {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.testimonials-section .col-lg-6,
.testimonials-section .col-md-6 {
    display: flex;
    flex-direction: column;
}

.testimonials-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonials-grid .row {
    height: 100%;
    margin: 0;
    flex: 1;
}

.testimonials-grid .col-6 {
    display: flex;
    padding: 0.375rem;
}

.testimonial-card {
    position: relative;
    transition: all 0.3s ease;
    background: var(--selection-primary) !important;
    color: var(--selection-white) !important;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 128, 128, 0.15);
    min-height: 180px;
    padding: 18px !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 128, 128, 0.25);
}

.testimonial-card .quote-icon {
    margin-bottom: 12px;
}

.testimonial-card .quote-icon i {
    color: white;
    opacity: 0.9;
    font-size: 1.2rem;
}

.testimonial-card h6 {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    margin-bottom: 3px !important;
    color: white !important;
}

.testimonial-card .customer-location {
    font-size: 0.8rem !important;
    opacity: 0.8;
    margin-bottom: 10px !important;
    color: white !important;
}

.testimonial-card .testimonial-text {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    color: white !important;
    opacity: 0.95;
    margin-bottom: 0 !important;
    flex-grow: 1;
}

.testimonial-images {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex: 1;
}

.testimonial-images img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Mobile Testimonial Slider */
.testimonials-slider {
    position: relative;
}

.testimonial-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.testimonial-slides-wrapper {
    overflow: hidden;
    border-radius: 15px;
}

.testimonial-slides {
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-height: 250px;
}

.slider-dots {
    margin-top: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 4px;
}

.dot.active {
    background-color: var(--teal-primary) !important;
}

.dot:not(.active) {
    background-color: #ccc;
}

.dot:hover {
    transform: scale(1.2);
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-primary);
}


/* Footer */
footer {
    position: relative;
    background: linear-gradient(135deg, #006666 0%, var(--selection-primary) 100%);
    color: var(--selection-white);
}

footer .contact-info-card {
    background-color: var(--selection-white);
    color: var(--text-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

footer .social-links a {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    transform: translateY(-2px);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--selection-primary) 0%, #006666 100%);
    color: var(--selection-white);
}

/* Responsive Design */
@media (min-width: 769px) {
    .testimonials-section .row {
        display: flex !important;
        align-items: stretch !important;
        min-height: 480px !important;
    }

    .testimonials-section .col-lg-6,
    .testimonials-section .col-md-6 {
        display: flex !important;
        flex-direction: column !important;
    }

    .testimonials-grid {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .testimonials-grid .row {
        flex: 1 !important;
        height: 100% !important;
    }

    .testimonials-grid .col-6 {
        display: flex !important;
        padding: 0.375rem !important;
    }

    .testimonial-images {
        flex: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

@media (max-width: 768px) {
    .top-offer-banner {
        font-size: 0.75rem;
        padding: 6px 0;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-logo {
        max-height: 40px;
    }

    .hero-section {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .process-step {
        padding: 1rem;
    }

    .testimonial-card {
        margin-bottom: 1rem;
        min-height: 180px;
        padding: 15px !important;
    }

    .testimonial-card h6 {
        font-size: 0.95rem !important;
    }

    .testimonial-card .customer-location {
        font-size: 0.8rem !important;
    }

    .testimonial-card .testimonial-text {
        font-size: 0.85rem !important;
    }

    .testimonials-section .row {
        flex-direction: column;
        min-height: auto;
    }

    .testimonials-section .col-lg-6 {
        display: block;
    }

    .testimonials-grid {
        display: none !important;
    }

    .testimonials-slider {
        display: block !important;
    }

    .contact-info {
        display: none !important;
    }

    .qr-code-container {
        display: none !important;
    }

    .navbar-nav .nav-link {
        margin: 0.1rem 0;
        padding: 0.75rem 1rem !important;
        color: var(--selection-white) !important;
    }

    .contact-button .btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .google-badge {
        font-size: 0.85rem;
    }

    .services-intro-section {
        padding: 60px 0;
    }

    .services-intro-content {
        padding: 40px 20px;
        margin: 0 10px;
        border-radius: 15px;
    }

    .services-intro-text {
        font-size: 0.9rem;
    }

    .service-intro-card {
        padding: 20px 15px;
        margin: 0 5px;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .service-card-title {
        font-size: 0.95rem;
    }

    .service-card-text {
        font-size: 0.8rem;
    }

    .services-sidebar {
        min-height: auto;
        margin-bottom: 30px;
        padding: 25px 20px !important;
    }

    .core-services .row {
        flex-direction: column;
    }

    .core-services .col-lg-4,
    .core-services .col-lg-8,
    .core-services .col-md-5,
    .core-services .col-md-7 {
        display: block;
    }

    .services-sidebar h3 {
        font-size: 1.6rem !important;
    }

    .sidebar-cta-btn {
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
    }

    .arrow-circle {
        width: 30px !important;
        height: 30px !important;
    }

    .core-service-card {
        margin-bottom: 15px;
    }

    .section-title {
        font-size: 1.6rem !important;
    }

    .section-description {
        font-size: 0.9rem !important;
    }

    .process-steps-card {
        padding: 25px 20px !important;
    }

    .discount-circle {
        width: 70px !important;
        height: 70px !important;
    }

    .discount-circle span:first-child {
        font-size: 1.3rem !important;
    }

    .feature-title {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .top-offer-banner {
        font-size: 0.7rem;
    }

    .contact-button .btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .services-intro-content {
        padding: 30px 15px;
        margin: 0 5px;
    }

    .service-intro-card {
        padding: 15px 10px;
        margin: 0 2px;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .services-intro-text {
        font-size: 0.95rem;
    }

    .services-sidebar {
        padding: 20px 15px !important;
        margin-bottom: 25px;
        min-height: auto !important;
    }

    .core-services .row {
        flex-direction: column !important;
    }

    .core-services .col-lg-4,
    .core-services .col-lg-8,
    .core-services .col-md-5,
    .core-services .col-md-7 {
        display: block !important;
    }

    .services-sidebar h3 {
        font-size: 1.4rem !important;
    }

    .sidebar-cta-btn {
        padding: 10px 18px !important;
        font-size: 0.85rem !important;
    }

    .arrow-circle {
        width: 28px !important;
        height: 28px !important;
    }

    .core-service-card {
        padding: 15px;
        margin-bottom: 12px;
    }

    .section-title {
        font-size: 1.4rem !important;
    }

    .section-description {
        font-size: 0.85rem !important;
    }

    .process-steps-card {
        padding: 20px 15px !important;
    }

    .process-step {
        margin-bottom: 25px;
    }

    .step-number-circle {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.85rem !important;
    }

    .step-icon i {
        font-size: 1.2rem !important;
    }

    .step-title {
        font-size: 0.9rem !important;
    }

    .step-description {
        font-size: 0.8rem !important;
    }

    .discount-circle {
        width: 65px !important;
        height: 65px !important;
        margin-bottom: 15px;
    }

    .discount-circle span:first-child {
        font-size: 1.2rem !important;
    }

    .discount-content h5 {
        font-size: 1rem !important;
    }

    /* .btn-teal {
        width: 100%;
        margin-top: 15px;
    } */

    .service-card-title {
        font-size: 0.95rem;
    }

    .service-card-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .btn-teal {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1rem;
    }

    .feature-item {
        padding: 1rem;
    }
}


/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--teal-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--teal-dark);
}

/* Book Today Section */
.book-today-section {
    background-color: #faf0e6;
}

.section-title {
    color: var(--teal-primary);
}


.step-description {
    color: var(--text-dark);
}

.discount-offer-section .discount-circle {
    background-color: var(--teal-primary);
    transition: all 0.3s ease;
}

.discount-offer-section:hover .discount-circle {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.discount-link:hover {
    color: var(--teal-dark) !important;
    text-decoration: underline !important;
}

.btn-teal {
    background-color: var(--teal-primary);
    border: none;
    transition: all 0.3s ease;
}

.btn-teal:hover {
    background-color: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Utility class - border-teal kept as it might be used */
.border-teal {
    border-color: var(--teal-primary) !important;
}

/* FAQ Section Styles */
.faq-section {
    background-color: #faf0e6 !important;
}

.faq-section h2 {
    color: #008080 !important;
    font-size: 2.2rem;
    font-weight: 700;
}

.faq-section p {
    color: #008080 !important;
    font-size: 1.1rem;
    line-height: 1.6;
}

.accordion-item.faq-item {
    background-color: #f5e6d3 !important;
    border: none !important;
    border-radius: 12px !important;
    margin-bottom: 1rem !important;
    box-shadow: 0 2px 8px rgba(0, 128, 128, 0.1) !important;
    overflow: hidden !important;
}

.accordion-item.faq-item:first-of-type {
    border-top-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
}

.accordion-item.faq-item:last-of-type {
    border-bottom-left-radius: 12px !important;
    border-bottom-right-radius: 12px !important;
}

.faq-button {
    background-color: #f5e6d3 !important;
    border: none !important;
    color: #008080 !important;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.2rem 1.5rem;
    border-radius: 12px !important;
    box-shadow: none !important;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-button:hover {
    color: #008080 !important;
}

.faq-button:not(.collapsed) {
    background-color: #f5e6d3 !important;
    color: #008080 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.faq-button:focus {
    box-shadow: none !important;
    border: none !important;
    background-color: #f0dcc9 !important;
}

.faq-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23008080'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    transition: transform 0.3s ease;
    width: 20px;
    height: 20px;
}

.faq-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    background-color: #f5e6d3 !important;
    color: #008080 !important;
    border-top: 1px solid rgba(0, 128, 128, 0.1);
}

.faq-content ul {
    margin: 0;
    padding-left: 1.2rem;
}

.faq-content li {
    color: #008080 !important;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    font-size: 1rem;
}

.faq-content li:last-child {
    margin-bottom: 0;
}

.faq-contact-btn {
    background-color: #008080 !important;
    color: white !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 0.8rem 2rem !important;
    font-weight: 600 !important;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-contact-btn:hover {
    background-color: #006666 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 128, 128, 0.3);
}

/* Mobile Responsive FAQ */
@media (max-width: 768px) {
    .faq-section h2 {
        font-size: 1.8rem;
    }

    .faq-item {
        margin-bottom: 0.8rem !important;
    }

    .faq-button {
        font-size: 1rem;
        padding: 1rem 1.2rem;
    }

    .faq-content {
        padding: 0 1.2rem 1.2rem 1.2rem;
    }

    .faq-content li {
        font-size: 0.95rem;
    }
}

.bg-gradient-teal {
    background: linear-gradient(135deg, var(--selection-primary) 0%, #006666 100%);
}

.border-teal {
    border-color: var(--selection-primary) !important;
}

.border-gold {
    border-color: var(--selection-gold) !important;
}

.border-green {
    border-color: var(--accent-green) !important;
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--selection-primary);
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-header {
    background-color: var(--selection-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 5px;
}

.mobile-menu-content {
    height: calc(100vh - 80px);
    overflow-y: auto;
    padding: 0;
}

.mobile-menu-items {
    flex: 1;
}

.mobile-menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-link {
    display: block;
    padding: 1.2rem 1.5rem;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mobile-menu-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.mobile-dropdown-arrow {
    transition: transform 0.3s ease;
}

.mobile-dropdown-arrow.rotated {
    transform: rotate(180deg);
}

.mobile-dropdown {
    display: none;
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-dropdown.active {
    display: block;
}

.mobile-dropdown-item {
    display: block;
    padding: 0.8rem 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.mobile-contact-info {
    padding: 2rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    margin-top: auto;
}

.mobile-contact-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    color: white;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.mobile-contact-item:last-child {
    margin-bottom: 0;
}

.mobile-social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.mobile-social-icon {
    width: 45px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
    transform: scale(1.1);
}

.mobile-quote-btn {
    font-size: 0.9rem !important;
    border-radius: 20px !important;
}

/* Pricing Page Styles */
.pricing-hero-section {
    background-color: var(--bg-primary);
    min-height: 300px;
    display: flex;
    align-items: center;
}

.pricing-hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

.pricing-services-section {
    background-color: #faf0e6;
}

/* Pricing Table Styles */
.pricing-table {
    background: transparent;
    margin-bottom: 2rem;
}


.pricing-row {
    display: flex;
    align-items: stretch;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: white;
}

.service-info {
    flex: 1 1 0;
    min-width: 0;
    max-width: 70%;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Individual row colors */

.pricing-row .service-info {
    background-color: #008080;
    color: #faf0e6;
    border-left: 5px solid #006666;
}

.service-header {
    margin-bottom: 0.8rem;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.pricing-info {
    flex: 0 0 30%;
    max-width: 30%;
    min-width: 30%;
    padding: 1.5rem 2rem;
    background-color: #faf0e6;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 5px solid #008080;
}

.price-tag {
    font-size: 1.1rem;
    font-weight: 600;
    color: #008080;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.btn-teal {
    background-color: #008080;
    color: white;
    border: none;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

.btn-teal:hover {
    background-color: #006666;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 128, 128, 0.3);
}

/* Responsive Pricing Styles */
@media (max-width: 768px) {
    .pricing-hero-content h1 {
        font-size: 2.5rem;
    }

    .pricing-row {
        flex-direction: column;
        margin-bottom: 1.5rem;
    }

    .service-info {
        padding: 1.2rem 1.5rem;
        border-left: 5px solid #008080 !important;
        border-bottom: none !important;
    }

    .pricing-row:nth-child(odd) .service-info {
        background-color: #008080 !important;
        color: #faf0e6 !important;
    }

    .pricing-row:nth-child(even) .service-info {
        background-color: #faf0e6 !important;
        color: #008080 !important;
    }

    .service-header {
        margin-bottom: 0.5rem;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    .pricing-info {
        padding: 1.2rem 1.5rem;
        border-right: none;
        border-top: 3px solid #008080;
        min-width: auto;
        width: 100%;
    }

    .price-tag {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
}

/* Offers Page Styles */
.offers-hero-section {
    background-color: var(--bg-primary);
    min-height: 300px;
    display: flex;
    align-items: center;
}

.offers-hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

.offers-grid-section {
    background-color: #faf0e6;
}

.offer-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 128, 128, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 128, 128, 0.2);
}

.offer-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.offer-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.02);
}

.offer-action {
    margin-top: auto;
}

.btn-teal {
    background-color: #008080;
    color: white;
    border: none;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-teal:hover {
    background-color: #006666;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 128, 128, 0.3);
}

/* Responsive Offers Styles */
@media (max-width: 768px) {
    .offers-hero-section h1 {
        font-size: 2.5rem;
    }

    .offer-card {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .btn-teal {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Mobile Footer Styles */
@media (max-width: 767.98px) {
    .mobile-footer {
        text-align: left;
    }

    .mobile-footer a {
        font-size: 0.9rem;
        line-height: 1.8;
    }

    .mobile-contact-card {
        margin-top: 2rem;
    }

    .mobile-contact-card h6 {
        font-size: 1.1rem;
    }

    .mobile-contact-card .d-flex span {
        font-size: 0.9rem;
    }

    .social-links a {
        transition: transform 0.3s ease;
    }

    .social-links a:hover {
        transform: scale(1.1);
    }
}

/* FAQs Page Styles */
.faq-question,
.faq-answer {
    color: #008080;
}

.faq-title-custom {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    flex: 1;
    margin: 0;
}

.faq-arrow-custom {
    color: var(--selection-primary);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.faq-arrow-custom.rotated {
    transform: rotate(180deg);
}

/* Mobile FAQ Styles */
@media (max-width: 767.98px) {

    .faq-title-custom {
        font-size: 1rem;
    }
}

/* Contact Page Styles */
.contact-main-section {
    min-height: 70vh;
}

.contact-form-card-new {
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 128, 128, 0.2);
}

.contact-input-new {
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95rem;
    background: white;
}

.contact-input-new:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.contact-input-new::placeholder {
    color: #999;
    font-size: 0.9rem;
}

.contact-button-card {
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 128, 128, 0.2);
}

.whatsapp-input {
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.9rem;
}

.whatsapp-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 128, 128, 0.2);
}

.btn-teal {
    background-color: var(--selection-primary);
    border-color: var(--selection-primary);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-teal:hover {
    background-color: #006666;
    border-color: #006666;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 128, 128, 0.3);
}

.btn-outline-teal {
    color: var(--selection-primary);
    border: 2px solid var(--selection-primary);
    background: transparent;
    padding: 12px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-teal:hover {
    background-color: var(--selection-primary);
    border-color: var(--selection-primary);
    color: white;
    transform: translateY(-2px);
}

.contact-icon-wrapper {
    width: 45px;
    height: 45px;
    background: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-info-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 128, 128, 0.1);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.social-links-contact {
    display: flex;
    gap: 15px;
}

.social-link-contact {
    width: 45px;
    height: 45px;
    background: var(--selection-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link-contact:hover {
    background-color: #006666;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 128, 128, 0.4);
}

.quick-actions-section {
    background: white;
}

/* Mobile Contact Styles */
@media (max-width: 767.98px) {
    .contact-main-section {
        padding: 2rem 0;
    }

    .contact-form-card-new {
        margin-bottom: 2rem;
    }

    .contact-button-card {
        margin-bottom: 1rem;
    }
}

/* Terms & Conditions Page Styles */

.terms-content-section {
    min-height: 70vh;
}

.terms-section {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 128, 128, 0.1);
}

.terms-section:last-child {
    border-bottom: none;
}

.terms-heading {
    color: var(--selection-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.terms-text {
    color: var(--selection-primary);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.terms-text:last-child {
    margin-bottom: 0;
}

.terms-list {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.terms-list li {
    color: var(--selection-primary);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.terms-list li:last-child {
    margin-bottom: 0;
}

/* Mobile Terms Styles */
@media (max-width: 767.98px) {
    .terms-heading {
        font-size: 1.2rem;
    }

    .terms-text,
    .terms-list li {
        font-size: 0.95rem;
    }

    .terms-section {
        padding: 1rem 0;
    }
}

/* Location Pages Styles */
.location-hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.location-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
}

.skip-laundry-section {
    background: white;
}

.feature-item {
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.offer-badge {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.location-info-card {
    border: 1px solid rgba(0, 128, 128, 0.1);
}

/* Locations Grid Styles */
.location-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 128, 128, 0.2) !important;
}

.location-image-wrapper {
    position: relative;
    overflow: hidden;
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 0%, rgba(0, 128, 128, 0.8) 100%);
}


.coverage-item {
    transition: transform 0.3s ease;
}

.coverage-item:hover {
    transform: translateY(-5px);
}

.coverage-item i {
    transition: color 0.3s ease;
}

.coverage-item:hover i {
    color: #006666 !important;
}

/* Mobile Location Styles */
@media (max-width: 767.98px) {
    .location-hero-section {
        min-height: auto;
        padding: 3rem 0;
    }

    .location-content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .location-buttons {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .offer-badge {
        margin-bottom: 2rem;
        min-height: 80px;
    }

    .location-card {
        margin-bottom: 2rem;
    }

    .coming-soon-section .row {
        justify-content: center;
    }
}

/* pagination */

.page-link {
    color: #008080;
}

.active>.page-link,
.page-link.active {
    background-color: #008080;
    border-color: #008080;
}

.page-link:hover {
    color: #006666;
    background-color: #f8f9fa;
    border-color: #008080;
}

/* Service Template Button Styles */
.service-buttons {
    margin-top: 1.5rem;
}

.service-buttons .btn {
    font-size: 15px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    text-align: center !important;
    line-height: 1.2 !important;
}

.service-buttons .btn-teal {
    background-color: #008080 !important;
    border: 2px solid #008080 !important;
    color: white !important;
}

.service-buttons .btn-teal:hover {
    background-color: #006666 !important;
    border-color: #006666 !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(0, 128, 128, 0.3) !important;
}

.service-buttons .btn-outline-teal {
    background-color: transparent !important;
    border: 2px solid #008080 !important;
    color: #008080 !important;
}

.service-buttons .btn-outline-teal:hover {
    background-color: #008080 !important;
    border-color: #008080 !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(0, 128, 128, 0.3) !important;
}

/* Mobile responsive service buttons */
@media (max-width: 767px) {
    .service-buttons .row {
        margin: 0 -8px !important;
    }
    
    .service-buttons .col-6,
    .service-buttons .col-md-6 {
        padding: 0 8px !important;
        margin-bottom: 10px !important;
    }
    
    .service-buttons .btn {
        font-size: 14px !important;
        padding: 12px 16px !important;
        min-height: 50px !important;
    }
}

@media (max-width: 576px) {
    .service-buttons .row {
        margin: 0 -6px !important;
    }
    
    .service-buttons .col-6,
    .service-buttons .col-md-6 {
        padding: 0 6px !important;
        margin-bottom: 12px !important;
    }
    
    .service-buttons .btn {
        font-size: 13px !important;
        padding: 10px 12px !important;
        min-height: 48px !important;
        border-radius: 6px !important;
    }
}

@media (max-width: 480px) {
    .service-buttons .btn {
        font-size: 12px !important;
        padding: 8px 10px !important;
        min-height: 45px !important;
    }
}

/* Core Services Responsive Styles */
.core-service-card .btn-teal {
    font-size: 0.7rem !important;
    padding: 6px 12px !important;
    border-radius: 12px !important;
    white-space: nowrap !important;
}

@media (max-width: 767px) {
    .core-service-card .service-price span {
        font-size: 0.75rem !important;
    }
    
    .core-service-card .btn-teal {
        font-size: 0.65rem !important;
        padding: 6px 10px !important;
        min-width: 80px !important;
    }
}

@media (max-width: 576px) {
    .core-service-card .service-price span {
        font-size: 0.7rem !important;
    }
    
    .core-service-card .btn-teal {
        font-size: 0.6rem !important;
        padding: 5px 8px !important;
        min-width: 70px !important;
    }
}

/* Contact Form Styles */
.contact-form-new .contact-input-new {
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
}

.contact-form-new .contact-input-new:focus {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    border-color: transparent;
}

.contact-form-new .contact-input-new::placeholder {
    color: #6c757d;
    opacity: 0.8;
}

.contact-form-new #submitBtn {
    transition: all 0.3s ease;
    position: relative;
}

.contact-form-new #submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-form-new .btn-loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#form-messages {
    margin-bottom: 1rem;
}

#form-messages .alert {
    margin-bottom: 0;
    border-radius: 8px;
}

/* Back to Top Button Styles */
.back-to-top {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.back-to-top:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2) !important;
}

.back-to-top i {
    font-size: 18px !important;
    line-height: 1 !important;
}

/* Blog Card Styles - Matching Design */
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
}

.blog-image-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image-wrapper img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 20px;
}

.blog-meta {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #666;
    margin-bottom: 12px;
    gap: 15px;
    justify-content: space-between;
}

.blog-meta i {
    color: #008080;
    margin-right: 5px;
}

.blog-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 40px;
}

.blog-card .btn-outline-primary {
    background: #008080;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.blog-card .btn-outline-primary:hover {
    background: #006666;
    transform: translateY(-1px);
}

/* Mobile Button Centering */
@media (max-width: 768px) {
    .col-lg-6.col-md-6.text-end {
        text-align: center !important;
    }
    
    .btn-teal {
        display: inline-block;
        margin: 0 auto;
    }
    
    .blog-card-body {
        padding: 15px;
    }
    
    .blog-title {
        font-size: 15px;
    }
}

/* Sticky Sidebar for Blog Detail Page */
.sticky-sidebar {
    position: sticky;
    top: 30px;
    z-index: 2;
}

/* Latest Blogs Widget Scrollable Content */
.latest-blogs-widget .widget-content {
    max-height: none;
    overflow: visible;
    padding-right: 0;
}

@media (max-width: 991px) {
    .sticky-sidebar {
        position: static;
        top: auto;
    }
    .latest-blogs-widget .widget-content {
        max-height: none;
        overflow: visible;
    }
}