/* styles.css - Modern Plumbing Website */
/* Professional corporate style, high resolution, fully responsive */
/* Updated with About Us section, Services+Why Choose combined, FAQ, Contact Details (no forms/maps), Poppins ExtraBold font */

/* ---------- RESET & BASE (Poppins Font) ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #1e2a3e;
    line-height: 1.4;
    overflow-x: hidden;
}

.site-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 30px rgba(0,0,0,0.02);
}

/* ---------- TOP BAR (dark navy blue) ---------- */
/* ---------- TOP BAR (dark navy blue) ---------- */
.top-bar {
    background-color: #0a1c2f;
    width: 100%;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.top-bar-left i {
    color: #e63946;
    font-size: 0.9rem;
}

.top-bar-right {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-right span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 400;
}

.top-bar-right i {
    font-size: 0.85rem;
    color: #e63946;
}

.top-bar-right a {
    color: white;
    text-decoration: none;
}

.top-bar-right a:hover {
    color: #e63946;
}

/* Responsive Mode: Show only phone number, hide everything else */
@media (max-width: 768px) {
    .top-bar {
        padding: 10px 20px;
        justify-content: center;
    }
    
    /* Hide left side heading/text */
    .top-bar-left {
        display: none;
    }
    
    /* Hide email and Financing text, keep only phone number */
    .top-bar-right span:first-child {
        display: none;
    }
    
    .top-bar-right span:last-child {
        display: none;
    }
    
    /* Show only phone number span */
    .top-bar-right span:nth-child(2) {
        display: inline-flex;
    }
    
    .top-bar-right {
        gap: 0;
        justify-content: center;
        width: auto;
    }
}

/* For very small screens (480px and below) - ensure phone number is clearly visible */
@media (max-width: 480px) {
    .top-bar {
        padding: 12px 16px;
    }
    
    .top-bar-right span:nth-child(2) {
        font-size: 0.9rem;
    }
    
    .top-bar-right span:nth-child(2) i {
        font-size: 1rem;
    }
}

/* ---------- HEADER / NAVIGATION ---------- */
.main-header {
    background-color: white;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    border-bottom: 1px solid #eef2f6;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-symbol {
    background-color: #e63946;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-symbol i {
    font-size: 24px;
    color: white;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.3px;
    color: #0a1c2f;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.logo-tag {
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: #e63946;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-menu ul li a {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #1e2a3e;
    transition: color 0.2s ease;
    letter-spacing: 0.3px;
    font-family: 'Poppins', sans-serif;
}

.nav-menu ul li a:hover {
    color: #e63946;
}

.cta-button-header .btn-red-header {
    background-color: #e63946;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 40px;
    display: inline-block;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.cta-button-header .btn-red-header:hover {
    background-color: #c72a3a;
    transform: scale(1.02);
}

/* ---------- HERO SECTION ---------- */
.hero-section {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero-bg.jpg') center center/cover no-repeat;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}

.hero-content-box {
    background: rgba(10, 28, 47, 0.8);
    backdrop-filter: blur(3px);
    border-radius: 24px;
    padding: 42px 48px;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 20px 35px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.15);
}

.hero-subtitle {
    color: #e63946;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.hero-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.hero-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
}

.hero-stars i {
    color: #ffb347;
    font-size: 1.3rem;
}

.hero-text {
    color: #f1f5f9;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 32px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-red-hero, .btn-blue-hero {
    text-decoration: none;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: 0.2s;
    display: inline-block;
}

.btn-red-hero {
    background-color: #e63946;
    color: white;
}

.btn-red-hero:hover {
    background-color: #c72a3a;
    transform: translateY(-2px);
}

.btn-blue-hero {
    background-color: #1e3a5f;
    color: white;
}

.btn-blue-hero:hover {
    background-color: #0f2c48;
    transform: translateY(-2px);
}

/* ---------- BOTTOM SERVICE STRIP ---------- */
.service-strip {
    background-color: #e63946;
    padding: 50px 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.service-strip-left {
    flex: 1;
    min-width: 240px;
}

.strip-heading {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.strip-paragraph {
    color: #fff2f2;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 400px;
}

.service-cards-row {
    flex: 2;
    display: flex;
    justify-content: flex-end;
    gap: 28px;
    flex-wrap: wrap;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 28px 18px;
    text-align: center;
    min-width: 140px;
    flex: 1;
    transition: transform 0.2s;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.service-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.8rem;
    color: #1e2a3e;
    margin-bottom: 12px;
}

.card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0a1c2f;
}

.card-desc {
    font-size: 0.8rem;
    color: #4a5568;
    font-weight: 500;
}

/* ---------- ABOUT US SECTION (newly added) ---------- */
.about-us-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 40px -12px rgba(0,0,0,0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-badge {
    display: inline-block;
    background: rgba(230,57,70,0.12);
    color: #e63946;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0a1c2f;
    line-height: 1.3;
    margin-bottom: 24px;
}

.about-content p {
    color: #334155;
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 1rem;
}

.about-content p strong {
    color: #e63946;
    font-weight: 700;
}

.about-location {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    padding: 16px 20px;
    background: #ffffff;
    border-radius: 60px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.05);
    border: 1px solid #eef2f6;
    width: fit-content;
}

.about-location i {
    font-size: 1.5rem;
    color: #e63946;
}

.about-location span {
    font-weight: 600;
    color: #0a1c2f;
    font-size: 0.95rem;
}

/* ---------- SERVICES & WHY CHOOSE COMBINED SECTION ---------- */
.services-why-combined {
    padding: 70px 40px;
    background-color: #f9fbfd;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-badge {
    background: rgba(230,57,70,0.12);
    color: #e63946;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 16px;
}

.section-header-center h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0a1c2f;
    margin-bottom: 18px;
    line-height: 1.3;
}

.section-header-center p {
    color: #4a5568;
    font-size: 1rem;
}

.combined-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    max-width: 1300px;
    margin: 0 auto;
}

.services-detailed {
    flex: 1.2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.service-item-detailed {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: white;
    padding: 18px 20px;
    border-radius: 20px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.03);
    transition: all 0.2s;
    border: 1px solid #edf2f7;
}

.service-item-detailed i {
    font-size: 2rem;
    color: #e63946;
    background: #fff0f0;
    padding: 12px;
    border-radius: 16px;
}

.service-item-detailed h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0a1c2f;
}

