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

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: static;
    z-index: 1001;
}

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

.contact-info {
    display: flex;
    gap: 10px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
    max-width: 180px;
    object-fit: contain;
}

.logo span {
    font-size: 14px;
    font-weight: bold;
    color: #0056b3;
}

/* Desktop Navigation */
nav ul {
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: #00bcd4;
}

nav ul li a.active {
    color: #00bcd4;
    font-weight: 700;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #00bcd4;
    border-radius: 2px;
}

/* Mobile Navigation */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 200;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: white;
    overflow: hidden;
    transition: height 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.mobile-nav.active {
    height: calc(100vh - 70px);
    overflow-y: auto;
}

.mobile-nav ul {
    padding: 20px;
}

.mobile-nav ul li {
    margin: 20px 0;
}

.mobile-nav ul li a {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.mobile-nav ul li a.active {
    color: #00bcd4;
}

body.nav-open {
    overflow: hidden;
}

/* Washing Machine Link Animation */
.washing-machine-link {
    position: relative;
    animation: shake 2s ease-in-out infinite;
    display: inline-block;
    transform-origin: center;
}

/* Hidrolavadora Showcase Section */
.hidrolavadora-showcase {
    padding: 60px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.hidrolavadora-showcase h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #0056b3;
}

.hidrolavadora-showcase .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #333;
}

.hidrolavadora-showcase .highlight {
    color: #e63946;
    font-weight: bold;
}

.showcase-description {
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.benefits-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.benefits-list i {
    color: #28a745;
    margin-right: 10px;
    font-size: 1.2rem;
}

.urgency-message {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-top: 20px;
    border-radius: 4px;
}

.urgency-message i {
    color: #e63946;
    margin-right: 8px;
}

/* Image Carousel */
.image-carousel-container {
    max-width: 800px;
    margin: 30px auto;
    position: relative;
}

.image-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    height: 400px;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background-color: #f8f9fa;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Fullscreen button */
.fullscreen-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.fullscreen-btn:hover {
    background: rgba(0,0,0,0.8);
}

/* Fullscreen modal */
.fullscreen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
}

.fullscreen-modal.active {
    display: flex;
}

