/* Import Hero Backgrounds */
@import url('hero-backgrounds.css');
/* Import Form Validation Styles */
@import url('form-validation.css');

/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f5f6fa;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

/* Header Styles */
.header {
    background: var(--primary-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo h1 {
    color: white;
    font-size: 1.5rem;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 4rem;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 2rem;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #c0392b;
}

/* Hero Contact Info Styles */
.hero .contact-info {
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero .contact-info p {
    margin: 10px 0;
    font-size: 1.2em;
    color: #333;
}

.hero .phone-number {
    font-size: 1.4em !important;
    font-weight: 600;
    color: #007bff !important;
}

.hero .phone-number a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero .phone-number a:hover {
    color: #0056b3;
}

.hero .phone-number i,
.hero .address i {
    margin-right: 10px;
    color: #28a745;
}

.hero .cta-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.hero .btn {
    padding: 12px 25px;
    font-size: 1.2em;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero .btn-primary {
    background-color: #007bff;
    color: white;
    border: none;
}

.hero .btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.hero .btn-whatsapp {
    background-color: #25d366;
    color: white;
    border: none;
}

.hero .btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero .contact-info {
        margin: 15px 10px;
    }

    .hero .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Services Section */
.services-preview {
    padding: 5rem 2rem;
    text-align: center;
}

.services-preview h2 {
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.service-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--secondary-color);
    text-decoration: none;
}

/* Features Section Styles */
.features-section {
    padding: 80px 0;
    background: #fff;
}

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

.feature-card {
    background: #f5f6fa;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-card i {
    font-size: 2.5em;
    color: #3498db;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

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

/* Responsive Features */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card i {
        font-size: 2em;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    background: var(--light-bg);
    padding: 5rem 0;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

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

.feature-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 2rem 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
}

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

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section ul li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #007bff;
    transform: translateX(5px);
}

.footer-section ul li a i {
    width: 20px;
    text-align: center;
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.float-btn i {
    font-size: 24px;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.call-btn {
    background: #007bff;
}

.call-btn:hover {
    background: #0056b3;
}

.whatsapp-btn {
    background: #25d366;
}

.whatsapp-btn:hover {
    background: #128c7e;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .floating-contact {
        right: 15px;
        bottom: 15px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
    }

    .float-btn i {
        font-size: 20px;
    }
}

/* Footer Contact Section */
.contact-section {
    flex: 1.5;
}

.footer-contact-info {
    display: none;
}

.contact-buttons {
    display: none;
}

.footer-contact-btn {
    display: none;
}

/* Process Step Contact Links */
.process-step a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.process-step a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .footer-contact-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: white;
        margin: 5px 0;
        transition: 0.3s;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero h2 {
        font-size: 2rem;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 4rem;
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('../images/services-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.services-hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-list {
    padding: 4rem 0;
}

.service-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: center;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-details {
    flex: 1;
}

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

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

.service-details ul li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-details ul li:before {
    content: '✓';
    color: #3498db;
    position: absolute;
    left: 0;
}

.service-cta {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: background 0.3s;
}

.service-cta:hover {
    background: #2980b9;
}

.service-process {
    background: #f5f6fa;
    padding: 4rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon i {
    font-size: 2rem;
    color: #fff;
}

.pricing {
    padding: 4rem 0;
}

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

.price-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.price-card.featured {
    background: #3498db;
    color: #fff;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0;
}

.price-card ul {
    list-style: none;
    padding: 0;
}

.price-card ul li {
    margin: 0.5rem 0;
}

/* Media Queries for Services Page */
@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
    }

    .service-item.reverse {
        flex-direction: column;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 480px) {
    .services-hero-content h2 {
        font-size: 2rem;
    }

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

/* Services Page Styles */
.services-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/services-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 40vh;
    margin-top: 4rem;
}

/* Gallery Page Styles */
.gallery-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('../images/gallery-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.gallery-hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.gallery-section {
    padding: 4rem 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #3498db;
    background: transparent;
    color: #3498db;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #3498db;
    color: #fff;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 152, 219, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

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

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

.gallery-overlay i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.testimonials {
    background: #f5f6fa;
    padding: 4rem 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
}

.testimonial-content i {
    color: #3498db;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    color: #2c3e50;
}

.author-info p {
    margin: 0;
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Media Queries for Gallery Page */
@media (max-width: 768px) {
    .gallery-hero-content h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

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

@media (max-width: 480px) {
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('../images/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.contact-hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-info {
    padding: 4rem 0;
    background: #f5f6fa;
}

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

.contact-card {
    background: #fff;
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.contact-icon {
    width: 70px;
    height: 70px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-top: 1rem;
}

.contact-link:hover {
    color: #2980b9;
}

.contact-form-section {
    padding: 4rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.form-content h2 {
    margin-bottom: 1rem;
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

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

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background: #3498db;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #2980b9;
}

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

.info-card {
    background: #f5f6fa;
    padding: 2rem;
    border-radius: 10px;
}

.info-card h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.working-hours {
    list-style: none;
    padding: 0;
}

.working-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #e74c3c;
    color: #fff;
    padding: 1rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1rem;
    transition: background 0.3s;
}

.emergency-btn:hover {
    background: #c0392b;
}

.map-section {
    padding: 4rem 0;
    background: #f5f6fa;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

/* Media Queries for Contact Page */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

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

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

@media (max-width: 480px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9rem;
    }

    .submit-btn {
        width: 100%;
    }
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

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

.dropdown-menu li {
    position: relative;
}

.dropdown-menu a {
    padding: 10px 15px;
    display: block;
    color: #2c3e50;
    border-bottom: 1px solid #f5f6fa;
}

.dropdown-menu a:hover {
    background: #f5f6fa;
    color: #3498db;
}

.dropdown-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.dropdown-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown > a > .fa-chevron-down {
    font-size: 0.8em;
    margin-left: 5px;
}

/* Mobile Dropdown Styles */
@media (max-width: 768px) {
    .dropdown-menu,
    .submenu {
        position: static;
        background: #f5f6fa;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        width: 100%;
    }

    .dropdown-menu a {
        padding-left: 25px;
    }

    .submenu a {
        padding-left: 35px;
    }

    .dropdown.active > .dropdown-menu,
    .dropdown-submenu.active > .submenu {
        display: block;
    }
}

/* Appliance Pages Styles */
.appliance-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.appliance-hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.appliance-hero p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
}

.brands-section {
    padding: 80px 0;
    background: #f5f6fa;
}

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

.brand-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.brand-card img {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.brand-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.brand-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.brand-card ul li {
    margin: 10px 0;
    color: #666;
}

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

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 3em;
    color: #3498db;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    margin: 10px 0;
    color: #666;
}

.booking-section {
    padding: 80px 0;
    background: #fff;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #2c3e50;
}

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

.form-group textarea {
    resize: vertical;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .brand-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .appliance-hero {
        padding: 60px 0;
    }

    .appliance-hero h1 {
        font-size: 2em;
    }

    .booking-form {
        padding: 0 20px;
    }
}

/* AC Services Section Styles */
.ac-services {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.ac-services h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.ac-services .intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-color);
}

.service-block {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.service-block h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-block ul {
    list-style: none;
    padding-left: 1rem;
}

.service-block ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-block ul li:before {
    content: '✓';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.technical-components {
    margin-top: 4rem;
}

.technical-components h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

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

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

.component-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.component-card ul {
    list-style: none;
    padding-left: 0;
}

.component-card ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.component-card ul li:before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0.5rem;
}

/* Responsive Styles for AC Services */
@media (max-width: 768px) {
    .components-grid {
        grid-template-columns: 1fr;
    }
    
    .service-block {
        padding: 1.5rem;
    }
    
    .ac-services {
        padding: 3rem 1rem;
    }
    
    .ac-services h2 {
        font-size: 1.8rem;
    }
}

/* Refrigeration Services Section Styles */
.refrigeration-services {
    padding: 5rem 2rem;
    background: white;
}

.refrigeration-services h2,
.washing-machine-services h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.refrigeration-services .intro-text,
.washing-machine-services .intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-color);
}

/* Washing Machine Services Section Styles */
.washing-machine-services {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

/* Shared Styles for Service Blocks */
.refrigeration-services .service-block,
.washing-machine-services .service-block {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s;
}

.refrigeration-services .service-block:hover,
.washing-machine-services .service-block:hover {
    transform: translateY(-5px);
}

.refrigeration-services .service-block h3,
.washing-machine-services .service-block h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.refrigeration-services .service-block ul,
.washing-machine-services .service-block ul {
    list-style: none;
    padding-left: 0;
}

.refrigeration-services .service-block ul li,
.washing-machine-services .service-block ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.refrigeration-services .service-block ul li:before,
.washing-machine-services .service-block ul li:before {
    content: '→';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.refrigeration-services .service-block ul li strong,
.washing-machine-services .service-block ul li strong {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Responsive Styles for New Sections */
@media (max-width: 768px) {
    .refrigeration-services,
    .washing-machine-services {
        padding: 3rem 1rem;
    }

    .refrigeration-services .service-block,
    .washing-machine-services .service-block {
        padding: 1.5rem;
    }

    .refrigeration-services h2,
    .washing-machine-services h2 {
        font-size: 1.8rem;
    }
}

/* Contact Info Styles */
.contact-info {
    display: none;
}

.contact-link {
    display: none;
}

.contact-address {
    display: none;
}

/* Service Process Infographic */
.service-process {
    padding: 4rem 0;
    background: #f9f9f9;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 2rem;
    color: white;
}

.process-step h3 {
    color: #333;
    margin-bottom: 1rem;
}

.process-step p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .process-infographic {
        grid-template-columns: 1fr;
    }
}

/* Social Media Links */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: #007bff;
}

.social-links i {
    font-size: 1.2rem;
}

/* Social Media Brand Colors on Hover */
.social-links a[title="Facebook"]:hover {
    background: #1877f2;
}

.social-links a[title="Instagram"]:hover {
    background: #e4405f;
}

.social-links a[title="Twitter"]:hover {
    background: #1da1f2;
}

.social-links a[title="Threads"]:hover {
    background: #000000;
}

.social-links a[title="Pinterest"]:hover {
    background: #bd081c;
}

.social-links a[title="LinkedIn"]:hover {
    background: #0077b5;
}

.social-links a[title="YouTube"]:hover {
    background: #ff0000;
}

/* Working Hours Styles */
.footer-section p i {
    margin-right: 0.5rem;
    color: #007bff;
}

/* FAQ Section Styles */
.faq-section {
    padding: 4rem 0;
    background: #f9f9f9;
}

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

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    counter-increment: faq-counter;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.faq-item h3::before {
    content: counter(faq-counter) ".";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin-left: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        padding: 1.2rem;
    }
}

/* Other Appliance Repair Services Section */
.other-services {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.other-services h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 2.2em;
}

.other-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.other-services .service-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.other-services .service-icon {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 20px;
}

.other-services .service-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.other-services .service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.other-services .service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.other-services .service-features li {
    margin: 10px 0;
    color: #555;
}

.other-services .service-features li i {
    color: #28a745;
    margin-right: 10px;
}

.other-services .service-link {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.other-services .service-link:hover {
    color: #0056b3;
}

.other-services .service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.other-services .service-link:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .other-services .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .other-services .service-card {
        padding: 20px;
    }
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.call-button {
    background-color: #28a745;
}

.whatsapp-button {
    background-color: #25d366;
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }

    .floating-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
