/*
Theme Name: Garden River V3
Theme URI: https://gardenriver.local
Author: Garden River
Description: Final working theme with white navbar and mobile menu. Includes Road Alert Manager custom role.
Version: 3.3
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: garden-river-v3
Tags: custom, services, business
*/

/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* ========================================
   NAVBAR
   ======================================== */

.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.header-logo {
    flex-shrink: 0;
    flex: 0 0 auto;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-phone-mobile {
    display: none;
}

.nav-phone-desktop {
    flex: 0 0 auto;
}

.header-logo .custom-logo {
    max-height: 50px;
    width: auto;
    display: block;
}

.header-logo .site-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu a:hover {
    color: #000;
    background-color: #f3f4f6;
    border-radius: 10px;
}

.nav-menu .current-menu-item a,
.nav-menu .current_page_item a {
    background-color: #d41111;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    padding: 6px 16px;
}

.phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.phone-btn:hover {
    background-color: #f8f9fa;
    border-color: #ccc;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Road Alerts Section */
.road-alerts-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.road-alerts-section .container {
    max-width: 1400px;
    padding: 0 30px;
}

.section-header {
    text-align: left;
    margin-bottom: 40px;
}

.section-header-centered {
    text-align: center;
}

.section-supertext {
    display: inline-block;
    color: #dc3545;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #fff;
}

.services-section .container {
    max-width: 1400px;
    padding: 0 30px;
}

/* Service Info Boxes */
.service-info-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-info-box {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 30px 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.service-info-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: #dc3545;
}

/* Clickable box styling */
.service-info-box-clickable {
    cursor: pointer;
}

.service-info-box-clickable:hover {
    box-shadow: 0 6px 16px rgba(220, 53, 69, 0.2);
    transform: translateY(-6px);
    border-color: #dc3545;
}

.service-info-box-clickable .service-info-title {
    color: #000;
    transition: color 0.3s ease;
}

.service-info-box-clickable:hover .service-info-title {
    color: #dc3545;
}

.service-info-box-clickable .service-info-description {
    color: #666;
}

.service-info-icon {
    width: 60px;
    height: 60px;
    background-color: #fef2f2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-info-icon i {
    font-size: 28px;
    color: #dc3545;
}

.service-info-icon svg {
    width: 28px;
    height: 28px;
    color: #dc3545;
}

.service-info-icon svg:not([fill="none"]) path:not([fill="none"]):not([stroke]) {
    fill: #dc3545;
}

.service-info-icon svg[fill="none"] path,
.service-info-icon svg path[fill="none"],
.service-info-icon svg path[stroke] {
    fill: none;
    stroke: #dc3545;
}

.service-info-icon svg line {
    stroke: #dc3545;
}

.service-info-icon svg circle:not([fill="none"]) {
    fill: #dc3545;
}

.service-info-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 12px 0;
    text-transform: none;
}

.service-info-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    flex-grow: 1;
}

/* Services Section Button Container */
.services-section-button-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.services-section-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background-color: #fff;
    color: #dc3545;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.services-section-button .button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.services-section-button .button-icon i {
    font-size: 16px;
}

/* Icon positioning */
.services-section-button.icon-right .button-text {
    order: 1;
}

.services-section-button.icon-right .button-icon {
    order: 2;
}

.services-section-button.icon-left .button-text {
    order: 2;
}

.services-section-button.icon-left .button-icon {
    order: 1;
}

.services-section-button:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Main Content */
.site-content {
    min-height: 60vh;
}

.site-content .container {
    padding: 40px 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
    width: 100%;
}

.hero-supertext {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 4px 16px 4px 16px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: #fff;
}

.hero-supertext::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    }
    50% {
        opacity: 0.3;
        box-shadow: 0 0 12px rgba(255, 255, 255, 1);
    }
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin: 0 0 24px 0;
    line-height: 1.2;
    color: #fca5a5;
    max-width: 800px;
}

.hero-content .hero-subtext {
    font-size: 20px;
    line-height: 1.6;
    margin: 0 0 32px 0;
    color: #d1d5db;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.hero-cta .cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.hero-cta .cta-icon i {
    font-size: 16px;
}

.hero-cta .cta-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.hero-cta .cta-icon svg path[fill]:not([fill="none"]) {
    fill: #dc3545;
}

.hero-cta .cta-icon svg path[stroke],
.hero-cta .cta-icon svg line[stroke] {
    stroke: #dc3545;
    fill: none;
}

.hero-cta .cta-icon svg circle[fill] {
    fill: #dc3545;
}