.service-item-detailed p {
    font-size: 0.8rem;
    color: #4a5568;
    line-height: 1.4;
}

.why-choose-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    background: #ffffff;
    padding: 28px;
    border-radius: 32px;
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.05);
}

.why-card {
    text-align: center;
    padding: 20px 12px;
    background: #fefefe;
    border-radius: 20px;
    transition: 0.2s;
}

.why-card i {
    font-size: 2.2rem;
    color: #e63946;
    margin-bottom: 14px;
}

.why-card h4 {
    font-weight: 800;
    margin-bottom: 8px;
    color: #0a1c2f;
}

.why-card p {
    font-size: 0.8rem;
    color: #5a6e85;
}

/* ---------- FAQ SECTION (Accordion) ---------- */
.faq-section {
    background: white;
    padding: 70px 40px;
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-badge {
    background: rgba(230,57,70,0.1);
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #e63946;
    display: inline-block;
    margin-bottom: 12px;
}

.faq-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #0a1c2f;
}

.faq-header p {
    color: #4a5568;
}

.faq-grid-accordion {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.2s;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: #0f2b3d;
    background: #fafcff;
}

.faq-question i {
    color: #e63946;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 28px;
    background: #ffffff;
    border-top: 0px solid transparent;
}

.faq-item.active .faq-answer {
    padding: 0 28px 24px 28px;
    border-top: 1px solid #eef2f6;
}

.faq-answer p {
    padding: 12px 0 0 0;
    color: #4a5568;
    line-height: 1.5;
}

/* ---------- CONTACT SIMPLE SECTION (long heading + phone button only) ---------- */
.contact-simple-section {
    background: linear-gradient(135deg, #0a1c2f 0%, #0e2740 100%);
    padding: 80px 40px;
}

.contact-simple-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-main-heading {
    margin-bottom: 40px;
}

.contact-main-heading h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.contact-call-button {
    display: flex;
    justify-content: center;
}

.btn-call-now {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background-color: #e63946;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    padding: 18px 42px;
    border-radius: 60px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
}

.btn-call-now i {
    font-size: 1.8rem;
}

.btn-call-now span {
    letter-spacing: 1px;
}

.btn-call-now:hover {
    background-color: #c72a3a;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(230,57,70,0.3);
}

/* Responsive adjustments */
@media (max-width: 780px) {
    .contact-simple-section {
        padding: 60px 24px;
    }
    
    .contact-main-heading h2 {
        font-size: 1.8rem;
    }
    
    .btn-call-now {
        font-size: 1.1rem;
        padding: 14px 32px;
    }
    
    .btn-call-now i {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .contact-simple-section {
        padding: 50px 20px;
    }
    
    .contact-main-heading h2 {
        font-size: 1.5rem;
    }
    
    .btn-call-now {
        font-size: 1rem;
        padding: 12px 24px;
        gap: 10px;
    }
    
    .btn-call-now i {
        font-size: 1.2rem;
    }
}

/* ---------- CONTACT DETAILS SECTION (no forms, no maps) ---------- */
/* ---------- CONTACT DETAILS SECTION (no forms, no maps) - FIXED OVERFLOW ---------- */
.contact-details-section {
    background: #0a1c2f;
    padding: 70px 20px;
}

.contact-details-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    border-radius: 40px;
    padding: 50px 32px;
    backdrop-filter: blur(2px);
}

.contact-left-highlight {
    text-align: center;
    margin-bottom: 48px;
}

.contact-left-highlight i {
    font-size: 3rem;
    color: #e63946;
    background: rgba(230,57,70,0.2);
    padding: 20px;
    border-radius: 60px;
    margin-bottom: 20px;
}

.contact-left-highlight h2 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.contact-left-highlight p {
    color: #cbd5e1;
    font-size: 1rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.contact-detail-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255,255,255,0.08);
    padding: 20px 18px;
    border-radius: 24px;
    transition: 0.2s;
    overflow: hidden;
    word-wrap: break-word;
}

