/* Custom CSS for Care1st - Healthcare/NDIS Provider */

:root {
    /* Primary Colors - Healthcare/Trust palette */
    --primary-color: #2a7a42;
    --primary-dark: #1f5c53;
    --primary-light: #4a9e8f;
    --secondary-color: #6c63ff;
    --accent-color: #ff7b54;
    
    /* Neutral Colors */
    --light-color: #f8f9fa;
    --dark-color: #333333;
    --gray-color: #6c757d;
    --gray-light: #e9ecef;
    
    /* Typography */
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Open Sans', sans-serif;
}

/* Base Styles */
body {
    font-family: var(--body-font);
    color: var(--dark-color);
    line-height: 1.6;
    padding-top: 120px; /* Offset for fixed header */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

/* Header Styles */
.header {
    z-index: 1030;
}

.top-bar {
    font-size: 0.875rem;
    background-color: var(--primary-color);
}

.navbar {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    color: var(--dark-color) !important;
    transition: color 0.3s ease;
    font-size: 16px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 122, 109, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    /* height: 600; */
    position: relative;
    margin-top: -120px; /* Pull up to overlap header */
}

.heroSwiper {
    height: 100vh;
    width: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.slide-1 {
    background-image: url('slider1.jpg');
}
.slide-2 {
    background-image: url('slider2.jpg');
}

.slide-3 {
    background-image: url('slider3.jpg');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255,255,255,0.3);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.25rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: white;
}

/* Quick Contact Form */
.quick-contact-form {
    position: absolute;
    right: 5%;
    top: 80%;
    transform: translateY(-50%);
    z-index: 3;
    width: 350px;
}

.quick-contact-form .card {
    border-radius: 12px;
    border: none;
}

.quick-contact-form .card-title {
    color: var(--primary-color);
    font-weight: 700;
}

/* Service Highlights */
.service-highlights {
    background-color: var(--light-color);
}

.highlight-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-light);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-light);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon-wrapper i {
    font-size: 1.75rem;
    color: white;
}

/* About Section */
.about-image {
    overflow: hidden;
    border-radius: 12px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    width: 140px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(42, 122, 109, 0.3);
}

.experience-badge h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

/* Activity Gallery */
        .activity-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .activity-item {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            border: 1px solid var(--gray-light);
            transition: all 0.3s ease;
        }
        
        .activity-item:hover {
            transform: translateY(-3px);
            border-color: var(--primary-color);
        }
        
        .activity-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }
        
        .activity-icon i {
            font-size: 1.25rem;
            color: white;
        }


        .activity-category {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid var(--gray-light);
            transition: all 0.3s ease;
        }
        
        .activity-category:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            border-color: var(--primary-light);
        }
        
        .category-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .category-icon i {
            font-size: 1.75rem;
            color: white;
        }
        
        .activity-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }
        
        .activity-list li {
            padding: 0.5rem 0;
            display: flex;
            align-items: flex-start;
            border-bottom: 1px solid var(--gray-light);
        }
        
        .activity-list li:last-child {
            border-bottom: none;
        }
        
        .activity-list li i {
            color: var(--primary-color);
            margin-right: 0.75rem;
            margin-top: 0.25rem;
            flex-shrink: 0;
        }


        /* Eligibility Checklist */
        .eligibility-section {
            background: linear-gradient(135deg, var(--light-color) 0%, #eef7f5 100%);
            border-radius: 16px;
            padding: 3rem;
        }
        
        .eligibility-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }
        
        .eligibility-list li {
            padding: 0.75rem 0;
            display: flex;
            align-items: center;
            border-bottom: 1px solid rgba(42, 122, 109, 0.1);
        }
        
        .eligibility-list li:last-child {
            border-bottom: none;
        }
        
        .eligibility-list li i {
            color: var(--primary-color);
            margin-right: 1rem;
            flex-shrink: 0;
            font-size: 1.25rem;
        }

        /* Schedule Options */
        .schedule-option {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            border: 2px solid var(--gray-light);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .schedule-option:hover {
            border-color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .schedule-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }
        
        .schedule-icon i {
            font-size: 1.25rem;
            color: white;
        }


        /* Support Worker Section */
        .support-worker-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid var(--gray-light);
        }
        
        .support-worker-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1.5rem;
            border: 4px solid var(--primary-light);
        }
        
        .support-worker-qualification {
            background: var(--primary-light);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 0.5rem;
        }

        /* NDIS Plan Support */
        .plan-support-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: 16px;
            padding: 3rem;
        }