.fullscreen-content {
    position: relative;
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fullscreen-image-container {
    width: 100%;
    height: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fullscreen-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.close-fullscreen {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.fullscreen-controls {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    transform: translateY(-50%);
}

.fullscreen-prev, .fullscreen-next {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background 0.3s ease;
}

.fullscreen-prev:hover, .fullscreen-next:hover {
    background: rgba(255,255,255,0.4);
}

.fullscreen-prev {
    margin-left: 20px;
}

.fullscreen-next {
    margin-right: 20px;
}

.fullscreen-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.fullscreen-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #555;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.fullscreen-indicator.active {
    background: white;
}

.carousel-button:hover {
    background: rgba(255,255,255,0.9);
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: #0056b3;
}

.cta-container {
    text-align: center;
    margin-top: 30px;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.btn-large {
    padding: 12px 30px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .carousel-slide {
        height: 300px;
    }
    
    .showcase-description {
        padding: 15px;
    }
    
    .hidrolavadora-showcase h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .carousel-slide {
        height: 220px;
    }
    
    .carousel-button {
        width: 30px;
        height: 30px;
    }
    
    .hidrolavadora-showcase h2 {
        font-size: 1.5rem;
    }
}

/* Service Area Map Section */
.service-area-map {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.map-content h2 {
    font-size: 32px;
    color: #0056b3;
    margin-bottom: 20px;
    text-align: center;
}

.map-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.map-container {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 1000px;
}

.lima-map {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.fullscreen-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.fullscreen-btn:hover {
    background-color: #fff;
    transform: scale(1.1);
}

.fullscreen-btn i {
    font-size: 18px;
    color: #0056b3;
}

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .sector-grid,
    .reviews-grid,
    .services-grid,
    .issues-grid,
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Show hamburger menu and hide desktop nav */
    .hamburger-menu {
        display: flex;
    }
    
    nav {
        display: none;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .contact-info,
    .schedule-btn {
        display: none;
    }
    
    header .container {
        padding: 10px 15px;
    }
    
    .logo img {
        height: 35px;
        max-width: 150px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .schedule-box {
        flex-direction: column;
        gap: 15px;
    }
    
    .select-wrapper {
        width: 100%;
    }
    
    .select-wrapper select {
        width: 100%;
    }
    
    .contact-options {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-option {
        width: 100%;
    }
    
    .urgency-message {
        font-size: 0.9rem;
        padding: 12px;
    }
    
    .benefits-list li {
        font-size: 0.9rem;
    }
    
    .showcase-description {
        padding: 15px;
        margin: 0 15px 20px;
    }
    
    /* Service Area Map Responsive */
    .map-content h2 {
        font-size: 28px;
    }
    
    .map-content p {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .service-area-map {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .sector-grid,
    .reviews-grid,
    .services-grid,
    .issues-grid,
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-author {
        margin-bottom: 15px;
    }
    
    /* Service Area Map Mobile Styles */
    .map-content h2 {
        font-size: 24px;
    }
    
    .map-content p {
        font-size: 14px;
    }
    
    .fullscreen-btn {
        width: 35px;
        height: 35px;
        bottom: 10px;
        right: 10px;
    }
    
    .fullscreen-btn i {
        font-size: 16px;
    }
    
    .testimonial-content {
        padding-left: 0;
    }
}

@keyframes shake {
    0% { transform: translateX(0) rotate(0deg) scale(1); }
    10% { transform: translateX(-2px) rotate(-1deg) scale(1.02); }
    20% { transform: translateX(2px) rotate(1deg) scale(1.05); }
    30% { transform: translateX(-2px) rotate(-1deg) scale(1.02); }
    40% { transform: translateX(2px) rotate(1deg) scale(1); }
    50% { transform: translateX(0) rotate(0deg) scale(0.98); }
    60% { transform: translateX(-1px) rotate(-0.5deg) scale(1); }
    70% { transform: translateX(1px) rotate(0.5deg) scale(1.02); }
    80% { transform: translateX(-1px) rotate(-0.5deg) scale(1.01); }
    90% { transform: translateX(1px) rotate(0.5deg) scale(1); }
    100% { transform: translateX(0) rotate(0deg) scale(1); }
}

.washing-machine-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #00bcd4;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.washing-machine-link:hover::after {
    transform: scaleX(1);
}

.phone-number {
    font-size: 18px;
    font-weight: bold;
    color: #0056b3;
}

.btn-primary {
    background: linear-gradient(135deg, #0056b3, #00bcd4);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 86, 179, 0.2);
    margin-right: 10px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00bcd4, #0056b3);
    box-shadow: 0 6px 12px rgba(0, 188, 212, 0.3);
    transform: translateY(-2px);
}

/* TikTok Button Styling */
.tiktok-btn {
    background: linear-gradient(135deg, #000000, #00f2ea, #ff0050);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.tiktok-btn:hover {
    background: linear-gradient(135deg, #ff0050, #00f2ea, #000000);
    box-shadow: 0 6px 12px rgba(255, 0, 80, 0.3);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/Captura de pantalla 2025-03-19 113934.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    position: relative;
}

/* Hero Home Service section */
.hero.home-service {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/Captura de pantalla 2025-03-19 114221.png');
    background-size: cover;
    background-position: center;
}

/* Hero Contact section */
.hero.contact {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/Captura de pantalla 2025-03-19 114001.png');
    background-size: cover;
    background-position: center;
}

/* Hero Repair section */
.hero.repair {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/Captura de pantalla 2025-03-19 114150.png');
    background-size: cover;
    background-position: center;
}

/* Hero Maintenance section */
.hero.maintenance {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/Captura de pantalla 2025-03-19 114247.png');
    background-size: cover;
    background-position: center;
}

/* Hero Commercial section */
.hero.commercial {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/Captura de pantalla 2025-03-19 114124.png');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
}

.schedule-box {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    max-width: 500px;
}

.select-wrapper {
    flex: 1;
    margin-right: 15px;
}

select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    appearance: none;
    font-size: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
}

/* Contact Save Section */
.contact-save-section {
    text-align: center;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-save-section h3 {
    font-size: 24px;
    color: #0056b3;
    margin-bottom: 15px;
}

.contact-save-section p {
    color: #666;
    margin-bottom: 20px;
}

.phone-number-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.phone-number-box i {
    font-size: 24px;
    color: #0056b3;
    margin-right: 15px;
}

#copyable-number {
    font-size: 20px;
    font-weight: bold;
    margin-right: 15px;
}

.copy-btn {
    background: linear-gradient(to bottom, #0073e6, #0056b3);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.copy-btn i {
    margin-right: 6px;
    font-size: 14px;
}

.copy-btn:hover {
    background: linear-gradient(to bottom, #0056b3, #004494);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.copy-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.contact-divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.contact-divider::before,
.contact-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.contact-divider span {
    padding: 0 15px;
    color: #666;
    font-weight: bold;
}

.chat-box {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
}

.chat-box h3 {
    color: #0056b3;
    margin-bottom: 10px;
}

.chat-box .btn-primary {
    margin-top: 15px;
    background-color: #25D366;
}

.chat-box .btn-primary:hover {
    background-color: #128C7E;
}

/* Repair Section */
.repair-section, .expert-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.repair-box, .expert-box {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.urgent-banner {
    background-color: #0056b3;
    color: white;
    padding: 25px;
    text-align: center;
    font-size: 18px;
}

.urgent-banner span {
    font-weight: bold;
}

.repair-content, .expert-content {
    padding: 30px;
}

.repair-content h2, .expert-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #0056b3;
}

.service-way {
    margin: 20px 0;
    font-weight: bold;
}

.contact-options {
    display: flex;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.contact-option {
    background-color: #f5f5f5;
    padding: 15px 25px;
    border-radius: 8px;
    margin-right: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
    font-size: 16px;
}

.contact-option:hover {
    background-color: #e0e0e0;
}

.contact-option i {
    margin-right: 12px;
    color: #0056b3;
    font-size: 18px;
}

.schedule-form {
    display: flex;
    margin: 20px 0;
}

.warranty-question {
    margin-top: 20px;
    color: #0056b3;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 30px;
    max-width: 150px;
    object-fit: contain;
    margin-bottom: 5px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
}

.footer-column {
    margin-right: 50px;
    margin-bottom: 20px;
}

.footer-column h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a:hover {
    text-decoration: underline;
}

.copyright {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

/* Benefits Section */
.benefits-section {
    padding: 50px 0;
    background-color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.benefit-item {
    padding: 20px;
}

.benefit-icon {
    font-size: 40px;
    color: #0056b3;
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.benefit-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* How It Works Section */
.how-it-works {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.how-it-works h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.step-item h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

.step-item img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

/* Service Excellence Section */
.service-excellence-section {
    padding: 50px 0;
    background-color: #fff;
}

.service-excellence-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.excellence-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.excellence-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.excellence-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: #0056b3;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
}

.excellence-icon {
    margin-bottom: 20px;
}

.excellence-icon img {
    width: 48px;
    height: 48px;
}

.excellence-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.excellence-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    min-height: 90px;
}

.value-statement {
    text-align: center;
    font-size: 16px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

/* Reviews Section */
.reviews-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.review-header {
    margin-bottom: 20px;
}

.review-header i {
    color: #ffc107;
    margin-right: 5px;
}

.review-text {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.reviewer-name {
    font-weight: bold;
    color: #0056b3;
}

/* Contact Section */
.contact-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-box, .contact-form-box {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-method i {
    font-size: 24px;
    color: #0056b3;
    margin-right: 20px;
    margin-top: 5px;
}

.contact-details h3 {
    margin-bottom: 10px;
    color: #0056b3;
}

.text-muted {
    color: #666;
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Navigation Improvements */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    nav {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .contact-info,
    .schedule-btn {
        display: none;
    }

    header .container {
        padding: 10px 15px;
    }

    .logo img {
        height: 35px;
        max-width: 150px;
    }

    /* Excellence Section Mobile Improvements */
    .excellence-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .excellence-item {
        padding: 20px;
        margin: 0;
        width: 100%;
    }

    .excellence-item h3 {
        font-size: 1.2rem;
    }

    .excellence-item p {
        font-size: 0.95rem;
    }

    /* Carousel Mobile Improvements */
    .image-carousel-container {
        margin: 0 -15px;
        padding: 0 15px;
    }

    .carousel-slide {
        width: 100%;
        padding: 0 5px;
    }

    .carousel-slide img {
        height: 200px;
        object-fit: cover;
    }

    .carousel-button {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    /* Contact Section Mobile Improvements */
    .contact-save-section {
        padding: 20px 15px;
        margin: 0 -15px;
    }

    .phone-number-box {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }

    .copy-btn {
        width: 100%;
        margin-top: 10px;
    }

    .chat-box {
        padding: 20px 15px;
    }

    /* Benefits Section Mobile Improvements */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .benefit-item {
        padding: 20px;
    }

    /* How It Works Section Mobile Improvements */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .step-item {
        padding: 20px;
    }

    /* Hero Section Mobile Improvements */
    .hero {
        padding: 40px 0;
    }

    .hero-content {
        padding: 0 15px;
    }

    .schedule-box {
        flex-direction: column;
        gap: 15px;
    }

    .select-wrapper {
        width: 100%;
    }

    .select-wrapper select {
        width: 100%;
    }

    /* Footer Mobile Improvements */
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-column {
        text-align: center;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .excellence-badge {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .excellence-icon img {
        width: 40px;
        height: 40px;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }

    .contact-options {
        flex-direction: column;
        gap: 10px;
    }

    .contact-option {
        width: 100%;
    }

    .urgency-message {
        font-size: 0.9rem;
        padding: 12px;
    }

    .benefits-list li {
        font-size: 0.9rem;
    }

    .showcase-description {
        padding: 15px;
        margin: 0 15px 20px;
    }
}

/* Fix for horizontal scrolling */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        width: 100%;
        padding: 0 15px;
    }

    section {
        width: 100%;
        overflow-x: hidden;
    }
}