@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Lato:wght@400;700&display=swap');

:root {
    --primary-blue: #0066B3;
    --primary-dark: #004A82;
    --secondary-white: #FFFFFF;
    --accent-light-blue: #E6F3FF;
    --section-bg-1: #f4fafd;
    --section-bg-2: #fdf4fa;
    --section-bg-3: #f6fdf4;
    --text-dark: #333333;
    --text-gray: #666666;
    --bg-light: #F9FBFC;
    --danger: #D32F2F;
    --success: #388E3C;
    --border-radius: 8px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 179, 0.3);
}

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

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

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

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

/* Utility Classes */
.bg-1 { background-color: var(--section-bg-1); }
.bg-2 { background-color: var(--section-bg-2); }
.bg-3 { background-color: var(--section-bg-3); }

.section-padding { padding: 60px 0; }
.section-padding-small { padding: 40px 0; }
.section-padding-large { padding: 80px 0; }

.text-center { text-align: center; }
.text-white { color: var(--secondary-white) !important; }
.text-gray { color: var(--text-gray); }

.img-styled {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.rounded { border-radius: var(--border-radius); }

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.nav-call-btn {
    background-color: var(--primary-blue);
    color: white !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700 !important;
}

.nav-call-btn:hover {
    background-color: var(--primary-dark);
}

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

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

/* Feature & Service Icons */
.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.service-img-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin: -30px -30px 20px -30px; /* Offset card padding to make image full-width at top */
    width: calc(100% + 60px);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.service-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.service-icon svg {
    margin: 0 auto;
}

.large-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.feature-title-accent {
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.title-large {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.subtitle-bold {
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.card-padding { padding: 25px; }
.card-padding-small { padding: 20px; }

/* Page Specific & Helpers */
.inner-hero h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.inner-hero h1 {
    color: var(--secondary-white);
}

.about-hero {
    background-image: linear-gradient(rgba(0,102,179,0.8), rgba(0,102,179,0.8)), url('images/about-team.jpg');
}

.breadcrumb {
    margin: 20px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb span {
    opacity: 0.7;
}

.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-25 { margin-bottom: 25px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }

.fs-9 { font-size: 0.9rem; }

.italic-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.styled-list {
    padding-left: 20px;
    list-style-type: disc;
}

.mission-text {
    font-size: 1.1rem;
    border-left: 4px solid var(--primary-blue);
    padding-left: 20px;
}

.values-subgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.team-icon {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.phone-cta {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Services Page Specific */
.services-hero {
    background-image: linear-gradient(rgba(0,102,179,0.8), rgba(0,102,179,0.8)), url('images/hero-home.jpg');
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.service-item:nth-child(even) {
    direction: rtl;
}

.service-item:nth-child(even) .service-text {
    direction: ltr;
}

.service-text h2 {
    margin-bottom: 20px;
}

.service-text ul {
    margin-bottom: 25px;
    padding-left: 20px;
    list-style-type: disc;
}

.service-text li {
    margin-bottom: 8px;
}

.pricing-tag {
    display: inline-block;
    background-color: var(--accent-light-blue);
    color: var(--primary-blue);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 15px;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

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

.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.check-list i {
    color: var(--primary-blue);
    margin-right: 8px;
}

.rounded-map {
    border: 0;
    border-radius: var(--border-radius);
}

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

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: var(--box-shadow);
    cursor: pointer;
}

/* contact Page Specific */
.contact-hero-alt {
    background-image: linear-gradient(rgba(0,102,179,0.8), rgba(0,102,179,0.8)), url('images/contact-hero.jpg');
}

.method-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.method-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.method-value.whatsapp-color {
    font-size: 1.5rem;
    font-weight: 700;
    color: #25D366;
}

.emergency-title {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.emergency-phone {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.emergency-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.feature-icon-large {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.whatsapp-icon-large {
    font-size: 2.5rem;
    color: #25D366;
    margin-bottom: 15px;
}

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

.w-200 { width: 200px; }
.d-block { display: block; }
.mt-30 { margin-top: 30px; }

/* Reviews Page Specific */
.reviews-hero-alt {
    background-image: linear-gradient(rgba(0,102,179,0.8), rgba(0,102,179,0.8)), url('images/customer-review.jpg');
}

.rating-summary-box {
    background-color: var(--secondary-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    max-width: 400px;
    margin: -50px auto 50px;
    position: relative;
    z-index: 10;
}

.rating-number-xl {
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.stars-xl {
    color: #FFD700;
    font-size: 1.5rem;
    margin: 10px 0;
}

.stars-small {
    color: #FFD700;
    font-size: 1rem;
    margin: 5px 0;
}

.stars-extra-small {
    color: #FFD700;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.featured-card {
    border-left: 5px solid var(--primary-blue);
    background-color: var(--accent-light-blue);
}

.italic-quote-no-border {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
}

.video-placeholder {
    background: #000;
    height: 200px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.play-icon {
    font-size: 3rem;
    opacity: 0.7;
}

.qr-section {
    background-color: var(--accent-light-blue);
    padding: 50px;
    text-align: center;
    border-radius: var(--border-radius);
    margin-top: 50px;
}

.qr-container-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.qr-box {
    width: 150px;
    height: 150px;
    background: white;
    padding: 10px;
    border: 1px solid #ddd;
}

.qr-placeholder-inner {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #999;
}

.w-100 { width: 100%; }
.pt-20 { padding-top: 20px; }
.mt-15 { margin-top: 15px; }
.mb-30 { margin-bottom: 30px; }

.faq-item h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item p {
    display: none;
    margin-top: 15px;
    color: var(--text-gray);
}

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

/* Reviews Page Specific */
.reviews-hero {
    background-image: linear-gradient(rgba(0,102,179,0.8), rgba(0,102,179,0.8)), url('images/hero-home.jpg');
}

.review-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    text-align: center;
}

.rating-large {
    font-size: 2.5rem;
    color: #f1c40f;
    font-weight: 700;
}

.stars-gold {
    color: #f1c40f;
    margin-bottom: 5px;
}

.text-primary {
    color: var(--primary-blue);
}

/* Contact Page Specific */
.contact-hero {
    background-image: linear-gradient(rgba(0,102,179,0.8), rgba(0,102,179,0.8)), url('images/contact-hero.jpg');
}

@media (max-width: 768px) {
    .values-subgrid, .grid-2, .service-item, .review-stats-grid {
        grid-template-columns: 1fr;
    }
    .service-item {
        margin-bottom: 50px;
    }
    .service-item:nth-child(even) {
        direction: ltr;
    }
    .check-list {
        grid-template-columns: 1fr;
    }
    
    /* Reviews Responsiveness */
    .rating-summary-box {
        margin: 20px auto;
        padding: 30px 20px;
    }
    
    .rating-number-xl {
        font-size: 4rem;
    }
    
    .review-grid {
        grid-template-columns: 1fr;
    }

    /* Contact Responsiveness */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .emergency-title {
        font-size: 1.8rem;
    }

    .emergency-phone {
        font-size: 2rem;
    }
    
    .rating-number-xl {
        font-size: 4rem;
    }

    .rating-summary-box {
        padding: 30px 20px;
        margin-top: -30px;
    }
}

/* Header */
header {
    background-color: var(--secondary-white);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 9999; /* Higher z-index to stay above everything */
}


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

.logo img {
    max-width: 250px;
    height: auto;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .logo img {
        max-width: 180px;
    }
}

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

.nav-links li a {
    font-weight: 600;
    font-size: 0.95rem;
}

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

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}.know-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f1c40f; /* Yellow/Gold color like in screenshot */
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: auto; /* Push to bottom of card */
    transition: var(--transition);
}

.know-more-btn:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.hero#hero {
    background-image: url('images/hero-home.jpg');
}

.know-more-btn:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Floating Buttons */
.floating-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: var(--transition);
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-call {
    background-color: var(--primary-blue);
}

/* Pulse Animation */
@keyframes pulse-call {
    0% { box-shadow: 0 0 0 0 rgba(0, 102, 179, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 102, 179, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 102, 179, 0); }
}

.btn-call {
    animation: pulse-call 2s infinite;
}

/* Mobile Menu Fix */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: fixed; /* Fixed instead of absolute for better sticky alignment */
        top: 70px; /* Aligned to header height */
        left: 0;
        background: white;
        padding: 30px 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 9998;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: left;
        margin: 15px 0;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 10px;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-call-btn {
        display: inline-block;
        width: auto;
        margin-top: 10px;
    }
}

/* Footer */
footer {
    background-color: #003b67;
    color: #f0f7ff;
    padding: 60px 0 0; /* Remove bottom padding as copyright bar will follow */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    color: var(--secondary-white);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-info p {
    margin-bottom: 20px;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: var(--secondary-white);
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-blue);
}

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

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

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

.footer-bottom {
    background-color: #003b67;
    border-top: 1px solid #ffffff;
    padding: 20px 0;
    text-align: center;
    font-size: 0.95rem;
    color: white;
    width: 100%;
}

.footer-bottom p {
    margin: 0;
    font-weight: 500;
}

.footer-bottom a {
    color: white !important;
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--accent-light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-blue);
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.social-icons a:hover {
    background-color: var(--secondary-white);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-icons a.fa-facebook-f:hover { color: #1877F2; }
.social-icons a.fa-instagram:hover { color: #E4405F; }
.social-icons a.fa-whatsapp:hover { color: #25D366; }

/* Hero Section */
.hero {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--secondary-white);
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-content h1 {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Cards */
.card {
    background-color: var(--secondary-white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    overflow: hidden; /* Ensure image corners are clipped */
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    header {
        position: static;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Brand Slider Styles */
.brand-slider {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    width: 100%;
}

.brand-track {
    display: flex;
    width: calc(250px * 36); /* Enough width for 18 logos duplicated */
    animation: scroll 40s linear infinite;
}

.brand-track:hover {
    animation-play-state: paused;
}

.brand-logo-item {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}

.brand-logo-item img {
    max-width: 150px;
    max-height: 60px;
    transition: var(--transition);
    object-fit: contain;
}

.brand-logo-item img:hover {
    transform: scale(1.15);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 18)); }
}

@media (max-width: 768px) {
    .brand-logo-item {
        width: 150px;
        padding: 0 20px;
    }
    .brand-logo-item img {
        max-width: 100px;
        max-height: 40px;
    }
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-150px * 18)); }
    }
}

/* Review Cards */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
}

.featured-card {
    border-left: 5px solid var(--primary-blue);
    background-color: var(--accent-light-blue);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.customer-name {
    font-weight: 700;
    color: var(--primary-dark);
    display: block;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Contact Page Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-box {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 100%;
}

.contact-info-box h3 {
    margin-bottom: 25px;
    color: var(--primary-dark);
}

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

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    width: 40px;
    height: 40px;
    background: var(--accent-light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-method div {
    flex: 1;
}

/* Form Styling */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 179, 0.1);
}

/* Emergency Banner */
.emergency-banner {
    background: var(--danger);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.emergency-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.emergency-phone {
    font-size: 2.5rem;
    font-weight: 700;
}

.emergency-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Helper Classes */
.mx-auto-800 {
    max-width: 800px;
    margin: 0 auto;
}

.gap-20 { gap: 20px; }
.pt-20 { padding-top: 20px; }

/* Final Responsive Adjustments */
@media (max-width: 768px) {
    .review-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-box {
        padding: 30px 20px;
    }
    
    .emergency-title {
        font-size: 1.8rem;
    }
    
    .inner-hero h1 {
        font-size: 2rem;
    }
}
