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

        :root {
            --primary-color: #1B6B93;
            --secondary-color: #E63946;
            --dark-bg: #1a1a1a;
            --light-bg: #f8f9fa;
            --text-dark: #2c3e50;
            --text-light: #666;
            --border-color: #e0e0e0;
            --success-color: #27ae60;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 90px;
        }

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

        /* ===== HEADER ===== */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 1rem 2rem;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 3rem;
        }

        .logo {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
            letter-spacing: -0.5px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
        }

        .logo img {
            display: block;
            vertical-align: middle;
            height: 100px !important;
            width: auto !important;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.75rem;
            z-index: 1001;
            flex-shrink: 0;
        }

        .mobile-menu-toggle span {
            display: block;
            width: 28px;
            height: 3px;
            background: var(--primary-color);
            margin: 6px 0;
            border-radius: 3px;
            transition: all 0.3s;
        }

        #main-nav {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.8rem;
        }

        #main-nav a, #main-nav button {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            border: none;
            background: none;
            padding: 0.5rem 0.5rem;
            transition: color 0.3s;
            position: relative;
            line-height: 1.4;
            white-space: nowrap;
        }

        #main-nav a:hover, #main-nav button:hover {
            color: var(--primary-color);
        }

        .nav-dropdown {
            position: relative;
            display: flex;
            align-items: center;
        }

        .nav-dropdown > button::after {
            content: ' ▾';
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            min-width: 200px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            margin-top: 0.5rem;
        }

        .nav-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu a {
            display: block;
            padding: 0.75rem 1.25rem;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 400;
            transition: all 0.2s;
        }

        .dropdown-menu a:hover {
            background: var(--light-bg);
            color: var(--primary-color);
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .phone-number {
            font-weight: 600;
            color: var(--primary-color);
            font-size: 0.95rem;
        }

        .cta-button {
            background: var(--secondary-color);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            display: inline-block;
        }

        .cta-button:hover {
            background: #c5303d;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            background: linear-gradient(135deg, rgba(10, 50, 80, 0.93) 0%, rgba(180, 40, 50, 0.92) 100%), url('assets/images/jacksonville-bridge.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: #ffffff;
            padding: 5rem 2rem;
            min-height: 600px;
            display: flex;
            align-items: center;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: #ffffff;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            line-height: 1.7;
            color: #ffffff;
            opacity: 1;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
        }

        /* ===== LEAD FORM ===== */
        .lead-form-container {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .lead-form-container h3 {
            color: var(--primary-color);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            font-family: 'Poppins', sans-serif;
        }

        .form-group {
            margin-bottom: 1.25rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-family: inherit;
            font-size: 0.95rem;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(27, 107, 147, 0.1);
        }

        .form-group input[type="checkbox"] {
            width: auto;
            margin-right: 0.5rem;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            margin-top: 1rem;
        }

        .checkbox-group label {
            margin-bottom: 0;
            font-weight: 400;
        }

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

        .form-submit {
            width: 100%;
            padding: 1rem;
            background: var(--secondary-color);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 1rem;
        }

        .form-submit:hover {
            background: #c5303d;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
        }

        .form-submit:active {
            transform: translateY(0);
        }

        /* ===== TRUST BAR ===== */
        .trust-bar {
            background: var(--dark-bg);
            color: white;
            padding: 3rem 2rem;
            text-align: center;
        }

        .trust-bar-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
        }

        .trust-stat {
            padding: 1rem;
        }

        .trust-stat h3 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
            font-family: 'Poppins', sans-serif;
        }

        .trust-stat p {
            font-size: 0.95rem;
            color: #aaa;
        }

        /* ===== ABOUT SECTION ===== */
        .about {
            padding: 5rem 2rem;
            background: var(--light-bg);
        }

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

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

        .section-header h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-weight: 700;
        }

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

        .about-text {
            line-height: 1.8;
        }

        .about-text p {
            margin-bottom: 1.25rem;
            color: var(--text-light);
            font-size: 1.05rem;
        }

        .about-text ul {
            list-style: none;
            margin-top: 1.5rem;
        }

        .about-text li {
            padding: 0.75rem 0;
            padding-left: 2rem;
            position: relative;
            color: var(--text-light);
        }

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

        .about-image {
            height: 400px;
            border-radius: 12px;
            overflow: hidden;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
        }

        /* ===== SERVICES SECTION ===== */
        .services {
            padding: 5rem 2rem;
            background: white;
        }

        .services-container {
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .service-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
        }

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

        .service-card-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

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

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

        .service-card-content {
            padding: 1.5rem;
        }

        .service-card h3 {
            color: var(--primary-color);
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            font-family: 'Poppins', sans-serif;
        }

        .service-card p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 1rem;
        }

        .service-card a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .service-card a:hover {
            color: var(--primary-color);
            gap: 0.75rem;
        }

        /* ===== INDUSTRIES SECTION ===== */
        .industries {
            padding: 5rem 2rem;
            background: var(--light-bg);
        }

        .industries-container {
            max-width: 1400px;
            margin: 0 auto;
        }

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

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

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

        .industry-card h3 {
            color: var(--text-dark);
            font-size: 1.25rem;
            margin-bottom: 1rem;
            font-family: 'Poppins', sans-serif;
        }

        .industry-card p {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .industry-card a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .industry-card a:hover {
            color: var(--primary-color);
        }

        /* ===== SERVICE AREAS SECTION ===== */
        .service-areas {
            padding: 5rem 2rem;
            background: white;
        }

        .service-areas-container {
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .area-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            height: 350px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: flex-end;
        }

        .area-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(27, 107, 147, 0.3) 100%);
            z-index: 1;
        }

        .area-card-content {
            position: relative;
            z-index: 2;
            color: white;
            padding: 2rem;
            width: 100%;
        }

        .area-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            font-family: 'Poppins', sans-serif;
        }

        .area-card p {
            font-size: 0.9rem;
            margin-bottom: 1.25rem;
            opacity: 0.9;
        }

        .area-card a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border-bottom: 2px solid white;
            padding-bottom: 0.25rem;
        }

        .area-card a:hover {
            opacity: 0.8;
        }

        /* ===== TESTIMONIALS SECTION ===== */
        .testimonials {
            padding: 5rem 2rem;
            background: var(--light-bg);
        }

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

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

        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border-left: 4px solid var(--secondary-color);
        }

        .testimonial-text {
            color: var(--text-light);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .testimonial-author {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 0.25rem;
            font-family: 'Poppins', sans-serif;
        }

        .testimonial-role {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .stars {
            color: var(--secondary-color);
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        /* ===== FAQ SECTION ===== */
        .faq {
            padding: 5rem 2rem;
            background: white;
        }

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

        .faq-item {
            margin-bottom: 1.5rem;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-question {
            padding: 1.5rem;
            background: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
            font-weight: 600;
            color: var(--primary-color);
        }

        .faq-question:hover {
            background: var(--light-bg);
        }

        .faq-question.active {
            background: var(--primary-color);
            color: white;
        }

        .faq-toggle {
            font-size: 1.5rem;
            transition: transform 0.3s;
        }

        .faq-question.active .faq-toggle {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: var(--light-bg);
        }

        .faq-answer.active {
            padding: 1.5rem;
            max-height: 500px;
        }

        .faq-answer p {
            color: var(--text-light);
            line-height: 1.7;
        }

        /* ===== BOTTOM CTA ===== */
        .bottom-cta {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 4rem 2rem;
            text-align: center;
        }

        .bottom-cta-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .bottom-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-family: 'Poppins', sans-serif;
        }

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

        .cta-button-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button-secondary {
            background: white;
            color: var(--primary-color);
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .cta-button-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--dark-bg);
            color: white;
            padding: 3rem 2rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-column h3 {
            font-size: 1.1rem;
            margin-bottom: 1rem;
            color: var(--secondary-color);
            font-family: 'Poppins', sans-serif;
        }

        .footer-column p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: #aaa;
        }

        .footer-column a {
            display: block;
            color: #aaa;
            text-decoration: none;
            font-size: 0.9rem;
            margin-bottom: 0.75rem;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: var(--secondary-color);
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 2rem;
            text-align: center;
            color: #777;
            font-size: 0.9rem;
        }

        /* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    #main-nav {
        gap: 1.5rem;
    }

    #main-nav a {
        font-size: 0.9rem;
    }

    .services-grid,
    .industries-grid,
    .benefits-grid,
    .sub-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        gap: 0.75rem;
        flex-wrap: nowrap;
    }

    .logo {
        flex-shrink: 1;
        min-width: 0;
    }

    .logo img {
        height: 85px !important;
        max-width: 320px;
        width: auto;
    }

    #main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: auto;
        flex-direction: column;
        justify-content: flex-start;
        background-color: #ffffff;
        padding: 1rem 1.5rem 1.5rem;
        gap: 0;
        display: none;
        z-index: 99;
        overflow-y: auto;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
        max-height: calc(100vh - 80px);
    }

    #main-nav.mobile-open {
        display: flex;
    }

    #main-nav a, #main-nav button {
        font-size: 1rem;
        padding: 0.85rem 0.5rem;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
        text-align: left;
        display: block;
    }

    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        order: 2;
        flex-shrink: 0;
    }

    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background-color: var(--light-bg);
        border: none;
        box-shadow: none;
        margin: 0;
        padding-left: 1rem;
        display: none;
        border-radius: 0;
    }

    .nav-dropdown.mobile-expanded .dropdown-menu,
    .dropdown-menu.show {
        display: block;
    }

    .nav-dropdown {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-dropdown > button {
        width: 100%;
        text-align: left;
        padding: 0.85rem 0.5rem;
    }

    .dropdown-menu a {
        padding: 0.7rem 1.25rem;
        font-size: 0.9rem;
        border-bottom: 1px solid var(--border-color);
        display: block;
        width: 100%;
    }

    .header-right {
        order: 1;
        flex-shrink: 0;
        gap: 0.5rem;
    }

    .header-right .cta-button {
        font-size: 0.7rem;
        padding: 0.45rem 0.75rem;
        white-space: nowrap;
    }

    .cta-button {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

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

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

    .services-grid,
    .industries-grid,
    .benefits-grid,
    .sub-services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .cta-button-group {
        flex-direction: column;
    }

    .trust-bar-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .subpage-hero h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .subpage-hero {
        min-height: auto;
        padding: 2rem 1rem;
    }

    .subpage-hero p {
        font-size: 1rem;
    }

    .content-section {
        padding: 2rem 1rem;
    }

    .sub-lead-form {
        padding: 1.5rem;
        max-width: 100%;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-answer {
        padding: 0 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }

    .compliance-box {
        margin: 1.5rem 1rem;
        padding: 1rem;
    }

    .sub-cta {
        padding: 2rem 1rem;
    }

    .sub-cta h2 {
        font-size: 1.6rem;
    }

    .sub-cta p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .section {
        padding: 3rem 1.5rem;
    }

    .section h2 {
        font-size: 1.6rem;
    }

    .service-section {
        padding: 3rem 1.5rem;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}


/* ===== FULL-WIDTH SECTION REDESIGN ===== */
/* Base full-width sections */
.about-section,
.services-section,
.industries-section,
.why-us-section,
.faq-section {
    padding: 4rem 0;
    width: 100%;
}

.services-section,
.why-us-section {
    background: #f0f4f8;
}

.about-section,
.industries-section,
.faq-section {
    background: white;
}

/* Container inside full-width sections */
.about-section .container,
.services-section .container,
.industries-section .container,
.why-us-section .container,
.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== CONTAINER FIX ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== ABOUT SECTION FIXES ===== */
.about-section {
    padding: 4rem 0;
}

.about-section .section-title {
    text-align: center;
}

.about-section .about-content {
    display: block !important;
    max-width: 900px;
    margin: 0 auto;
    columns: unset !important;
}

.about-section .about-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.about-section .about-content p strong {
    color: #1B6B93;
    font-weight: 600;
}

/* ===== SERVICE CARD IMPROVEMENTS ===== */
.service-card {
    background: white;
    padding: 1.75rem;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #1B6B93;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-left-color: #E63946;
}

.service-card h3 {
    color: #1B6B93;
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

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

.service-card a {
    color: #E63946;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.service-card a:hover {
    color: #1B6B93;
}

/* ===== INDUSTRY CARD IMPROVEMENTS ===== */
.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-top: 4px solid #E63946;
    transition: all 0.3s ease;
    text-align: left;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* ===== BENEFIT CARD IMPROVEMENTS ===== */
.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.benefit-card .benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1B6B93, #E63946);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.benefit-card .benefit-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: white;
    stroke-width: 2;
}

/* ===== FAQ SECTION IMPROVEMENTS ===== */
.faq-section {
    padding: 4rem 0;
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1B6B93;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f8f9fa;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.25rem 1.5rem;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* ===== INDUSTRIES GRID ===== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* ===== BENEFITS GRID ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* ===== SECTION TITLE STYLING ===== */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1.5rem;
    color: #1B6B93;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* ===== MOBILE RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .about-section,
    .services-section,
    .industries-section,
    .why-us-section,
    .faq-section {
        padding: 3rem 0;
    }

    .services-grid,
    .industries-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-item.active .faq-answer {
        padding: 1rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .services-grid,
    .industries-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .benefit-card,
    .service-card,
    .industry-card {
        padding: 1.25rem;
    }
}



/* ===== FULL-WIDTH SECTION REDESIGN ===== */
/* Base full-width sections */
.about-section,
.services-section,
.industries-section,
.why-us-section,
.faq-section {
    padding: 4rem 0;
    width: 100%;
}

.services-section,
.why-us-section {
    background: #f0f4f8;
}

.about-section,
.industries-section,
.faq-section {
    background: white;
}

/* Container inside full-width sections */
.about-section .container,
.services-section .container,
.industries-section .container,
.why-us-section .container,
.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== CONTAINER FIX ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== ABOUT SECTION FIXES ===== */
.about-section {
    padding: 4rem 0;
}

.about-section .section-title {
    text-align: center;
}

.about-section .about-content {
    display: block !important;
    max-width: 900px;
    margin: 0 auto;
    columns: unset !important;
}

.about-section .about-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.about-section .about-content p strong {
    color: #1B6B93;
    font-weight: 600;
}

/* ===== SERVICE CARD IMPROVEMENTS ===== */
.service-card {
    background: white;
    padding: 1.75rem;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #1B6B93;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-left-color: #E63946;
}

.service-card h3 {
    color: #1B6B93;
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

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

.service-card a {
    color: #E63946;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.service-card a:hover {
    color: #1B6B93;
}

/* ===== INDUSTRY CARD IMPROVEMENTS ===== */
.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-top: 4px solid #E63946;
    transition: all 0.3s ease;
    text-align: left;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* ===== BENEFIT CARD IMPROVEMENTS ===== */
.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.benefit-card .benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1B6B93, #E63946);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.benefit-card .benefit-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: white;
    stroke-width: 2;
}

/* ===== FAQ SECTION IMPROVEMENTS ===== */
.faq-section {
    padding: 4rem 0;
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1B6B93;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f8f9fa;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.25rem 1.5rem;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* ===== INDUSTRIES GRID ===== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* ===== BENEFITS GRID ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* ===== SECTION TITLE STYLING ===== */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1.5rem;
    color: #1B6B93;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* ===== MOBILE RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .about-section,
    .services-section,
    .industries-section,
    .why-us-section,
    .faq-section {
        padding: 3rem 0;
    }

    .services-grid,
    .industries-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-item.active .faq-answer {
        padding: 1rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .services-grid,
    .industries-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .benefit-card,
    .service-card,
    .industry-card {
        padding: 1.25rem;
    }
}


@media (max-width: 480px) {
    header {
        padding: 0.75rem 1rem;
    }

    .header-container {
        flex-direction: row;
        gap: 0.5rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    body {
        font-size: 15px;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo img {
        height: 48px !important;
        max-width: 220px;
    }

    .header-right .cta-button {
        font-size: 0.65rem;
        padding: 0.4rem 0.6rem;
    }

    #main-nav {
        top: 60px;
        padding: 1rem 1.5rem;
    }

    #main-nav a, #main-nav button {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }

    .cta-button {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .hero {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .hero-container {
        padding-top: 1rem;
    }

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

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .lead-form-container {
        padding: 1rem;
    }

    .phone-number {
        display: none;
    }

    .section-header h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .trust-bar-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .subpage-hero {
        padding: 1.5rem 1rem;
    }

    .subpage-hero h1 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .subpage-hero p {
        font-size: 0.95rem;
    }

    .content-section {
        padding: 1.5rem 1rem;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .service-card,
    .industry-card,
    .benefit-card,
    .step {
        padding: 1rem;
    }

    .service-card h3,
    .industry-card h3,
    .benefit-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .service-card p,
    .industry-card p,
    .benefit-card p {
        font-size: 0.9rem;
    }

    .sub-lead-form {
        padding: 1rem;
    }

    .form-group label {
        margin-bottom: 0.375rem;
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.6rem;
        font-size: 0.95rem;
    }

    .sub-lead-form button[type="submit"] {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .faq-question {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 0.75rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 0.75rem 0.75rem 0.75rem;
    }

    .compliance-box {
        margin: 1rem 1rem;
        padding: 0.75rem;
    }

    .compliance-box h4 {
        font-size: 1rem;
    }

    .compliance-box p {
        font-size: 0.9rem;
    }

    .sub-cta {
        padding: 1.5rem 1rem;
    }

    .sub-cta h2 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .sub-cta p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .footer {
        padding: 1.5rem 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-column h3 {
        font-size: 1rem;
    }

    .footer-column ul li a {
        font-size: 0.9rem;
    }

    .footer-column p {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.9rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section {
        padding: 1.5rem 1rem;
    }

    .section h2 {
        font-size: 1.5rem;
    }

    .service-section {
        padding: 1.5rem 1rem;
    }
}
    

/* ===== SUBPAGE SPECIFIC STYLES ===== */

/* Subpage hero - simpler centered hero */
.subpage-hero {
    background: linear-gradient(135deg, rgba(10, 50, 80, 0.93) 0%, rgba(180, 40, 50, 0.92) 100%);
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subpage-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    max-width: 900px;
    margin: 0 auto 1rem;
    line-height: 1.2;
}

.subpage-hero p {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin: 0 auto;
}

/* Content sections */
.content-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.content-section p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.content-section.alt-bg {
    background: var(--light-bg);
    max-width: 100%;
    padding: 4rem 2rem;
}

.content-section.alt-bg > .section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Service cards for subpages */
.sub-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.sub-service-card {
    background: white;
    padding: 1.75rem;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sub-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.sub-service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.sub-service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Impact/compliance boxes */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.impact-card {
    background: var(--light-bg);
    padding: 1.75rem;
    border-radius: 10px;
    border-top: 3px solid var(--secondary-color);
}

.impact-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.impact-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Process steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.process-step .step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 12px rgba(27, 107, 147, 0.3);
}

.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.process-step p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* Subpage FAQ */
.sub-faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.sub-faq-item h3 {
    padding: 1.25rem 1.5rem;
    background: white;
    color: var(--primary-color);
    font-size: 1.05rem;
    margin: 0;
    cursor: pointer;
    transition: background 0.3s;
}

.sub-faq-item h3:hover {
    background: var(--light-bg);
}

.sub-faq-item p {
    padding: 1.25rem 1.5rem;
    background: var(--light-bg);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Subpage lead form */
.sub-lead-form {
    max-width: 600px;
    margin: 2rem auto 0;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sub-lead-form .form-group {
    margin-bottom: 1.25rem;
}

.sub-lead-form label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.sub-lead-form input,
.sub-lead-form select,
.sub-lead-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.sub-lead-form input:focus,
.sub-lead-form select:focus,
.sub-lead-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(27, 107, 147, 0.1);
}

.sub-lead-form textarea {
    resize: vertical;
    min-height: 80px;
}

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

.sub-lead-form button[type="submit"] {
    width: 100%;
    padding: 0.875rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 0.5rem;
}

.sub-lead-form button[type="submit"]:hover {
    background: #c5303d;
    transform: translateY(-2px);
}

/* Related services links section */
.related-section {
    padding: 3rem 2rem;
    background: var(--light-bg);
}

.related-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.related-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-card {
    display: block;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.related-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.related-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Subpage CTA */
.sub-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.sub-cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1rem;
}

.sub-cta p {
    font-size: 1.15rem;
    color: white;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.sub-cta .cta-button {
    background: var(--secondary-color);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.sub-cta .cta-button:hover {
    background: #c5303d;
    transform: translateY(-2px);
}

.sub-cta .cta-button-light {
    background: white;
    color: var(--primary-color);
}

.sub-cta .cta-button-light:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* ===== BOTTOM CTA OVERRIDE ===== */
.bottom-cta h2,
.bottom-cta p {
    color: white !important;
}

/* ===== AREA CARD STRONGER OVERLAY ===== */
.area-card::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 20, 60, 0.5) 100%) !important;
}

/* ===== LEGACY SUBPAGE CONTENT CLASSES ===== */
/* These classes are used by existing subpage content */

.section {
    padding: 4rem 2rem;
}

.section-light {
    background: var(--light-bg);
}

.content-grid {
    max-width: 850px;
    margin: 0 auto;
}

/* Left-align headings when followed by prose content */
.section:has(.content-grid) > .container > h2 {
    text-align: left;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.content-block p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section p {
    color: var(--text-light);
    line-height: 1.7;
}

.compliance-box {
    background: var(--light-bg);
    padding: 1.75rem;
    border-radius: 10px;
    border-top: 3px solid var(--secondary-color);
    margin-bottom: 1.5rem;
}

.compliance-box h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.step {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.step .step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    font-family: 'Poppins', sans-serif;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.9rem;
}

.submit-button {
    width: 100%;
    padding: 0.875rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.submit-button:hover {
    background: #c5303d;
    transform: translateY(-2px);
}

/* Hero overlay for old-style heroes */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 50, 80, 0.93) 0%, rgba(180, 40, 50, 0.92) 100%);
}

/* Old-style CTA section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
}

.cta-section p {
    color: white;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.cta-button-secondary {
    background: white;
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-button-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* ===== CRITICAL FIXES FOR TEXT CUTOFF & LAYOUT ===== */
/* Ensure all containers have proper overflow and padding */
.container,
.section-inner,
.about-content,
.content-section {
    overflow: visible !important;
    padding-left: 2rem;
    padding-right: 2rem;
    margin-left: auto;
    margin-right: auto;
}

.services-grid,
.industries-grid,
.benefits-grid,
.sub-services-grid {
    overflow: visible;
}

.service-card,
.industry-card,
.benefit-card {
    overflow: visible;
    min-height: auto;
}

.about-content p {
    overflow: visible;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

/* Location page specific styles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    overflow: visible;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    overflow: visible;
}

.about-content-text {
    line-height: 1.8;
    color: var(--text-light);
    overflow: visible;
}

.about-content-text p {
    margin-bottom: 1.25rem;
    overflow: visible;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.about-content-text strong {
    color: var(--primary-color);
}

.benefit-card {
    padding: 1.75rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

/* Form section styling */
.form-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.form-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.form-section p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.submit-btn {
    background: var(--secondary-color);
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background: #c5303d;
    transform: translateY(-2px);
}

/* FAQ items for subpages */
.faq-item h3 {
    font-size: 1.05rem;
}

.cta-final {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-final h2 {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
}

.cta-final p {
    color: white;
    opacity: 0.95;
}

/* Subpage service section styles from commercial-cleaning */
.service-subsection {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-subsection h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.service-subsection p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) {
    .subpage-hero h1 { font-size: 2rem; }
    .subpage-hero { min-height: 250px; padding: 3rem 1.5rem; }
    .content-section { padding: 3rem 1.5rem; }
    .sub-lead-form .form-row { grid-template-columns: 1fr; }
    .sub-cta h2 { font-size: 1.8rem; }
    .section { padding: 3rem 1.5rem; }
    .section h2 { font-size: 1.6rem; }
    .process-steps { grid-template-columns: 1fr; }
    .service-section { padding: 3rem 1.5rem; }
}

/* ============================================================
   SUBPAGE FULL-WIDTH SECTION OVERHAUL
   ============================================================ */

/* Full-width sections with alternating backgrounds */
.about-section,
.services-section,
.industries-section,
.why-us-section,
.faq-section {
    padding: 4.5rem 2rem;
    width: 100%;
}

.about-section { background: #ffffff; }
.services-section { background: #f0f4f8; }
.industries-section { background: #ffffff; }
.why-us-section { background: #f0f4f8; }
.faq-section { background: #ffffff; }

.about-section > .container,
.services-section > .container,
.industries-section > .container,
.why-us-section > .container,
.faq-section > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Section titles centered */
.about-section .section-title,
.services-section .section-title,
.industries-section .section-title,
.why-us-section .section-title,
.faq-section .section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-section .section-subtitle,
.industries-section .section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

/* CRITICAL: Override the 2-column grid for subpage about-content */
.about-section .about-content {
    display: block !important;
    grid-template-columns: unset !important;
    max-width: 850px;
    margin: 2rem auto 0;
    gap: unset !important;
}

.about-section .about-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-section .about-content p:first-child {
    font-size: 1.15rem;
    color: #2d3748;
    font-weight: 400;
}

.about-section .about-content p strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Service cards - image on top with blue left accent */
.services-section .service-card {
    background: white;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.services-section .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.services-section .service-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.services-section .service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.services-section .service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.services-section .service-card-content {
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.services-section .service-card:hover .service-card-content {
    border-left-color: var(--secondary-color);
}

.services-section .service-card-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.services-section .service-card-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.services-section .service-card-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.services-section .service-card-content a:hover {
    color: var(--primary-color);
}

.services-section .service-card-content a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 0;
}

/* Industry cards - orange top accent */
.industries-section .industry-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: none;
    border-top: 4px solid var(--secondary-color);
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.industries-section .industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.industries-section .industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

/* Benefit cards with gradient icon circles */
.why-us-section .benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.why-us-section .benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.why-us-section .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

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

.benefit-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* FAQ styling */
.faq-section .faq-item {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-section .faq-question {
    padding: 1.25rem 1.5rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
    transition: background 0.3s;
    font-size: 1rem;
}

.faq-section .faq-question:hover {
    background: #f7fafc;
}

.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f7fafc;
    padding: 0 1.5rem;
}

.faq-section .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.25rem 1.5rem;
}

/* Lead form section on subpages */
.content-section.alt-bg#lead-form {
    background: #f0f4f8;
    max-width: 100%;
    padding: 4rem 2rem;
}

.content-section.alt-bg#lead-form .section-inner {
    max-width: 700px;
    margin: 0 auto;
}

.content-section.alt-bg#lead-form h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.content-section.alt-bg#lead-form .sub-lead-form {
    background: white;
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Mobile overrides for new section layout */
@media (max-width: 768px) {
    .about-section,
    .services-section,
    .industries-section,
    .why-us-section,
    .faq-section {
        padding: 3rem 1.25rem;
    }

    .about-section .about-content {
        margin-top: 1rem;
    }

    .about-section .about-content p {
        font-size: 1rem;
    }

    .about-section .about-content p:first-child {
        font-size: 1.05rem;
    }

    .services-section .services-grid,
    .industries-section .industries-grid,
    .why-us-section .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-section,
    .services-section,
    .industries-section,
    .why-us-section,
    .faq-section {
        padding: 2rem 1rem;
    }

    .about-section .section-title,
    .services-section .section-title,
    .industries-section .section-title,
    .why-us-section .section-title,
    .faq-section .section-title {
        font-size: 1.4rem;
    }
}

/* ============================================
   BLOG STYLES
   ============================================ */

/* Blog Index Hero */
.blog-index-hero {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #0a1628 0%, #1a2d50 50%, #0d1f3c 100%);
    color: white;
    text-align: center;
}

.blog-index-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.blog-index-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Blog Grid Section */
.blog-grid-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
    min-height: 50vh;
}

/* Blog Cards */
.blog-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.blog-card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card-meta {
    display: flex;
    gap: 1.25rem;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1rem;
    font-weight: 500;
}

.blog-card-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.blog-card-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.blog-card-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-link {
    color: var(--secondary-color);
}

/* Blog Article Hero */
.blog-hero {
    padding: 8rem 2rem 5rem;
    text-align: center;
    color: white;
    position: relative;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.blog-hero-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.blog-hero-meta span {
    color: rgba(255, 255, 255, 0.8);
}

.blog-category {
    background: var(--secondary-color);
    color: white !important;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.blog-hero h1 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.blog-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

/* Blog Breadcrumb */
.blog-breadcrumb {
    padding: 1rem 2rem;
    background: white;
    border-bottom: 1px solid #eee;
    font-size: 0.85rem;
}

.blog-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.blog-breadcrumb a:hover {
    text-decoration: underline;
}

.blog-breadcrumb span {
    color: #999;
    margin: 0 0.5rem;
}

/* Blog Article Layout */
.blog-article {
    padding: 3rem 2rem;
    background: #f8f9fa;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

/* Blog Content */
.blog-content {
    background: white;
    padding: 3rem;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.blog-lede {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.75;
    font-weight: 500;
    margin-bottom: 1.75rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 1.25rem;
}

.blog-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.blog-content h2 {
    font-size: 1.55rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 2.5rem 0 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    letter-spacing: -0.01em;
}

.blog-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

/* Blog Sources */
.blog-sources {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #eee;
}

.blog-sources h3 {
    font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.blog-sources ul {
    list-style: none;
    padding: 0;
}

.blog-sources li {
    margin-bottom: 0.6rem;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.5;
}

.blog-sources li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.blog-sources a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-sources a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-cta {
    background: linear-gradient(135deg, #0a1628 0%, #1a2d50 100%);
    color: white;
    padding: 2rem;
    border-radius: 14px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.sidebar-cta h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.sidebar-cta p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.sidebar-cta .cta-button {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 0.85rem 1.5rem;
}

.sidebar-services,
.sidebar-locations {
    background: white;
    padding: 1.75rem;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 1.5rem;
}

.sidebar-services h3,
.sidebar-locations h3 {
    font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
}

.sidebar-services a,
.sidebar-locations a {
    display: block;
    padding: 0.5rem 0;
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s ease;
}

.sidebar-services a:hover,
.sidebar-locations a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.sidebar-services a:last-child,
.sidebar-locations a:last-child {
    border-bottom: none;
}

.sidebar-location-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.sidebar-location-links a {
    font-size: 0.85rem;
    padding: 0.4rem 0;
}

/* Blog Responsive */
@media (max-width: 900px) {
    .blog-card {
        grid-template-columns: 1fr;
    }

    .blog-card-image {
        height: 220px;
    }

    .blog-card-content {
        padding: 1.75rem;
    }

    .blog-container {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .blog-hero h1 {
        font-size: 1.8rem;
    }

    .blog-hero {
        padding: 6rem 1.5rem 3rem;
    }

    .blog-content {
        padding: 2rem 1.5rem;
    }

    .blog-content h2 {
        font-size: 1.3rem;
    }

    .blog-index-hero h1 {
        font-size: 2rem;
    }
}

/* ============================================
   SUBPAGE COMPATIBILITY STYLES
   ============================================ */

/* SERVICE PAGE HEADER & NAVIGATION */

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    gap: 3rem;
}

.header-content .logo {
    display: flex;
    align-items: center;
}

.header-content .logo img {
    display: block;
    vertical-align: middle;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0.5rem 0.5rem;
    transition: color 0.3s;
    position: relative;
    line-height: 1.4;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-toggle {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0.5rem 0.5rem;
    transition: color 0.3s;
    position: relative;
    line-height: 1.4;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-menu .dropdown-toggle::after {
    content: ' ▾';
    font-size: 0.8rem;
}

.nav-menu .dropdown-toggle:hover {
    color: var(--primary-color);
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.nav-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.2s;
}

.nav-menu .dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

/* SUBPAGE HERO */

.hero-subpage {
    background: linear-gradient(135deg, rgba(10, 50, 80, 0.93) 0%, rgba(180, 40, 50, 0.92) 100%);
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-subpage h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    max-width: 900px;
    margin: 0 auto 1rem;
    line-height: 1.2;
}

.hero-subpage p {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin: 0 auto;
}

/* BREADCRUMBS */

.breadcrumb-section {
    padding: 1rem 2rem;
    background: #f8f9fa;
}

.breadcrumb {
    padding: 0.75rem 2rem;
    background: #f8f9fa;
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

/* LOCATION CARDS & SERVICE SECTION */

.content-section.service-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.location-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.location-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.location-card h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.location-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* LOCATION PAGE HERO (scoped to pages with breadcrumb before hero) */
/* Note: This only applies when .hero does NOT contain .hero-container (i.e. location hub pages) */

/* LOCATION PAGE SECTIONS */

.about-location {
    padding: 3rem 2rem;
    background: white;
}

.services-grid-section {
    padding: 3rem 2rem;
    background: white;
}

.why-choose {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.coverage-section {
    padding: 3rem 2rem;
    background: white;
}

.lead-form-section {
    padding: 3rem 2rem;
    background: white;
}

.service-directory {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.service-directory a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.service-directory a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

/* BUTTON STYLES FOR SUBPAGES */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    font-size: 1rem;
}

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

.btn.btn-primary:hover {
    background: #c5303d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

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

.btn.btn-secondary:hover {
    background: var(--light-bg);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.cta-btn {
    background: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.cta-btn:hover {
    background: #c5303d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #c5303d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* FOOTER COMPATIBILITY */

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: block;
}

.footer-section h3,
.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-family: 'Poppins', sans-serif;
    margin-top: 0;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #aaa;
}

.footer-section a {
    display: block;
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

/* FAQ & EXPANDABLE ELEMENTS */

.faq-toggle {
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 6px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.faq-toggle:hover {
    background: #e8ecf1;
}

.faq-toggle::after {
    content: '▾';
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.faq-toggle.active::after {
    transform: rotate(180deg);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.dropdown-icon {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

/* MOBILE MENU FOR SUBPAGES */

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1000;
    overflow-y: auto;
    padding-top: 4rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    border-bottom: 1px solid var(--light-bg);
}

.mobile-menu a {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.mobile-menu a:hover {
    color: var(--primary-color);
    background: var(--light-bg);
}

.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    color: var(--text-dark);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-dropdown-toggle:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

.mobile-dropdown-toggle::after {
    content: '▾';
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle::after {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    background: var(--light-bg);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
    max-height: 500px;
}

.mobile-dropdown-menu a {
    padding: 0.75rem 2rem 0.75rem 3rem;
    font-size: 0.9rem;
    border-bottom: none;
}

/* NAV MENU TOGGLE FOR MOBILE */

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    padding: 0.5rem;
    transition: color 0.2s;
}

.nav-toggle:hover {
    color: var(--primary-color);
}

.nav-toggle::before {
    content: '☰';
}

.nav-toggle.active::before {
    content: '✕';
}

/* LOCATION PAGE NAV STYLES */

.nav-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 1.8rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    display: block;
}

.nav-cta {
    background: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.nav-cta:hover {
    background: #c5303d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

/* RESPONSIVE DESIGN FOR SUBPAGES */

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .nav-menu {
        width: 100%;
        justify-content: center;
    }

    .nav-menu ul {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-toggle {
        display: block;
    }

    .mobile-menu {
        padding-top: 3rem;
    }

    .hero-subpage {
        padding: 3rem 1.5rem;
        min-height: 250px;
    }

    .hero-subpage h1 {
        font-size: 1.8rem;
    }

    .hero-subpage p {
        font-size: 1rem;
    }

    .breadcrumb {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .content-section.service-section {
        padding: 2rem 1rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .location-card {
        padding: 1.25rem;
    }

    .about-location,
    .services-grid-section,
    .lead-form-section,
    .coverage-section {
        padding: 2rem 1rem;
    }

    .why-choose {
        padding: 2rem 1rem;
    }

    .service-directory {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-main {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

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

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--light-bg);
    }

    .nav-item a {
        display: block;
        padding: 1rem;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-toggle {
        padding: 0.75rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0.75rem;
    }

    .nav-menu ul {
        gap: 0.25rem;
    }

    .hero-subpage {
        padding: 2rem 1rem;
        min-height: 200px;
    }

    .hero-subpage h1 {
        font-size: 1.5rem;
    }

    .hero-subpage p {
        font-size: 0.95rem;
    }

    .breadcrumb {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .location-card h3 {
        font-size: 1rem;
    }

    .content-section.service-section {
        padding: 1.5rem 0.75rem;
    }

    .locations-grid {
        gap: 1rem;
    }

    .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .cta-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
}


/* ============================================================
   GLOBAL OVERRIDES - FIXES FOR CONSISTENCY
   These override earlier conflicting declarations
   ============================================================ */

/* --- HEADER & NAV (unified across all pages) --- */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 0.75rem 2rem;
}

.header .header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.header .logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.header .logo a {
    display: flex;
    align-items: center;
}

.header .logo img {
    display: block;
    height: 64px;
    width: auto;
}

.header .nav-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    max-width: none;
}

.header .nav-main .nav-list {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.header .nav-main .nav-item {
    position: relative;
    display: block;
}

.header .nav-main .nav-item > a,
.header .nav-main .nav-item > button {
    text-decoration: none;
    color: #2c3e50;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0.5rem;
    transition: color 0.3s;
    white-space: nowrap;
    font-family: inherit;
}

.header .nav-main .nav-item > a:hover,
.header .nav-main .nav-item > button:hover {
    color: var(--primary-color);
}

/* DROPDOWN MENUS - MUST be vertical */
.header .nav-item .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    min-width: 220px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    z-index: 100;
    display: block;
    flex-direction: column;
    padding: 0.5rem 0;
    list-style: none;
}

.header .nav-item:hover > .dropdown-menu,
.header .nav-item .dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header .nav-item .dropdown-menu li {
    display: block;
    width: 100%;
}

.header .nav-item .dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.25rem;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.2s;
    white-space: nowrap;
}

.header .nav-item .dropdown-menu li a:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    padding-left: 1.5rem;
}

/* Dropdown icon */
.header .dropdown-icon {
    font-size: 0.65rem;
    margin-left: 0.25rem;
}

/* CTA button in nav */
.header .nav-cta {
    flex-shrink: 0;
}

.header .nav-cta .btn {
    background: var(--secondary-color);
    color: white;
    padding: 0.7rem 1.4rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-block;
    white-space: nowrap;
}

.header .nav-cta .btn:hover {
    background: #c5303d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

/* Mobile menu toggle */
.header .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    padding: 0.5rem;
}

/* --- BREADCRUMBS (unified) --- */
nav.breadcrumb {
    padding: 0.75rem 2rem;
    background: #f8f9fa;
    font-size: 0.9rem;
    max-width: 100%;
    display: block;
}

nav.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

nav.breadcrumb a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Fix old breadcrumb <ol> rendering */
.breadcrumb-section {
    padding: 0;
    background: #f8f9fa;
}

ol.breadcrumb {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    margin: 0;
    font-size: 0.9rem;
    max-width: 1200px;
}

ol.breadcrumb li {
    display: inline;
}

ol.breadcrumb li + li::before {
    content: "/";
    margin-right: 0.5rem;
    color: #999;
}

ol.breadcrumb li a {
    color: var(--primary-color);
    text-decoration: none;
}

ol.breadcrumb li a:hover {
    color: var(--secondary-color);
}

/* --- FAQ SECTIONS (unified clean look) --- */
.faq-section {
    padding: 3rem 2rem;
    background: #f8f9fa;
}

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

.faq-section h2,
.faq-section .section-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-grid .faq-item {
    background: white;
    border-radius: 10px;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef1f5;
    transition: box-shadow 0.2s;
}

.faq-grid .faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-grid .faq-item h3 {
    color: var(--primary-color);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.faq-grid .faq-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Accordion-style FAQs (service pages) */
.faq-section .faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    border: 1px solid #eef1f5;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-section .faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-section .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: none;
    background: white;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    transition: background 0.2s, color 0.2s;
    font-family: inherit;
    line-height: 1.4;
    gap: 1rem;
}

.faq-section .faq-question:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

.faq-section .faq-question span:first-child {
    flex: 1;
}

.faq-section .faq-toggle {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--primary-color);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f0f7fa;
    transition: all 0.3s;
}

.faq-section .faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--primary-color);
    color: white;
}

.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-section .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-section .faq-answer p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* --- MODERN LEAD FORMS --- */
.lead-form-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.lead-form-section .container {
    max-width: 600px;
    margin: 0 auto;
}

.lead-form-section h2 {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.lead-form-section form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef1f5;
    margin-top: 1.5rem;
}

.lead-form-section .form-group {
    margin-bottom: 1.25rem;
}

.lead-form-section .form-group label {
    display: block;
    margin-bottom: 0.4rem;
    color: #374151;
    font-weight: 500;
    font-size: 0.88rem;
}

.lead-form-section .form-group input,
.lead-form-section .form-group select,
.lead-form-section .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e8ecf1;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    background: #fafbfc;
    transition: all 0.3s;
    color: #2c3e50;
}

.lead-form-section .form-group input:focus,
.lead-form-section .form-group select:focus,
.lead-form-section .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(27, 107, 147, 0.1);
    background: white;
}

.lead-form-section .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.lead-form-section button[type="submit"],
.lead-form-section .btn-primary,
.lead-form-section .form-submit {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, #E63946 0%, #d32f3f 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.25);
    font-family: inherit;
}

.lead-form-section button[type="submit"]:hover,
.lead-form-section .btn-primary:hover,
.lead-form-section .form-submit:hover {
    background: linear-gradient(135deg, #d32f3f 0%, #c5303d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.35);
}

/* Service page forms (inside .content) */
.content form,
main form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef1f5;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* --- BLOG CARDS --- */
.blog-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef1f5;
    transition: all 0.3s;
}

.blog-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.blog-card-header {
    margin-bottom: 1rem;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.blog-category {
    background: #f0f7fa;
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-date,
.blog-read-time {
    color: #888;
    font-size: 0.85rem;
}

.blog-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-card-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.blog-card-link:hover {
    color: var(--secondary-color);
}

/* Blog hero */
.blog-index-hero {
    background: linear-gradient(135deg, rgba(10, 50, 80, 0.82) 0%, rgba(27, 107, 147, 0.75) 100%), url('/assets/images/blog/jacksonville-beach.jpg') center/cover no-repeat !important;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.blog-index-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.blog-index-hero .hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    color: white;
}

/* --- HERO SUBPAGE --- */
.hero-subpage {
    background: linear-gradient(135deg, #1B6B93 0%, #0f4863 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.hero-subpage h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.hero-subpage p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* --- CTA SECTION --- */
.cta-section {
    padding: 4rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* --- FOOTER (unified) --- */
.footer {
    background: #1a1a2e;
    color: #ccc;
    padding: 4rem 2rem 2rem;
}

.footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer .footer-section h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.footer .footer-section p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-section ul li {
    margin-bottom: 0.4rem;
}

.footer .footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer .footer-section ul li a:hover {
    color: white;
}

.footer .footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer .footer-bottom p {
    color: #888;
    font-size: 0.85rem;
}

/* --- SERVICES GRID (location pages) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.services-grid .service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef1f5;
    transition: all 0.3s;
}

.services-grid .service-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.services-grid .service-card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.services-grid .service-card h3 a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.05rem;
}

.services-grid .service-card h3 a:hover {
    color: var(--secondary-color);
}

.services-grid .service-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* --- BENEFITS GRID --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: white;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.benefit-card h3 {
    color: #2c3e50;
    font-size: 1.05rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* --- CONTAINER --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* --- RESPONSIVE OVERRIDES --- */
@media (max-width: 1024px) {
    .header .header-content {
        gap: 1rem;
    }

    .header .nav-main .nav-list {
        gap: 0.8rem;
    }

    .footer .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0.75rem 1rem;
    }

    .header .mobile-menu-toggle {
        display: block;
    }

    .header .nav-main {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        padding: 1rem;
        flex-direction: column;
    }

    .header .nav-main.mobile-open {
        display: flex;
    }

    .header .nav-main .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .header .nav-main .nav-item {
        width: 100%;
    }

    .header .nav-main .nav-item > a,
    .header .nav-main .nav-item > button {
        display: block;
        width: 100%;
        padding: 0.75rem 1rem;
        text-align: left;
    }

    .header .nav-item .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin-top: 0;
        border-radius: 0;
        background: #f8f9fa;
        padding: 0;
    }

    .header .nav-item .dropdown-menu.open {
        display: block;
    }

    .header .nav-item .dropdown-menu li a {
        padding: 0.6rem 1rem 0.6rem 2rem;
    }

    .header .nav-cta {
        width: 100%;
        margin-top: 0.5rem;
    }

    .header .nav-cta .btn {
        display: block;
        text-align: center;
        width: 100%;
    }

    .hero-subpage h1 {
        font-size: 1.8rem;
    }

    .lead-form-section form {
        padding: 1.5rem;
    }

    .footer .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-index-hero h1 {
        font-size: 1.8rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .faq-section .faq-question {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
    }
}


/* ============================================================
   SPACING & LAYOUT FIXES (Feb 2026)
   Reduces hero heights, tightens white space, redesigns blog
   ============================================================ */

/* --- LOCATION HUB HERO: reduce massive blue space --- */
/* Scoped so it doesn't break the homepage hero (which also uses .hero) */
.breadcrumb + .hero {
    min-height: 280px !important;
    padding: 3rem 2rem !important;
    text-align: center;
}

.breadcrumb + .hero .hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.breadcrumb + .hero .hero-content h1 {
    font-size: 2.4rem;
    margin-bottom: 0.75rem;
}

.breadcrumb + .hero .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

/* --- SUBPAGE HERO: service pages with background images --- */
.subpage-hero {
    min-height: 260px !important;
    padding: 3.5rem 2rem !important;
}

.subpage-hero h1 {
    font-size: 2.2rem !important;
    margin-bottom: 0.5rem !important;
}

.subpage-hero p {
    font-size: 1.05rem !important;
}

/* --- HERO SUBPAGE (about, contact, etc.) --- */
.hero-subpage {
    min-height: auto !important;
    padding: 2.5rem 2rem !important;
}

/* --- BLOG INDEX HERO: compact --- */
.blog-index-hero {
    padding: 2.5rem 2rem !important;
}

/* --- CTA SECTION: reduce blue space --- */
.cta-section {
    padding: 2.5rem 2rem !important;
}

.cta-section p {
    margin-bottom: 1.25rem !important;
}

/* --- SERVICE PAGE SECTIONS: reduce white space --- */
.service-section {
    padding: 2.5rem 2rem !important;
    display: block !important;
}

.service-section > p {
    display: block !important;
    width: 100% !important;
    margin-bottom: 1.25rem;
}

.service-section h2 {
    margin-bottom: 1.25rem !important;
}

.service-subsection {
    margin-bottom: 1.5rem;
}

.service-subsection:last-child {
    margin-bottom: 0;
}

/* --- LOCATION HUB SECTIONS: tighten --- */
.about-location {
    padding: 2rem 2rem !important;
}

.services-grid-section {
    padding: 2rem 2rem !important;
}

.why-choose {
    padding: 2.5rem 2rem !important;
}

.faq-section {
    padding: 2.5rem 2rem !important;
}

.lead-form-section {
    padding: 2.5rem 2rem !important;
}

.coverage-section {
    padding: 1.5rem 2rem !important;
}

.service-directory {
    padding: 2rem 2rem !important;
}

/* --- BLOG CARD REDESIGN WITH IMAGES --- */
.blog-main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.blog-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.blog-card {
    display: grid;
    grid-template-columns: 380px 1fr;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border: none !important;
    padding: 0 !important;
}

.blog-card:hover {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.14);
    transform: translateY(-3px);
}

.blog-card-image-link {
    display: block;
    overflow: hidden;
    height: 100%;
    min-height: 0;
    background: #f0f4f7;
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.03);
}

.blog-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.82rem;
}

.blog-category {
    background: #1B6B93;
    color: white;
    padding: 0.2rem 0.65rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.blog-date,
.blog-read-time {
    color: #888;
    font-size: 0.82rem;
}

.blog-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem !important;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.75rem;
    color: #1a1a2e;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card-title a:hover {
    color: #1B6B93;
}

.blog-card-excerpt {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.blog-card-link {
    color: #1B6B93;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
    display: inline-block;
}

.blog-card-link:hover {
    color: #E63946;
}

/* Blog cards responsive */
@media (max-width: 768px) {
    .blog-card {
        grid-template-columns: 1fr !important;
    }

    .blog-card-image-link {
        height: 220px;
    }

    .blog-card-image {
        height: 220px;
        max-height: 220px;
    }

    .blog-card-body {
        padding: 1.25rem;
    }

    .blog-card-title {
        font-size: 1.15rem !important;
    }

    .blog-main {
        padding: 2rem 1rem;
    }

    /* Tighten mobile spacing for location hub heroes only */
    .breadcrumb + .hero {
        min-height: 200px !important;
        padding: 2rem 1rem !important;
    }

    .breadcrumb + .hero .hero-content h1 {
        font-size: 1.6rem;
    }

    .subpage-hero {
        min-height: 180px !important;
        padding: 2rem 1rem !important;
    }

    .subpage-hero h1 {
        font-size: 1.5rem !important;
    }

    .service-section {
        padding: 1.5rem 1rem !important;
    }

    .about-location,
    .services-grid-section,
    .why-choose,
    .faq-section,
    .lead-form-section,
    .service-directory {
        padding: 1.5rem 1rem !important;
    }

    .cta-section {
        padding: 2rem 1rem !important;
    }
}

@media (max-width: 480px) {
    .blog-card-image-link {
        height: 180px;
    }

    .blog-card-image {
        height: 180px;
        max-height: 180px;
    }

    .breadcrumb + .hero .hero-content h1 {
        font-size: 1.4rem;
    }

    .subpage-hero h1 {
        font-size: 1.3rem !important;
    }
}

/* ============================================================
   IMAGE-BASED SERVICE CARDS (location hub pages only)
   ============================================================ */
.services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.service-card-img {
    background: white;
    border-radius: 10px;
    overflow: visible;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

a.service-card-img {
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card-img:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
    transform: translateY(-4px);
}

.service-card-img a {
    text-decoration: none;
}

.card-image-wrap {
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.service-card-photo {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.service-card-img:hover .service-card-photo {
    transform: scale(1.04);
}

.service-card-img > a {
    display: block;
    overflow: hidden;
}

.service-card-content {
    padding: 1.15rem 1.25rem;
}

.service-card-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.4rem 0;
    line-height: 1.3;
}

.service-card-content h3 a {
    color: #1a1a2e;
    transition: color 0.2s;
}

.service-card-content h3 a:hover {
    color: #1B6B93;
}

.service-card-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
}

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

    .service-card-photo {
        height: 120px;
    }

    .service-card-content {
        padding: 0.85rem 1rem;
    }

    .service-card-content h3 {
        font-size: 0.95rem;
    }

    .service-card-content p {
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .services-section .services-grid,
    .services-grid-section .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card-img {
        display: grid;
        grid-template-columns: 120px 1fr;
    }

    .card-image-wrap {
        border-radius: 10px 0 0 10px;
    }

    .service-card-photo {
        height: 100%;
        min-height: 100px;
        border-radius: 10px 0 0 10px;
    }

    .service-card-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* ============================================================
   FOOTER FIX (site-footer class)
   ============================================================ */
.site-footer {
    background: #1a1a2e;
    color: #ccc;
    padding: 3rem 2rem 1.5rem;
}

.site-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.site-footer .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}

.site-footer .footer-section h4 {
    color: #E63946;
    font-size: 1.05rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin: 0 0 0.85rem 0;
}

.site-footer .footer-section p {
    color: #aaa;
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0 0 0.35rem 0;
}

.site-footer .footer-section ul {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.site-footer .footer-section ul li {
    list-style: none !important;
    margin-bottom: 0.4rem;
}

.site-footer .footer-section ul li::before {
    display: none !important;
}

.site-footer .footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.site-footer .footer-section ul li a:hover {
    color: white;
}

.site-footer .footer-bottom {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.site-footer .footer-bottom p {
    color: #777;
    font-size: 0.82rem;
    margin: 0;
}

@media (max-width: 900px) {
    .site-footer .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 550px) {
    .site-footer .footer-content {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}