/* Plan Types */
        .plan-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            text-align: center;
            border: 2px solid var(--gray-light);
            transition: all 0.3s ease;
            color: var(--gray-color);
        }
        
        .plan-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-5px);
        }
        
        .plan-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }
        
        .plan-icon i {
            font-size: 1.5rem;
            color: white;
        }

        /* Level Cards */
        .level-card {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid var(--gray-light);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .level-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            border-color: var(--primary-light);
        }
        
        .level-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--secondary-color);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .level-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--secondary-color), #5dade2);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 2rem auto 1.5rem;
        }
        
        .level-icon i {
            font-size: 1.75rem;
            color: white;
        }
        
        .level-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }
        
        .level-list li {
            padding: 0.5rem 0;
            display: flex;
            align-items: flex-start;
            border-bottom: 1px solid var(--gray-light);
        }
        
        .level-list li:last-child {
            border-bottom: none;
        }
        
        .level-list li i {
            color: var(--secondary-color);
            margin-right: 0.75rem;
            margin-top: 0.25rem;
            flex-shrink: 0;
        }

        /* Assistance Cards */
        .assistance-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            border: 1px solid var(--gray-light);
            transition: all 0.3s ease;
        }
        
        .assistance-card:hover {
            transform: translateY(-5px);
            border-color: var(--secondary-color);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        }
        
        .assistance-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .assistance-icon i {
            font-size: 1.5rem;
            color: white;
        }

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #6a2774, var(--secondary-color));
    color: white;
}

.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 16px;
    padding: 4rem 3rem;
    text-align: center;
}
.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

.btn-light {
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: var(--gray-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

.contact-info-large {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-large a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.contact-info-large a:hover {
    text-decoration: underline;
}

/* Services Slider */

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-item {
    background: white;
    border-radius: 8px;
    padding: 1.25rem;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.service-item i {
    color: var(--primary-color);
    margin-right: 1rem;
}
.service-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card .card-img-top {
    height: 200px;
    overflow: hidden;
}

.service-card .card-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-img-top img {
    transform: scale(1.05);
}

.service-card .card-body {
    padding: 1.5rem;
}

.servicesSwiper .swiper-button-next,
.servicesSwiper .swiper-button-prev {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    width: 40px;
    height: 40px;
}

.servicesSwiper .swiper-button-next:hover,
.servicesSwiper .swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
}

/* Core Values */
.core-values {
    background-color: #f9f9f9;
}

.value-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), #8a84ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

/* Why Choose Section */
.feature-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.25rem;
    color: white;
}

/* Why Choose Us */
.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.25rem;
    color: white;
}

/* NDIS Info Section */
.ndis-info {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.ndis-stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

.btn-outline-light {
    border-width: 2px;
    font-weight: 600;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--dark-color);
}

/* FAQ Preview */
.accordion-button {
    font-weight: 600;
    padding: 1.25rem;
    background-color: white;
    color: var(--dark-color);
    border: 1px solid var(--gray-light);
    border-radius: 8px !important;
    margin-bottom: 0.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(42, 122, 109, 0.25);
    border-color: var(--primary-color);
}

