/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Home page header should be transparent initially */
.home-page .header {
    background: transparent;
    backdrop-filter: blur(10px);
}

.header.scrolled {
    background: rgba(44, 62, 80, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled .nav-link {
    color: white !important;
}

.header.scrolled .nav-link:hover {
    color: #f4d35e !important;
}

.header.scrolled .nav-link.active {
    color: #f4d35e !important;
}

.header.scrolled .nav-logo {
    color: #f4d35e !important;
}

.header.scrolled .nav-logo i {
    color: #f4d35e !important;
}

.header.scrolled .hamburger .bar {
    background: white !important;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    color: #f4d35e;
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
    color: #f4d35e;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

.nav-logo .logo-img {
    height: 80px !important;
    width: auto;
    margin-right: 0.5rem;
    object-fit: contain;
    max-height: none !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: #f4d35e;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f4d35e;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #f4d35e;
}

/* Dropdown Navigation */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i,
.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9998;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Test: Show dropdown on hover of the nav-link */
.nav-link.dropdown-toggle:hover + .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}





.dropdown-menu li {
    margin: 0;
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-link:hover,
.dropdown-link.active {
    background: #f8f9fa;
    color: #f4d35e;
    border-left-color: #f4d35e;
}

.dropdown-menu li:first-child .dropdown-link {
    border-bottom: 1px solid #eee;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.dropdown-menu li:first-child .dropdown-link:hover {
    background: #f4d35e;
    color: white;
}

.nav-contact {
    display: flex;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    color: white;
    font-size: 0.9rem;
}

.contact-info span {
    margin-bottom: 0.25rem;
}

.contact-info i {
    margin-right: 0.5rem;
    color: #f4d35e;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.7) 0%, rgba(52, 73, 94, 0.8) 100%),
                url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-left {
    color: white;
}

.trust-badge {
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.rating-stars i {
    color: #f4d35e;
    font-size: 1rem;
}

.rating-stars span {
    color: #f4d35e;
    font-weight: 600;
    margin-left: 0.5rem;
}

.reviews-count {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
    line-height: 1.1;
}

.hero-title .highlight {
    color: #f4d35e;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.cta-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 150px;
    justify-content: center;
}

.cta-button.primary {
    background: #f4d35e;
    color: #2c3e50;
}

.cta-button.primary:hover {
    background: #e6c55a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(244, 211, 94, 0.3);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.featured-in {
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

.featured-in span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.company-logos {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.logo-placeholder {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.logo-placeholder i {
    font-size: 1.2rem;
    color: #f4d35e;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.hero-image-container {
    position: relative;
}

.hero-image {
    width: 400px;
    height: 500px;
    background: transparent;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}



.cleaning-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.cleaning-tools {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 3rem;
    width: 80%;
}

.tool-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f4d35e 0%, #e6c55a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(244, 211, 94, 0.3);
    transition: all 0.3s ease;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.tool-icon:nth-child(1) {
    animation-delay: 0s;
}

.tool-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.tool-icon:nth-child(3) {
    animation-delay: 1s;
}

.tool-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 20px 40px rgba(244, 211, 94, 0.4);
}

.tool-icon i {
    font-size: 2rem;
    color: #2c3e50;
}

.cleaning-result {
    position: relative;
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #f4d35e;
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
    opacity: 0;
}

.sparkle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 40%;
    left: 80%;
    animation-delay: 0.3s;
}

.sparkle:nth-child(3) {
    top: 60%;
    left: 30%;
    animation-delay: 0.6s;
}

.sparkle:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: 0.9s;
}

.sparkle:nth-child(5) {
    top: 30%;
    left: 60%;
    animation-delay: 1.2s;
}

.sparkle:nth-child(6) {
    top: 70%;
    left: 50%;
    animation-delay: 1.5s;
}



@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}



.service-badges {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-badge {
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 600;
}

.service-badge i {
    color: #f4d35e;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 0;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

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

/* About Preview Section */
.about-preview {
    padding: 100px 0;
    background: white;
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.learn-more-btn {
    display: inline-block;
    background: #f4d35e;
    color: #2c3e50;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: #e6c55a;
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.location {
    display: flex;
    align-items: center;
    color: #f4d35e;
    font-weight: 600;
}

.location i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f4d35e;
    font-size: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Services Preview Section */
.services-preview {
    padding: 100px 0;
    background: #f9f9f9;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.service-preview-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-preview-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-preview-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.service-preview-card p {
    color: #666;
    font-size: 0.9rem;
}

.services-cta {
    text-align: center;
}

.services-btn {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.services-btn:hover {
    background: #34495e;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f4d35e, #e6c55a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #2c3e50;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.service-card.detailed {
    text-align: left;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.service-card.detailed .service-icon {
    margin: 0 0 1.5rem 0;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.service-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #f4d35e;
    font-weight: bold;
}

.service-cta {
    margin-top: auto;
}

.service-button {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-button:hover {
    background: #34495e;
    transform: translateY(-2px);
}

/* Why Choose Us Preview */
.why-choose-preview {
    padding: 100px 0;
    background: white;
}

.benefits-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-preview-item {
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease;
}

.benefit-preview-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.benefit-preview-item .benefit-icon {
    width: 70px;
    height: 70px;
    background: #f4d35e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #2c3e50;
}

.benefit-preview-item .benefit-icon i {
    font-size: 1.8rem;
    color: #2c3e50 !important;
    display: block;
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome" !important;
    font-weight: 900 !important;
}

.benefit-preview-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.benefit-preview-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #f9f9f9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: #666;
    font-style: italic;
    line-height: 1.6;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: #f4d35e;
    position: absolute;
    left: -1rem;
    top: -0.5rem;
}

.testimonial-author strong {
    color: #2c3e50;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.25rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease;
}

.benefit-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: #f4d35e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #2c3e50;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: #2c3e50 !important;
    display: block;
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome" !important;
    font-weight: 900 !important;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #666;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f9f9f9;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #f4d35e;
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    color: #f4d35e;
    background: white;
    padding: 0 0.5rem;
}

.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    color: #f4d35e;
    background: white;
    padding: 0 0.5rem;
}

.form-group input[valid] + label,
.form-group textarea[valid] + label,
.form-group select[valid] + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    color: #f4d35e;
    background: white;
    padding: 0 0.5rem;
}

/* Special handling for select dropdown */
.form-group select {
    cursor: pointer;
    color: #666;
}

.form-group select option {
    padding: 0.5rem;
    color: #333;
}

/* Hide label for select when no option is selected */
.form-group select:not(:focus):not([valid]) + label {
    display: none;
}

/* Show label when select is focused or has valid selection */
.form-group select:focus + label,
.form-group select[valid] + label {
    display: block;
}

/* Remove invalid CSS selectors */

.submit-button {
    background: #2c3e50;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.submit-button:hover {
    background: #34495e;
    transform: translateY(-2px);
}

.submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.submit-button:disabled:hover {
    background: #ccc;
    transform: none;
    box-shadow: none;
}

.submit-button .spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

.submit-button.loading .spinner {
    display: inline-block;
}

.submit-button.loading .btn-text {
    opacity: 0.7;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-message.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.form-message i {
    margin-right: 8px;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-details {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-item i {
    color: #f4d35e;
    margin-right: 1rem;
    font-size: 1.3rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    color: #f4d35e;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f4d35e;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: #f4d35e;
    width: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    color: #f4d35e;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.footer-logo .logo-img {
    height: 35px;
    width: auto;
    margin-right: 0.5rem;
    object-fit: contain;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #f4d35e;
    color: #2c3e50;
    transform: translateY(-2px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-contact span {
    margin-bottom: 0.5rem;
}

.footer-contact i {
    margin-right: 0.5rem;
    color: #f4d35e;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: #f9f9f9;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card, .vision-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-icon, .vision-icon {
    width: 70px;
    height: 70px;
    background: #2c3e50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #f4d35e;
}

.mission-icon i, .vision-icon i {
    font-size: 1.8rem;
    color: #f4d35e !important;
    display: block;
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome" !important;
    font-weight: 900 !important;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.mission-card p, .vision-card p {
    color: #666;
    line-height: 1.6;
}

/* Service Process */
.service-process {
    padding: 80px 0;
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.process-number {
    width: 60px;
    height: 60px;
    background: #f4d35e;
    color: #2c3e50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.process-step p {
    color: #666;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.commitment-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.commitment-icon {
    width: 70px;
    height: 70px;
    background: #f4d35e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #2c3e50;
}

.commitment-icon i {
    font-size: 1.8rem;
    color: #2c3e50 !important;
    display: block;
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome" !important;
    font-weight: 900 !important;
}

.commitment-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.commitment-item p {
    color: #666;
}

/* Statistics */
.statistics {
    padding: 80px 0;
    background: #2c3e50;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #f4d35e;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
    background: white;
}

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

.area-item {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.area-item:hover {
    background: #f4d35e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.area-item i {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.area-item h3 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #2c3e50;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta-section .cta-button {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-section .cta-button.primary {
    background: #f4d35e;
    color: #2c3e50;
}

.cta-section .cta-button.primary:hover {
    background: #e6c55a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(244, 211, 94, 0.3);
}

.cta-section .cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-section .cta-button.secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-2px);
}

/* Contact Form Enhancements */
.contact-form-container h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-details h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.contact-item i {
    color: #f4d35e;
    margin-right: 1rem;
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item strong {
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.contact-item span {
    color: #666;
}



/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Location Pages Styles */
.locations-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.location-card:nth-child(1) { animation-delay: 0.1s; }
.location-card:nth-child(2) { animation-delay: 0.2s; }
.location-card:nth-child(3) { animation-delay: 0.3s; }
.location-card:nth-child(4) { animation-delay: 0.4s; }
.location-card:nth-child(5) { animation-delay: 0.5s; }
.location-card:nth-child(6) { animation-delay: 0.6s; }
.location-card:nth-child(7) { animation-delay: 0.7s; }

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.location-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f4d35e, #e6c55a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #2c3e50;
}

.location-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.location-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.location-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.location-features li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
}

.location-features i {
    color: #f4d35e;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.location-btn {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.location-btn:hover {
    background: #34495e;
    transform: translateY(-2px);
}

/* Service Areas Styles */
.service-areas {
    padding: 100px 0;
    background: white;
}

.service-area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-area-text h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-area-text p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-benefits {
    list-style: none;
    margin: 2rem 0;
}

.service-benefits li {
    padding: 0.75rem 0;
    color: #666;
    display: flex;
    align-items: center;
}

.service-benefits i {
    color: #f4d35e;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.service-area-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f4d35e, #e6c55a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    font-size: 1.5rem;
}

.stat-content h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.stat-content p {
    color: #666;
    font-size: 0.9rem;
}

/* Individual Location Page Styles */
.service-hero {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-highlights li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
}

.service-highlights li i {
    color: #f4d35e;
    font-size: 1rem;
    min-width: 16px;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(244, 211, 94, 0.2);
    color: #f4d35e;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.location-overview {
    padding: 100px 0;
    background: #f9f9f9;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.overview-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-item i {
    font-size: 2rem;
    color: #f4d35e;
    margin-top: 0.5rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-box h3 {
    font-size: 2.5rem;
    color: #f4d35e;
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: #666;
    font-weight: 500;
}

.location-services {
    padding: 100px 0;
    background: white;
}

.area-info {
    padding: 100px 0;
    background: #f9f9f9;
}

.area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.area-text h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.area-text h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin: 2rem 0 1rem 0;
}

.area-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.area-column ul {
    list-style: none;
}

.area-column li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
}

.area-column i {
    color: #f4d35e;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.area-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card i {
    font-size: 2.5rem;
    color: #f4d35e;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Mobile-only responsive design - desktop unaffected */
@media screen and (max-width: 768px) and (pointer: coarse) {
    /* Fix mobile header overlap - add generous spacing for fixed header */
    body {
        padding-top: 0;
    }
    
    .hero {
        padding-top: 120px; /* Add enough space to clear the fixed header */
        margin-top: 0;
        min-height: calc(100vh);
    }
    
    .service-hero {
        padding-top: 120px; /* Add enough space to clear the fixed header */
        margin-top: 0; /* Remove negative margin */
        min-height: calc(60vh + 120px); /* Maintain proper height with padding */
    }
    
    .page-header {
        padding-top: calc(150px + 120px); /* Account for fixed header */
    }
    
    .section {
        padding-top: 4rem; /* Ensure sections have proper spacing */
    }
    /* Location Pages Mobile Styles */
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .location-card {
        padding: 1.5rem;
    }
    
    .service-area-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .area-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .area-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-hero {
        height: 60vh;
        text-align: center;
    }
    
    .service-hero .hero-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .service-hero .hero-left,
    .service-hero .hero-right {
        width: 100%;
    }
    
    .stat-box h3 {
        font-size: 2rem;
    }
    
    .location-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #2c3e50;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .header.scrolled .nav-menu {
        background-color: rgba(255, 255, 255, 0.98);
    }

    .header.scrolled .nav-menu .nav-link {
        color: #2c3e50;
    }

    .nav-menu.active {
        left: 0;
    }

    .header.scrolled .nav-menu {
        background-color: rgba(255, 255, 255, 0.98);
    }

    .header.scrolled .nav-menu .nav-link {
        color: #2c3e50;
    }

    .nav-item {
        margin: 1rem 0;
    }

    /* Mobile Dropdown Styles */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #34495e;
        box-shadow: none;
        border-radius: 0;
        margin: 0.5rem 0;
        padding: 0;
        min-width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        max-height: 400px;
    }

    .dropdown-link {
        color: rgba(255, 255, 255, 0.8);
        padding: 0.5rem 2rem;
        border-left: none;
        font-size: 0.9rem;
    }

    .dropdown-link:hover {
        background: rgba(244, 211, 94, 0.1);
        color: #f4d35e;
    }

    .dropdown-menu li:first-child .dropdown-link {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
        font-weight: 600;
    }

    .dropdown-menu li:first-child .dropdown-link:hover {
        background: rgba(244, 211, 94, 0.2);
        color: #f4d35e;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-contact {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .company-logos {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image {
        width: 300px;
        height: 400px;
    }

    .service-badges {
        flex-direction: column;
        gap: 0.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-placeholder {
        width: 250px;
        height: 250px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-contact {
        align-items: center;
    }

    .page-header-content h1 {
        font-size: 2.5rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-preview-grid {
        grid-template-columns: 1fr;
    }

    .benefits-preview-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Enhanced Mobile Touch Targets */
    .nav-link {
        padding: 0.75rem 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cta-button,
    .service-button,
    .location-btn {
        min-height: 48px;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    /* Enhanced Mobile Typography */
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.15rem;
        line-height: 1.5;
    }

    .section-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    /* Enhanced Mobile Forms */
    .contact-form .form-group input,
    .contact-form .form-group textarea {
        padding: 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px;
        border-radius: 8px;
    }

    .contact-form .form-group textarea {
        min-height: 120px;
    }

    .contact-form .submit-btn {
        min-height: 48px;
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }

    /* Enhanced Mobile Navigation */
    .hamburger {
        padding: 0.5rem;
        min-width: 44px;
        min-height: 44px;
        cursor: pointer;
    }

    .hamburger .bar {
        height: 3px;
        margin: 6px 0;
    }

    /* Enhanced Mobile Cards */
    .service-card,
    .benefit-item,
    .location-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-card h3,
    .benefit-item h3,
    .location-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    /* Enhanced Mobile Spacing */
    .container {
        padding: 0 16px;
    }

    section {
        padding: 60px 0;
    }

    .page-section {
        padding: 60px 0;
    }

    /* Enhanced Mobile Images */
    .service-overview-image img,
    .about-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 10px;
    }

    /* Enhanced Mobile Grid Layouts */
    .services-preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefits-preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .detailed-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Enhanced Mobile Contact Info */
    .nav-contact {
        display: none; /* Hide on mobile for cleaner navigation */
    }

    .contact-details .detail-item {
        padding: 1rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .contact-details .detail-item i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    /* Enhanced mobile header spacing for small screens */
    .hero {
        padding-top: 110px; /* Adequate space for small screens */
        margin-top: 0;
        min-height: calc(100vh - 110px + 110px);
    }
    
    .service-hero {
        padding-top: 110px;
        margin-top: 0;
        min-height: calc(60vh + 110px);
    }
    
    .page-header {
        padding-top: calc(150px + 110px);
    }
    
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .company-logos {
        gap: 1rem;
    }

    .hero-image {
        width: 280px;
        height: 350px;
    }

    .cleaning-tools {
        width: 90%;
        margin-bottom: 2rem;
    }

    .tool-icon {
        width: 60px;
        height: 60px;
    }

    .tool-icon i {
        font-size: 1.5rem;
    }



    .cleaning-result {
        height: 120px;
    }

    .sparkle {
        width: 6px;
        height: 6px;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .service-card,
    .benefit-item {
        padding: 1.5rem;
    }

    .contact-form-container,
    .contact-details {
        padding: 1.5rem;
    }

    /* Enhanced Small Mobile Optimizations */
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    /* Enhanced Small Mobile Buttons */
    .cta-button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .hero-buttons {
        gap: 0.5rem;
        width: 100%;
    }

    /* Enhanced Small Mobile Cards */
    .service-card,
    .benefit-item,
    .location-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }

    .service-card h3,
    .benefit-item h3,
    .location-card h3 {
        font-size: 1.2rem;
    }

    /* Enhanced Small Mobile Spacing */
    .container {
        padding: 0 12px;
    }

    section {
        padding: 40px 0;
    }

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

    /* Enhanced Small Mobile Forms */
    .contact-form .form-group {
        margin-bottom: 1rem;
    }

    .contact-form .form-group input,
    .contact-form .form-group textarea {
        padding: 0.875rem;
        font-size: 16px;
    }

    /* Enhanced Small Mobile Navigation */
    .nav-menu {
        top: 60px; /* Adjust for smaller header */
        padding: 1.5rem 0;
    }

    .nav-menu .nav-item {
        margin: 0.5rem 0;
    }

    /* Enhanced Small Mobile Performance */
    .hero-image,
    .about-image,
    .service-overview-image {
        will-change: transform; /* Optimize for animations */
    }

    /* Enhanced Small Mobile Touch Areas */
    .service-preview-card,
    .benefit-preview-item {
        padding: 1rem;
        margin-bottom: 1rem;
        min-height: 44px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Enhanced Small Mobile Typography */
    .service-preview-card h3,
    .benefit-preview-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .service-preview-card p,
    .benefit-preview-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    /* Reduce motion for better performance on mobile */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }

    /* Optimize images for mobile loading */
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        loading: lazy; /* Native lazy loading */
    }

    /* Critical path optimization for hero images */
    .hero-image,
    .service-hero-background {
        image-rendering: auto;
        will-change: transform;
        loading: eager; /* Load hero images immediately */
    }

    /* Touch-specific optimizations */
    .cta-button,
    .service-button,
    .location-btn,
    .submit-btn {
        -webkit-tap-highlight-color: rgba(244, 211, 94, 0.3);
        touch-action: manipulation; /* Disable double-tap zoom */
    }

    /* Mobile scroll performance */
    .hero,
    .service-hero {
        will-change: scroll-position;
        -webkit-overflow-scrolling: touch;
    }

    /* Reduce shadows on mobile for better performance */
    .service-card,
    .benefit-item,
    .location-card,
    .contact-form-container {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    /* Optimize backdrop-filter for mobile */
    .header {
        backdrop-filter: none; /* Remove backdrop-filter on mobile for better performance */
        background: rgba(44, 62, 80, 0.95) !important;
    }

    /* Mobile-specific transitions */
    .nav-menu {
        transition: transform 0.2s ease; /* Faster mobile transitions */
    }

    /* Optimize font rendering */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeSpeed; /* Prioritize speed over quality on mobile */
    }

    /* Mobile-specific grid optimizations */
    .services-preview-grid,
    .benefits-preview-grid,
    .detailed-services-grid {
        contain: layout style; /* Optimize layout calculations */
    }
}

/* Mobile-specific hover and focus states */
@media (max-width: 768px) {
    /* Remove hover effects on mobile and replace with focus */
    .service-card:hover,
    .benefit-item:hover,
    .location-card:hover {
        transform: none;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .service-card:focus,
    .benefit-item:focus,
    .location-card:focus,
    .service-card:active,
    .benefit-item:active,
    .location-card:active {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        outline: 2px solid #f4d35e;
        outline-offset: 2px;
    }

    /* Enhanced mobile button states */
    .cta-button:active,
    .service-button:active,
    .submit-btn:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    /* Mobile navigation improvements */
    .nav-link:focus {
        background: rgba(244, 211, 94, 0.2);
        border-radius: 5px;
        outline: none;
    }
}

/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVE DESIGN
   ======================================== */



/* Large Mobile Phones (414px and below) */
@media screen and (max-width: 414px) and (pointer: coarse) {
    /* Mobile header spacing for large phones */
    .hero {
        padding-top: 105px;
        margin-top: 0;
        min-height: calc(100vh);
    }
    
    .service-hero {
        padding-top: 105px;
        margin-top: 0;
        min-height: calc(60vh + 105px);
    }
    
    .page-header {
        padding-top: calc(150px + 105px); /* Account for fixed header */
    }
    
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 2.3rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.7rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .nav-logo {
        font-size: 1.3rem;
    }
    
    .nav-logo i {
        font-size: 1.5rem;
    }
    
    .nav-logo .logo-img {
        height: 70px !important;
    }
    
    /* Enhanced touch targets for large mobile */
    .cta-button,
    .service-button,
    .submit-btn,
    .location-btn {
        min-height: 48px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .service-card,
    .benefit-item,
    .location-card {
        padding: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevent iOS zoom */
        padding: 12px;
        min-height: 44px;
    }
}

/* Medium Mobile Phones (375px and below) */
@media screen and (max-width: 375px) and (pointer: coarse) {
    /* Mobile header spacing for medium phones */
    .hero {
        padding-top: 100px;
        margin-top: 0;
        min-height: calc(100vh);
    }
    
    .service-hero {
        padding-top: 100px;
        margin-top: 0;
        min-height: calc(60vh + 100px);
    }
    
    .page-header {
        padding-top: calc(150px + 100px);
    }
    
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2.1rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .nav-logo i {
        font-size: 1.4rem;
    }
    
    .nav-logo .logo-img {
        height: 65px !important;
    }
    
    /* Optimize spacing for medium mobile */
    .hero-content {
        padding: 1rem 0;
        gap: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.7rem;
        width: 100%;
    }
    
    .service-card h3,
    .benefit-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card p,
    .benefit-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Enhanced form experience */
    .contact-form-container {
        padding: 1.2rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
}

/* Small Mobile Phones (320px and below) */
@media (max-width: 320px) {
    /* Mobile header spacing for small phones */
    .hero {
        padding-top: 95px;
        margin-top: 0;
        min-height: calc(100vh - 95px + 95px);
    }
    
    .service-hero {
        padding-top: 95px;
        margin-top: 0;
        min-height: calc(60vh + 95px);
    }
    
    .page-header {
        padding-top: calc(150px + 95px);
    }
    
    .container {
        padding: 0 8px;
    }
    
    .hero-title {
        font-size: 1.9rem;
        line-height: 1.1;
        margin-bottom: 0.7rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .nav-logo {
        font-size: 1.1rem;
    }
    
    .nav-logo i {
        font-size: 1.3rem;
        margin-right: 0.3rem;
    }
    
    .nav-logo .logo-img {
        height: 60px !important;
    }
    
    /* Compact layout for small screens */
    .service-card,
    .benefit-item,
    .location-card {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card h3,
    .benefit-item h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .service-card p,
    .benefit-item p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .contact-form-container {
        padding: 1rem;
    }
    
    .cta-button,
    .service-button,
    .submit-btn {
        font-size: 0.9rem;
        padding: 10px 16px;
        min-height: 44px;
    }
    
    /* Compact hero elements */
    .hero-image {
        width: 240px;
        height: 300px;
    }
    
    .cleaning-tools {
        width: 95%;
        gap: 1rem;
    }
    
    .tool-icon {
        width: 50px;
        height: 50px;
    }
    
    .tool-icon i {
        font-size: 1.3rem;
    }
}

/* Landscape Orientation for Mobile Devices */
@media screen and (max-width: 896px) and (orientation: landscape) {
    .hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .service-hero {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        padding: 1rem 0;
    }
    
    .hero-left,
    .hero-right {
        width: 48%;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
        justify-content: flex-start;
    }
    
    .cta-button {
        width: auto;
        min-width: 160px;
    }
    
    .hero-image {
        width: 320px;
        height: 400px;
    }
    
    /* Compact navigation for landscape */
    .nav-menu {
        padding: 1rem 0;
    }
    
    .nav-menu.active {
        height: 100vh;
        overflow-y: auto;
    }
}

/* Extra Small Landscape Phones */
@media screen and (max-width: 667px) and (orientation: landscape) and (max-height: 375px) {
    .hero {
        height: 90vh;
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-content {
        gap: 1rem;
        padding: 0.5rem 0;
    }
    
    .hero-image {
        width: 250px;
        height: 300px;
    }
}

/* Large Mobile Phones in Landscape */
@media screen and (min-width: 667px) and (max-width: 896px) and (orientation: landscape) {
    .hero-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 1rem 20px;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .services-preview-grid,
    .benefits-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Touch-specific Enhancements for All Mobile Sizes */
@media (max-width: 896px) {
    /* Ensure all interactive elements meet touch target requirements */
    a, button, input, select, textarea, .clickable {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px;
    }
    
    /* Navigation touch improvements */
    .nav-link {
        padding: 15px 20px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .dropdown-link {
        padding: 12px 20px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Form touch improvements */
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        display: block;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevent iOS zoom */
        line-height: 1.4;
        border-radius: 8px;
        border: 2px solid #e0e0e0;
        transition: all 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        border-color: #f4d35e;
        box-shadow: 0 0 0 3px rgba(244, 211, 94, 0.2);
        outline: none;
    }
    
    /* Card touch improvements */
    .service-card,
    .benefit-item,
    .location-card {
        cursor: pointer;
        transition: all 0.3s ease;
        border-radius: 12px;
    }
    
    .service-card:active,
    .benefit-item:active,
    .location-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* High DPI / Retina Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-image,
    .service-overview-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .nav-logo i,
    .service-card i,
    .benefit-item i {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Accessibility Enhancements for Mobile */
@media (max-width: 768px) {
    /* Focus indicators */
    *:focus {
        outline: 2px solid #f4d35e;
        outline-offset: 2px;
    }
    
    /* Skip to content link for keyboard navigation */
    .skip-to-content {
        position: absolute;
        top: -40px;
        left: 6px;
        background: #f4d35e;
        color: #2c3e50;
        padding: 8px;
        text-decoration: none;
        border-radius: 4px;
        z-index: 1001;
        font-weight: bold;
    }
    
    .skip-to-content:focus {
        top: 6px;
    }
    
    /* Improved contrast for mobile - but keep hero subtitle white */
    .service-card p,
    .benefit-item p {
        color: #555;
        font-weight: 400;
    }
    
    /* Ensure hero subtitle maintains desktop visibility on mobile */
    .hero-subtitle {
        color: rgba(255, 255, 255, 0.9) !important;
        font-weight: 400;
    }
}

/* Performance Optimizations for All Mobile Devices */
@media (max-width: 896px) {
    /* GPU acceleration for smooth animations */
    .cta-button,
    .service-card,
    .benefit-item,
    .location-card,
    .nav-menu {
        will-change: transform;
        transform: translateZ(0);
    }
    
    /* Optimize repaints */
    .hero-image,
    .service-overview-image {
        contain: layout style paint;
    }
    
    /* Reduce complexity on mobile */
    .hero::before,
    .service-hero::before {
        display: none;
    }
    
    /* Simplify shadows */
    .service-card,
    .benefit-item,
    .location-card {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
}

/* iOS Safari Specific Fixes */
@supports (-webkit-appearance: none) {
    @media (max-width: 896px) {
        /* Fix iOS Safari viewport issues */
        .hero,
        .service-hero {
            height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
            min-height: calc(500px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
        }
        
        /* Fix iOS form styling */
        .form-group input,
        .form-group textarea,
        .form-group select {
            -webkit-appearance: none;
            border-radius: 8px;
        }
        
        /* Fix iOS button styling */
        .cta-button,
        .service-button,
        .submit-btn {
            -webkit-appearance: none;
            border-radius: 8px;
        }
    }
}

/* Service Page Styles */
.service-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
}

.service-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(52, 73, 94, 0.9) 100%),
                url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-badge {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f4d35e 0%, #e6c55a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: #2c3e50;
    box-shadow: 0 20px 40px rgba(244, 211, 94, 0.3);
}

.service-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.service-overview {
    padding: 100px 0;
    background: white;
}

.service-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-overview-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.service-overview-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.service-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f4d35e;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.service-overview-image {
    position: relative;
}

.service-overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.detailed-services {
    padding: 100px 0;
    background: #f9f9f9;
}

.detailed-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.detailed-service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.detailed-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.detailed-service-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.detailed-service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-details {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-details li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-details li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #f4d35e;
    font-weight: bold;
}

.service-schedule,
.service-benefits,
.service-areas,
.equipment-supplies,
.industries-served,
.safety-compliance,
.compliance-standards,
.medical-facilities,
.disinfection-methods,
.emergency-response,
.safety-health,
.educational-levels,
.seasonal-services,
.health-compliance,
.restaurant-types,
.cleaning-schedule {
    padding: 100px 0;
    background: white;
}

.service-schedule:nth-child(odd),
.service-benefits:nth-child(odd),
.service-areas:nth-child(odd),
.equipment-supplies:nth-child(odd),
.industries-served:nth-child(odd),
.safety-compliance:nth-child(odd),
.compliance-standards:nth-child(odd),
.medical-facilities:nth-child(odd),
.disinfection-methods:nth-child(odd),
.emergency-response:nth-child(odd),
.safety-health:nth-child(odd),
.educational-levels:nth-child(odd),
.seasonal-services:nth-child(odd),
.health-compliance:nth-child(odd),
.restaurant-types:nth-child(odd),
.cleaning-schedule:nth-child(odd) {
    background: #f9f9f9;
}

.schedule-grid,
.benefits-grid,
.areas-grid,
.equipment-grid,
.industries-grid,
.safety-grid,
.compliance-grid,
.facilities-grid,
.methods-grid,
.emergency-grid,
.levels-grid,
.seasonal-grid,
.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.schedule-card,
.benefit-card,
.area-card,
.equipment-card,
.industry-card,
.safety-card,
.compliance-card,
.facility-card,
.method-card,
.emergency-card,
.level-card,
.seasonal-card,
.type-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.schedule-card:hover,
.benefit-card:hover,
.area-card:hover,
.equipment-card:hover,
.industry-card:hover,
.safety-card:hover,
.compliance-card:hover,
.facility-card:hover,
.method-card:hover,
.emergency-card:hover,
.level-card:hover,
.seasonal-card:hover,
.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.schedule-icon,
.benefit-icon,
.area-icon,
.equipment-icon,
.industry-icon,
.safety-icon,
.compliance-icon,
.facility-icon,
.method-icon,
.emergency-icon,
.level-icon,
.seasonal-icon,
.type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f4d35e, #e6c55a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #2c3e50;
}

.schedule-card h3,
.benefit-card h3,
.area-card h3,
.equipment-card h3,
.industry-card h3,
.safety-card h3,
.compliance-card h3,
.facility-card h3,
.method-card h3,
.emergency-card h3,
.level-card h3,
.seasonal-card h3,
.type-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.schedule-card p,
.benefit-card p,
.area-card p,
.equipment-card p,
.industry-card p,
.safety-card p,
.compliance-card p,
.facility-card p,
.method-card p,
.emergency-card p,
.level-card p,
.seasonal-card p,
.type-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.schedule-features,
.seasonal-features {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    text-align: left;
}

.schedule-features li,
.seasonal-features li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.schedule-features li::before,
.seasonal-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #f4d35e;
    font-weight: bold;
}

.service-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: 2rem;
    }
    
    .service-hero-badge {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .service-overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .detailed-services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
