/* --- Base & Reset --- */
*, *::before, *::after { box-sizing: border-box; }

html, body {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: #333;
}

body {
    background-image: url('../assets/images/bgimagehome.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #020448; 
    min-height: 100vh;
    overflow-x: hidden;
}

/* --- Preloader --- */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #020448; z-index: 9999;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.fade-out { opacity: 0; visibility: hidden; }
.glow-logo-container { width: 250px; margin-bottom: 40px; }
.pulse-logo { width: 100%; height: auto; display: block; filter: drop-shadow(0 0 15px rgba(227, 70, 22, 0.4)); animation: pulseGlow 1.8s ease-in-out infinite alternate; }
.loading-line { width: 180px; height: 3px; background: rgba(255, 255, 255, 0.1); border-radius: 5px; overflow: hidden; }
.loading-progress { width: 0%; height: 100%; background: #e34616; animation: loadLine 2.5s cubic-bezier(0.8, 0, 0.2, 1) forwards; }

@keyframes pulseGlow {
    from { transform: scale(0.98); filter: drop-shadow(0 0 10px rgba(227, 70, 22, 0.3)); }
    to { transform: scale(1.03); filter: drop-shadow(0 0 25px rgba(227, 70, 22, 0.7)); }
}
@keyframes loadLine { 0% { width: 0%; } 40% { width: 60%; } 100% { width: 100%; } }

/* --- Premium Navbar --- */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(2, 4, 72, 0.98); padding: 0 40px; height: 100px;
    position: sticky; top: 0; z-index: 1001; width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4); border-bottom: 2px solid #e34616;
}
.logo-container { flex: 1; display: flex; justify-content: flex-start; }
.logo-container img { height: 75px; width: auto; display: block; }
.navbar-links { flex: 2; display: flex; justify-content: center; gap: 30px; }
.navbar-links a {
    color: #ffffff; font-weight: 600; text-decoration: none; font-size: 15px; 
    padding: 10px 0; transition: color 0.3s ease; letter-spacing: 1px;
    text-transform: uppercase; position: relative;
}
.navbar-links a::after {
    content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 50%;
    background-color: #e34616; transition: all 0.3s ease; transform: translateX(-50%);
}
.navbar-links a:hover::after, .navbar-links a.active::after { width: 100%; }
.navbar-links a:hover, .navbar-links a.active { color: #e34616; }
.navbar-socials { flex: 1; display: flex; justify-content: flex-end; gap: 20px; align-items: center; }
.navbar-socials a { color: #ffffff; font-size: 1.4rem; transition: all 0.3s ease; }
.navbar-socials a:hover { color: #e34616; transform: translateY(-3px); }

/* --- General Typography & Elements --- */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { color: #020448; font-size: 2.8rem; font-weight: 900; margin-bottom: 10px; text-transform: uppercase;}
.section-header p { color: #555; font-size: 1.2rem; max-width: 600px; margin: 0 auto; }
.accent-line { width: 60px; height: 4px; background: #e34616; border-radius: 2px; margin-bottom: 20px; }
.accent-line-center { width: 80px; height: 4px; background: #e34616; border-radius: 2px; margin: 0 auto 20px auto; }
.cta-button {
    display: inline-block; margin-top: 20px; padding: 15px 35px;
    background: linear-gradient(135deg, #e34616, #bf360e);
    color: white; text-decoration: none; font-weight: 700; font-size: 1.1rem;
    border-radius: 50px; box-shadow: 0 8px 20px rgba(227, 70, 22, 0.4);
    transition: all 0.3s ease; border: none; cursor: pointer;
}
.cta-button:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 25px rgba(227, 70, 22, 0.6); }

/* --- Hero Section --- */
.hero-section { padding: 40px 20px; }
.text-container1 {
    display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
    max-width: 1200px; margin: auto; padding: 50px; background: rgba(255, 255, 255, 0.95);
    border-radius: 20px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); 
    border: 1px solid rgba(255, 255, 255, 0.5); gap: 40px;
}
.text-content { flex: 1; min-width: 300px; }
.h1-style1 { color: #020448; font-size: 4.5rem; font-weight: 900; margin: 0; line-height: 1.1; letter-spacing: -1.5px; }
.h1-style2 { color: #e34616; font-size: 3.5rem; font-weight: 900; margin: 5px 0 20px 0; line-height: 1.1; }
.lead-text { font-weight: 700; font-size: 1.6rem; color: #333; margin-bottom: 10px; }
.text-content p { color: #555; font-size: 1.15rem; margin: 0 0 20px 0; line-height: 1.6; }
.video-container {
    flex: 0 1 auto; width: 100%; max-width: 260px; margin: 0 auto; border-radius: 15px; 
    overflow: hidden; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); 
    border: 4px solid white; transition: transform 0.5s ease;
}
.video-container:hover { transform: scale(1.02); }
.video-player { width: 100%; height: auto; max-height: 450px; object-fit: cover; display: block; }

/* --- Stats Bar --- */
.stats-bar {
    background: #020448; max-width: 1200px; margin: 0 auto 80px auto; border-radius: 15px; 
    padding: 40px; display: flex; justify-content: space-around; flex-wrap: wrap; box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
.stat-item { text-align: center; padding: 10px 20px; }
.stat-number { color: #e34616; font-size: 3.5rem; font-weight: 900; margin: 0 0 5px 0; }
.stat-label { color: #ffffff; font-size: 1.1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin: 0; }

/* --- Services Header Box --- */
.services-header-box {
    background: rgba(255, 255, 255, 0.95); border-radius: 20px; padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); border: 1px solid rgba(255, 255, 255, 0.5);
    max-width: 800px; margin: 0 auto 50px auto;
}
.services-header-box .section-header { margin-bottom: 0; }
.services-section .section-header h2, .core-values-section .section-header h2,
.services-section .section-header p, .core-values-section .section-header p { color: #000000; }

/* --- Services Grid --- */
.services-section { max-width: 1200px; margin: 0 auto 80px auto; padding: 0 20px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card {
    background: rgba(255, 255, 255, 0.95); padding: 40px 30px; border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05); text-align: center;
    transition: all 0.4s ease; border-bottom: 4px solid transparent;
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-bottom-color: #e34616; }
.service-icon { font-size: 3.5rem; color: #020448; margin-bottom: 20px; display: inline-block; transition: color 0.3s ease;}
.service-card:hover .service-icon { color: #e34616; }
.service-card h3 { color: #020448; font-size: 1.5rem; font-weight: 800; margin: 0 0 15px 0; }
.service-card p { color: #666; font-size: 1.05rem; line-height: 1.6; margin: 0; }

/* --- Brand Promises / Guarantees --- */
.guarantee-section {
    max-width: 1200px; margin: 0 auto 80px auto; padding: 60px; background: #ffffff; 
    border-radius: 20px; display: flex; align-items: center; gap: 50px; box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.guarantee-content { flex: 1; }
.guarantee-content h2 { color: #020448; font-size: 2.8rem; font-weight: 900; margin: 0 0 10px 0; }
.guarantee-intro { color: #555; font-size: 1.15rem; line-height: 1.7; margin-bottom: 30px; }
.guarantee-list { display: flex; flex-direction: column; gap: 25px; }
.guarantee-item { display: flex; align-items: flex-start; gap: 20px; }
.guarantee-item i { font-size: 2.5rem; color: #e34616; background: rgba(227, 70, 22, 0.1); padding: 15px; border-radius: 12px; }
.guarantee-item h4 { color: #020448; font-size: 1.3rem; margin: 0 0 8px 0; font-weight: 800; }
.guarantee-item p { color: #666; margin: 0; line-height: 1.5; font-size: 1.05rem; }
.guarantee-image { flex: 1; display: flex; justify-content: center; align-items: center; }
.guarantee-photo { width: 100%; height: 550px; object-fit: cover; border-radius: 20px; box-shadow: 0 15px 30px rgba(0,0,0,0.15); transform: rotate(-3deg); transition: transform 0.5s ease; }
.guarantee-section:hover .guarantee-photo { transform: rotate(0deg); }

/* --- Insurance Partners --- */
.insurance-section { max-width: 1200px; margin: 0 auto 80px auto; padding: 40px 20px; background: rgba(255,255,255,0.9); border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05);}
.insurance-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.insurance-logo-box {
    width: calc(20% - 20px); min-width: 140px; height: 100px; background: #f4f6f9; 
    border: 1px solid #e1e4e8; border-radius: 10px; display: flex; justify-content: center; align-items: center;
    transition: all 0.3s ease; text-decoration: none; overflow: hidden; 
}
.insurance-logo-box:hover { background: #ffffff; box-shadow: 0 8px 20px rgba(0,0,0,0.1); transform: translateY(-3px); border-color: #020448; }
.insurance-logo-box img { max-width: 80%; max-height: 80%; object-fit: contain; display: block; }

/* --- Form Styles --- */
.quote-section { max-width: 1200px; margin: 0 auto 80px auto; padding: 0 20px; }
.quote-container { background: #020448; border-radius: 20px; display: flex; overflow: hidden; box-shadow: 0 20px 50px rgba(2, 4, 72, 0.3); flex-wrap: wrap; }
.quote-text { flex: 1; padding: 60px; color: white; display: flex; flex-direction: column; justify-content: center; min-width: 300px; }
.quote-text h2 { font-size: 3rem; font-weight: 900; margin: 0 0 20px 0; color: #ffffff;}
.quote-text p { font-size: 1.2rem; line-height: 1.6; opacity: 0.9; }
.quote-form { flex: 1.5; background: #ffffff; padding: 60px; display: flex; flex-direction: column; gap: 20px; min-width: 300px; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; padding: 15px 20px; border: 2px solid #e1e4e8; border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 1rem; color: #333; transition: border-color 0.3s ease; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { outline: none; border-color: #e34616; }
.form-row { display: flex; gap: 20px; width: 100%; }
.submit-btn { width: 100%; margin-top: 10px; font-size: 1.2rem; padding: 18px; }

/* --- CTA Banner (This was the missing code!) --- */
.cta-banner {
    background: linear-gradient(135deg, #020448, #010224);
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 0;
    border-top: 4px solid #e34616;
}
.cta-banner h2 {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 900;
    margin: 0 0 15px 0;
}
.cta-banner p {
    color: #a0a5b5;
    font-size: 1.2rem;
    margin: 0 auto 30px auto;
    max-width: 800px;
}

/* --- Footer --- */
footer { background: #010224; color: #a0a5b5; padding: 80px 20px 20px 20px; border-top: 5px solid #e34616; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.footer-logo { height: 70px; margin-bottom: 20px; }
.brand-col p { line-height: 1.7; font-size: 1rem; max-width: 300px; }
.footer-col h4 { color: #ffffff; font-size: 1.2rem; font-weight: 700; margin: 0 0 25px 0; letter-spacing: 1px; }
.footer-col a { display: block; color: #a0a5b5; text-decoration: none; margin-bottom: 12px; transition: color 0.3s ease; }
.footer-col a:hover { color: #e34616; }
.footer-col p { margin: 0 0 15px 0; line-height: 1.6; }
.footer-col i { color: #e34616; margin-right: 10px; }
.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-links a { display: flex; justify-content: center; align-items: center; width: 40px; height: 40px; background: rgba(255,255,255,0.05); border-radius: 50%; color: #ffffff; transition: all 0.3s ease; margin: 0; }
.social-links a:hover { background: #e34616; transform: translateY(-3px); color: #ffffff; }
.hours-text { margin-top: 20px !important; padding-top: 15px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; }

/* --- Floating WhatsApp --- */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; padding: 12px 24px; background-color: #25d366; 
    color: white; border-radius: 50px; display: flex; justify-content: center; align-items: center;
    font-size: 24px; text-decoration: none; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2000; transition: all 0.3s ease;
}
.whatsapp-text { font-size: 16px; font-weight: 700; margin-left: 10px; font-family: 'Inter', sans-serif; }
.whatsapp-float:hover { background-color: #128c7e; color: white; transform: scale(1.05) translateY(-5px); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4); }

/* ============================================================
   SUBPAGE STYLES (Services, About, Contact)
   ============================================================ */

.page-header { background-color: rgba(2, 4, 72, 0.85); background-blend-mode: multiply; padding: 80px 20px; text-align: center; border-bottom: 4px solid #e34616; }
.page-header h1 { color: #ffffff; font-size: 3.5rem; font-weight: 900; margin: 0 0 15px 0; text-transform: uppercase; letter-spacing: 1px;}
.page-header p { color: #a0a5b5; font-size: 1.2rem; max-width: 700px; margin: 0 auto; line-height: 1.6;}

/* Detailed Services Layout */
.services-detailed { max-width: 1200px; margin: 80px auto; padding: 0 20px; display: flex; flex-direction: column; gap: 80px; }
.service-row { display: flex; align-items: center; gap: 50px; background: #ffffff; border-radius: 20px; padding: 40px; box-shadow: 0 15px 40px rgba(0,0,0,0.06); transition: transform 0.4s ease, box-shadow 0.4s ease;}
.service-row:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.service-row.reverse { flex-direction: row-reverse; }
.service-image-col { flex: 1; min-width: 300px; border-radius: 15px; overflow: hidden; }
.service-image-col img { width: 100%; height: 400px; display: block; object-fit: cover; border-radius: 15px; }
.img-placeholder { width: 100%; height: 350px; background: linear-gradient(135deg, #f4f6f9, #e1e4e8); border-radius: 15px; display: flex; justify-content: center; align-items: center; font-size: 5rem; color: #a0a5b5; border: 2px dashed #ccc;}
.service-text-col { flex: 1.2; min-width: 300px; }
.service-text-col h2 { color: #020448; font-size: 2.2rem; font-weight: 800; margin: 0 0 20px 0; }
.service-text-col p { color: #555; font-size: 1.15rem; line-height: 1.7; margin: 0 0 25px 0; }
.service-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.service-features li { font-size: 1.05rem; color: #333; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.service-features i { color: #e34616; font-size: 1.2rem; }

/* About Us Page Layout */
.about-story-section, .facilities-section { padding: 40px 20px; }
.about-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 60px; background: rgba(255, 255, 255, 0.95); border-radius: 20px; padding: 50px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); border: 1px solid rgba(255, 255, 255, 0.5);}
.about-container.reverse-layout { flex-direction: row-reverse; }
.story-content { flex: 1; min-width: 300px; }
.story-content h2 { color: #020448; font-size: 2.5rem; font-weight: 900; margin: 0 0 20px 0; }
.story-content p { color: #555; font-size: 1.15rem; line-height: 1.8; margin: 0 0 20px 0; }
.facility-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 15px; }
.facility-list li { font-size: 1.1rem; color: #333; line-height: 1.6; display: flex; align-items: flex-start; gap: 10px; }
.facility-list i { color: #e34616; font-size: 1.3rem; margin-top: 2px; }
.story-image { flex: 1; min-width: 300px; border-radius: 20px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.story-image img { width: 100%; height: auto; display: block; object-fit: cover; }

/* Core Values Section */
.core-values-section { max-width: 1200px; margin: 0 auto 40px auto; padding: 0 20px; }
.values-wrapper-box { background: rgba(255, 255, 255, 0.95); border-radius: 20px; padding: 60px 40px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); border: 1px solid rgba(255, 255, 255, 0.5);}
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.value-card { background: #020448; padding: 50px 40px; border-radius: 20px; text-align: center; color: white; transition: transform 0.4s ease, box-shadow 0.4s ease; border-bottom: 5px solid #e34616;}
.value-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(2, 4, 72, 0.3); }
.value-card i { font-size: 3.5rem; color: #e34616; margin-bottom: 20px; display: inline-block; }
.value-card h3 { font-size: 1.6rem; font-weight: 800; margin: 0 0 15px 0; }
.value-card p { font-size: 1.1rem; line-height: 1.6; opacity: 0.9; margin: 0; }

/* Contact Us Page Layout */
.contact-main-section { max-width: 1200px; margin: 80px auto; padding: 0 20px; display: flex; gap: 40px; align-items: stretch; }
.contact-info-col { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.contact-info-card { background: rgba(255, 255, 255, 0.95); padding: 35px 30px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); border: 1px solid rgba(255, 255, 255, 0.5); display: flex; align-items: center; gap: 25px; transition: transform 0.3s ease;}
.contact-info-card:hover { transform: translateY(-5px); }
.contact-info-card i { font-size: 2.5rem; color: #e34616; background: rgba(227, 70, 22, 0.1); padding: 15px; border-radius: 12px; }
.contact-info-card h3 { color: #020448; margin: 0 0 5px 0; font-size: 1.3rem; font-weight: 800; }
.contact-info-card p { color: #555; margin: 0; line-height: 1.5; font-size: 1.05rem; }
.contact-form-col { flex: 1.5; }
.contact-form-box { background: rgba(255, 255, 255, 0.95); padding: 50px; border-radius: 20px; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); border: 1px solid rgba(255, 255, 255, 0.5); height: 100%; box-sizing: border-box;}
.contact-form-box h2 { color: #000000; font-size: 2.4rem; font-weight: 900; margin: 0 0 10px 0; }
.contact-form-box p { color: #555; font-size: 1.1rem; margin: 0 0 30px 0; }

/* Locations Section */
.locations-section { max-width: 1200px; margin: 0 auto 80px auto; padding: 0 20px; }
.locations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; }
.location-card { background: rgba(255, 255, 255, 0.95); border-radius: 20px; overflow: hidden; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); border: 1px solid rgba(255, 255, 255, 0.5); transition: transform 0.4s ease;}
.location-card:hover { transform: translateY(-10px); }
.map-container { width: 100%; height: 300px; background: #e1e4e8; }
.map-container iframe { width: 100%; height: 100%; border: none; }
.location-details { padding: 30px; text-align: center; }
.location-details h3 { color: #020448; font-size: 1.5rem; font-weight: 800; margin: 0 0 15px 0; }
.location-details p { color: #555; font-size: 1.05rem; line-height: 1.6; margin: 0 0 20px 0; }
.directions-link { display: inline-flex; align-items: center; color: #e34616; font-weight: 700; text-decoration: none; font-size: 1.1rem; transition: color 0.3s ease;}
.directions-link:hover { color: #020448; }
.directions-link i { font-size: 1.5rem; margin-left: 5px; }


/* ============================================================
   RESPONSIVE DESIGN (BALANCED TYPOGRAPHY)
   ============================================================ */

@media (max-width: 1024px) {
    .h1-style1 { font-size: 3.5rem; }
    .h1-style2 { font-size: 2.5rem; }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .guarantee-section { flex-direction: column; padding: 40px; }
    .guarantee-photo { height: 350px; }
}

@media (max-width: 900px) {
    .service-row, .service-row.reverse,
    .about-container, .about-container.reverse-layout,
    .contact-main-section { flex-direction: column; text-align: center; padding: 30px 20px; gap: 30px; }
    .contact-main-section { padding: 0; }
    .contact-info-card { flex-direction: column; text-align: center; }
    .form-row { flex-direction: column; gap: 20px;}
    .values-wrapper-box, .contact-form-box { padding: 40px 20px; }
    .service-features li, .facility-list li { justify-content: center; text-align: left; }
    .service-image-col img, .img-placeholder { height: 250px; }
}

/* Mobile Phones */
@media (max-width: 768px) {
    /* Navbar */
    .navbar { flex-direction: column; padding: 15px 10px; height: auto; gap: 10px; }
    .logo-container { justify-content: center; width: 100%; margin-bottom: 5px; }
    .logo-container img { height: 50px; } 
    .navbar-links { flex-wrap: wrap; justify-content: center; gap: 12px 15px; width: 100%; margin-bottom: 5px; }
    .navbar-links a { font-size: 12px; } 
    .navbar-socials { justify-content: center; width: 100%; }
    .navbar-socials a { font-size: 1.1rem; }
    
    /* Safe margins */
    .text-container1, .stats-bar, .services-header-box, .guarantee-section, 
    .insurance-section, .quote-container, .about-container, 
    .values-wrapper-box, .contact-form-box, .location-card {
        margin-left: 15px !important; margin-right: 15px !important; width: auto !important;
    }
    
    /* Global Buttons */
    .cta-button { font-size: 0.95rem; padding: 12px 25px; }
    
    /* Hero Section */
    .text-container1 { padding: 25px 15px; gap: 20px; text-align: center; display: flex; flex-direction: column; }
    .text-content { display: flex; flex-direction: column; align-items: center; }
    .h1-style1 { font-size: 2rem; letter-spacing: -1px; } 
    .h1-style2 { font-size: 1.4rem; margin-bottom: 10px; } 
    .lead-text { font-size: 1rem; margin-bottom: 5px; } 
    .text-content p { font-size: 0.9rem; } 
    .video-container { max-width: 220px; }
    
    /* Homepage Headers */
    .section-header h2, .guarantee-content h2, .quote-text h2, .cta-banner h2 { font-size: 1.8rem; } 
    .section-header p { font-size: 0.9rem; } 
    
    /* Subpage Text Balancing */
    .page-header h1 { font-size: 2rem; }
    .page-header p { font-size: 0.95rem; }
    .story-content h2, .service-text-col h2, .contact-form-box h2 { font-size: 1.8rem; }
    .story-content p, .service-text-col p, .facility-list li, .service-features li, .contact-form-box p { font-size: 0.95rem; }
    .contact-info-card h3, .location-details h3 { font-size: 1.1rem; }
    .contact-info-card p, .location-details p { font-size: 0.9rem; }
    .directions-link { font-size: 0.95rem; }

    /* The List View (Services & Values) */
    .services-grid, .values-grid { gap: 15px; display: flex; flex-direction: column; }
    .service-card, .value-card { display: flex; flex-direction: row; text-align: left; align-items: flex-start; padding: 15px; gap: 12px;}
    .service-icon, .value-card i { font-size: 1.6rem; margin-bottom: 0; margin-top: 3px; }
    .service-card h3, .value-card h3 { font-size: 1.1rem; margin: 0 0 5px 0; } 
    .service-card p, .value-card p { font-size: 0.85rem; } 

    /* Guarantee Section */
    .guarantee-section { padding: 25px 15px; gap: 25px; }
    .guarantee-item { flex-direction: row; text-align: left; gap: 12px; align-items: flex-start;}
    .guarantee-item i { font-size: 1.3rem; padding: 10px; margin-bottom: 0; }
    .guarantee-item h4 { font-size: 1rem; margin-bottom: 5px; } 
    .guarantee-item p { font-size: 0.85rem; } 

    /* Stats */
    .stats-bar { padding: 15px 10px; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 30px; }
    .stat-item { width: 40%; margin-bottom: 5px; padding: 5px; } 
    .stat-number { font-size: 2rem; margin-bottom: 0;} 
    .stat-label { font-size: 0.8rem; } 
    
    /* Form */
    .quote-section { margin-bottom: 40px; }
    .quote-container { flex-direction: column; }
    .quote-text, .quote-form { padding: 25px 15px; }
    .quote-form input, .quote-form select, .quote-form textarea { padding: 10px 12px; font-size: 0.9rem; } 
    .submit-btn { font-size: 1rem; }
    
    /* Footer */
    footer { padding: 30px 0 15px 0; } 
    .footer-container { grid-template-columns: 1fr; gap: 25px; text-align: center; margin-bottom: 10px; padding: 0 20px; }
    .brand-col p { margin: 0 auto; font-size: 0.85rem; } 
    .footer-logo { height: 45px; margin-bottom: 10px; } 
    .footer-col h4 { margin-bottom: 10px; font-size: 1rem; } 
    .footer-col a, .footer-col p { font-size: 0.85rem; } 
    .social-links { justify-content: center; margin-top: 10px; }
    .hours-text { padding-top: 10px; margin-top: 10px !important; }
    
    /* WhatsApp */
    .whatsapp-float { bottom: 15px; right: 15px; padding: 10px 20px; }
    .whatsapp-text { font-size: 13px; }
}

/* Very Small Phones */
@media (max-width: 480px) {
    .h1-style1 { font-size: 1.75rem; }
    .h1-style2 { font-size: 1.25rem; }
    .section-header h2, .guarantee-content h2, .quote-text h2, .cta-banner h2 { font-size: 1.5rem; }
    .page-header h1 { font-size: 1.6rem; }
    .story-content h2, .service-text-col h2, .contact-form-box h2 { font-size: 1.5rem; }
    
    .stat-item { width: 45%; } 
    .stat-number { font-size: 1.6rem; }
    
    .insurance-grid { gap: 10px; }
    .insurance-logo-box { width: calc(50% - 10px); height: 60px; }
    
    .whatsapp-text { display: none; } 
    .whatsapp-float { padding: 12px; border-radius: 50%; }
}