:root {
    --primary-color: #004a99;
    --primary-dark: #003366;
    --secondary-color: #f37021;
    --secondary-hover: #d65d1a;
    --text-color: #333;
    --light-bg: #f8fbff;
    --white: #ffffff;
    --gray: #666;
    --border-color: #e1e8f0;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

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

/* Visibility Utilities */
.mobile-only {
    display: none !important;
}

.hide-mobile {
    display: block !important;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.accent {
    color: var(--secondary-color);
}

.sub-title {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(243, 112, 33, 0.3);
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 74, 153, 0.3);
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-block {
    display: block;
    width: 100%;
}

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 0;
    font-size: 0.9rem;
}

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

.email-info i, .phone-info i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.phone-info {
    display: flex;
    gap: 20px;
}

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

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

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

.nav-logo {
    height: 120px; /* Increased from 80px */
    width: auto;
    padding: 5px 0;
}

.footer-logo {
    height: 140px; /* Increased from 100px */
    width: auto;
    margin-bottom: 25px;
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 500px;
    padding: 20px;
    border-radius: 20px;
    position: relative;
    animation: modalScale 0.3s ease-out;
}

@keyframes modalScale {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary-color);
    line-height: 1;
}

.modal-content .booking-form-box {
    padding: 20px 10px;
    box-shadow: none;
}

.social-contact-btns {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-contact-btns a {
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.top-bar-social {
    display: flex;
    gap: 15px;
}

.top-bar-social a {
    color: var(--white);
    font-size: 1.1rem;
}

.top-bar-social a:hover {
    color: var(--secondary-color);
}

.booking-cta-box {
    margin-top: 30px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-color);
}

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


.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    padding: 80px 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

/* Summary Cards */
.summary-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.summary-cards .card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.summary-cards .card:hover {
    transform: translateY(-10px);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 74, 153, 0.05);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* About Us */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.check-list {
    margin: 30px 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}

.check-list i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Services */
.services {
    background-color: var(--light-bg);
}

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

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

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

.service-details {
    padding: 30px;
}

.service-details h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-details p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.price {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Why Us */
.why-us {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
}

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

.why-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.why-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-grid img {
    border-radius: 10px;
    height: 250px;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-grid img:hover {
    transform: scale(1.03);
    filter: brightness(0.9);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-item {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

.testimonial-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.testimonial-item p {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 25px;
}

.customer-info strong {
    display: block;
    color: var(--primary-color);
}

.customer-info span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* FAQ */
.faq {
    background-color: var(--light-bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    padding: 0 30px 20px;
    color: var(--gray);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active i {
    transform: rotate(180deg);
}

/* Booking */
.booking {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('ac_repair_service_1773303468333.png');
    background-size: cover;
    background-attachment: fixed;
    color: var(--white);
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.booking-info h2 {
    color: var(--white);
}

.direct-contact {
    margin-top: 30px;
}

.direct-contact p {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.direct-contact i {
    color: var(--secondary-color);
    margin-right: 15px;
}

.booking-form-box {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    color: var(--text-color);
}

.booking-form-box h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
    font-size: 1.8rem;
}

.form-subtext {
    text-align: center;
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.whatsapp-btn-container {
    margin-bottom: 25px;
}

.btn-whatsapp-large {
    background-color: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-large:hover {
    background-color: #1eb954;
    transform: translateY(-2px);
}

.divider {
    position: relative;
    text-align: center;
    margin: 25px 0;
}

.divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
}

.divider span {
    background-color: var(--white);
    padding: 0 15px;
    position: relative;
    z-index: 1;
    color: var(--gray);
    font-weight: 600;
    font-size: 0.9rem;
}

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

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background-color: #0d1b2a;
    color: #cbd4e0;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 70px;
    margin-bottom: 50px;
}

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

.footer-about .logo a {
    color: var(--white);
}

.social-links {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
}

.social-links a:hover {
    background: var(--secondary-color);
}

.footer-links h4, .footer-contact h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    letter-spacing: 1px;
    color: var(--secondary-color);
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 5px;
}

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

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive */
@media (max-width: 992px) {
    .container { padding: 0 20px; }
    h2 { font-size: 2rem; }
    .hero-text h1 { font-size: 2.8rem; }
    .hero-content { flex-direction: column; text-align: center; }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .hero-btns { justify-content: center; }
    .about-grid, .booking-container { grid-template-columns: 1fr; }
    .services-grid, .testimonials-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .summary-cards { grid-template-columns: 1fr; margin-top: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .top-bar-container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .phone-info {
        display: flex;
        justify-content: center;
        width: 100%;
        gap: 10px;
    }

    .email-info {
        display: none; /* Removed email container */
    }

    .hide-mobile { display: none !important; }
    .mobile-only { display: block !important; }

    header { padding: 10px 0; }
    .nav-logo { height: 100px; } /* Increased from 60px */

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 0;
        transition: 0.4s ease-in-out;
        z-index: 2000;
        gap: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links li a {
        display: block;
        padding: 20px;
        font-size: 1.2rem;
        width: 100%;
    }

    .mobile-menu-header {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 20px 30px;
        border-bottom: 2px solid var(--primary-color) !important;
    }

    .mobile-logo {
        height: 80px; /* Increased from 50px */
    }

    .close-menu {
        font-size: 2rem;
        color: var(--primary-color);
        cursor: pointer;
    }

    .menu-toggle { display: block; }

    .services-grid, .testimonials-grid, .gallery-grid { grid-template-columns: 1fr; }
    .why-us-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .booking-form-box { padding: 30px; }
}
