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

/* WhatsApp Button */
/* Chat Button (WhatsApp) */
#chat-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    font-size: 2.2rem;
    transition: background 0.2s, box-shadow 0.2s, transform 0.3s;
    text-decoration: none;
    animation: chat-pulse 1.2s infinite alternate;
}

@keyframes chat-pulse {
    0% {
        box-shadow: 0 4px 16px rgba(37,211,102,0.15);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 32px 8px rgba(37,211,102,0.25);
        transform: scale(1.12);
    }
}
}
#chat-btn:hover {
    background: #128c7e;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

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

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

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

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #4285F4;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 8px;
}

nav ul {
    display: flex;
    list-style: none;
    flex-wrap: nowrap;
}

nav ul li {
    margin-left: 30px;
    white-space: nowrap;
}

nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

nav ul li a:hover, 
nav ul li a.active {
    color: #4285F4;
}

/* Mobile Menu Styles */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #4285F4;
}

.mobile-menu-toggle:hover {
    color: #3367D6;
}

.mobile-nav {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    header .container {
        flex-direction: column;
        align-items: stretch;
        padding: 15px 20px 0;
    }
    
    .mobile-nav {
        display: none;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }
    
    .mobile-nav.active {
        display: block;
        max-height: 300px;
        overflow-y: auto;
    }
    
    nav ul {
        flex-direction: column;
        margin: 0;
        padding: 0;
    }
    
    nav ul li {
        margin: 0;
        text-align: center;
        border-top: 1px solid #eee;
    }
    
    nav ul li a {
        display: block;
        padding: 15px 0;
    }
    
    /* Hide desktop nav on mobile */
    header .container > nav {
        display: none;
    }
}

/* Tablet and Desktop Navigation */
@media (min-width: 769px) {
    /* Show desktop menu on tablet and larger */
    .mobile-nav {
        display: none !important;
    }
    
    /* Add desktop nav inside header container */
    header .container > nav {
        display: block;
    }
    
    /* Hide mobile toggle on desktop */
    .mobile-menu-toggle {
        display: none;
    }
    
    /* Keep header layout horizontal */
    header .container {
        flex-direction: row;
        align-items: center;
        padding: 15px 20px;
    }
    
    /* Ensure better spacing between logo and menu */
    .header-content {
        margin-right: 20px;
    }
    
    /* Make sure nav has enough space */
    header .container > nav {
        flex: 1;
    }
    
    /* Distribute menu items evenly */
    nav ul {
        justify-content: space-between;
        max-width: 650px;
    }
    
    /* Adjust item spacing for better fit */
    nav ul li {
        margin-left: 15px;
    }
    
    /* Ensure text doesn't wrap */
    nav ul li a {
        font-size: 0.95rem;
    }
}

/* Hero Section */
.hero {
    background-color: #f0f6ff;
    padding: 80px 0;
    text-align: center;
    border-radius: 0 0 10px 10px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-icon {
    font-size: 60px;
    color: #4285F4;
    margin-bottom: 20px;
}

.hero h1 {
    color: #4285F4;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #4285F4;
    color: white;
}

.btn-primary:hover {
    background-color: #3367D6;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: white;
    color: #4285F4;
    border: 2px solid #4285F4;
}

.btn-secondary:hover {
    background-color: #f0f6ff;
    transform: translateY(-2px);
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    text-align: center;
}

.why-choose h2 {
    font-size: 2.2rem;
    color: #4285F4;
    margin-bottom: 50px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature {
    background: white;
    border-radius: 10px;
    padding: 30px;
    width: calc(25% - 30px);
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    font-size: 40px;
    color: #4285F4;
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature p {
    color: #666;
}

/* Repair Process Section */
.repair-process {
    padding: 80px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.repair-process h2 {
    font-size: 2.2rem;
    color: #3367D6;
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 50px;
    position: relative;
}

.process-step {
    flex: 1;
    max-width: 300px;
    padding: 30px 20px 20px 20px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 18px rgba(66,133,244,0.07);
    position: relative;
    z-index: 2;
    margin: 0 20px;
    border: none;
    transition: box-shadow 0.3s;
}
.process-step:hover {
    box-shadow: 0 8px 32px rgba(66,133,244,0.15);
}
.step-icon {
    font-size: 2.2rem;
    color: #4285F4;
    margin-bottom: 10px;
}
.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg,#4285F4 60%,#3367D6 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 auto 12px auto;
    box-shadow: 0 2px 8px rgba(66,133,244,0.12);
}
.process-connector {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg,#e3eafc 0%,#4285F4 100%);
    align-self: center;
    border-radius: 2px;
    margin-top: 60px;
    margin-bottom: 60px;
    z-index: 1;
}
}

.process-step {
    flex: 1;
    max-width: 300px;
    padding: 20px;
    border: 1px dashed #ccd9f0;
    border-radius: 10px;
    background-color: white;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #4285F4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.process-step h3 {
    margin-bottom: 10px;
    color: #333;
}

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

.process-cta {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        width: 100%;
        max-width: 100%;
    }
}

/* Repairs Offered Section */
.repairs-offered {
    padding: 80px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.repairs-offered h2 {
    font-size: 2.2rem;
    color: #4285F4;
    margin-bottom: 50px;
}

.repair-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
    margin-bottom: 40px;
}

.repair-type {
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 340px;
    padding: 36px 28px 32px 28px;
    border: none;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 4px 18px rgba(66,133,244,0.07);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 1;
}
.repair-type:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 32px rgba(66,133,244,0.13);
}
.repair-icon {
    color: #4285F4;
    font-size: 2.5rem;
    margin-bottom: 18px;
}
.repair-type h3 {
    margin-bottom: 12px;
    color: #3367D6;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.repair-type p {
    color: #555;
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.6;
}
.repair-tag {
    display: inline-block;
    background: #e3eafc;
    color: #3367D6;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 16px;
    font-size: 0.98rem;
    text-decoration: none;
    margin-top: 8px;
    transition: background 0.2s, color 0.2s;
}
.repair-tag:hover {
    background: #4285F4;
    color: #fff;
}
}

