/* 
* Theme Name: Mitsubishi AC Service
* Colors: Red (#E60012), Dark Blue (#0B1120), White (#FFFFFF)
* Font: Playfair Display
* Radius: 0px (Strict)
*/

:root {
    --primary-red: #E60012;
    --primary-dark: #0B1120;
    --text-color: #334155;
    --light-bg: #F8FAFC;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* STRICT: NO BORDER RADIUS ANYWHERE */
    border-radius: 0px !important;
}

body {
    font-family: 'Playfair Display', serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #b9000e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 0, 18, 0.2);
}

.btn-outline {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-dark);
}

.btn-full {
    width: 100%;
    text-align: center;
    background-color: var(--primary-dark);
    color: var(--white);
    margin-top: 20px;
}

.btn-full:hover {
    background-color: var(--primary-red);
}

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* --- Header --- */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
}

.logo i {
    font-size: 32px;
}

.logo small {
    display: block;
    font-size: 12px;
    color: var(--primary-red);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-nav>ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-weight: 500;
    color: var(--primary-dark);
    font-size: 16px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}



.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-red);
    transition: var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

/* --- Dropdown Menu --- */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    border-top: 3px solid var(--primary-red);
    display: block;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover>a i {
    transform: rotate(180deg);
}

.dropdown-menu li {
    width: 100%;
    gap: 0;
}

.dropdown-menu li a {
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 500;
    display: block;
    width: 100%;
    transition: var(--transition);
    color: var(--primary-dark);
}

.dropdown-menu li a:hover {
    color: var(--primary-red);
    padding-left: 35px;
}

.dropdown-menu li a::after {
    display: none;
}

/* Products dropdown - 2 column grid layout */
.products-dropdown .dropdown-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-width: 560px;
    padding: 15px;
    gap: 0;
}

.products-dropdown .dropdown-menu li a {
    padding: 12px 20px;
    font-size: 15px;
    white-space: nowrap;
}

.products-dropdown .dropdown-menu li a:hover {
    padding-left: 25px;
}

/* Mobile responsive for products dropdown */
@media (max-width: 991px) {
    .products-dropdown .dropdown-menu {
        display: block;
        grid-template-columns: 1fr;
        min-width: 100%;
        width: 100%;
        padding: 10px 0;
    }

    .products-dropdown .dropdown-menu li a {
        padding: 12px 20px;
        font-size: 14px;
        white-space: normal;
    }

    .products-dropdown .dropdown-menu li a:hover {
        padding-left: 25px;
    }
}





.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    font-weight: 700;
    color: var(--primary-dark);
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 64px;
    line-height: 1.1;
    color: var(--white);
    margin: 20px 0 30px;
    animation: slideInLeft 1s ease;
}

.hero-text .highlight {
    color: var(--primary-red);
    display: block;
}

.badge {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    border-left: 3px solid var(--primary-red);
    display: inline-block;
}

.hero-buttons {
    margin: 40px 0;
    display: flex;
    gap: 20px;
    animation: fadeInUp 1.2s ease;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stat-item strong {
    display: block;
    font-size: 32px;
    color: var(--white);
}

.stat-item span {
    font-size: 14px;
    opacity: 0.7;
    text-transform: uppercase;
}

.hero-form-container {
    background: var(--white);
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    animation: fadeInRight 1.5s ease;
}

.banner-form h3 {
    color: var(--primary-dark);
    font-size: 28px;
    margin-bottom: 5px;
}

.banner-form p {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}

.banner-form .form-group {
    margin-bottom: 20px;
}

.banner-form input,
.banner-form select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    outline: none;
    font-family: inherit;
    font-size: 15px;
    background: #f9f9f9;
    transition: var(--transition);
}

.banner-form input:focus,
.banner-form select:focus {
    border-color: var(--primary-red);
    background: white;
}

.banner-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230B1120' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.banner-form .btn {
    padding: 18px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-form-container {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* --- Features Strip --- */
.features-strip {
    background: var(--white);
    padding: 60px 0;
    margin-top: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-item .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--white);
}

.feature-item .icon.red-bg {
    background: var(--primary-red);
}

.feature-item .icon.dark-bg {
    background: var(--primary-dark);
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

/* --- About Section --- */
.about-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    animation: slideInLeft 1s ease;
}

.about-image img {
    width: 100%;
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.exp-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-red);
    color: var(--white);
    padding: 30px;
    text-align: center;
    border: 5px solid var(--white);
    min-width: 160px;
    animation: bounceIn 1.5s ease;
}

.exp-badge .years {
    display: block;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.exp-badge .text {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    animation: slideInRight 1s ease;
}

.about-content .sub-title {
    color: var(--primary-red);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
    font-size: 14px;
}

.about-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--primary-dark);
    line-height: 1.2;
}

.about-content p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.af-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.af-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(11, 17, 32, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-red);
    font-size: 20px;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.af-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.af-item p {
    font-size: 14px;
    margin-bottom: 0;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        margin-bottom: 20px;
    }

    .exp-badge {
        right: 20px;
        bottom: -20px;
        padding: 20px;
        min-width: 120px;
    }

    .exp-badge .years {
        font-size: 32px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 0 !important;
    /* Strict */
}

.feature-item .red-bg {
    background: var(--primary-red);
    color: white;
}

.feature-item .dark-bg {
    background: var(--primary-dark);
    color: white;
}

