/* Page-Specific Styling Fixes */

/* ============================================
   SERVICES PAGE FIXES
   ============================================ */

.services-overview {
    padding: 5rem 0;
    background: #f8f9fa;
}

.services-main-grid {
    display: grid;
    gap: 4rem;
    margin-bottom: 4rem;
}

.service-main-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-main-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.service-main-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.service-main-card:nth-child(even) .service-main-image {
    order: 2;
}

.service-main-card:nth-child(even) .service-main-content {
    order: 1;
}

.service-main-image {
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

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

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

.service-main-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-main-content h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-main-content > p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.service-main-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.service-main-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}

.service-main-list li:last-child {
    border-bottom: none;
}

.service-main-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.additional-services {
    padding: 5rem 0;
    background: white;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.additional-service-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.additional-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
    background: white;
}

.additional-service-card .service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.additional-service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.additional-service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.why-choose-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.why-choose-section .section-header h2,
.why-choose-section .section-header p {
    color: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-choose-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.why-choose-item .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.why-choose-item h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-choose-item p {
    opacity: 0.95;
    line-height: 1.7;
}

/* ============================================
   SHOPFRONTS PAGE - INDUSTRIES SECTION FIX
   ============================================ */

.industries-served {
    padding: 5rem 0;
    background: white;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.industry-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.industry-card:hover::before {
    transform: scaleX(1);
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
    background: white;
}

.industry-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.industry-card h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.industry-card p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.industry-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-features li {
    padding: 0.6rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #444;
    font-size: 1rem;
}

.industry-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* ============================================
   REGIONAL LOCATION PAGES FIX
   ============================================ */

.regional-intro {
    padding: 4rem 0;
    background: white;
}

.regional-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.regional-text h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.regional-text p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

.regional-highlights {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
}

.regional-highlights h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.regional-highlights ul {
    list-style: none;
    padding: 0;
}

.regional-highlights li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #444;
    font-size: 1.05rem;
}

.regional-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.areas-served {
    padding: 4rem 0;
    background: #f8f9fa;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.area-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.area-item h4 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.area-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.services-offered {
    padding: 4rem 0;
    background: white;
}

.service-features {
    padding: 4rem 0;
    background: white;
}

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

.service-features .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

.services-offered-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-offered-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-offered-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.service-offered-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-offered-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-offered-card ul {
    list-style: none;
    padding: 0;
}

.service-offered-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-offered-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

/* ============================================
   LOCATIONS PAGE FIXES
   ============================================ */

.coverage-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 900px;
    margin: 3rem auto 0;
    text-align: left;
}

.coverage-column h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.coverage-column ul {
    list-style: none;
    padding: 0;
}

.coverage-column li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    font-size: 1.05rem;
}

.coverage-column li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.location-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.location-feature-item {
    text-align: center;
    padding: 2rem;
}

.location-feature-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 1rem 0;
    font-weight: 600;
}

.location-feature-item p {
    color: #666;
    line-height: 1.7;
}

.locations-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.location-card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.location-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.location-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.location-link {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: auto;
}

.location-card:hover .location-link {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .coverage-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ============================================
   TEAM SECTION - ABOUT PAGE
   ============================================ */

.team-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.team-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.team-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.team-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    text-align: left;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-card {
        padding: 2rem;
    }
}

/* ============================================
   CONTACT PAGE - IMPROVED UX
   ============================================ */

.contact-info-header {
    margin-bottom: 2.5rem;
}

