/* H2 Bathrooms Website CSS */

/* CSS Variables */
:root {
    --primary-color: #18495b;
    --accent-color: #00acc2;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --text-color: #ffffff;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
    --shadow: 0 4px 20px rgba(0, 172, 194, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 172, 194, 0.15);
    --transition: all 0.3s ease;
}

/* Base Styles */
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--primary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: var(--white);
}

/* Buttons */
.btn {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    border-radius: var(--border-radius);
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #0099b3 100%);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0099b3 0%, var(--accent-color) 100%);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
    color: var(--white);
}

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

.btn-outline-primary:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-light:hover {
    background: var(--light-gray);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

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

/* Header */
.main-header {
    background: rgba(24, 73, 91, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 172, 194, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand .logo {
    height: 70px;
    width: auto;
}

.navbar-nav .nav-link {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    color: var(--text-color);
    margin: 0 8px;
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white);
    background: linear-gradient(135deg, var(--accent-color) 0%, #0099b3 100%);
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Section Styling */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    text-align: center;
}

/* Card Styles */
.card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 172, 194, 0.2);
    border-radius: var(--border-radius-lg);
    color: var(--white);
    transition: var(--transition);
}

.card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-title {
    color: var(--accent-color);
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}

.card-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.main-footer {
    background: rgba(24, 73, 91, 0.9);
    border-top: 3px solid var(--accent-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.main-footer a {
    color: #fff;
    text-decoration: none;
}

.footer-logo {
    height: 70px;
    width: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-menu a:hover {
    color: var(--accent-color);
}

.footer-contact {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: var(--accent-color);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 172, 194, 0.2);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(0, 172, 194, 0.3);
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--accent-color);
}

.footer-divider {
    border-color: rgba(0, 172, 194, 0.3);
    margin: 0 0 2rem;
}


.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

/* Utility Classes */
.text-accent {
    color: var(--accent-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.bg-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 172, 194, 0.2);
}

.rounded-lg {
    border-radius: var(--border-radius-lg) !important;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
        padding: 10px 15px;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .main-footer {
        padding: 40px 0 20px;
    }
    
    .footer-contact p {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .navbar-nav .nav-link {
        margin: 3px 0;
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .main-footer {
        padding: 30px 0 15px;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* H2 Bathrooms Homepage Styles */

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 80vh;
    min-height: 600px;
}

.carousel-item {
    height: 80vh;
    min-height: 600px;
    position: relative;
}

.carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(24, 73, 91, 0.4) 0%, rgba(0, 172, 194, 0.4) 100%);
    background: linear-gradient(135deg, rgba(0, 0, 0, .4) 0%, rgba(0, 0, 0, .4) 100%);
}

.carousel-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    color: var(--white);
    height: 80vh;
    min-height: 600px;
}

.carousel-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.carousel-indicators button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--white);
}

.carousel-indicators button.active {
    background-color: var(--accent-color);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
    background-size: 100%;
}

/* Who We Are Section */
.who-we-are {
    padding: 100px 0;
    background: var(--primary-color);
}

.about-image img {
    box-shadow: 0 8px 30px rgba(0, 172, 194, 0.2);
    border: 3px solid rgba(0, 172, 194, 0.3);
}

.about-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(24, 73, 91, 0.95) 0%, rgba(0, 172, 194, 0.1) 100%);
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 172, 194, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 172, 194, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #0099b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-title {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    flex-grow: 1;
}


.service-features-home ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features-home li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    padding-left: 25px;
    position: relative;
}

.service-features-home li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
}

/* Gallery Preview Section */
.gallery-preview {
    padding: 100px 0;
    background: var(--primary-color);
}

.gallery-preview-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 172, 194, 0.2);
    transition: var(--transition);
}

.gallery-preview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 172, 194, 0.2);
    border-color: var(--accent-color);
}