.repair-type {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.repair-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.repair-icon {
    color: #4285F4;
    font-size: 24px;
    margin-bottom: 15px;
}

.repair-type h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.4rem;
}

.repair-type p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.repair-tag {
    display: inline-block;
    background-color: #f0f6ff;
    color: #4285F4;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.repair-tag:hover {
    background-color: #e0eaff;
}

.see-all-services {
    margin-top: 20px;
}

.see-all-services a {
    color: #4285F4;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.see-all-services a:hover {
    color: #3367D6;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .repair-type {
        min-width: 100%;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    text-align: center;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin: 40px 0;
}

.testimonials h2 {
    font-size: 2.2rem;
    color: #4285F4;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-nav {
    font-size: 24px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.testimonial-nav:hover {
    color: #4285F4;
}

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    border: 1px solid #eaeaea;
    transition: transform 0.6s cubic-bezier(0.4,0.2,0.2,1), opacity 0.6s, box-shadow 0.3s ease;
    opacity: 1;
}

.testimonial-card.slide-out-left {
    opacity: 0;
    transform: translateX(-60px) scale(0.95);
    pointer-events: none;
}
.testimonial-card.slide-out-right {
    opacity: 0;
    transform: translateX(60px) scale(0.95);
    pointer-events: none;
}
.testimonial-card.slide-in {
    opacity: 1;
    transform: translateX(0) scale(1);
}
}

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

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-rating {
    color: #ffca28;
    font-size: 16px;
}

.testimonial-header h3 {
    margin: 0;
    color: #333;
    font-weight: 600;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    flex: 1;
    margin: 0;
}

@media (max-width: 768px) {
    .testimonials-grid {
        flex-direction: column;
    }
    
    .testimonial-nav {
        transform: rotate(90deg);
    }
    
    .testimonial-card {
        width: 90%;
        margin: 0 auto;
    }
}

/* Reviews Modal */
.reviews-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.reviews-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: transform 0.3s ease-out;
}

.reviews-modal.opening .reviews-modal-content {
    transform: translateY(-20px);
}

.reviews-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.reviews-modal-header h2 {
    color: #4285F4;
    margin: 0;
}

.reviews-modal-close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.reviews-modal-close:hover {
    color: #4285F4;
}

.reviews-modal-reviews {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-review {
    background-color: #f9f9f9;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.modal-review .testimonial-rating {
    margin-bottom: 8px;
}

.modal-review h3 {
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.modal-review p {
    margin: 0;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

/* Modal navigation styles */
.reviews-modal-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.review-nav-btn {
    background-color: #4285F4;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-nav-btn:hover {
    background-color: #3367d6;
}

.review-nav-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.review-counter {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.reviews-modal-review-container {
    min-height: 200px;
}

.modal-review.single {
    margin-bottom: 0;
}

/* Visit Us Section */
.visit-us {
    padding: 60px 0;
    text-align: center;
    background-color: #f0f6ff;
}

.visit-us h2 {
    font-size: 2.2rem;
    color: #4285F4;
    margin-bottom: 20px;
}

.visit-us p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.map-container {
    max-width: 100%;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
}

.map-container iframe {
    width: 100%;
    max-width: 1000px;
    transition: all 0.3s ease;
}

.map-btn-container {
    margin-top: 20px;
}

/* Map Section on Contact Page */
.map-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.map-section h2 {
    font-size: 2.2rem;
    color: #4285F4;
    margin-bottom: 20px;
}

.map-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.map-placeholder {
    width: 100%;
    height: 450px;
    background-color: #e9eef8;
    background-image: repeating-linear-gradient(
        45deg,
        #e9eef8,
        #e9eef8 20px,
        #d9e2f8 20px,
        #d9e2f8 40px
    );
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #4285F4;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
}

.map-text {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 15px 30px;
    border-radius: 8px;
    border: 2px dashed #4285F4;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .map-placeholder {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .map-placeholder {
        height: 300px;
    }
}

/* Responsive adjustments for iframe */
@media (max-width: 768px) {
    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .map-container iframe {
        height: 300px;
    }
}

/* Footer */

/* Footer */
footer {
    background-color: #f2f2f2;
    color: #666;
    padding: 20px 0;
    font-size: 0.9rem;
    border-top: 1px solid #e0e0e0;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    /* Header styles now handled by mobile menu styles */
    
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .feature {
        width: calc(50% - 30px);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info, .footer-contact {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .feature {
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
}