.accordion-body {
    padding: 1.25rem;
    border: 1px solid var(--gray-light);
    border-top: none;
    border-radius: 0 0 8px 8px;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: white;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 991.98px) {
    body {
        padding-top: 110px;
    }
    
    .hero-section {
        /* height: 500px; */
        margin-top: -110px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .quick-contact-form {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 100px;
    }
    
    .hero-section {
        height: 450px;
        margin-top: -100px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .quick-contact-form {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 2rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        height: 400px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .btn-primary, .btn-outline-primary, .btn-light {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .experience-badge {
        width: 90px;
        height: 90px;
        bottom: -15px;
        right: -15px;
    }
    
    .experience-badge h3 {
        font-size: 1.75rem;
    }
    .service-highlights {
        margin-top: 500px;
    }
}

/* Accessibility Improvements */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    z-index: 100;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}



/* About Page Specific Styles */
        .breadcrumb {
            background: transparent;
            padding: 0;
            margin-bottom: 2rem;
        }
        
        .breadcrumb-item a {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .breadcrumb-item.active {
            color: var(--gray-color);
        }
        
        .hero-about {
            height: 400px;
            background: linear-gradient(rgba(42, 122, 109, 0.85), rgba(42, 122, 109, 0.9)), 
                        url('../assets/about-hero.jpg') center/cover;
            color: white;
            display: flex;
            align-items: center;
            position: relative;
            margin-top: -120px;
            padding-top: 120px;
        }
        
        .hero-about-content {
            max-width: 800px;
        }
        
        .hero-about-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .hero-about-subtitle {
            font-size: 1.5rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }
        
        /* Who We Are Section */
        .who-we-are-img {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        /* Mission & Vision */
        .mission-vision-card {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid var(--gray-light);
            transition: transform 0.3s ease;
        }
        
        .mission-vision-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        
        .mission-icon, .vision-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .mission-icon {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
        }
        
        .vision-icon {
            background: linear-gradient(135deg, var(--secondary-color), #8a84ff);
        }
        
        .mission-icon i, .vision-icon i {
            font-size: 1.75rem;
            color: white;
        }
        
        /* Values Grid */
        .value-card-about {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            text-align: center;
            border: 1px solid var(--gray-light);
            transition: all 0.3s ease;
        }
        
        .value-card-about:hover {
            transform: translateY(-5px);
            border-color: var(--primary-light);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        }
        
        .value-icon-about {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
        }
        
        .value-icon-about i {
            font-size: 1.5rem;
            color: white;
        }
        
        /* Our Approach Steps */
        .approach-steps {
            position: relative;
            padding: 3rem 0;
        }
        
        .approach-step {
            text-align: center;
            padding: 1.5rem;
            position: relative;
            z-index: 2;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin: 0 auto 1.5rem;
            font-size: 1.25rem;
        }
        
        .step-line {
            position: absolute;
            top: 75px;
            left: 50%;
            width: 80%;
            height: 2px;
            background: var(--gray-light);
            transform: translateX(-50%);
            z-index: 1;
        }
        
        /* Team Section */
        .team-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .team-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .team-content {
            padding: 1.5rem;
        }
        
        .team-role {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .modal-team .modal-content {
            border-radius: 12px;
            border: none;
        }
        
        .modal-team .modal-header {
            background: var(--primary-color);
            color: white;
            border-radius: 12px 12px 0 0;
        }
        
        /* Why Choose Cards */
        .feature-check-card {
            background: white;
            border-radius: 8px;
            padding: 1.25rem;
            margin-bottom: 1rem;
            border-left: 4px solid var(--primary-color);
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            transition: all 0.3s ease;
        }
        
        .feature-check-card:hover {
            transform: translateX(5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        }
        
        .feature-check-card i {
            color: var(--primary-color);
            margin-right: 1rem;
        }
        
        /* Animated Counters */
        .counter-item {
            text-align: center;
            padding: 1.5rem;
        }
        
        .counter-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        
        .counter-label {
            font-size: 1rem;
            color: var(--gray-color);
        }
        
        /* Accreditation Logos */
        .accreditation-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            padding: 2rem;
            background: rgba(255,255,255,0.8);
            border-radius: 12px;
            border: 1px solid var(--gray-light);
        }
        
        .accreditation-logo {
            height: 60px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .accreditation-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }
        
        /* Responsive Styles */
        @media (max-width: 991.98px) {
            .hero-about {
                height: 350px;
                margin-top: -110px;
                padding-top: 110px;
            }
            
            .hero-about-title {
                font-size: 2.75rem;
            }
            
            .hero-about-subtitle {
                font-size: 1.25rem;
            }
            
            .step-line {
                display: none;
            }
        }
        
        @media (max-width: 767.98px) {
            .hero-about {
                height: 300px;
                margin-top: -100px;
                padding-top: 100px;
            }
            
            .hero-about-title {
                font-size: 2.25rem;
            }
            
            .hero-about-subtitle {
                font-size: 1.1rem;
            }
            
            .counter-number {
                font-size: 2.5rem;
            }
            
            .mission-vision-card {
                padding: 2rem;
            }
        }
        
        @media (max-width: 575.98px) {
            .hero-about {
                height: 250px;
            }
            
            .hero-about-title {
                font-size: 1.75rem;
            }
            
            .hero-about-subtitle {
                font-size: 1rem;
            }
        }


            /* Services Page Specific Styles */
        .breadcrumb {
            background: transparent;
            padding: 0;
            margin-bottom: 2rem;
        }
        
        .breadcrumb-item a {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .breadcrumb-item.active {
            color: var(--gray-color);
        }
        
        .hero-services {
            height: 400px;
            background: linear-gradient(rgba(42, 122, 109, 0.85), rgba(42, 122, 109, 0.9)), 
                        url('../assets/services-hero.jpg') center/cover;
            color: white;
            display: flex;
            align-items: center;
            position: relative;
            margin-top: -120px;
            padding-top: 120px;
        }
        
        .hero-services-content {
            max-width: 800px;
        }
        
        .hero-services-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .hero-services-subtitle {
            font-size: 1.5rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }
        
        /* Intro Section */
        .intro-section {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .intro-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
        }
        
        .intro-icon i {
            font-size: 2rem;
            color: white;
        }
        
        /* Service Cards - Grid Layout */
        .service-grid-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid var(--gray-light);
            transition: all 0.3s ease;
        }
        
        .service-grid-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-color: var(--primary-light);
        }
        
        .service-grid-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-grid-content {
            padding: 1.5rem;
        }
        
        .service-grid-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }
        
        .service-grid-icon i {
            font-size: 1.25rem;
            color: white;
        }
        
        /* How It Works Steps */
        .how-it-works {
            position: relative;
            padding: 3rem 0;
        }
        
        .step-card {
            text-align: center;
            padding: 2rem 1.5rem;
            background: white;
            border-radius: 12px;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid var(--gray-light);
            transition: all 0.3s ease;
        }
        
        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin: 0 auto 1.5rem;
            font-size: 1.5rem;
        }
        
        .step-line {
            position: absolute;
            top: 90px;
            left: 50%;
            width: 80%;
            height: 2px;
            background: var(--gray-light);
            transform: translateX(-50%);
            z-index: -1;
        }
        
        /* Why Choose Cards */
        .why-choose-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid var(--gray-light);
            transition: all 0.3s ease;
        }
        
        .why-choose-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-light);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        }
        
        .why-choose-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--secondary-color), #8a84ff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }
        
        .why-choose-icon i {
            font-size: 1.75rem;
            color: white;
        }
        
        /* Layout Toggle Styles */
        .layout-toggle {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 2rem;
        }
        
        .layout-btn {
            background: white;
            border: 1px solid var(--gray-light);
            padding: 0.5rem 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .layout-btn:first-child {
            border-radius: 8px 0 0 8px;
            border-right: none;
        }
        
        .layout-btn:last-child {
            border-radius: 0 8px 8px 0;
        }
        
        .layout-btn.active {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        /* Swiper Services Slider */
        .servicesSwiper {
            padding: 1rem;
        }
        
        .swiper-slide {
            height: auto;
        }
        
        .service-slider-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid var(--gray-light);
        }
        
        .service-slider-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-slider-content {
            padding: 1.5rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 1199.98px) {
            .hero-services-title {
                font-size: 3rem;
            }
            
            .hero-services-subtitle {
                font-size: 1.25rem;
            }
        }
        
        @media (max-width: 991.98px) {
            .hero-services {
                height: 350px;
                margin-top: -110px;
                padding-top: 110px;
            }
            
            .hero-services-title {
                font-size: 2.75rem;
            }
            
            .hero-services-subtitle {
                font-size: 1.1rem;
            }
            
            .step-line {
                display: none;
            }
        }
        
        @media (max-width: 767.98px) {
            .hero-services {
                height: 300px;
                margin-top: -100px;
                padding-top: 100px;
            }
            
            .hero-services-title {
                font-size: 2.25rem;
            }
            
            .hero-services-subtitle {
                font-size: 1rem;
            }
            
            .layout-toggle {
                justify-content: center;
            }
        }
        
        @media (max-width: 575.98px) {
            .hero-services {
                height: 250px;
            }
            
            .hero-services-title {
                font-size: 1.75rem;
            }
            
            .hero-services-subtitle {
                font-size: 0.9rem;
            }
            
            .intro-icon {
                width: 60px;
                height: 60px;
            }
            
            .intro-icon i {
                font-size: 1.5rem;
            }
        }
        
        /* Animation Classes */
        .fade-in {
            animation: fadeIn 0.5s ease forwards;
        }
        
        .slide-in {
            animation: slideIn 0.5s ease forwards;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideIn {
            from { 
                opacity: 0;
                transform: translateY(20px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }



          /* Contact Page Specific Styles */
        .breadcrumb {
            background: transparent;
            padding: 0;
            margin-bottom: 2rem;
        }
        
        .breadcrumb-item a {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .breadcrumb-item.active {
            color: var(--gray-color);
        }
        
        .hero-contact {
            height: 400px;
            background: linear-gradient(rgba(42, 122, 109, 0.85), rgba(42, 122, 109, 0.9)), 
                        url('assets/contact-hero.jpg') center/cover;
            color: white;
            display: flex;
            align-items: center;
            position: relative;
            margin-top: -120px;
            padding-top: 120px;
        }
        
        .hero-contact-content {
            max-width: 800px;
        }
        
        .hero-contact-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .hero-contact-subtitle {
            font-size: 1.5rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }
        
        /* Intro Section */
        .intro-contact {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .intro-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
        }
        
        .intro-icon i {
            font-size: 2rem;
            color: white;
        }
        
        /* Contact Information Cards */
        .contact-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid var(--gray-light);
            transition: all 0.3s ease;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            border-color: var(--primary-light);
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .contact-icon i {
            font-size: 1.5rem;
            color: white;
        }
        
        .contact-detail {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .contact-detail i {
            position: absolute;
            left: 0;
            top: 0.25rem;
            color: var(--primary-color);
        }
        
        /* Contact Form */
        .contact-form-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid var(--gray-light);
            height: 100%;
        }
        
        .form-label {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 0.5rem;
        }
        
        .required::after {
            content: " *";
            color: #dc3545;
        }
        
        .form-control, .form-select {
            border: 1px solid var(--gray-light);
            border-radius: 8px;
            padding: 0.75rem 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(42, 122, 109, 0.25);
        }
        
        .form-control.error, .form-select.error {
            border-color: #dc3545;
        }
        
        .error-message {
            color: #dc3545;
            font-size: 0.875rem;
            margin-top: 0.25rem;
            display: none;
        }
        
        .success-message {
            background: #d1e7dd;
            color: #0f5132;
            border: 1px solid #badbcc;
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1.5rem;
            display: none;
        }
        
        /* Office Hours */
        .hours-table {
            width: 100%;
        }
        
        .hours-table td {
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--gray-light);
        }
        
        .hours-table tr:last-child td {
            border-bottom: none;
        }
        
        /* Map Section */
        .map-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 400px;
            position: relative;
        }
        
        #map {
            width: 100%;
            height: 100%;
        }
        
        .map-overlay {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: white;
            border-radius: 8px;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            max-width: 250px;
        }
        
        /* Why Contact Section */
        .why-contact-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            text-align: center;
            border: 1px solid var(--gray-light);
            transition: all 0.3s ease;
        }
        
        .why-contact-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-light);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        }
        
        .why-contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--secondary-color), #8a84ff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }
        
        .why-contact-icon i {
            font-size: 1.5rem;
            color: white;
        }
        
        /* WhatsApp/Live Chat Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
            color: white;
        }
        
        .whatsapp-btn i {
            font-size: 1.75rem;
        }
        
        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.875rem;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }
        
        .whatsapp-btn:hover .whatsapp-tooltip {
            opacity: 1;
        }
        
        /* Appointment Modal */
        .modal-appointment .modal-content {
            border-radius: 12px;
            border: none;
        }
        
        .modal-appointment .modal-header {
            background: var(--primary-color);
            color: white;
            border-radius: 12px 12px 0 0;
        }
        
        /* Click-to-call button for mobile */
        .mobile-call-btn {
            display: none;
            position: fixed;
            bottom: 2rem;
            left: 2rem;
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(42, 122, 109, 0.3);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .mobile-call-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(42, 122, 109, 0.4);
            color: white;
        }
        
        /* Responsive Styles */
        @media (max-width: 1199.98px) {
            .hero-contact-title {
                font-size: 3rem;
            }
            
            .hero-contact-subtitle {
                font-size: 1.25rem;
            }
        }
        
        @media (max-width: 991.98px) {
            .hero-contact {
                height: 350px;
                margin-top: -110px;
                padding-top: 110px;
            }
            
            .hero-contact-title {
                font-size: 2.75rem;
            }
            
            .hero-contact-subtitle {
                font-size: 1.1rem;
            }
            
            .whatsapp-btn {
                bottom: 1rem;
                right: 1rem;
            }
        }
        
        @media (max-width: 767.98px) {
            .hero-contact {
                height: 300px;
                margin-top: -100px;
                padding-top: 100px;
            }
            
            .hero-contact-title {
                font-size: 2.25rem;
            }
            
            .hero-contact-subtitle {
                font-size: 1rem;
            }
            
            .map-overlay {
                position: relative;
                top: 0;
                right: 0;
                max-width: 100%;
                margin-bottom: 1rem;
            }
            
            .mobile-call-btn {
                display: flex;
            }
        }
        
        @media (max-width: 575.98px) {
            .hero-contact {
                height: 250px;
            }
            
            .hero-contact-title {
                font-size: 1.75rem;
            }
            
            .hero-contact-subtitle {
                font-size: 0.9rem;
            }
            
            .intro-icon {
                width: 60px;
                height: 60px;
            }
            
            .intro-icon i {
                font-size: 1.5rem;
            }
            
            .contact-form-card, .contact-card {
                padding: 1.5rem;
            }
            
            .whatsapp-btn, .mobile-call-btn {
                width: 50px;
                height: 50px;
                bottom: 1rem;
            }
            
            .mobile-call-btn {
                left: 1rem;
            }
        }
        
        /* Animation Classes */
        .fade-in {
            animation: fadeIn 0.5s ease forwards;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }


        .call-to-action {
            background-color: var(--primary-light);
        }



         /* Service Detail Page Specific Styles */
        .breadcrumb {
            background: transparent;
            padding: 0;
            margin-bottom: 2rem;
        }
        
        .breadcrumb-item a {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .breadcrumb-item.active {
            color: var(--gray-color);
        }
        
        .service-hero {
            height: 600px;
            /* background: linear-gradient(rgba(42, 122, 109, 0.85), rgba(42, 122, 109, 0.9)), 
                        url('../assets/service-detail-hero.jpg') center/cover; */
            color: white;
            display: flex;
            align-items: center;
            position: relative;
            margin-top: -120px;
            padding-top: 120px;
        }
        
        .service-hero-content {
            max-width: 800px;
        }
        
        .service-hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .service-hero-subtitle {
            font-size: 1.5rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }
        
        /* Service Description */
        .service-description-img {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        /* What's Included Section */
        .included-list {
            list-style: none;
            padding-left: 0;
        }
        
        .included-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--gray-light);
            display: flex;
            align-items: flex-start;
        }
        
        .included-list li:last-child {
            border-bottom: none;
        }
        
        .included-icon {
            color: var(--primary-color);
            margin-right: 1rem;
            margin-top: 0.25rem;
            flex-shrink: 0;
        }
        
        /* Who It's For Section */
        .who-for-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid var(--gray-light);
        }
        
        .who-for-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--secondary-color), #8a84ff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .who-for-icon i {
            font-size: 1.5rem;
            color: white;
        }
        
        /* How We Support Section */
        .support-card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid var(--gray-light);
            transition: all 0.3s ease;
        }
        
        .support-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-color: var(--primary-light);
        }
        
        .support-check {
            color: var(--primary-color);
            margin-right: 0.75rem;
        }
        /* Accommodation Types */
        .accommodation-type-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid var(--gray-light);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .accommodation-type-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            border-color: var(--primary-light);
        }
        
        .accommodation-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .accommodation-icon i {
            font-size: 1.5rem;
            color: white;
        }
        
        .accommodation-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--secondary-color);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }

          /* Who It's For Section */
        .who-for-section {
            background: linear-gradient(135deg, var(--light-color) 0%, #eef7f5 100%);
            border-radius: 16px;
            padding: 3rem;
        }
        
        .who-for-list {
            list-style: none;
            padding-left: 0;
        }
        
        .who-for-list li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
        }
        
        .who-for-list li i {
            color: var(--primary-color);
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        /* Funding Info Box */
        .funding-box {
            background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
            color: white;
            border-radius: 12px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .funding-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200px;
            height: 200px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }
        
        .funding-icon {
            position: absolute;
            bottom: 20px;
            right: 20px;
            opacity: 0.2;
            font-size: 4rem;
        }
        
        /* FAQ Accordion */
        .service-accordion .accordion-button {
            font-weight: 600;
            padding: 1.25rem;
            background-color: white;
            color: var(--dark-color);
            border: 1px solid var(--gray-light);
            border-radius: 8px !important;
            margin-bottom: 0.5rem;
        }
        
        .service-accordion .accordion-button:not(.collapsed) {
            background-color: var(--primary-color);
            color: white;
            box-shadow: none;
        }
        
        /* Related Services */
        .related-service-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid var(--gray-light);
            transition: all 0.3s ease;
        }
        
        .related-service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-color: var(--primary-light);
        }
        
        .related-service-img {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }
        
        .related-service-content {
            padding: 1.5rem;
        }
        
        /* Comparison Table */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .comparison-table th {
            background: var(--primary-color);
            color: white;
            padding: 1rem;
            text-align: left;
        }
        
        .comparison-table td {
            padding: 1rem;
            border-bottom: 1px solid var(--gray-light);
        }
        
        .comparison-table tr:nth-child(even) {
            background-color: var(--gray-light);
        }
        
        .comparison-table .check-cell {
            color: var(--primary-color);
            text-align: center;
            font-size: 1.25rem;
        }
        
        /* Download Brochure */
        .download-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 2px dashed var(--gray-light);
            transition: all 0.3s ease;
        }
        
        .download-card:hover {
            border-color: var(--primary-color);
            box-shadow: 0 15px 40px rgba(42, 122, 109, 0.1);
        }
        
        .download-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }
        
        .download-icon i {
            font-size: 2rem;
            color: white;
        }
        
        /* Responsive Styles */
        @media (max-width: 1199.98px) {
            .service-hero-title {
                font-size: 3rem;
            }
            
            .service-hero-subtitle {
                font-size: 1.25rem;
            }
        }
        
        @media (max-width: 991.98px) {
            .service-hero {
                height: 350px;
                margin-top: -110px;
                padding-top: 110px;
            }
            
            .service-hero-title {
                font-size: 2.75rem;
            }
            
            .service-hero-subtitle {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 767.98px) {
            .service-hero {
                height: 300px;
                margin-top: -100px;
                padding-top: 100px;
            }
            
            .service-hero-title {
                font-size: 2.25rem;
            }
            
            .service-hero-subtitle {
                font-size: 1rem;
            }
            
            .comparison-table {
                display: block;
                overflow-x: auto;
            }
        }
        
        @media (max-width: 575.98px) {
            .service-hero {
                height: 250px;
            }
            
            .service-hero-title {
                font-size: 1.75rem;
            }
            
            .service-hero-subtitle {
                font-size: 0.9rem;
            }
            
            .funding-box {
                padding: 1.5rem;
            }
        }
        
        /* Animation Classes */
        .fade-in-section {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in-section.visible {
            opacity: 1;
            transform: translateY(0);
        }




        /* Testimonial Section Styles */
    .testimonial-section {
        background: linear-gradient(135deg, #f9f9f9 0%, #f0f7f5 100%);
        position: relative;
        overflow: hidden;
    }
    
    /* Optional decorative element */
    .testimonial-section::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: rgba(42, 122, 109, 0.05);
        border-radius: 50%;
        z-index: 0;
    }
    
    .testimonial-section::after {
        content: '';
        position: absolute;
        bottom: -50px;
        left: -50px;
        width: 200px;
        height: 200px;
        background: rgba(42, 122, 109, 0.05);
        border-radius: 50%;
        z-index: 0;
    }
    
    .testimonial-section .container {
        position: relative;
        z-index: 1;
    }
    
    /* Testimonial Card */
    .testimonial-card {
        background: white;
        border-radius: 16px;
        padding: 2.5rem;
        height: 100%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(42, 122, 109, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }
    
    /* Quote Icon */
    .quote-icon {
        color: var(--primary-color);
        font-size: 2.5rem;
        opacity: 0.2;
        line-height: 1;
    }
    
    /* Testimonial Text */
    .testimonial-text {
        font-size: 1.125rem;
        line-height: 1.7;
        color: var(--dark-color);
        position: relative;
        padding-left: 1rem;
        border-left: 3px solid var(--primary-light);
    }
    
    /* Star Rating */
    .testimonial-rating {
        color: #ffc107;
        font-size: 1.25rem;
        letter-spacing: 2px;
    }
    
    .testimonial-rating i {
        margin-right: 0.25rem;
    }
    
    /* Divider */
    .testimonial-divider {
        height: 1px;
        background: linear-gradient(to right, transparent, var(--gray-light), transparent);
        margin: 1rem 0;
    }
    
    /* Author Info */
    .author-name {
        font-weight: 600;
        color: var(--primary-dark);
        font-size: 1.125rem;
        margin-bottom: 0.25rem;
    }
    
    .author-location {
        color: var(--gray-color);
        font-size: 0.875rem;
        font-weight: 500;
    }
    
    /* Swiper Customization */
    .testimonialSwiper {
        padding: 1rem 3rem 3rem;
        position: relative;
    }
    
    .testimonialSwiper .swiper-wrapper {
        align-items: stretch;
    }
    
    .testimonialSwiper .swiper-slide {
        height: auto;
    }
    
    /* Navigation Arrows */
    .testimonialSwiper .swiper-button-next,
    .testimonialSwiper .swiper-button-prev {
        background: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        color: var(--primary-color);
        transition: all 0.3s ease;
    }
    
    .testimonialSwiper .swiper-button-next:after,
    .testimonialSwiper .swiper-button-prev:after {
        font-size: 1.25rem;
        font-weight: bold;
    }
    
    .testimonialSwiper .swiper-button-next:hover,
    .testimonialSwiper .swiper-button-prev:hover {
        background: var(--primary-color);
        color: white;
        transform: scale(1.1);
    }
    
    .testimonialSwiper .swiper-button-disabled {
        opacity: 0.3;
        cursor: not-allowed;
        transform: none !important;
    }
    
    /* Pagination Dots */
    .testimonialSwiper .swiper-pagination {
        bottom: 0 !important;
    }
    
    .testimonialSwiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: var(--gray-color);
        opacity: 0.5;
        transition: all 0.3s ease;
    }
    
    .testimonialSwiper .swiper-pagination-bullet-active {
        background: var(--primary-color);
        opacity: 1;
        transform: scale(1.2);
    }
    
    /* Accessibility Focus States */
    .testimonialSwiper .swiper-button-next:focus,
    .testimonialSwiper .swiper-button-prev:focus {
        outline: 3px solid var(--primary-color);
        outline-offset: 2px;
    }
    
    .testimonial-card:focus-within {
        outline: 3px solid var(--primary-color);
        outline-offset: 3px;
    }
    
    /* Responsive Styles */
    @media (max-width: 1199.98px) {
        .testimonial-card {
            padding: 2rem;
        }
        
        .testimonial-text {
            font-size: 1.0625rem;
        }
    }
    
    @media (max-width: 991.98px) {
        .testimonialSwiper {
            padding: 1rem 2rem 3rem;
        }
        
        .testimonial-card {
            padding: 1.75rem;
        }
        
        .quote-icon {
            font-size: 2rem;
        }
    }
    
    @media (max-width: 767.98px) {
        .testimonial-section {
            padding: 3rem 0;
        }
        
        .testimonialSwiper {
            padding: 0.5rem 0.5rem 3rem;
        }
        
        .testimonialSwiper .swiper-button-next,
        .testimonialSwiper .swiper-button-prev {
            display: none;
        }
        
        .testimonial-card {
            padding: 1.5rem;
            margin: 0 0.5rem;
        }
        
        .testimonial-text {
            font-size: 1rem;
            padding-left: 0.75rem;
        }
        
        .quote-icon {
            font-size: 1.75rem;
        }
        
        .author-name {
            font-size: 1rem;
        }
    }
    
    @media (max-width: 575.98px) {
        .testimonial-section::before,
        .testimonial-section::after {
            display: none;
        }
        
        .testimonial-card {
            padding: 1.25rem;
        }
        
        .testimonial-text {
            font-size: 0.9375rem;
        }
        
        .testimonial-rating {
            font-size: 1rem;
        }
        
        .btn {
            display: block;
            width: 100%;
            margin-bottom: 0.75rem;
        }
        
        .btn:last-child {
            margin-bottom: 0;
        }
    }

    /* Service Cards */
        .gardening .service-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid var(--gray-light);
            transition: all 0.3s ease;
        }
        
        .gardening .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            border-color: var(--primary-light);
        }
        
        .gardening .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .gardening .service-icon i {
            font-size: 1.75rem;
            color: white;
        }
        
        .gardening .service-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }
        
        .gardening .service-list li {
            padding: 0.5rem 0;
            display: flex;
            align-items: flex-start;
            border-bottom: 1px solid var(--gray-light);
        }
        
        .gardening .service-list li:last-child {
            border-bottom: none;
        }
        
        .gardening .service-list li i {
            color: var(--primary-color);
            margin-right: 0.75rem;
            margin-top: 0.25rem;
            flex-shrink: 0;
        }

        /* Benefits Section */
        .benefit-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            border: 1px solid var(--gray-light);
            transition: all 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-light);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        }
        
        .benefit-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--secondary-color), #8a84ff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .benefit-icon i {
            font-size: 1.5rem;
            color: white;
        }

        /* Skills Cards */
        .skill-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid var(--gray-light);
            transition: all 0.3s ease;
        }
        
        .skill-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            border-color: var(--primary-light);
        }
        
        .skill-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .skill-icon i {
            font-size: 1.75rem;
            color: white;
        }
        
        .skill-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }
        
        .skill-list li {
            padding: 0.5rem 0;
            display: flex;
            align-items: flex-start;
            border-bottom: 1px solid var(--gray-light);
        }
        
        .skill-list li:last-child {
            border-bottom: none;
        }
        
        .skill-list li i {
            color: var(--primary-color);
            margin-right: 0.75rem;
            margin-top: 0.25rem;
            flex-shrink: 0;
        }
        

        /* Cleaning Cards */
        .cleaning-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid var(--gray-light);
            transition: all 0.3s ease;
        }
        
        .cleaning-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            border-color: var(--primary-light);
        }
        
        .cleaning-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--secondary-color), #f7dc6f);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .cleaning-icon i {
            font-size: 1.75rem;
            color: white;
        }
        
        .cleaning-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }
        
        .cleaning-list li {
            padding: 0.5rem 0;
            display: flex;
            align-items: flex-start;
            border-bottom: 1px solid var(--gray-light);
        }
        
        .cleaning-list li:last-child {
            border-bottom: none;
        }
        
        .cleaning-list li i {
            color: var(--secondary-color);
            margin-right: 0.75rem;
            margin-top: 0.25rem;
            flex-shrink: 0;
        }

        /* Specialised Services */
        .special-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid var(--gray-light);
            transition: all 0.3s ease;
        }
        
        .special-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-light);
        }
        
        .special-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .special-icon i {
            font-size: 1.25rem;
            color: white;
        }
        
        /* Cleaning Specific Styles */
        .product-badge {
            background: #e8f6f3;
            color: var(--primary-color);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 1rem;
        }
        
        .cleaning-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .cleaning-image img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .cleaning-image:hover img {
            transform: scale(1.05);
        }

        /* Service Areas */
        .area-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            border: 1px solid var(--gray-light);
            transition: all 0.3s ease;
        }
        
        .area-card:hover {
            transform: translateY(-5px);
            border-color: var(--secondary-color);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        }
        
        .area-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .area-icon i {
            font-size: 1.5rem;
            color: white;
        }
        