/* Base Styles */
:root {
    --primary: #1a6bb3;
    --secondary: #ff6b00;
    --dark: #333;
    --light: #f8f9fa;
    --gray: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark);
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--secondary);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background-color: #e05a00;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary);
}

.btn-primary:hover {
    background-color: #145a94;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--primary);
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--secondary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700;
}

.logo span {
    color: var(--secondary);
}

.logo-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-right: 10px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    font-weight: 600;
    color: var(--dark);
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary);
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover:after, nav ul li a.active:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
    background: none;
    border: none;
}

/* Page Header */
.page-header {
    background-color: var(--primary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-bottom: 60px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    padding: 0 60px;
    max-width: 800px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: white;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    text-align: center;
    padding: 30px 20px;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

/* Service Detail Pages */
.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail-card:nth-child(even) .service-detail-content {
    order: 1;
}

.service-detail-card:nth-child(even) .service-detail-img {
    order: 2;
}

.service-detail-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-content h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin: 25px 0 15px;
}

.service-detail-content ul {
    list-style-position: inside;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    color: var(--gray);
}

.service-cta {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Call to Action */
.cta-section {
    background-color: var(--primary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.phone-number {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    background-color: white;
    color: var(--primary);
    padding: 15px 30px;
    border-radius: 50px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Accessories Page */
.accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.accessory-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.accessory-card:hover {
    transform: translateY(-10px);
}

.accessory-img {
    height: 200px;
    overflow: hidden;
}

.accessory-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.accessory-card:hover .accessory-img img {
    transform: scale(1.05);
}

.accessory-info {
    padding: 20px;
}

.accessory-info h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.accessory-info p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

/* About Page */
.about-content {
    padding: 80px 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--light);
    border-radius: 8px;
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-info-card {
    background-color: var(--light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-detail i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 5px;
}

.map-placeholder {
    background-color: #eee;
    height: 300px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-weight: 600;
}

/* Footer */
footer {
    background-color: #222;
    color: #ddd;
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a:hover {
    color: var(--secondary);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--secondary);
    margin-right: 10px;
    margin-top: 5px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .slide-content {
        padding: 0 40px;
    }
    
    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-detail-card:nth-child(even) .service-detail-content,
    .service-detail-card:nth-child(even) .service-detail-img {
        order: initial;
    }
    
    .about-intro {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    nav ul.show {
        transform: translateY(0);
        opacity: 1;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .phone-number {
        font-size: 1.5rem;
        padding: 12px 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-cta {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 400px;
    }
    
    .slide-content {
        padding: 0 20px;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .phone-number {
        font-size: 1.3rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
}

/* About Page Specific Styles */

/* Team Section */
.team-section {
    padding: 60px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-img {
    height: 250px;
    overflow: hidden;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-img img {
    transform: scale(1.05);
}

.member-info {
    padding: 25px;
}

.member-info h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.member-role {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.member-info p {
    color: var(--gray);
    margin-bottom: 15px;
}

.member-contact {
    display: flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.member-contact i {
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background-color: var(--light);
    border-radius: 8px;
    margin: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-card h3 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-card p {
    color: var(--dark);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Service Area */
.service-area {
    padding: 60px 0;
}

.area-content {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.area-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.area-column ul {
    list-style: none;
}

.area-column ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.area-column ul li i {
    color: var(--secondary);
    margin-right: 10px;
    font-size: 1.1rem;
}

.area-note {
    padding: 15px;
    background-color: var(--light);
    border-left: 4px solid var(--secondary);
    border-radius: 4px;
    margin-top: 20px;
}

.area-note a {
    color: var(--primary);
    font-weight: 600;
}

.area-note a:hover {
    text-decoration: underline;
}

/* Partnerships */
.partnerships {
    padding: 60px 0;
}

.partners-content {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 15px;
    background-color: var(--light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.partner-logo:hover i {
    color: white;
}

.partner-logo i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.partner-logo span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Visit Info in CTA */
.visit-info {
    margin-top: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.visit-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.visit-info p i {
    margin-right: 15px;
    font-size: 1.2rem;
    min-width: 25px;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 60px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 40px 0;
}

.our-values {
    padding: 60px 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .area-list {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .area-content,
    .partners-content {
        padding: 25px;
    }
    
    .member-img {
        height: 200px;
    }
    
    .visit-info p {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .visit-info p i {
        margin-bottom: 5px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-logos {
        grid-template-columns: 1fr;
    }
    
    .stat-card h3 {
        font-size: 2.5rem;
    }
}

/* Alternative Slider with Image Tags */
.hero-slider-alt {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-bottom: 60px;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider-alt .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slider-alt .slide.active {
    opacity: 1;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-slider-alt .slide-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    padding: 0 60px;
    max-width: 800px;
    z-index: 2;
}

.hero-slider-alt .slide-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-slider-alt .slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* Contact Page - No Form Version */

/* Page Header */
.page-header {
    background-color: var(--primary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Contact Content */
.contact-content-section {
    padding: 60px 0;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.contact-intro h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-intro p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 40px;
}

.primary-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-highlight {
    display: flex;
    align-items: flex-start;
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary);
}

.contact-highlight i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-highlight h3 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.contact-highlight p {
    color: var(--gray);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.primary-phone, .emergency-phone {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 10px 0;
}

.response-time, .emergency-note {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
    margin-top: 10px;
}

/* Main Contact Methods */
.main-contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-method-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.method-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.method-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.contact-method-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.contact-method-card p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1rem;
}

.phone-numbers {
    margin: 20px 0;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    padding: 10px 20px;
    background-color: var(--light);
    border-radius: 30px;
    margin: 10px 0;
}

.phone-link i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.method-hours {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.method-hours h4 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.method-hours p {
    margin: 5px 0;
    font-size: 0.95rem;
}

.location-details {
    text-align: left;
    margin: 20px 0;
}

.location-details p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.location-details i {
    color: var(--primary);
    margin-right: 10px;
    margin-top: 3px;
}

.address {
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.5;
    margin-top: 10px;
}

.location-actions {
    margin-top: 20px;
}

.hours-details {
    margin: 20px 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    font-weight: 600;
    color: var(--dark);
}

.hours-item .time {
    color: var(--gray);
}

.hours-note {
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
    margin-top: 15px;
}

/* Location Map Section */
.location-map-section {
    margin-bottom: 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.map-container {
    height: 400px;
    background-color: var(--light);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
}

.map-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.map-info {
    text-align: center;
    max-width: 500px;
}

.map-info i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.8;
}

.map-info h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.location-address {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.location-instructions {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1rem;
}

.location-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.feature span {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Directions Section */
.directions-section {
    margin-top: 40px;
}

.directions-section h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 25px;
    text-align: center;
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.direction-method {
    text-align: center;
    padding: 25px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.direction-method i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.direction-method h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.direction-method p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Service Areas */
.service-areas-section {
    padding: 60px 0;
    background-color: var(--light);
    border-radius: 8px;
    margin: 40px 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.area-group {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.area-group h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light);
}

.area-group ul {
    list-style: none;
    padding: 0;
}

.area-group li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.area-group li i {
    color: var(--secondary);
    margin-right: 10px;
    font-size: 0.9rem;
}

.area-note {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
    margin-top: 30px;
}

.area-note p {
    margin: 0;
    display: flex;
    align-items: flex-start;
}

.area-note i {
    color: var(--secondary);
    margin-right: 10px;
    margin-top: 3px;
}

/* Contact Tips */
.contact-tips-section {
    padding: 60px 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tip-card {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.tip-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.tip-card h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 15px;
    margin-top: 10px;
}

.tip-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Emergency Contact Banner */
.emergency-contact-banner {
    background-color: #d32f2f;
    color: white;
    padding: 40px 0;
    margin: 40px 0;
}

.emergency-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;
}

.emergency-icon i {
    font-size: 3.5rem;
}

.emergency-text h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.emergency-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.emergency-info {
    display: flex;
    gap: 20px;
}

.emergency-info p {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 0.95rem;
}

.emergency-info i {
    margin-right: 8px;
}

.btn-emergency {
    background-color: white;
    color: #d32f2f;
    font-weight: 700;
    padding: 15px 25px;
    font-size: 1.1rem;
    white-space: nowrap;
}

.btn-emergency:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
}

.emergency-note {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 10px;
    opacity: 0.8;
}

/* Quick Contact Footer */
.quick-contact-footer {
    background-color: var(--dark);
    color: white;
    padding: 40px 0;
}

.quick-contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-summary h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: white;
}

.contact-summary p {
    color: #aaa;
    font-size: 1rem;
}

.contact-details {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-right: 15px;
}

.contact-item .label {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 3px;
}

.contact-item .value {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
    text-decoration: none;
}

.contact-item a.value:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .primary-contact {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .emergency-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .emergency-info {
        justify-content: center;
    }
    
    .quick-contact-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-details {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .main-contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-highlight i {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .location-features {
        flex-wrap: wrap;
    }
    
    .directions-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 60px 0;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .btn-emergency {
        width: 100%;
        text-align: center;
    }
    
    .emergency-info {
        flex-direction: column;
        gap: 10px;
    }
}

/* Add to your existing style.css */

/* Font Awesome fallback styles */
.icon-fallback {
    display: inline-block;
    width: 1em;
    height: 1em;
    text-align: center;
    line-height: 1;
    font-weight: bold;
}

/* Category icons with fallback */
.category-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.category-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

/* Brand icons fallback */
.brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.brand-name {
    font-weight: 600;
    color: var(--dark);
}

/* Tip icons fallback */
.tip-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: var(--secondary);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    margin-right: 10px;
    font-size: 0.8rem;
}

/* Contact icons */
.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

/* Make sure all icon containers have proper sizing */
.accessory-icon,
.method-icon,
.benefit-icon,
.contact-card-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.accessory-icon i,
.method-icon i,
.benefit-icon i,
.contact-card-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Test for Font Awesome loading */
.test-fa {
    display: none;
}

.test-fa:before {
    font-family: "Font Awesome 6 Free";
    content: "\f0c9";
    display: inline-block;
}

/* If Font Awesome loads, show elements */
.loaded .test-fa {
    display: inline-block;
}