.service-page-modern {
    background: #f4f1eb;
    font-family: 'Inter', sans-serif;
    color: #23242b;
}

.service-page-modern .site-header {
    background: #f4f1eb !important;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 18px rgba(0,0,0,0.03);
}

.service-page-modern .main-nav a {
    color: #2f3137 !important;
    font-weight: 600;
}

.service-page-modern .main-nav a:hover,
.service-page-modern .main-nav a.active {
    color: #f47a2c !important;
}

.service-page-modern .main-nav a::after {
    background: #f47a2c !important;
}

.service-page-modern .dropdown-menu {
    background: #ffffff !important;
    border-radius: 16px !important;
    box-shadow: 0 18px 40px rgba(0,0,0,0.10) !important;
}

.service-page-modern .dropdown-menu li a {
    color: #555d69 !important;
}

.service-page-modern .dropdown-menu li a:hover {
    color: #f47a2c !important;
    background: #fff5ee !important;
}

/* hero */
.service-modern-hero-wrap {
    padding: 18px 0 30px;
}

.service-modern-hero {
    position: relative;
    height: 520px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.service-modern-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-modern-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(244,122,44,0.88) 0%,
        rgba(255,95,88,0.72) 33%,
        rgba(255,255,255,0.00) 58%
    );
    z-index: 1;
}

.service-modern-hero-content {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 720px;
}

.service-modern-hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 62px;
    line-height: 1.02;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    margin-bottom: 0;
}

/* main */
.service-modern-main {
    padding: 60px 0 80px;
}

.service-modern-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 34px;
    align-items: start;
}

.service-modern-sidebar {
    background: #fffdf9;
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 16px 36px rgba(0,0,0,0.05);
    position: sticky;
    top: 30px;
}

.service-side-link {
    display: block;
    background: #f8f6f2;
    color: #2f3137;
    text-decoration: none;
    padding: 18px 18px;
    border-radius: 16px;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.5;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.service-side-link:last-child {
    margin-bottom: 0;
}

.service-side-link:hover,
.service-side-link.active {
    background: linear-gradient(135deg, #f47a2c, #ff8c4a);
    color: #ffffff;
}

.service-modern-content {
    display: block;
    width: 100%;
    max-width: 100%;
}

.safety-heading-only {
    width: 100%;
    margin: 0 0 18px 0;
    padding: 0;
}

.safety-heading-only h2 {
    margin: 0 0 18px 0;
    padding: 0;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 54px;
    line-height: 1.02;
    font-weight: 800;
    color: #23242b;
    letter-spacing: -0.8px;
}

.service-modern-text-card {
    background: #fffdf9;
    border-radius: 24px;
    padding: 34px 34px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.05);
    width: 100%;
    margin-top: 0;
}

.service-modern-text-card p {
    color: #666d78;
    font-size: 16px;
    line-height: 1.95;
    margin-bottom: 16px;
}

.service-modern-text-card p:last-child {
    margin-bottom: 0;
}

/* contact */
.service-contact-section {
    padding: 20px 0 100px;
    background: #f4f1eb;
}

.contact-cta-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 60px;
    align-items: center;
}

.service-page-modern .contact-form-box {
    background: #fffdf9;
    border-radius: 26px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
    padding: 34px 30px;
}

.service-page-modern .contact-form-box h2,
.service-page-modern .contact-cta-content h2 {
    font-family: 'Poppins', sans-serif;
    color: #23242b;
    font-weight: 800;
}

.service-page-modern .contact-form-box h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.service-page-modern .contact-cta-content h2 {
    font-size: 54px;
    line-height: 1.03;
    letter-spacing: -1px;
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    margin-bottom: 16px;
}

.service-page-modern .form-group input,
.service-page-modern .form-group textarea {
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e1e3e7;
    padding: 14px 14px;
    font-size: 14px;
    color: #2f3137;
    outline: none;
}

.service-page-modern .form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.service-page-modern .form-group input:focus,
.service-page-modern .form-group textarea:focus {
    border-color: #f47a2c;
    box-shadow: 0 0 0 3px rgba(244,122,44,0.12);
}

.btn-full {
    width: 100%;
}