/* Icon positioning using order property instead of flex-direction */
.hero-cta.icon-right .cta-text {
    order: 1;
}

.hero-cta.icon-right .cta-icon {
    order: 2;
}

.hero-cta.icon-left .cta-text {
    order: 2;
}

.hero-cta.icon-left .cta-icon {
    order: 1;
}

.hero-cta.primary {
    background-color: #fff;
    color: #dc3545;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-cta.primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.hero-cta.secondary {
    background-color: #fff;
    color: #dc3545;
    border-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-cta.secondary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.entry-content {
    margin: 20px 0;
}

.entry-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

/* Footer */
.site-footer {
    background-color: #34495e;
    color: #fff;
    padding: 30px 0;
    margin-top: 0;
    text-align: center;
}

.site-footer p {
    margin: 0;
}

/* Services Page Styles */

/* Services Banner Section */
.services-banner {
    padding: 80px 0;
    background-color: #d41111;
    color: #fff;
}

.services-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: left;
}

.services-banner-supertext {
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.services-banner-heading {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.services-banner-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    max-width: 800px;
}

/* Services List Section */
.services-list-section {
    padding: 80px 0;
    background-color: #fff;
}

.services-list-section .container {
    max-width: 1400px;
    padding: 0 30px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin: 40px 0;
}

.service-item {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
    align-items: center;
    animation: fadeIn 0.6s ease-in;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: #dc3545;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-image {
    flex: 0 0 45%;
    max-width: 45%;
    max-height: 300px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    max-height: 300px;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    object-fit: cover;
    object-position: center;
}

.service-content {
    flex: 1;
}

.service-icon {
    width: 48px;
    height: 48px;
    background-color: #fef2f2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 22px;
    color: #dc3545;
}

.service-icon svg {
    width: 22px;
    height: 22px;
    color: #dc3545;
}

.service-icon svg:not([fill="none"]) path:not([fill="none"]):not([stroke]) {
    fill: #dc3545;
}

.service-icon svg[fill="none"] path,
.service-icon svg path[fill="none"],
.service-icon svg path[stroke] {
    fill: none;
    stroke: #dc3545;
}

.service-icon svg line,
.service-icon svg polyline {
    stroke: #dc3545;
    fill: none;
}

.service-icon svg[fill="none"] circle,
.service-icon svg[fill="none"] polyline {
    fill: none;
    stroke: #dc3545;
}

.service-icon svg:not([fill="none"]) circle:not([fill="none"]) {
    fill: #dc3545;
}

.service-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #000;
}

.service-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.service-cta {
    display: inline-block;
    padding: 12px 24px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
    font-weight: 600;
}

.service-cta:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Feature Section */
.feature-section {
    padding: 80px 0;
    background-color: #d41111;
    color: #fff;
}

.feature-section .container {
    max-width: 1400px;
    padding: 0 30px;
}

.feature-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Column */
.feature-section-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-section-heading {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.feature-section-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.feature-section-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.feature-section-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background-color: #fff;
    color: #dc3545;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.feature-section-button .button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.feature-section-button .button-icon i {
    font-size: 16px;
}

.feature-section-button.icon-right .button-text {
    order: 1;
}

.feature-section-button.icon-right .button-icon {
    order: 2;
}

.feature-section-button.icon-left .button-text {
    order: 2;
}

.feature-section-button.icon-left .button-icon {
    order: 1;
}

.feature-section-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Right Column - Icon Boxes */
.feature-section-right {
    display: flex;
    flex-direction: column;
}