.contact-detail-card i {
    font-size: 1.8rem;
    color: #e63946;
    min-width: 44px;
    flex-shrink: 0;
}

.contact-detail-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.contact-detail-text strong {
    color: white;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.contact-detail-text span {
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 4px;
    word-break: break-word;
    line-height: 1.4;
}

.contact-detail-text small {
    color: #94a3b8;
    font-size: 0.7rem;
}

.contact-note {
    text-align: center;
    background: rgba(230,57,70,0.2);
    padding: 14px 20px;
    border-radius: 60px;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    color: white;
    font-weight: 500;
}

.contact-note i {
    margin-right: 10px;
    color: #e63946;
}

/* Responsive adjustments for Contact section */
@media (max-width: 780px) {
    .contact-details-section {
        padding: 50px 16px;
    }
    
    .contact-details-wrapper {
        padding: 32px 20px;
    }
    
    .contact-info-grid {
        gap: 16px;
    }
    
    .contact-detail-card {
        padding: 16px 14px;
    }
    
    .contact-detail-card i {
        font-size: 1.5rem;
        min-width: 36px;
    }
    
    .contact-detail-text span {
        font-size: 0.85rem;
    }
    
    .contact-note {
        font-size: 0.85rem;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .contact-left-highlight h2 {
        font-size: 1.5rem;
    }
    
    .contact-detail-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-detail-card i {
        margin-bottom: 8px;
    }
    
    .contact-detail-text {
        align-items: center;
    }
    
    .contact-note span {
        display: inline-block;
        word-break: break-word;
    }
}

/* ---------- FOOTER (no contact details) ---------- */
/* ---------- FOOTER SECTION (General - No Contact Details, No Resources, No Location) ---------- */
.site-footer {
    background-color: #071624;
    color: #b9c7d9;
    padding: 60px 40px 30px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 45px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand {
    flex: 1.2;
    min-width: 260px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.footer-logo i {
    font-size: 2rem;
    color: #e63946;
}

.footer-logo span {
    font-weight: 800;
    font-size: 1.3rem;
    color: white;
    letter-spacing: -0.3px;
    font-family: 'Poppins', sans-serif;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #a0afc0;
    max-width: 350px;
}

.footer-links {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
    justify-content: flex-end;
}

.footer-nav-group h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.footer-nav-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-group ul li {
    margin-bottom: 12px;
}

.footer-nav-group ul li a {
    text-decoration: none;
    color: #b9c7d9;
    font-size: 0.85rem;
    transition: color 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.footer-nav-group ul li a:hover {
    color: #e63946;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #1e2f40;
    font-size: 0.75rem;
    color: #7f8fa4;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments for Footer */
@media (max-width: 780px) {
    .site-footer {
        padding: 45px 30px 25px;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 35px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-brand p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-links {
        justify-content: center;
        text-align: center;
        gap: 40px;
    }
    
    .footer-nav-group h4 {
        margin-bottom: 15px;
    }
    
    .footer-nav-group ul li {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 40px 20px 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .footer-logo span {
        font-size: 1.1rem;
    }
    
    .footer-brand p {
        font-size: 0.8rem;
    }
}

/* ---------- RESPONSIVE MODE ---------- */
@media (max-width: 1100px) {
    .main-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .nav-menu ul {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .service-strip {
        flex-direction: column;
        text-align: center;
    }
    .service-strip-left {
        text-align: center;
    }
    .strip-paragraph {
        margin-left: auto;
        margin-right: auto;
    }
    .service-cards-row {
        justify-content: center;
    }
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .about-location {
        margin-left: auto;
        margin-right: auto;
    }
    .combined-grid {
        flex-direction: column;
    }
    .services-detailed {
        grid-template-columns: 1fr;
    }
    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .top-bar {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 12px 20px;
    }
    .top-bar-right {
        justify-content: center;
        gap: 18px;
    }
    .hero-heading {
        font-size: 2rem;
    }
    .hero-content-box {
        padding: 28px 20px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .btn-red-hero, .btn-blue-hero {
        width: 80%;
        text-align: center;
    }
    .service-cards-row {
        gap: 16px;
    }
    .service-card {
        min-width: 140px;
    }
    .about-content h2 {
        font-size: 1.8rem;
    }
    .section-header-center h2 {
        font-size: 1.6rem;
    }
    .faq-question {
        padding: 16px 20px;
        font-size: 0.9rem;
    }
    .contact-details-wrapper {
        padding: 32px 24px;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
        text-align: center;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-logo {
        justify-content: center;
    }
    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .strip-heading {
        font-size: 1.6rem;
    }
    .hero-stars i {
        font-size: 1rem;
    }
    .card-icon {
        font-size: 2rem;
    }
    .about-content h2 {
        font-size: 1.5rem;
    }
    .contact-left-highlight h2 {
        font-size: 1.6rem;
    }
    .faq-header h2 {
        font-size: 1.6rem;
    }
    .why-choose-grid {
        gap: 16px;
    }
    .about-location span {
        font-size: 0.8rem;
    }
}