/* --- Services --- */
.services-section {
    background: var(--light-bg);
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.sub-title {
    color: var(--primary-red);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border: 1px solid #eee;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-red);
}

.service-icon i {
    font-size: 30px;
    color: var(--primary-red);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--white);
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-list {
    margin: 0 0 30px;
}

.service-list li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-list li i {
    color: var(--primary-red);
    font-size: 14px;
}

/* Specialized Section Styles */
.category-title {
    grid-column: 1 / -1;
    text-align: left;
    margin: 60px 0 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
    position: relative;
}

.category-title h2 {
    font-size: 32px;
    margin-bottom: 0;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 2px;
    background: var(--primary-red);
}

/* --- Why Choose Us --- */
.why-choose-us {
    padding: 100px 0;
    background-color: var(--white);
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.choose-card {
    background: var(--light-bg);
    padding: 40px 30px;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.choose-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-red);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.choose-card .choose-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.choose-card:hover .choose-icon {
    background: var(--primary-dark);
}

.choose-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.choose-info p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* --- Contact --- */
.contact-section {
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-form-box {
    background: var(--white);
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 5px solid var(--primary-dark);
    /* Accent Border */
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    font-family: inherit;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: #fff;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-left: 4px solid;
}

.alert.success {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.alert.error {
    background: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.faq-accordion {
    max-width: 1200px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    align-items: start;
}

@media (max-width: 992px) {
    .faq-accordion {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background-color: var(--white);
    border: 1px solid #eee;
    transition: var(--transition);
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 18px;
    transition: var(--transition);
}

.faq-question i {
    font-size: 14px;
    transition: transform 0.3s ease;
    color: var(--primary-red);
}

.faq-item.active {
    border-color: var(--primary-red);
}

.faq-item.active .faq-question {
    color: var(--primary-red);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0, 1, 0, 1);
    background-color: #fafafa;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 1000px;
    transition: all 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* --- Footer --- */
/* --- Modern Footer Redesign --- */
.site-footer {
    background: linear-gradient(135deg, #0B1120 0%, #0f172a 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--primary-red), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-red);
}

.footer-col p {
    font-size: 15px;
    line-height: 1.8;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    font-weight: 500;
}

.footer-links li a i {
    font-size: 14px;
    color: var(--primary-red);
    transition: transform 0.3s ease;
}

.footer-links li a:hover {
    color: var(--white);
    transform: translateX(8px);
}

.footer-links li a:hover i {
    transform: scale(1.2);
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-contact-info .icon-box {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-red);
    font-size: 18px;
    transition: var(--transition);
}

.footer-contact-info li:hover .icon-box {
    background: var(--primary-red);
    color: var(--white);
    transform: rotateY(180deg);
}

.footer-contact-info .text-box span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
}

.footer-contact-info .text-box strong {
    color: var(--white);
    font-size: 16px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(230, 0, 18, 0.3);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-size: 14px;
    opacity: 0.6;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--primary-red);
}

/* Redesigned Footer Responsive */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .header-actions .btn {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .faq-accordion {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .choose-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Contact Section --- */
.contact-section {
    padding: 100px 0;
    background: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.contact-info h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.contact-info p {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.info-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-detail i {
    font-size: 30px;
    color: var(--primary-red);
}

.contact-detail strong {
    font-size: 20px;
    color: var(--primary-dark);
    display: block;
}

.contact-form-box {
    background: var(--white);
    padding: 50px;
    border: 3px solid var(--primary-dark);
    box-shadow: 20px 20px 0 rgba(11, 17, 32, 0.05);
}

.contact-form-box .form-group label {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
    display: block;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    outline: none;
    font-family: inherit;
    font-size: 15px;
    background: #f9f9f9;
    transition: var(--transition);
}

.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
    border-color: var(--primary-red);
    background: white;
}

.map-section {
    width: 100%;
    height: 450px;
    background: #eee;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info h2 {
        font-size: 36px;
    }

    .contact-form-box {
        padding: 30px;
    }
}

@media (max-width: 768px) {

    .main-nav,
    .header-actions {
        display: none;
    }

    /* Hide Desktop Nav */
    .mobile-toggle {
        display: block;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Menu Active State */
    .main-nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active ul {
        flex-direction: column;
        gap: 15px;
    }

    /* Mobile Dropdown */
    .main-nav .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 20px;
        max-height: 0;
        overflow: hidden;
        border: none;
        transition: max-height 0.4s ease;
        background: transparent;
    }

    .has-dropdown.active .dropdown-menu {
        max-height: 500px;
        margin-top: 10px;
    }

    .main-nav .dropdown-menu li a {
        padding: 10px 0;
        font-size: 14px;
    }

    .has-dropdown>a {
        justify-content: space-between;
        width: 100%;
    }

    .has-dropdown.active>a i {
        transform: rotate(180deg);
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Repair Section --- */
.repair-section {
    padding: 100px 0;
    background: var(--white);
}

.repair-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.repair-features {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.r-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-dark);
}

.r-item i {
    color: var(--primary-red);
    font-size: 20px;
}

.repair-image img {
    border: 5px solid var(--primary-dark);
    box-shadow: 20px 20px 0 var(--primary-red);
}

/* --- Products Section --- */
.products-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-red);
}

.p-image {
    margin-bottom: 30px;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-image img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .p-image img {
    transform: scale(1.05);
}

.p-details h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-dark);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.p-details p {
    color: #666;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

.p-price {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.p-btn {
    border: 1px solid var(--primary-dark);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 15px 30px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    background: transparent;
}

.p-btn:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
}

/* Response for Products */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-card {
        padding: 30px 20px;
    }

    .p-image {
        min-height: 180px;
    }
}

@media (max-width: 992px) {
    .repair-wrapper {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}