.service-page-modern .btn-primary {
    background: linear-gradient(135deg, #f47a2c, #ff8c4a);
    border: none;
    color: #ffffff;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 700;
}

.form-note {
    margin-top: 14px;
    color: #777f8a;
    font-size: 13px;
}

.contact-mini-boxes {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.service-page-modern .mini-contact-box {
    background: #fffdf9;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.05);
    padding: 22px 22px;
    min-width: 220px;
}

.service-page-modern .mini-contact-box h4 {
    color: #f47a2c;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
}

.service-page-modern .mini-contact-box p {
    color: #666d78;
    margin-bottom: 8px;
    line-height: 1.7;
}

/* footer */
.service-page-modern .site-footer,
.service-page-modern .footer-grid,
.service-page-modern .footer-bottom,
.service-page-modern .footer-col,
.service-page-modern .footer-about {
    background: #0b0f1a !important;
}

.service-page-modern .site-footer h3,
.service-page-modern .site-footer p,
.service-page-modern .site-footer a,
.service-page-modern .site-footer li {
    color: #ffffff !important;
}

.service-page-modern .site-footer p {
    opacity: 0.78;
}

.service-page-modern .site-footer a:hover {
    color: #f47a2c !important;
}

.service-page-modern .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* responsive */
@media (max-width: 1100px) {
    .service-modern-grid,
    .contact-cta-grid {
        grid-template-columns: 1fr;
    }

    .service-modern-hero-content h1,
    .safety-heading-only h2,
    .service-page-modern .contact-cta-content h2 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .service-modern-hero {
        height: 380px;
        border-radius: 22px;
    }

    .service-modern-hero-content {
        left: 24px;
        right: 24px;
        max-width: 100%;
    }

    .service-modern-hero-content h1,
    .safety-heading-only h2,
    .service-page-modern .contact-cta-content h2 {
        font-size: 34px;
        line-height: 1.08;
    }

    .service-modern-sidebar {
        position: static;
    }

    .service-modern-text-card,
    .service-page-modern .contact-form-box {
        padding: 22px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
/* =========================================
   FORCE FIX: GET IN TOUCH SECTION ONLY
========================================= */

.service-contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-contact-section .contact-cta-grid {
    display: grid !important;
    grid-template-columns: 360px 1fr !important;
    gap: 80px !important;
    align-items: center !important;
}

.service-contact-section .contact-form-box {
    width: 100% !important;
    max-width: 360px !important;
    padding: 34px 28px !important;
    border-radius: 28px !important;
    background: #fffdf9 !important;
    box-shadow: 0 18px 40px rgba(0,0,0,0.06) !important;
}

.service-contact-section .contact-form-box h2 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 44px !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
    color: #23242b !important;
    margin-bottom: 24px !important;
}

.service-contact-section .form-group {
    margin-bottom: 16px !important;
}

.service-contact-section .form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
}

.service-contact-section .form-group input,
.service-contact-section .form-group textarea {
    width: 100% !important;
    background: #ffffff !important;
    border: 1px solid #d9dde3 !important;
    border-radius: 14px !important;
    padding: 14px 16px !important;
    font-size: 14px !important;
    color: #5c6675 !important;
    box-sizing: border-box !important;
}

.service-contact-section .form-group input {
    height: 56px !important;
}

.service-contact-section .form-group textarea {
    min-height: 140px !important;
    resize: vertical !important;
}

.service-contact-section .btn-full,
.service-contact-section .contact-form-box .btn,
.service-contact-section .contact-form-box button {
    width: 100% !important;
    margin-top: 8px !important;
    border-radius: 999px !important;
    padding: 16px 24px !important;
    font-weight: 700 !important;
}

.service-contact-section .form-note {
    margin-top: 16px !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
    color: #7b8390 !important;
}

.service-contact-section .contact-cta-content {
    width: 100% !important;
    max-width: 760px !important;
}

.service-contact-section .contact-cta-content h2 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 54px !important;
    line-height: 1.05 !important;
    font-weight: 800 !important;
    color: #23242b !important;
    margin-bottom: 28px !important;
    letter-spacing: -0.8px !important;
}

.service-contact-section .contact-mini-boxes {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 18px !important;
    margin-top: 18px !important;
}

.service-contact-section .mini-contact-box {
    min-width: 220px !important;
    padding: 22px 22px !important;
    border-radius: 18px !important;
    background: #fffdf9 !important;
    box-shadow: 0 10px 24px rgba(0,0,0,0.05) !important;
}

.service-contact-section .mini-contact-box h4 {
    color: #f47a2c !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
}

.service-contact-section .mini-contact-box p {
    color: #66707d !important;
    line-height: 1.7 !important;
    margin-bottom: 8px !important;
}

@media (max-width: 992px) {
    .service-contact-section .contact-cta-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .service-contact-section .contact-form-box {
        max-width: 100% !important;
    }

    .service-contact-section .contact-cta-content h2 {
        font-size: 36px !important;
    }

    .service-contact-section .form-row {
        grid-template-columns: 1fr !important;
    }
}