.feature-icon-boxes {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-icon-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.feature-icon-box:hover {
    background-color: #fff;
    border-color: #d41111;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Clickable feature box - add cursor pointer */
.feature-icon-box-link {
    cursor: pointer;
}

.feature-icon-box-link:hover .feature-icon-box-title {
    color: #b00e0e;
}

.feature-icon-box-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #fee;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-box-icon i {
    font-size: 22px;
    color: #d41111;
}

.feature-icon-box-icon svg {
    width: 22px;
    height: 22px;
    color: #d41111;
}

.feature-icon-box-icon svg:not([fill="none"]) path:not([fill="none"]):not([stroke]) {
    fill: #d41111;
}

.feature-icon-box-icon svg[fill="none"] path,
.feature-icon-box-icon svg path[fill="none"],
.feature-icon-box-icon svg path[stroke] {
    fill: none;
    stroke: #d41111;
}

.feature-icon-box-icon svg line,
.feature-icon-box-icon svg polyline {
    stroke: #d41111;
    fill: none;
}

.feature-icon-box-icon svg[fill="none"] circle,
.feature-icon-box-icon svg[fill="none"] polyline {
    fill: none;
    stroke: #d41111;
}

.feature-icon-box-icon svg:not([fill="none"]) circle:not([fill="none"]) {
    fill: #d41111;
}

.feature-icon-box-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-icon-box-title {
    font-size: 16px;
    font-weight: 700;
    color: #d41111;
    margin: 0;
}

.feature-icon-box-subheading {
    font-size: 14px;
    font-weight: 600;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
    margin: 0;
}

.feature-icon-box-description {
    font-size: 13px;
    line-height: 1.5;
    color: #d41111;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content .hero-subtext {
        font-size: 18px;
    }

    /* Services banner - tablet */
    .services-banner-heading {
        font-size: 42px;
    }

    .services-banner-description {
        font-size: 16px;
    }

    /* Service info boxes - 2 columns on tablet */
    .service-info-boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* Feature section - maintain 2 columns on tablet */
    .feature-section-grid {
        gap: 40px;
    }

    .feature-section-heading {
        font-size: 36px;
    }

    .feature-section-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    /* Mobile navbar */
    .mobile-menu-toggle {
        display: flex;
    }

    .header-logo .custom-logo {
        max-height: 40px;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .header-container {
        position: relative;
        padding: 0 15px;
        display: flex;
        align-items: center;
    }

    /* Keep phone button and hamburger together on the right */
    .header-logo {
        flex: 0 0 auto;
        margin-right: auto;
        order: 1;
    }

    .mobile-menu-toggle {
        flex: 0 0 auto;
        order: 3;
    }

    .nav-phone-desktop {
        display: flex;
        flex: 0 0 auto;
        order: 2;
    }

    .nav-phone-desktop .phone-btn {
        padding: 6px 12px;
        font-size: 14px;
        margin-right: 12px;
    }

    .nav-phone-desktop .phone-btn svg {
        width: 16px;
        height: 16px;
    }

    .main-nav.active {
        max-height: 600px;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 18px 20px;
        text-align: left;
        font-size: 16px;
        justify-content: flex-start;
    }

    .nav-menu a:hover {
        background-color: #f5f5f5;
        color: #3498db;
    }

    /* Mobile menu active item - full width red background, no border radius */
    .nav-menu .current-menu-item a,
    .nav-menu .current_page_item a {
        border-radius: 0;
        padding: 18px 20px;
        background-color: #d41111;
        color: #fff;
    }

    /* Hide mobile phone button inside menu (keeping desktop one) */
    .nav-phone-mobile {
        display: none;
    }

    .hero-section {
        min-height: 500px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content .hero-subtext {
        font-size: 16px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-cta {
        justify-content: center;
        width: 100%;
    }

    .services-banner {
        padding: 60px 0;
    }

    .services-banner-content {
        padding: 0 20px;
    }

    .services-banner-heading {
        font-size: 32px;
    }

    .services-banner-description {
        font-size: 16px;
    }

    .services-list-section {
        padding: 60px 0;
    }

    .service-item {
        flex-direction: column;
        gap: 20px;
    }

    .service-image {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Service info boxes - 1 column on mobile */
    .service-info-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-section-button {
        width: 100%;
        justify-content: center;
    }

    /* Feature section - stack on mobile */
    .feature-section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-section-heading {
        font-size: 32px;
    }

    .feature-section-description {
        font-size: 16px;
    }

    .feature-section-buttons {
        flex-direction: column;
        width: 100%;
    }

    .feature-section-button {
        width: 100%;
        justify-content: center;
    }

    .feature-icon-box {
        padding: 20px;
        gap: 16px;
    }

    .feature-icon-box-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon-box-icon i {
        font-size: 24px;
    }

    .feature-icon-box-title {
        font-size: 18px;
    }

    .feature-icon-box-subheading {
        font-size: 14px;
    }

    .feature-icon-box-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    /* Hide phone number text on small mobile screens, show only icon */
    .nav-phone-desktop .phone-btn {
        padding: 10px;
        font-size: 0;
        min-width: 40px;
        height: 40px;
    }

    .nav-phone-desktop .phone-btn svg {
        width: 20px;
        height: 20px;
        margin: 0;
    }
}

/* Admin Styles for Meta Box */
.services-meta-box {
    padding: 15px;
}

.service-items {
    margin-bottom: 20px;
}

.service-single {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    position: relative;
}

.service-single h4 {
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    cursor: move;
}

.service-single h4:before {
    content: "⋮⋮";
    margin-right: 10px;
    color: #999;
}

.service-field {
    margin-bottom: 15px;
}

.service-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.service-field input[type="text"],
.service-field input[type="url"],
.service-field textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.service-field textarea {
    min-height: 100px;
    resize: vertical;
}

.service-image-preview {
    margin-top: 10px;
}

.service-image-preview img {
    max-width: 200px;
    height: auto;
    display: block;
    border: 1px solid #ddd;
    padding: 5px;
}

.button.remove-service {
    background: #dc3545;
    border-color: #dc3545;
    color: #fff;
    margin-top: 10px;
}

.button.remove-service:hover {
    background: #c82333;
    border-color: #bd2130;
}

.button.add-service {
    background: #28a745;
    border-color: #28a745;
    color: #fff;
}

.button.add-service:hover {
    background: #218838;
    border-color: #1e7e34;
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* About Banner Section */
.about-banner {
    padding: 80px 0;
    background-color: #d41111;
    color: #fff;
}

.about-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: left;
}

.about-banner-supertext {
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.about-banner-heading {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.about-banner-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    max-width: 800px;
}

/* About Counter Section */
.about-counter-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.about-counter-section .container {
    max-width: 1400px;
    padding: 0 30px;
}

.about-counter-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.about-counter-box {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-counter-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: #d41111;
}

.counter-number {
    font-size: 56px;
    font-weight: 700;
    color: #d41111;
    line-height: 1;
    margin-bottom: 16px;
}

.counter-description {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    font-weight: 500;
}

/* About Content Section */
.about-content-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-content-section .container {
    max-width: 1400px;
    padding: 0 30px;
}

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

.about-content-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-content-supertext {
    display: inline-block;
    color: #d41111;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content-heading {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.2;
}

.about-content-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.about-content-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* About Vision and Values Section */
.about-vision-values-section {
    padding: 80px 0;
    background-color: #fff;
    border-top: 1px solid #e5e7eb;
}

.about-vision-values-section .container {
    max-width: 1400px;
    padding: 0 30px;
}

.about-vision-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.about-vision-column,
.about-values-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-vision-heading,
.about-values-heading {
    font-size: 32px;
    font-weight: 700;
    color: #d41111;
    margin: 0;
    line-height: 1.2;
}

.about-vision-text,
.about-values-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

/* About Features Section */
.about-features-section {
    padding: 80px 0;
    background-color: #f9fafb !important;
}

.about-features-section .container {
    max-width: 1400px;
    padding: 0 30px;
}

.about-features-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-features-supertext {
    display: inline-block;
    color: #d41111;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.about-features-heading {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.2;
}

.about-features-boxes {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.about-feature-box {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: #d41111;
}

.about-feature-icon {
    width: 60px;
    height: 60px;
    background-color: #fef2f2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.about-feature-icon i {
    font-size: 28px;
    color: #d41111;
}

.about-feature-icon svg {
    width: 28px;
    height: 28px;
    color: #d41111;
}

/* Smart SVG styling - handles both filled and stroke-based SVGs */
.about-feature-icon svg:not([fill="none"]) path:not([fill="none"]):not([stroke]) {
    fill: #d41111;
}

.about-feature-icon svg[fill="none"] path,
.about-feature-icon svg path[fill="none"],
.about-feature-icon svg path[stroke] {
    fill: none;
    stroke: #d41111;
}

.about-feature-icon svg line,
.about-feature-icon svg polyline {
    stroke: #d41111;
    fill: none;
}

.about-feature-icon svg[fill="none"] circle,
.about-feature-icon svg[fill="none"] polyline {
    fill: none;
    stroke: #d41111;
}

.about-feature-icon svg:not([fill="none"]) circle:not([fill="none"]) {
    fill: #d41111;
}

.about-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 8px 0;
    text-align: center;
}

.about-feature-title2 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 16px 0;
    text-align: center;
}

.about-feature-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    text-align: center;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .about-banner-heading {
        font-size: 42px;
    }

    .about-banner-description {
        font-size: 16px;
    }

    /* Counter boxes - 2 columns on tablet */
    .about-counter-boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .counter-number {
        font-size: 48px;
    }

    /* Content section - maintain 2 columns on tablet */
    .about-content-grid {
        gap: 40px;
    }

    .about-content-heading {
        font-size: 36px;
    }

    .about-content-text {
        font-size: 15px;
    }

    /* Feature boxes - 2 columns on tablet */
    .about-features-boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .about-features-heading {
        font-size: 36px;
    }

    .about-feature-box {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .about-banner {
        padding: 60px 0;
    }

    .about-banner-content {
        padding: 0 20px;
    }

    .about-banner-heading {
        font-size: 32px;
    }

    .about-banner-description {
        font-size: 16px;
    }

    .about-counter-section {
        padding: 60px 0;
    }

    /* Counter boxes - 1 column on mobile */
    .about-counter-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-counter-box {
        padding: 30px 24px;
    }

    .counter-number {
        font-size: 42px;
    }

    .counter-description {
        font-size: 15px;
    }

    /* Content section - stack on mobile */
    .about-content-section {
        padding: 60px 0;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content-heading {
        font-size: 28px;
    }

    .about-content-text {
        font-size: 15px;
    }

    .about-content-image {
        border-radius: 12px;
    }

    /* Vision and Values section - stack on mobile */
    .about-vision-values-section {
        padding: 60px 0;
    }

    .about-vision-values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-vision-heading,
    .about-values-heading {
        font-size: 28px;
    }

    .about-vision-text,
    .about-values-text {
        font-size: 15px;
    }

    /* Features section - stack on mobile */
    .about-features-section {
        padding: 60px 0;
    }

    .about-features-header {
        margin-bottom: 40px;
    }

    .about-features-heading {
        font-size: 28px;
    }

    .about-features-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-feature-box {
        padding: 30px 24px;
    }

    .about-feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .about-feature-icon i {
        font-size: 24px;
    }

    .about-feature-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .about-feature-description {
        font-size: 14px;
    }
}

/* ========================================
   ROAD CONDITIONS PAGE STYLES
   ======================================== */

/* Road Conditions Banner Section */
.road-conditions-banner {
    padding: 80px 0;
    background-color: #d41111;
    color: #fff;
}

.road-conditions-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: left;
}

.road-conditions-banner-supertext {
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.road-conditions-banner-heading {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.road-conditions-banner-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    max-width: 800px;
}

/* Road Conditions Alert Box Section */
.road-conditions-alert {
    padding: 40px 0;
    background-color: #fff;
}

.road-conditions-alert .container {
    max-width: 1400px;
    padding: 0 30px;
}

.alert-box {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 30px;
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.road-conditions-alert .alert-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background-color: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-icon i {
    font-size: 32px;
    color: #fff;
}

.alert-icon svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
    color: #fff;
}

.alert-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.alert-title {
    font-size: 24px;
    font-weight: 700;
    color: #856404;
    margin: 0;
    line-height: 1.2;
}

.alert-description {
    font-size: 16px;
    line-height: 1.6;
    color: #856404;
    margin: 0;
}

.alert-description a {
    color: #856404;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.alert-description a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Road Conditions Info Banner Section */
.road-conditions-info-banner {
    padding: 60px 0;
    background-color: #fff;
    border-top: 1px solid #e5e7eb;
}

.road-conditions-info-banner .container {
    max-width: 1400px;
    padding: 0 30px;
}

.info-banner-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.info-banner-heading {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.3;
}

.info-banner-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.info-banner-button-wrap {
    margin-top: 8px;
}

.info-banner-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background-color: #d41111;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(212, 17, 17, 0.2);
}

.info-banner-button:hover {
    background-color: #b00e0e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 17, 17, 0.3);
}

/* Road Conditions Content Section */
.road-conditions-content {
    padding: 80px 0;
    background-color: #fff;
}

.road-conditions-content .container {
    max-width: 1400px;
    padding: 0 30px;
}

/* Responsive Design for Road Conditions Page */
@media (max-width: 1024px) {
    .road-conditions-banner-heading {
        font-size: 42px;
    }

    .road-conditions-banner-description {
        font-size: 16px;
    }

    .info-banner-heading {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .road-conditions-banner {
        padding: 60px 0;
    }

    .road-conditions-banner-content {
        padding: 0 20px;
    }

    .road-conditions-banner-heading {
        font-size: 32px;
    }

    .road-conditions-banner-description {
        font-size: 16px;
    }

    .road-conditions-alert {
        padding: 30px 0;
    }

    .road-conditions-alert .container {
        padding: 0 20px;
    }

    .alert-box {
        flex-direction: column;
        padding: 24px;
        gap: 16px;
    }

    .alert-icon {
        width: 60px;
        height: 60px;
    }

    .alert-icon i {
        font-size: 28px;
    }

    .alert-title {
        font-size: 20px;
    }

    .alert-description {
        font-size: 15px;
    }

    .road-conditions-content {
        padding: 60px 0;
    }

    .road-conditions-content .container {
        padding: 0 20px;
    }

    .road-conditions-info-banner {
        padding: 40px 0;
    }

    .road-conditions-info-banner .container {
        padding: 0 20px;
    }

    .info-banner-heading {
        font-size: 24px;
    }

    .info-banner-text {
        font-size: 15px;
    }

    .info-banner-button {
        width: 100%;
        padding: 12px 24px;
    }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Hero Section */
.contact-hero {
    padding: 80px 0;
    background-color: #d41111;
    color: #fff;
}

.contact-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: left;
}

.contact-hero-supertext {
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.contact-hero-heading {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.contact-hero-text {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    max-width: 800px;
}

/* Contact Content Section */
.contact-content-section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.contact-content-section .container {
    max-width: 1400px;
    padding: 0 30px;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Column - Info Boxes */
.contact-left-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-heading {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.2;
}

.contact-info-boxes {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.contact-info-box:hover {
    background-color: #fff5f5;
    border-color: #d41111;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(212, 17, 17, 0.1);
}

/* Clickable contact box - add cursor pointer */
.contact-info-box-link {
    cursor: pointer;
}

.contact-info-box-link:hover .contact-info-box-title {
    color: #b00e0e;
}

.contact-info-box-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #fef2f2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-box-icon i {
    font-size: 22px;
    color: #dc3545;
}

.contact-info-box-icon svg {
    width: 22px;
    height: 22px;
    color: #dc3545;
}

.contact-info-box-icon svg:not([fill="none"]) path:not([fill="none"]):not([stroke]) {
    fill: #dc3545;
}

.contact-info-box-icon svg[fill="none"] path,
.contact-info-box-icon svg path[fill="none"],
.contact-info-box-icon svg path[stroke] {
    fill: none;
    stroke: #dc3545;
}

.contact-info-box-icon svg line,
.contact-info-box-icon svg polyline {
    stroke: #dc3545;
    fill: none;
}

.contact-info-box-icon svg[fill="none"] circle,
.contact-info-box-icon svg[fill="none"] polyline {
    fill: none;
    stroke: #dc3545;
}

.contact-info-box-icon svg:not([fill="none"]) circle:not([fill="none"]) {
    fill: #dc3545;
}

.contact-info-box-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-info-box-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.contact-info-box-text {
    font-size: 14px;
    font-weight: 600;
    color: #3d3d3d;
    margin: 0;
}

.contact-info-box-description {
    font-size: 13px;
    line-height: 1.5;
    color: #737373;
    margin: 0;
}

/* Right Column - Contact Form */
.contact-right-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form-heading {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.2;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #fff;
    padding: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form label {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.contact-form label .required {
    color: #d41111;
    margin-left: 4px;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d41111;
    box-shadow: 0 0 0 3px rgba(212, 17, 17, 0.1);
}

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

.contact-form .form-submit {
    margin-top: 10px;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background-color: #d41111;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-submit-btn:hover:not(:disabled) {
    background-color: #b50f0f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 17, 17, 0.3);
}

.contact-submit-btn:disabled,
.contact-submit-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.contact-submit-btn .btn-text {
    order: 1;
}

.contact-submit-btn .btn-icon {
    order: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-submit-btn .btn-icon i {
    font-size: 16px;
}

.contact-form .form-message {
    padding: 16px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    margin-top: 10px;
}

.contact-form .form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-form .form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
    .contact-hero-heading {
        font-size: 42px;
    }

    .contact-hero-text {
        font-size: 16px;
    }

    .contact-content-grid {
        gap: 40px;
    }

    .contact-info-heading,
    .contact-form-heading {
        font-size: 32px;
    }

    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0;
    }

    .contact-hero-content {
        padding: 0 20px;
    }

    .contact-hero-heading {
        font-size: 32px;
    }

    .contact-hero-text {
        font-size: 16px;
    }

    .contact-content-section {
        padding: 60px 0;
    }

    .contact-content-section .container {
        padding: 0 20px;
    }

    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info-heading,
    .contact-form-heading {
        font-size: 28px;
    }

    .contact-info-box {
        padding: 20px;
        gap: 16px;
    }

    .contact-info-box-icon {
        width: 50px;
        height: 50px;
    }

    .contact-info-box-icon i {
        font-size: 20px;
    }

    .contact-info-box-title {
        font-size: 18px;
    }

    .contact-info-box-text {
        font-size: 15px;
    }

    .contact-info-box-description {
        font-size: 14px;
    }

    .contact-form {
        padding: 24px;
    }

    .contact-submit-btn {
        padding: 14px 28px;
    }
}

/* ========================================
   FOOTER STYLES
   ======================================== */

.site-footer {
    background-color: #1a1a1a;
    color: #fff;
}

.footer-main {
    padding: 60px 0;
}

.footer-main .container {
    max-width: 1400px;
    padding: 0 30px;
}

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

/* Column 1: Logo & Description */
.footer-column-1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.footer-logo .custom-logo-link {
    display: inline-block;
}

.footer-logo img {
    max-height: 80px;
    width: auto;
    border-radius: 8px;
}

.footer-site-name {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
    margin: 0;
}

/* Column Headings */
.footer-column-heading {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
}

/* Column 2: Menu */
.footer-column-2 {
    text-align: left;
}

.footer-navigation {
    margin: 0;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.footer-menu li {
    margin: 0;
    text-align: left;
}

.footer-menu a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    display: inline-block;
    text-align: left;
}

.footer-menu a:hover {
    color: #fff;
}

/* Column 3: Contact */
.footer-column-3 {
    text-align: left;
}

.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact-item i {
    font-size: 16px;
    color: #b0b0b0;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    color: #b0b0b0;
}

/* Smart SVG styling for footer icons */
.footer-contact-item svg:not([fill="none"]) path:not([fill="none"]):not([stroke]) {
    fill: #b0b0b0;
}

.footer-contact-item svg[fill="none"] path,
.footer-contact-item svg path[fill="none"],
.footer-contact-item svg path[stroke] {
    fill: none;
    stroke: #b0b0b0;
}

.footer-contact-item svg line,
.footer-contact-item svg polyline {
    stroke: #b0b0b0;
    fill: none;
}

.footer-contact-item svg[fill="none"] circle,
.footer-contact-item svg[fill="none"] polyline {
    fill: none;
    stroke: #b0b0b0;
}

.footer-contact-item svg:not([fill="none"]) circle:not([fill="none"]) {
    fill: #b0b0b0;
}

.footer-contact-item span {
    flex: 1;
}

.footer-contact-item a {
    flex: 1;
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #fff;
}

/* Column 4: Office Hours */
.footer-column-4 {
    text-align: left;
}

.footer-hours {
    font-size: 14px;
    line-height: 1.8;
    color: #b0b0b0;
    margin: 0 0 12px 0;
    text-align: left;
}

.footer-hours-label {
    font-size: 12px;
    line-height: 1.4;
    color: #808080;
    margin: 0;
    font-style: italic;
    text-align: left;
}

/* Copyright Bar */
.footer-copyright {
    padding: 24px 0;
    border-top: 1px solid #333;
}

.footer-copyright .container {
    max-width: 1400px;
    padding: 0 30px;
    text-align: center;
}

.footer-copyright p {
    font-size: 14px;
    color: #808080;
    margin: 0;
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-column-1 {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-column-1 {
        grid-column: 1;
    }

    .footer-copyright {
        padding: 20px 0;
    }

    .footer-copyright p {
        font-size: 13px;
    }
}

/* ========================================
   OPPORTUNITIES (JOB BOARD) STYLES
   ======================================== */

/* Opportunities Hero Section */
.opportunities-hero {
    padding: 80px 0;
    background-color: #d41111;
    color: #fff;
}

.opportunities-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: left;
}

.opportunities-hero-supertext {
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.opportunities-hero-heading {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.opportunities-hero-text {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* Opportunities Listing Section */
.opportunities-listing-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.opportunities-listing-section .container {
    max-width: 1400px;
    padding: 0 30px;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Opportunity Card */
.opportunity-card {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
}

.opportunity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: #d41111;
}

.opportunity-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.opportunity-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.opportunity-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.opportunity-title a:hover {
    color: #d41111;
}

.opportunity-type-badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: #fef2f2;
    color: #d41111;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.opportunity-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.opportunity-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.opportunity-meta-item i {
    font-size: 16px;
    color: #d41111;
    width: 20px;
}

.opportunity-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    flex-grow: 1;
}

.opportunity-card-footer {
    display: flex;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.opportunity-view-btn,
.opportunity-apply-btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.opportunity-view-btn {
    background-color: #fff;
    color: #d41111;
    border: 2px solid #d41111;
}

.opportunity-view-btn:hover {
    background-color: #fef2f2;
}

.opportunity-apply-btn {
    background-color: #d41111;
    color: #fff;
    border: 2px solid #d41111;
}

.opportunity-apply-btn:hover {
    background-color: #b00e0e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 17, 17, 0.3);
}

/* No Opportunities */
.no-opportunities {
    text-align: center;
    padding: 80px 20px;
}

.no-opportunities i {
    font-size: 64px;
    color: #d1d5db;
    margin-bottom: 24px;
}

.no-opportunities h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0 0 12px 0;
}

.no-opportunities p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Pagination */
.opportunities-pagination {
    margin-top: 60px;
    text-align: center;
}

.opportunities-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.opportunities-pagination a,
.opportunities-pagination .current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.opportunities-pagination a {
    background-color: #fff;
    color: #d41111;
    border: 1px solid #e5e7eb;
}

.opportunities-pagination a:hover {
    background-color: #fef2f2;
    border-color: #d41111;
}

.opportunities-pagination .current {
    background-color: #d41111;
    color: #fff;
    border: 1px solid #d41111;
}

/* Single Opportunity Page */
.single-opportunity-hero {
    padding: 40px 0;
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.single-opportunity-hero .container {
    max-width: 1400px;
    padding: 0 30px;
}

.single-opportunity-hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.back-to-opportunities {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #d41111;
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-to-opportunities:hover {
    color: #b00e0e;
}

.single-opportunity-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.2;
}

.single-opportunity-type-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: transparent;
    color: #d41111;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Single Opportunity Content */
.single-opportunity-content-section {
    padding: 80px 0;
    background-color: #fff;
}

.single-opportunity-content-section .container {
    max-width: 1400px;
    padding: 0 30px;
}

.single-opportunity-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.single-opportunity-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.single-opportunity-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.single-opportunity-description {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.single-opportunity-description h2,
.single-opportunity-description h3,
.single-opportunity-description h4 {
    margin-top: 32px;
    margin-bottom: 16px;
    color: #000;
}

.single-opportunity-description ul,
.single-opportunity-description ol {
    margin: 16px 0;
    padding-left: 24px;
}

.single-opportunity-description li {
    margin-bottom: 8px;
}

/* Sidebar */
.single-opportunity-sidebar {
    position: sticky;
    top: 100px;
}

.opportunity-details-card {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.opportunity-details-heading {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.opportunity-details-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.opportunity-detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.opportunity-detail-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.opportunity-detail-label i {
    font-size: 14px;
    color: #d41111;
}

.opportunity-detail-value {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    padding-left: 22px;
}

.opportunity-file-download {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 24px;
    background-color: #fff;
    color: #d41111;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: 2px solid #d41111;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.opportunity-file-download:hover {
    background-color: #fef2f2;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(212, 17, 17, 0.15);
}

.opportunity-file-download i:first-child {
    font-size: 18px;
}

.opportunity-file-download i:last-child {
    font-size: 14px;
}

.opportunity-apply-btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background-color: #d41111;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.opportunity-apply-btn-large:hover {
    background-color: #b00e0e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 17, 17, 0.3);
}

/* Responsive Design for Opportunities */
@media (max-width: 1024px) {
    .opportunities-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 24px;
    }

    .single-opportunity-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .single-opportunity-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .opportunities-hero {
        padding: 60px 0;
    }

    .opportunities-hero-content {
        padding: 0 20px;
    }

    .opportunities-hero-heading {
        font-size: 32px;
    }

    .opportunities-hero-text {
        font-size: 16px;
    }

    .opportunities-listing-section {
        padding: 60px 0;
    }

    .opportunities-listing-section .container {
        padding: 0 20px;
    }

    .opportunities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .opportunity-card {
        padding: 24px;
    }

    .opportunity-card-header {
        flex-direction: column;
        gap: 12px;
    }

    .opportunity-type-badge {
        align-self: flex-start;
    }

    .opportunity-card-footer {
        flex-direction: column;
    }

    .single-opportunity-hero {
        padding: 30px 0;
    }

    .single-opportunity-title {
        font-size: 28px;
    }

    .single-opportunity-content-section {
        padding: 60px 0;
    }

    .single-opportunity-content-section .container {
        padding: 0 20px;
    }

    .opportunity-details-card {
        padding: 24px;
    }
}


.road-conditions-additional-content {
    padding: 40px 0;
}
.road-conditions-additional-content .additional-content-body {
    margin-bottom: 24px;
    line-height: 1.6;
}
.road-conditions-additional-content .additional-content-button-wrap {
    margin-top: 24px;
}
.road-conditions-additional-content .additional-content-button {
    display: inline-block;
    padding: 12px 28px;
    background: #d41111;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.2s ease;
}
.road-conditions-additional-content .additional-content-button:hover {
    background: #a00d24;
}