.contact-info-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-info-header p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.contact-card-link {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card-link:hover {
    color: var(--primary-dark);
}

.contact-card-text {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

.emergency-badge {
    display: inline-block;
    background: #dc3545;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.social-connect-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.social-connect-box h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.social-btn.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-btn.whatsapp:hover {
    background: #25d366;
    color: white;
}

@media (max-width: 768px) {
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .social-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Contact Form Improvements */
.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.contact-form-wrapper > p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contact-form-main .form-group {
    margin-bottom: 1.5rem;
}

.contact-form-main label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form-main input,
.contact-form-main select,
.contact-form-main textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form-main input:focus,
.contact-form-main select:focus,
.contact-form-main textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 84, 144, 0.1);
}

.contact-form-main textarea {
    resize: vertical;
    min-height: 120px;
}

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

.checkbox-group {
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.btn-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    margin-top: 1rem;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Service Areas Section */
.service-areas {
    padding: 4rem 0;
    background: white;
}

.service-areas-section {
    padding: 4rem 0;
    background: white;
}

.areas-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    margin-top: 2.5rem;
    align-items: start;
}

.main-area {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.main-area h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.main-area p {
    color: #666;
    font-size: 1.1rem;
}

.nearby-areas {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.nearby-areas h4 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.nearby-area {
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    color: #555;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-left: 3px solid var(--primary-color);
}

.nearby-area:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.area-column {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.area-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-left-color: var(--primary-dark);
}

.area-column h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.area-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-column li {
    padding: 0.6rem 0;
    color: #555;
    font-size: 1rem;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.area-column li:last-child {
    border-bottom: none;
}

.area-column li:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.area-column li::before {
    content: "📍";
    margin-right: 0.5rem;
}

.areas-note {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 12px;
    font-size: 1.05rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .area-column {
        padding: 1.5rem;
    }
}

/* ============================================
   ABOUT PAGE FIXES
   ============================================ */

.about-intro {
    padding: 5rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.core-values {
    padding: 5rem 0;
    background: #f8f9fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-top-color: var(--primary-color);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-card h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

.company-stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 1.25rem;
    opacity: 0.95;
}

.team-section {
    padding: 5rem 0;
    background: white;
}

.certifications-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.certification-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.cert-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.certification-card h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.certification-card p {
    color: #666;
    line-height: 1.6;
}

/* ============================================
   EMERGENCY PAGE FIXES
   ============================================ */

.emergency-hero {
    background: url('../images/cape-town.webp') center/cover no-repeat;
    padding: 5rem 0;
    color: white;
    text-align: center;
    position: relative;
}

.emergency-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.emergency-hero .container {
    position: relative;
    z-index: 2;
}

.emergency-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.emergency-hero .emergency-number {
    font-size: 3rem;
    font-weight: 700;
    margin: 2rem 0;
    display: block;
    color: white;
}

.emergency-services {
    padding: 5rem 0;
    background: #f8f9fa;
}

.emergency-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.emergency-service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-color);
}

.emergency-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.emergency-service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    display: block;
}

.emergency-service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.emergency-service-card p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.emergency-service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.emergency-service-card li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}

.emergency-service-card li:last-child {
    border-bottom: none;
}

.emergency-service-card li::before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.75rem;
}

.emergency-process {
    padding: 5rem 0;
    background: white;
}

.emergency-timeline {
    margin-top: 3rem;
    position: relative;
}

.emergency-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 40px;
    bottom: 40px;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent-color), var(--primary-color));
}

.emergency-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.emergency-step:last-child {
    margin-bottom: 0;
}

.emergency-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #c0392b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
    position: relative;
    z-index: 2;
}

.emergency-step-content {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    flex: 1;
    border-left: 3px solid var(--accent-color);
}

.emergency-step-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.emergency-step-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.time-badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.emergency-features {
    padding: 5rem 0;
    background: #f8f9fa;
}

.emergency-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.emergency-feature {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.emergency-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.feature-icon-large {
    font-size: 4rem;
    margin-bottom: 1.25rem;
    display: block;
}

.emergency-feature h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.emergency-feature p {
    color: #666;
    line-height: 1.7;
}

.emergency-situations {
    padding: 5rem 0;
    background: white;
}

.situations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.situation-card {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.situation-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.situation-card h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.situation-card p {
    color: #555;
    line-height: 1.7;
}

.emergency-tips {
    padding: 5rem 0;
    background: #f8f9fa;
}

.tips-content {
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.tip-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.tip-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.tip-item:last-child {
    margin-bottom: 0;
}

.tip-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.tip-text h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.tip-text p {
    color: #555;
    line-height: 1.7;
}

.emergency-cta-final {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--accent-color), #c0392b);
    color: white;
    text-align: center;
}

.emergency-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.emergency-cta-content > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.emergency-availability {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 600;
}

.emergency-badge-large {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.emergency-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.emergency-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.emergency-hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.emergency-cta {
    margin-top: 2rem;
}

.emergency-response-time {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

@media (max-width: 992px) {
    .emergency-services-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .situations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .emergency-timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .emergency-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .emergency-features-grid,
    .situations-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .tip-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .tip-number {
        margin: 0 auto;
    }
}

/* ============================================
   CONTACT PAGE FIXES
   ============================================ */

.contact-intro {
    padding: 4rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info-card .icon {
    font-size: 2rem;
}

.contact-detail {
    margin-bottom: 1.25rem;
}

.contact-detail strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.contact-detail a {
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-detail a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-form-section {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-form-section h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.map-section {
    padding: 0;
    background: #f8f9fa;
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.service-areas-section {
    padding: 5rem 0;
    background: white;
}

/* ============================================
   RESPONSIVE FIXES
   ============================================ */

@media (max-width: 992px) {
    .service-main-card,
    .service-main-card:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .service-main-card:nth-child(even) .service-main-image,
    .service-main-card:nth-child(even) .service-main-content {
        order: 0;
    }
    
    .regional-content,
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-main-content {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .service-main-content h2,
    .regional-text h2,
    .about-text h2 {
        font-size: 1.875rem;
    }
    
    .emergency-hero h1 {
        font-size: 2.5rem;
    }
    
    .emergency-hero .emergency-number {
        font-size: 2.25rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .map-container {
        height: 400px;
    }
    
    .contact-form-section {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .service-main-image {
        min-height: 300px;
    }
    
    .service-main-content,
    .contact-info-card,
    .value-card,
    .emergency-card {
        padding: 2rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
}