.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(24, 73, 91, 0.8) 0%, rgba(0, 172, 194, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-preview-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-preview-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay-content h5 {
    color: var(--white);
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

/* Home CTA Section */
.home-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, #0099b3 100%);
    color: var(--white);
}

.home-cta .cta-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.home-cta .cta-text {
    color: var(--white);
    font-size: 1.2rem;
    max-width: 60%;
    margin: 0 auto 2rem;
}

/* Responsive Design for Homepage */
@media (max-width: 991.98px) {
    .carousel-title {
        font-size: 2.5rem;
    }
    
    .carousel-text {
        font-size: 1.1rem;
        max-width: 80%;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .gallery-preview-item {
        height: 180px;
        margin-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-carousel,
    .carousel-item,
    .carousel-content {
        height: 70vh;
        min-height: 500px;
    }
    
    .carousel-title {
        font-size: 2rem;
    }
    
    .carousel-text {
        font-size: 1rem;
        max-width: 90%;
    }
    
    .who-we-are,
    .services-section,
    .gallery-preview,
    .home-cta {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 1.75rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .about-text {
        font-size: 1rem;
        text-align: center;
    }
    
    .about-content {
        text-align: center;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .gallery-preview-item {
        height: 180px;
    }
    
    .home-cta .cta-title {
        font-size: 2rem;
    }
    
    .home-cta .cta-text {
        max-width: 90%;
    }
}

@media (max-width: 575.98px) {
    .hero-carousel,
    .carousel-item,
    .carousel-content {
        height: 60vh;
        min-height: 400px;
    }
    
    .carousel-title {
        font-size: 1.75rem;
    }
    
    .carousel-text {
        font-size: 0.9rem;
    }
    
    .who-we-are,
    .services-section,
    .gallery-preview,
    .home-cta {
        padding: 40px 0;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .gallery-preview-item {
        height: 180px;
    }
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
}

/* H2 Bathrooms About Page Styles */

/* About Hero Section */
.about-hero {
    padding: 100px 0;
    background: var(--primary-color);
}

.hero-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.about-hero-image img {
    box-shadow: 0 8px 30px rgba(0, 172, 194, 0.2);
    border: 3px solid rgba(0, 172, 194, 0.3);
}

/* Our Story Section */
.our-story {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(24, 73, 91, 0.95) 0%, rgba(0, 172, 194, 0.1) 100%);
}

.story-content {
    padding: 2rem;
}

.story-subtitle {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.story-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-highlights {
    margin-top: 3rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 172, 194, 0.2);
    transition: var(--transition);
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    transform: translateX(10px);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.highlight-content h5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

.story-image img {
    box-shadow: 0 8px 30px rgba(0, 172, 194, 0.2);
    border: 3px solid rgba(0, 172, 194, 0.3);
}

/* Our Approach Section */
.our-approach {
    padding: 100px 0;
    background: var(--primary-color);
}

.approach-subtitle {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.approach-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.approach-services-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.approach-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.approach-services-list li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.approach-services-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
}

.approach-image img {
    box-shadow: 0 8px 30px rgba(0, 172, 194, 0.2);
    border: 3px solid rgba(0, 172, 194, 0.3);
}

/* Our Expertise Section */
.our-expertise {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(24, 73, 91, 0.95) 0%, rgba(0, 172, 194, 0.1) 100%);
}

.expertise-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 172, 194, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.expertise-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 172, 194, 0.2);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #0099b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.expertise-icon i {
    font-size: 2rem;
    color: var(--white);
}

.expertise-title {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.expertise-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: var(--primary-color);
}

.choose-us-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.choose-us-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.choose-us-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 172, 194, 0.2);
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    transform: translateX(10px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.benefit-content h5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

.choose-us-image img {
    box-shadow: 0 8px 30px rgba(0, 172, 194, 0.2);
    border: 3px solid rgba(0, 172, 194, 0.3);
}

/* Contact Matthew Section */
.contact-matthew {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, #0099b3 100%);
    color: var(--white);
}

.contact-matthew-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-matthew-text {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    text-align: left;
}

.contact-method i {
    font-size: 2.5rem;
    color: var(--white);
    margin-right: 1.5rem;
}

.contact-info h5 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info p {
    margin: 0;
    color: var(--white);
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-info a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

/* Responsive Design for About Page */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .story-subtitle,
    .choose-us-title {
        font-size: 2rem;
    }
    
    .expertise-card,
    .highlight-item,
    .benefit-item {
        margin-bottom: 2rem;
    }
    
    .contact-details {
        gap: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-description {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .about-hero,
    .our-story,
    .our-approach,
    .our-expertise,
    .why-choose-us,
    .contact-matthew {
        padding: 60px 0;
    }
    
    .story-content,
    .approach-content {
        padding: 1rem;
        text-align: center;
    }
    
    .story-subtitle,
    .approach-subtitle {
        font-size: 1.75rem;
    }
    
    .choose-us-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .choose-us-description {
        text-align: center;
    }
    
    .highlight-item,
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-icon,
    .benefit-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-method {
        justify-content: center;
    }
    
    .contact-matthew-title {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .about-hero,
    .our-story,
    .our-approach,
    .our-expertise,
    .why-choose-us,
    .contact-matthew {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .story-subtitle,
    .approach-subtitle {
        font-size: 1.5rem;
    }
    
    .choose-us-title,
    .contact-matthew-title {
        font-size: 1.75rem;
    }
    
    .expertise-card {
        padding: 2rem 1.5rem;
    }
    
    .expertise-icon,
    .highlight-icon,
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .expertise-icon i,
    .highlight-icon i,
    .benefit-icon i {
        font-size: 1.5rem;
    }
    
    .contact-method i {
        font-size: 2rem;
        margin-right: 1rem;
    }
}

/* H2 Bathrooms Contact Page Styles */

/* Contact Hero Section */
.contact-hero {
    padding: 100px 0 60px;
    background: var(--primary-color);
}

.contact-hero .hero-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-hero .hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Information Section */
.contact-info-2 {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(24, 73, 91, 0.95) 0%, rgba(0, 172, 194, 0.1) 100%);
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 172, 194, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 172, 194, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #0099b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.contact-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-title {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.contact-details {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-number a,
.contact-email a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: var(--transition);
}

.contact-number a:hover,
.contact-email a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-email {
    margin-bottom: 0.5rem;
}

.contact-note {
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

/* Areas Served Section */
.areas-served {
    padding: 100px 0;
    background: var(--primary-color);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.area-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 172, 194, 0.2);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    text-align: center;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
}

.area-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
}

.areas-note {
    background: rgba(0, 172, 194, 0.2);
    border: 1px solid rgba(0, 172, 194, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
}

.areas-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.areas-note strong {
    color: var(--accent-color);
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(24, 73, 91, 0.95) 0%, rgba(0, 172, 194, 0.1) 100%);
}

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 172, 194, 0.2);
    border: 3px solid rgba(0, 172, 194, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Contact Guide Section */
.contact-guide {
    padding: 100px 0;
    background: var(--primary-color);
}

.guide-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 172, 194, 0.2);
    border-radius: var(--border-radius-lg);
    height: 100%;
    transition: var(--transition);
}

.guide-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.guide-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.guide-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.guide-title {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.guide-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Contact CTA Section */
.contact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, #0099b3 100%);
    color: var(--white);
}

.contact-cta .cta-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-cta .cta-text {
    color: var(--white);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 180px;
    font-weight: 600;
}

/* Responsive Design for Contact Page */
@media (max-width: 991.98px) {
    .contact-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-card {
        margin-bottom: 2rem;
        padding: 2.5rem 2rem;
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .guide-item {
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 767.98px) {
    .contact-hero .hero-title {
        font-size: 2rem;
    }
    
    .contact-hero .hero-description {
        font-size: 1.2rem;
    }
    
    .contact-hero,
    .contact-info,
    .areas-served,
    .map-section,
    .contact-guide,
    .contact-cta {
        padding: 60px 0;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.75rem;
    }
    
    .area-item {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .areas-note {
        padding: 1.5rem;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    .guide-item {
        padding: 1.5rem;
    }
    
    .contact-cta .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .contact-hero,
    .contact-info,
    .areas-served,
    .map-section,
    .contact-guide,
    .contact-cta {
        padding: 40px 0;
    }
    
    .contact-hero .hero-title {
        font-size: 1.75rem;
    }
    
    .contact-icon,
    .guide-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i,
    .guide-icon i {
        font-size: 1.5rem;
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .cta-buttons .btn {
        font-size: 1rem;
        padding: 12px 25px;
        min-width: 150px;
    }
}

/* H2 Bathrooms Gallery Page Styles */

/* Gallery Hero Section */
.gallery-hero {
    padding: 100px 0 60px;
    background: var(--primary-color);
}

.gallery-hero .hero-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.gallery-hero .hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Gallery Grid Section */
.gallery-grid {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(24, 73, 91, 0.95) 0%, rgba(0, 172, 194, 0.1) 100%);
}

.gallery-count {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 1.1rem;
    text-align: center;
    margin: 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 172, 194, 0.2);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 172, 194, 0.2);
    border-color: var(--accent-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(24, 73, 91, 0.8) 0%, rgba(0, 172, 194, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay-content {
    text-align: center;
    color: var(--white);
}

.gallery-overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.gallery-overlay-content span {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* No Gallery State */
.no-gallery {
    text-align: center;
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 172, 194, 0.2);
    border-radius: var(--border-radius-lg);
}

.no-gallery-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #0099b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.no-gallery-icon i {
    font-size: 3rem;
    color: var(--white);
}

.no-gallery h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.no-gallery p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery Modal */
.modal-content {
    border: none;
    border-radius: var(--border-radius-lg);
    background: var(--primary-color);
}

.modal-header {
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    border-bottom: 1px solid rgba(0, 172, 194, 0.3);
}

.modal-title {
    color: var(--white);
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}

.btn-close {
    filter: invert(1);
}

.modal-body {
    padding: 2rem;
    background: var(--primary-color);
}

#modalImage {
    max-height: 70vh;
    width: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(0, 172, 194, 0.2);
}

/* Gallery Navigation Styles */
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 172, 194, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.gallery-nav-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 172, 194, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Gallery CTA Section */
.gallery-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, #0099b3 100%);
    color: var(--white);
}

.gallery-cta .cta-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.gallery-cta .cta-text {
    color: var(--white);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
    font-weight: 600;
}

/* Responsive Design for Gallery Page */
@media (max-width: 991.98px) {
    .gallery-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .gallery-item {
        height: 220px;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 767.98px) {
    .gallery-hero .hero-title {
        font-size: 2rem;
    }
    
    .gallery-hero .hero-description {
        font-size: 1.2rem;
    }
    
    .gallery-hero,
    .gallery-grid,
    .gallery-cta {
        padding: 60px 0;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .gallery-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
    
    .gallery-counter {
        bottom: 15px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    #modalImage {
        max-height: 60vh;
    }
    
    .gallery-cta .cta-title {
        font-size: 2rem;
    }
    
    .no-gallery {
        padding: 60px 20px;
    }
    
    .no-gallery-icon {
        width: 100px;
        height: 100px;
    }
    
    .no-gallery-icon i {
        font-size: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .gallery-hero,
    .gallery-grid,
    .gallery-cta {
        padding: 40px 0;
    }
    
    .gallery-hero .hero-title {
        font-size: 1.75rem;
    }
    
    .gallery-item {
        height: 180px;
    }
    
    .gallery-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .gallery-prev {
        left: 5px;
    }
    
    .gallery-next {
        right: 5px;
    }
    
    .gallery-counter {
        bottom: 10px;
        padding: 4px 10px;
        font-size: 0.75rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .cta-buttons .btn {
        font-size: 1rem;
        padding: 12px 25px;
        min-width: 180px;
    }
    
    .no-gallery {
        padding: 40px 15px;
    }
    
    .no-gallery h3 {
        font-size: 1.75rem;
    }
}

/* H2 Bathrooms Service Page Styles */

/* Service Hero Section */
.service-hero {
    padding: 100px 0 60px;
    background: var(--primary-color);
}

.service-hero .hero-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.service-hero .hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* Service Content Section */
.service-content {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(24, 73, 91, 0.95) 0%, rgba(0, 172, 194, 0.1) 100%);
}

.content-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 172, 194, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.content-wrapper h1,
.content-wrapper h2,
.content-wrapper h3,
.content-wrapper h4,
.content-wrapper h5,
.content-wrapper h6 {
    color: var(--accent-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-wrapper h1:first-child,
.content-wrapper h2:first-child,
.content-wrapper h3:first-child,
.content-wrapper h4:first-child,
.content-wrapper h5:first-child,
.content-wrapper h6:first-child {
    margin-top: 0;
}

.content-wrapper p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.content-wrapper strong {
    color: var(--accent-color);
}

.content-wrapper blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

/* No Content State */
.no-content {
    text-align: center;
    padding: 3rem 2rem;
}

.no-content h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.no-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Service Gallery Section */
.service-gallery {
    padding: 100px 0;
    background: var(--primary-color);
}

.service-gallery .gallery-count {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 1.1rem;
    text-align: center;
    margin: 0;
}

.service-gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 172, 194, 0.2);
    transition: var(--transition);
    cursor: pointer;
}

.service-gallery .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 172, 194, 0.2);
    border-color: var(--accent-color);
}

.service-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-gallery .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(24, 73, 91, 0.8) 0%, rgba(0, 172, 194, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-gallery .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.service-gallery .gallery-item:hover img {
    transform: scale(1.1);
}

.service-gallery .gallery-overlay-content {
    text-align: center;
    color: var(--white);
}

.service-gallery .gallery-overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.service-gallery .gallery-overlay-content span {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Service Features Section */
.service-features {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(24, 73, 91, 0.95) 0%, rgba(0, 172, 194, 0.1) 100%);
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 172, 194, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 172, 194, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #0099b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-title {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.feature-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Service CTA Section */
.service-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, #0099b3 100%);
    color: var(--white);
}

.service-cta .cta-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-cta .cta-text {
    color: var(--white);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
    font-weight: 600;
}

/* Service Gallery Modal - Same as main gallery */
#serviceGalleryModal .modal-content {
    border: none;
    border-radius: var(--border-radius-lg);
    background: var(--primary-color);
}

#serviceGalleryModal .modal-header {
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    border-bottom: 1px solid rgba(0, 172, 194, 0.3);
}

#serviceGalleryModal .modal-title {
    color: var(--white);
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}

#serviceGalleryModal .btn-close {
    filter: invert(1);
}

#serviceGalleryModal .modal-body {
    padding: 2rem;
    background: var(--primary-color);
}

#serviceModalImage {
    max-height: 70vh;
    width: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(0, 172, 194, 0.2);
}

/* Responsive Design for Service Pages */
@media (max-width: 991.98px) {
    .service-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .content-wrapper {
        padding: 2rem;
    }
    
    .service-gallery .gallery-item {
        height: 220px;
        margin-bottom: 1.5rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 767.98px) {
    .service-hero .hero-title {
        font-size: 2rem;
    }
    
    .service-hero .hero-description {
        font-size: 1.2rem;
    }
    
    .service-hero,
    .service-content,
    .service-gallery,
    .service-features,
    .service-cta {
        padding: 60px 0;
    }
    
    .content-wrapper {
        padding: 1.5rem;
    }
    
    .service-gallery .gallery-item {
        height: 200px;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .service-cta .cta-title {
        font-size: 2rem;
    }
    
    #serviceModalImage {
        max-height: 60vh;
    }
}

@media (max-width: 575.98px) {
    .service-hero,
    .service-content,
    .service-gallery,
    .service-features,
    .service-cta {
        padding: 40px 0;
    }
    
    .service-hero .hero-title {
        font-size: 1.75rem;
    }
    
    .content-wrapper {
        padding: 1rem;
    }
    
    .service-gallery .gallery-item {
        height: 180px;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .cta-buttons .btn {
        font-size: 1rem;
        padding: 12px 25px;
        min-width: 180px;
    }
    
    .service-cta .cta-title {
        font-size: 1.75rem;
    }
}

/* Service Hero Background Image Styles */

/* Updated Service Hero Section */
.service-hero {
    padding: 100px 0 60px;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

/* Background Image Styling */
.service-hero.has-background-image {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.75;
    z-index: 1;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(24, 73, 91, 0.3) 0%, rgba(0, 172, 194, 0.2) 100%);
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
}

/* Enhanced text shadows for better readability over images */
.service-hero.has-background-image .hero-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.service-hero.has-background-image .hero-description {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    background: rgba(24, 73, 91, 0.2);
    backdrop-filter: blur(5px);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    display: inline-block;
    margin-bottom: 2.5rem;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .service-hero.has-background-image {
        min-height: 60vh;
    }
    
    .service-hero.has-background-image .hero-description {
        padding: 0.75rem 1.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .service-hero.has-background-image {
        min-height: 50vh;
    }
    
    .service-hero.has-background-image .hero-description {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

.service-logo {
    width: 360px;
  margin-bottom: 1rem;
}

/* Gallery Albums Additional Styles */

/* Album Styling */
.gallery-album {
    padding: 2rem 0;
    border-bottom: 2px solid rgba(0, 172, 194, 0.2);
    margin-bottom: 3rem;
}

.gallery-album:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.album-title {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}

.album-count {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 0;
    font-style: italic;
}

/* Enhanced Gallery Counter */
.gallery-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 172, 194, 0.9);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    text-align: center;
    min-width: 150px;
}

.counter-text {
    font-size: 1rem;
    margin-bottom: 2px;
}

.album-text {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Album Section Backgrounds */
.gallery-album:nth-child(odd) {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    backdrop-filter: blur(5px);
}

/* Responsive Design for Albums */
@media (max-width: 767.98px) {
    .gallery-album {
        padding: 1.5rem 0;
    }
    
    .gallery-album:nth-child(odd) {
        padding: 2rem 1rem;
    }
    
    .album-title {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .album-count {
        text-align: center;
    }
    
    .gallery-counter {
        padding: 10px 16px;
        min-width: 120px;
    }
    
    .counter-text {
        font-size: 0.9rem;
    }
    
    .album-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .gallery-album:nth-child(odd) {
        padding: 1.5rem 0.5rem;
    }
    
    .album-title {
        font-size: 1.5rem;
    }
    
    .gallery-counter {
        padding: 8px 12px;
        min-width: 100px;
        bottom: 15px;
    }
    
    .counter-text {
        font-size: 0.8rem;
    }
    
    .album-text {
        font-size: 0.7rem;
    }
}