* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-container {
    flex: 1;
}

.logo {
    height: 180px;
    width: auto;
    max-width: 100%;
}

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

.cta-button {
    background: linear-gradient(135deg, #ff3b30 0%, #e02020 100%);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 59, 48, 0.4);
}

.cta-button:hover {
    background: linear-gradient(135deg, #e02020 0%, #c01818 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 59, 48, 0.5);
}

.cta-button-large {
    background: linear-gradient(135deg, #ff3b30 0%, #e02020 100%);
    color: white;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 20px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 59, 48, 0.4);
}

.cta-button-large:hover {
    background: linear-gradient(135deg, #e02020 0%, #c01818 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 59, 48, 0.5);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(56, 154, 179, 0.95) 0%, rgba(24, 58, 76, 0.95) 100%),
                url('https://images.unsplash.com/photo-1511578314322-379afb476865?w=1600') center/cover;
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.5;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.benefit-item i {
    font-size: 20px;
    color: #4ade80;
}

.benefit-item span {
    font-size: 16px;
    font-weight: 600;
}

.hero-cta-subtext {
    margin-top: 15px;
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about h2 {
    font-size: 36px;
    color: #183a4c;
    margin-bottom: 20px;
    text-align: center;
}

.about p {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #555;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #ffffff;
}

.services h2 {
    font-size: 36px;
    color: #183a4c;
    margin-bottom: 50px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(56, 154, 179, 0.3);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 24px;
    color: #183a4c;
    padding: 20px 20px 10px;
}

.service-card p {
    font-size: 16px;
    color: #555;
    padding: 0 20px 20px;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
}

.why-choose-us h2 {
    font-size: 36px;
    color: #183a4c;
    margin-bottom: 20px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.feature {
    background-color: white;
    padding: 35px;
    border-radius: 20px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(56, 154, 179, 0.15);
    border-color: #389ab3;
}

.feature-icon {
    background: linear-gradient(135deg, #389ab3 0%, #183a4c 100%);
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(56, 154, 179, 0.3);
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 20px;
    color: #183a4c;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 36px;
    color: #183a4c;
    margin-bottom: 20px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-cta-box {
    background: linear-gradient(135deg, #183a4c 0%, #389ab3 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(56, 154, 179, 0.3);
}

.contact-cta-box h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-phone-large {
    display: block;
    background: linear-gradient(135deg, #ff3b30 0%, #e02020 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 59, 48, 0.4);
}

.contact-phone-large:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 59, 48, 0.5);
}

.contact-phone-large i {
    margin-right: 10px;
    animation: shake 1.5s infinite;
}

.contact-availability {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
}

.contact-details {
    background-color: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-detail-item:hover {
    background-color: #f0f8ff;
    transform: translateX(5px);
}

.contact-icon {
    background: linear-gradient(135deg, #389ab3 0%, #183a4c 100%);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(56, 154, 179, 0.3);
}

.contact-icon i {
    font-size: 24px;
    color: white;
}

.contact-text h4 {
    font-size: 18px;
    color: #183a4c;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-map-section {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.map-container iframe {
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.directions-btn {
    background: linear-gradient(135deg, #ff3b30 0%, #e02020 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 25px rgba(255, 59, 48, 0.5);
    transition: all 0.3s ease;
}

.directions-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 59, 48, 0.6);
}

.directions-btn i {
    font-size: 18px;
}

.final-cta {
    background: linear-gradient(135deg, #389ab3 0%, #183a4c 100%);
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(56, 154, 179, 0.3);
}

.final-cta h3 {
    color: white;
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

.final-cta .cta-button-large {
    background: linear-gradient(135deg, #ff3b30 0%, #e02020 100%);
    box-shadow: 0 6px 25px rgba(255, 59, 48, 0.4);
}

.final-cta .cta-button-large:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 59, 48, 0.5);
}

/* Ideal Events Section */
.ideal-events {
    padding: 80px 0;
    background-color: #ffffff;
}

.ideal-events h2 {
    font-size: 36px;
    color: #183a4c;
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #555;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.event-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: translateY(-5px);
    background-color: #389ab3;
    color: white;
}

.event-item i {
    font-size: 48px;
    color: #389ab3;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.event-item:hover i {
    color: white;
}

.event-item h3 {
    font-size: 22px;
    color: #183a4c;
    margin-bottom: 15px;
}

.event-item:hover h3 {
    color: white;
}

.event-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.event-item:hover p {
    color: white;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    position: relative;
}

.how-it-works h2 {
    font-size: 36px;
    color: #183a4c;
    margin-bottom: 20px;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.steps-grid-three {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    background-color: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(56, 154, 179, 0.15);
    border-color: #389ab3;
}

.step-number {
    background: linear-gradient(135deg, #ff3b30 0%, #e02020 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    margin: 0 0 25px 0;
    box-shadow: 0 8px 25px rgba(255, 59, 48, 0.3);
}

.step-number span {
    display: block;
}

.step-content {
    text-align: left;
}

.step-content h3 {
    font-size: 22px;
    color: #183a4c;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-content p a {
    color: #ff3b30;
    text-decoration: none;
    font-weight: bold;
}

.step-content p a:hover {
    text-decoration: underline;
}

.step-action {
    margin-top: 20px;
}

.step-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ff3b30 0%, #e02020 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 59, 48, 0.3);
}

.step-cta:hover {
    background: linear-gradient(135deg, #e02020 0%, #c01818 100%);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 59, 48, 0.4);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.faq h2 {
    font-size: 36px;
    color: #183a4c;
    margin-bottom: 20px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background-color: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border-left: 5px solid #389ab3;
    transition: all 0.3s ease;
    position: relative;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 40px rgba(56, 154, 179, 0.12);
    border-left-color: #ff3b30;
}

.faq-item::before {
    content: "Q";
    position: absolute;
    top: 25px;
    left: -15px;
    background: linear-gradient(135deg, #389ab3 0%, #183a4c 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(56, 154, 179, 0.3);
}

.faq-item h3 {
    font-size: 19px;
    color: #183a4c;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
    padding-left: 15px;
}

.faq-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    padding-left: 15px;
}

/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 20px 0;
    color: white;
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.emergency-content i {
    font-size: 42px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.emergency-text h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.emergency-text p {
    font-size: 16px;
    margin: 0;
}

.emergency-cta {
    background-color: white;
    color: #ff3b30;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}

.emergency-cta:hover {
    background-color: #fff;
    color: #e02020;
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

/* Trust Badges */
.trust-badges {
    padding: 40px 0;
    background-color: #f0f8ff;
}

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

.badge-item {
    text-align: center;
    padding: 20px;
}

.badge-item i {
    font-size: 48px;
    color: #389ab3;
    margin-bottom: 10px;
}

.badge-item p {
    font-size: 16px;
    font-weight: bold;
    color: #183a4c;
    margin: 0;
}

/* Service Features */
.service-features {
    display: flex;
    gap: 15px;
    padding: 15px 20px 20px;
    flex-wrap: wrap;
}

.service-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #389ab3;
    font-weight: 600;
}

.service-features i {
    font-size: 12px;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3f8 100%);
}

.pricing h2 {
    font-size: 36px;
    color: #183a4c;
    margin-bottom: 20px;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-grid-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(56, 154, 179, 0.3);
}

.pricing-card.featured {
    border: 3px solid #389ab3;
    transform: scale(1.05);
}

.popular-badge {
    background: linear-gradient(135deg, #389ab3 0%, #183a4c 100%);
    color: white;
    padding: 8px 20px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    padding: 30px 20px 20px;
    background-color: #f9f9f9;
}

.pricing-header h3 {
    font-size: 28px;
    color: #183a4c;
    margin-bottom: 15px;
}

.price {
    font-size: 20px;
    color: #555;
    margin-bottom: 5px;
}

.price span {
    font-size: 48px;
    font-weight: bold;
    color: #389ab3;
}

.price-period {
    font-size: 14px;
    color: #888;
    margin: 0;
}

.pricing-features {
    list-style: none;
    padding: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #389ab3;
    margin-right: 10px;
}

.pricing-cta {
    display: block;
    background: linear-gradient(135deg, #ff3b30 0%, #e02020 100%);
    color: white;
    text-align: center;
    padding: 15px 30px;
    margin: 0 30px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 59, 48, 0.3);
}

.pricing-cta:hover {
    background: linear-gradient(135deg, #e02020 0%, #c01818 100%);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 59, 48, 0.4);
}

.pricing-note {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* Cleanliness Guarantee */
.cleanliness-guarantee {
    padding: 80px 0;
    background-color: white;
}

.guarantee-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.guarantee-image i {
    font-size: 200px;
    color: #389ab3;
    opacity: 0.2;
}

.guarantee-text h2 {
    font-size: 36px;
    color: #183a4c;
    margin-bottom: 15px;
}

.guarantee-text .lead {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.guarantee-features {
    display: grid;
    gap: 25px;
}

.guarantee-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.guarantee-item i {
    font-size: 32px;
    color: #389ab3;
    flex-shrink: 0;
    margin-top: 5px;
}

.guarantee-item h4 {
    font-size: 20px;
    color: #183a4c;
    margin-bottom: 5px;
}

.guarantee-item p {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.testimonials h2 {
    font-size: 36px;
    color: #183a4c;
    margin-bottom: 20px;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.stars i {
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    border-top: 2px solid #eee;
    padding-top: 15px;
}

.testimonial-author strong {
    display: block;
    color: #183a4c;
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #888;
    font-size: 14px;
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 2px solid #ddd;
}

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

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #389ab3;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

/* Quote Form */
.quote-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #389ab3 0%, #183a4c 100%);
}

.quote-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.quote-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.quote-form-header h2 {
    font-size: 36px;
    color: #183a4c;
    margin-bottom: 15px;
}

.quote-form-header p {
    font-size: 18px;
    color: #666;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.form-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff3b30 0%, #e02020 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 5px 20px rgba(255, 59, 48, 0.4);
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, #e02020 0%, #c01818 100%);
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 59, 48, 0.5);
}

.form-submit-btn i {
    margin-left: 10px;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    color: #666;
}

.form-note a {
    color: #389ab3;
    text-decoration: none;
    font-weight: bold;
}

/* Service Area */
.service-area {
    padding: 80px 0;
    background-color: white;
}

.service-area h2 {
    font-size: 36px;
    color: #183a4c;
    margin-bottom: 20px;
    text-align: center;
}

.service-area-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.area-list h3 {
    font-size: 24px;
    color: #389ab3;
    margin-bottom: 20px;
}

.area-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.area-list li {
    padding: 10px;
    font-size: 16px;
    color: #555;
}

.area-list li i {
    color: #389ab3;
    margin-right: 10px;
}

.area-note {
    margin-top: 30px;
    padding: 20px;
    background-color: #f0f8ff;
    border-radius: 10px;
    font-size: 16px;
    color: #555;
}

.area-note a {
    color: #389ab3;
    text-decoration: none;
    font-weight: bold;
}

.area-map {
    background: linear-gradient(135deg, #389ab3 0%, #183a4c 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    color: white;
    text-align: center;
}

.area-map i {
    font-size: 100px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.area-map p {
    font-size: 18px;
    font-weight: bold;
}

/* Comparison Table */
.comparison-table-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.comparison-table-section h2 {
    font-size: 36px;
    color: #183a4c;
    margin-bottom: 20px;
    text-align: center;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border-radius: 15px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
}

.comparison-table thead {
    background: linear-gradient(135deg, #389ab3 0%, #183a4c 100%);
    color: white;
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-size: 18px;
    font-weight: bold;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #eee;
}

.comparison-table tbody tr:hover {
    background-color: #f0f8ff;
}

.comparison-table td {
    padding: 18px 20px;
    font-size: 16px;
    color: #555;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: #183a4c;
}

.comparison-table .fa-check {
    color: #28a745;
    font-size: 20px;
}

.comparison-table .fa-times {
    color: #dc3545;
    font-size: 20px;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff3b30 0%, #e02020 100%);
    color: white;
    padding: 18px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 5px 25px rgba(255, 59, 48, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-cta:hover {
    background: linear-gradient(135deg, #e02020 0%, #c01818 100%);
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(255, 59, 48, 0.6);
}

.floating-cta i {
    animation: shake 1.5s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* Footer */
footer {
    background-color: #183a4c;
    color: white;
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin: 5px 0;
    font-size: 14px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .logo {
        height: 80px;
    }

    header .container {
        flex-direction: column;
        text-align: center;
    }

    .header-contact {
        margin-top: 15px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-benefits {
        gap: 15px;
    }

    .benefit-item {
        padding: 10px 18px;
        font-size: 14px;
    }

    .benefit-item i {
        font-size: 16px;
    }

    .benefit-item span {
        font-size: 14px;
    }

    .hero-cta-subtext {
        font-size: 14px;
    }

    .cta-button-large {
        padding: 15px 30px;
        font-size: 18px;
    }

    .about h2,
    .services h2,
    .why-choose-us h2,
    .ideal-events h2,
    .how-it-works h2,
    .faq h2,
    .contact h2,
    .pricing h2,
    .testimonials h2,
    .quote-form-header h2,
    .service-area h2,
    .comparison-table-section h2 {
        font-size: 28px;
    }

    .services-grid,
    .features-grid,
    .events-grid,
    .steps-grid,
    .steps-grid-three,
    .faq-grid,
    .contact-info,
    .pricing-grid,
    .pricing-grid-two,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .hero {
        padding: 60px 0;
    }

    .about,
    .services,
    .why-choose-us,
    .ideal-events,
    .how-it-works,
    .faq,
    .contact,
    .pricing,
    .testimonials,
    .quote-form-section,
    .service-area,
    .comparison-table-section {
        padding: 50px 0;
    }

    /* Emergency Banner Mobile */
    .emergency-content {
        justify-content: center;
        text-align: center;
    }

    .emergency-text h3 {
        font-size: 20px;
    }

    .emergency-text p {
        font-size: 14px;
    }

    /* Trust Badges Mobile */
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Pricing Mobile */
    .pricing-card.featured {
        transform: scale(1);
    }

    .price span {
        font-size: 38px;
    }

    /* Cleanliness Guarantee Mobile */
    .guarantee-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .guarantee-image {
        text-align: center;
    }

    .guarantee-image i {
        font-size: 120px;
    }

    .guarantee-text .lead {
        font-size: 18px;
    }

    /* Quote Form Mobile */
    .quote-form-wrapper {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .quote-form-header h2 {
        font-size: 24px;
    }

    .quote-form-header p {
        font-size: 16px;
    }

    /* Service Area Mobile */
    .service-area-content {
        grid-template-columns: 1fr;
    }

    .area-list ul {
        grid-template-columns: 1fr;
    }

    .area-map {
        padding: 30px;
    }

    .area-map i {
        font-size: 60px;
    }

    /* Comparison Table Mobile */
    .comparison-table-wrapper {
        border-radius: 10px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
        font-size: 14px;
    }

    /* Floating CTA Mobile */
    .floating-cta {
        bottom: 15px;
        right: 15px;
        padding: 15px 25px;
        font-size: 16px;
    }

    /* Contact Mobile */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-phone-large {
        font-size: 24px;
        padding: 18px 30px;
    }

    .map-container {
        min-height: 350px;
    }

    .final-cta {
        padding: 35px 25px;
    }

    .final-cta h3 {
        font-size: 26px;
    }

    .final-cta p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 60px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-benefits {
        flex-direction: column;
        gap: 12px;
    }

    .benefit-item {
        padding: 10px 20px;
    }

    .hero-cta-subtext {
        font-size: 13px;
    }

    .cta-button-large {
        padding: 12px 20px;
        font-size: 16px;
    }

    .about h2,
    .services h2,
    .why-choose-us h2,
    .ideal-events h2,
    .how-it-works h2,
    .faq h2,
    .contact h2,
    .pricing h2,
    .testimonials h2,
    .service-area h2,
    .comparison-table-section h2 {
        font-size: 24px;
    }

    /* Trust Badges Small Mobile */
    .badges-grid {
        grid-template-columns: 1fr;
    }

    .badge-item i {
        font-size: 36px;
    }

    /* Emergency Banner Small Mobile */
    .emergency-content i {
        font-size: 32px;
    }

    .emergency-text h3 {
        font-size: 18px;
    }

    /* Pricing Small Mobile */
    .price span {
        font-size: 32px;
    }

    .pricing-header h3 {
        font-size: 24px;
    }

    /* Testimonials Small Mobile */
    .stat-number {
        font-size: 36px;
    }

    /* Quote Form Small Mobile */
    .quote-form-wrapper {
        padding: 20px 15px;
    }

    .form-submit-btn {
        font-size: 18px;
        padding: 15px 30px;
    }

    /* Floating CTA Small Mobile */
    .floating-cta {
        bottom: 10px;
        right: 10px;
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Comparison Table Small Mobile */
    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
        font-size: 12px;
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child {
        position: sticky;
        left: 0;
        background-color: white;
        z-index: 1;
    }

    .comparison-table thead th:first-child {
        background: linear-gradient(135deg, #389ab3 0%, #183a4c 100%);
    }

    /* Contact Small Mobile */
    .contact-phone-large {
        font-size: 20px;
        padding: 15px 25px;
    }

    .contact-cta-box {
        padding: 30px 20px;
    }

    .contact-cta-box h3 {
        font-size: 20px;
    }

    .contact-details {
        padding: 25px 20px;
    }

    .final-cta {
        padding: 30px 20px;
    }

    .final-cta h3 {
        font-size: 22px;
    }

    .map-container {
        min-height: 300px;
    }
}