/* ==========================================================================
   Quick Response Restoration - Main Stylesheet
   ========================================================================== */

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

:root {
    --primary-color: #e63946;
    --primary-dark: #c42b38;
    --secondary-color: #1d3557;
    --accent-color: #f1faee;
    --dark-color: #0a1929;
    --text-color: #333;
    --light-text: #6c757d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

p {
    margin-bottom: 15px;
    color: var(--light-text);
}

/* ====== TOP BAR ====== */
.top-bar {
    background: var(--dark-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.top-bar-info span,
.top-bar-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
}

.top-bar-info a:hover { color: var(--primary-color); }

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

.top-bar-social a {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.top-bar-social a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* ====== HEADER / NAVBAR ====== */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    max-height: 70px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 5px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu > li > a {
    padding: 12px 16px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary-color);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    box-shadow: var(--shadow-hover);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-top: 3px solid var(--primary-color);
}

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

.dropdown-menu li a {
    padding: 10px 20px;
    color: var(--text-color);
    display: block;
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child a { border-bottom: none; }

.dropdown-menu li a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    padding-left: 25px;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--secondary-color);
}

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

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

.menu-toggle {
    display: none;
    font-size: 1.6rem;
    background: none;
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
}

/* ====== HERO ====== */
.hero {
    position: relative;
    min-height: 650px;
    background: linear-gradient(135deg, rgba(10, 25, 41, 0.85) 0%, rgba(230, 57, 70, 0.7) 100%),
                url('https://images.unsplash.com/photo-1517999144091-3d9dca6d1e43?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 80px 0;
}

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

.hero-subtitle {
    display: inline-block;
    background: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero h1 {
    color: var(--white);
    font-size: 3.6rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ====== SECTION HEADER ====== */
.section {
    padding: 90px 0;
}

.section-light { background: var(--light-bg); }

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.section-tagline {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.6rem;
    margin-bottom: 18px;
}

.section-header p { font-size: 1.05rem; }

/* ====== ABOUT SECTION ====== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

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

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary-color);
    border-radius: 12px;
    z-index: -1;
}

.about-content h2 { margin-bottom: 20px; }

.about-features {
    margin-top: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 4px;
}

.about-feature h4 { font-size: 1.05rem; margin-bottom: 5px; }
.about-feature p { font-size: 0.9rem; margin: 0; }

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

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

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

.service-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img { transform: scale(1.1); }

.service-icon {
    position: absolute;
    bottom: -25px;
    left: 25px;
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    box-shadow: var(--shadow);
}

.service-content {
    padding: 35px 25px 25px;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-content p {
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-link:hover { gap: 14px; }

/* ====== WHY CHOOSE US ====== */
.why-choose {
    background: linear-gradient(135deg, rgba(10, 25, 41, 0.92), rgba(29, 53, 87, 0.92)),
                url('https://images.unsplash.com/photo-1581094288338-2314dddb7ece?auto=format&fit=crop&w=1600&q=80') center/cover fixed no-repeat;
    color: var(--white);
}

.why-choose .section-header h2,
.why-choose .section-tagline { color: var(--white); }

.why-choose .section-tagline { color: var(--primary-color); }

.why-choose .section-header p { color: rgba(255, 255, 255, 0.85); }

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

.feature-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-8px);
    background: rgba(230, 57, 70, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 75px;
    height: 75px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--white);
}

.feature-box h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
    margin: 0;
}

/* ====== CTA BANNER ====== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 70px 0;
    color: var(--white);
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin: 0;
    max-width: 700px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 1.05rem;
}

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

.testimonial-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

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

.testimonial-quote {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1;
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-author h4 {
    margin: 0;
    font-size: 1.05rem;
}

.testimonial-author span {
    color: var(--light-text);
    font-size: 0.85rem;
}

/* ====== FAQ ====== */
.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

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

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

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

.faq-question::after {
    content: '+';
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 300;
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

.faq-answer p {
    margin: 0;
    color: var(--light-text);
}

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

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img { transform: scale(1.08); }

.blog-content { padding: 25px; }

.blog-meta {
    color: var(--primary-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 0.95rem;
    margin-bottom: 18px;
}

/* ====== PAGE BANNER ====== */
.page-banner {
    background: linear-gradient(135deg, rgba(10, 25, 41, 0.88), rgba(29, 53, 87, 0.88)),
                url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    padding: 100px 0 80px;
    color: var(--white);
    text-align: center;
}

.page-banner h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.breadcrumb a { color: var(--white); }
.breadcrumb a:hover { color: var(--primary-color); }
.breadcrumb-separator { color: rgba(255, 255, 255, 0.6); }

/* ====== SERVICE PAGE ====== */
.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.service-detail-content h2 {
    margin-top: 30px;
    font-size: 2rem;
}

.service-detail-content h3 {
    margin-top: 25px;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.service-detail-content img {
    width: 100%;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: var(--shadow);
}

.service-detail-content ul {
    list-style: none;
    margin: 20px 0;
}

.service-detail-content ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.service-detail-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--white);
    background: var(--primary-color);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.service-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-widget {
    background: var(--light-bg);
    padding: 30px 25px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.sidebar-services li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 0.92rem;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.sidebar-services li a:hover,
.sidebar-services li a.active {
    background: var(--primary-color);
    color: var(--white);
    border-left-color: var(--secondary-color);
    transform: translateX(5px);
}

.sidebar-services li a::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
}

.sidebar-cta h3 {
    color: var(--white);
    border: none;
    padding: 0;
    margin-bottom: 15px;
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.sidebar-cta .phone-large {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    display: block;
}

/* ====== CONTACT ====== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info-card {
    background: var(--light-bg);
    padding: 35px 30px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.contact-info-list {
    margin-top: 25px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.contact-info-item p {
    margin: 0;
    color: var(--light-text);
    font-size: 0.95rem;
}

.contact-info-item a:hover { color: var(--primary-color); }

.contact-form {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* ====== FOOTER ====== */
.footer {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.75);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-widget h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-logo img {
    max-height: 70px;
    margin-bottom: 20px;
    background: var(--white);
    padding: 8px 15px;
    border-radius: 8px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

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

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    font-size: 0.85rem;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--primary-color);
    margin-top: 4px;
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-contact-item p,
.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
    margin: 0;
}

.footer-contact-item a:hover { color: var(--primary-color); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 0;
    text-align: center;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a { color: var(--primary-color); }

/* ====== EMERGENCY CALL FLOAT ====== */
.emergency-float {
    position: fixed;
    right: 20px;
    bottom: 25px;
    z-index: 999;
    background: var(--primary-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(230, 57, 70, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 991px) {
    h1 { font-size: 2.4rem; }
    h2 { font-size: 2rem; }
    .hero h1 { font-size: 2.6rem; }
    .section { padding: 70px 0; }

    .menu-toggle { display: block; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 20px 20px;
        gap: 0;
        transition: right 0.4s ease;
        box-shadow: -5px 0 25px rgba(0,0,0,0.15);
        overflow-y: auto;
    }

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

    .nav-menu li { width: 100%; }

    .nav-menu > li > a {
        padding: 12px 15px;
        border-bottom: 1px solid #f0f0f0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        background: var(--light-bg);
        display: none;
        padding: 5px 0;
    }

    .nav-menu li.open .dropdown-menu { display: block; }

    .about-grid,
    .contact-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .top-bar-info { gap: 15px; font-size: 0.85rem; }
}

@media (max-width: 600px) {
    h1 { font-size: 2rem; }
    .hero h1 { font-size: 2.1rem; }
    .hero { min-height: 550px; }
    .section-header h2 { font-size: 1.8rem; }
    .section { padding: 55px 0; }

    .services-grid,
    .testimonials-grid,
    .blog-grid,
    .features-grid,
    .about-features,
    .footer-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .top-bar-content { justify-content: center; text-align: center; }
    .top-bar-info { justify-content: center; }
    .cta-content { text-align: center; flex-direction: column; }
    .cta-content h2 { font-size: 1.6rem; }
    .hero-buttons { justify-content: center; }
    .contact-form { padding: 28px 22px; }
}
