/**
 * ACT Solutions For All - Service Pages Styles
 * Modern design for all service pages
 *
 * @since 1.4.0
 */

/* ===============================
   GLOBAL CONTAINER
   =============================== */

.container-80 {
    max-width: 1400px;
    width: 80%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Fade-in animation for scroll effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* ===============================
   SERVICE PAGES GLOBAL
   =============================== */

.actsolutions-service-page {
    font-family: 'Poppins', sans-serif;
    background: #FFFFFF;
    color: #1a1a1a;
}

/* ===============================
   SERVICE HERO SECTION
   =============================== */

.service-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding: 160px 0 120px;
    overflow: hidden;
}

.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Service-specific hero backgrounds */
.gutter-hero-bg {
    background-image: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1920');
}

.roof-hero-bg {
    background-image: url('https://images.unsplash.com/photo-1632778149955-e80f8ceca2e8?w=1920');
}

.tile-hero-bg {
    background-image: url('https://images.unsplash.com/photo-1585128903994-2c3ef75d3f4c?w=1920');
}

.pressure-hero-bg {
    background-image: url('http://localhost/act-solutions-for-all/wp-content/uploads/2025/12/IMG-20251208-WA0041.jpg');
}

.flood-hero-bg {
    background-image: url('https://images.unsplash.com/photo-1569617084133-26942bb441f2?w=1920');
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 114, 188, 0.94) 0%, rgba(0, 90, 148, 0.92) 100%);
    z-index: 2;
}

.service-hero-content {
    position: relative;
    z-index: 3;
    color: #FFFFFF;
}

.service-breadcrumb {
    font-size: 15px;
    margin-bottom: 24px;
    opacity: 0.95;
}

.service-breadcrumb a {
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s;
}

.service-breadcrumb a:hover {
    opacity: 0.8;
}

.service-breadcrumb .separator {
    margin: 0 12px;
    opacity: 0.6;
}

.service-hero-title {
    font-size: 62px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 28px;
    line-height: 1.2;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.service-hero-description {
    font-size: 22px;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 0 40px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
}

.service-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn-service-primary,
.btn-service-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-service-primary {
    background: #FFFFFF;
    color: #0072BC;
}

.btn-service-primary:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 255, 255, 0.25);
}

.btn-service-secondary {
    background: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.btn-service-secondary:hover {
    background: #FFFFFF;
    color: #0072BC;
    transform: translateY(-3px);
}

.btn-emergency {
    background: linear-gradient(135deg, #FF8C00 0%, #FF6B00 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.3);
}

.btn-emergency:hover {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8C00 100%);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 140, 0, 0.15);
    border: 2px solid #FF8C00;
    border-radius: 50px;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
}

/* ===============================
   SECTION TAG & TITLES
   =============================== */

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 114, 188, 0.1);
    color: #0072BC;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0 0 20px;
}

.section-description {
    font-size: 18px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 20px;
    color: #555555;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

/* ===============================
   SERVICE OVERVIEW SECTION
   =============================== */

.service-overview-section {
    padding: 120px 0;
    background: #FFFFFF;
}

.service-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.overview-content {
    padding-right: 20px;
}

.overview-features {
    margin-top: 32px;
    display: grid;
    gap: 16px;
}

.overview-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 17px;
    color: #1a1a1a;
    font-weight: 500;
}

.overview-feature-item svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.overview-feature-item svg path,
.overview-feature-item svg circle {
    fill: none;
    stroke-width: 2;
}

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

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

.overview-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(0, 114, 188, 0.95);
    backdrop-filter: blur(10px);
    padding: 24px 32px;
    border-radius: 16px;
    text-align: center;
    color: #FFFFFF;
}

.badge-number {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.badge-label {
    font-size: 14px;
    opacity: 0.95;
}

.emergency-badge-img {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.95) 0%, rgba(255, 107, 0, 0.95) 100%);
}

/* ===============================
   BENEFITS SECTION
   =============================== */

.service-benefits-section {
    padding: 120px 0;
    background: #F8F9FB;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-card {
    background: #FFFFFF;
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #0072BC;
    position: relative;
    overflow: visible;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 114, 188, 0.2);
}

.benefit-icon {
    margin: 0 auto 24px;
    display: inline-block;
    width: 64px;
    height: 64px;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.benefit-icon svg path,
.benefit-icon svg circle,
.benefit-icon svg rect {
    fill: none;
    stroke-width: 2;
}

.benefit-icon svg path[fill],
.benefit-icon svg circle[fill],
.benefit-icon svg rect[fill] {
    fill: currentColor;
}

.benefit-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
}

.benefit-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin: 0;
}

/* ===============================
   PROCESS SECTION
   =============================== */

.service-process-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #F8F9FB 0%, #FFFFFF 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    background: #FFFFFF;
    padding: 48px 40px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0072BC 0%, #005a94 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.process-step:hover::before {
    transform: scaleX(1);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 114, 188, 0.15);
    border-color: rgba(0, 114, 188, 0.1);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0072BC 0%, #005a94 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(0, 114, 188, 0.25);
    margin: 0 auto 28px auto;
}

.step-content {
    padding-top: 0;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
    line-height: 1.3;
}

.step-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin: 0;
}

/* ===============================
   WHY CHOOSE US SECTION
   =============================== */

.service-why-choose-section {
    padding: 120px 0;
    background: #F8F9FB;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
}

.why-choose-features {
    display: grid;
    gap: 24px;
    margin-top: 32px;
}

.why-feature {
    display: flex;
    gap: 20px;
    align-items: start;
}

.why-feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.why-feature-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.why-feature-icon svg path,
.why-feature-icon svg circle {
    fill: none;
    stroke-width: 2;
}

.why-feature-content {
}

.why-feature-title {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.why-feature-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin: 0;
}

.why-choose-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-card-service {
    background: #FFFFFF;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    margin-bottom: 16px;
    width: 64px;
    height: 64px;
    margin-left: auto;
    margin-right: auto;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.stat-label {
    font-size: 15px;
    font-weight: 600;
    color: #555555;
}

/* ===============================
   SERVICE AREAS SECTION
   =============================== */

.service-areas-section {
    padding: 120px 0;
    background: #FFFFFF;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.area-card {
    background: #F8F9FB;
    padding: 36px 28px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.area-card:hover {
    border-color: #0072BC;
    background: #FFFFFF;
    box-shadow: 0 8px 24px rgba(0, 114, 188, 0.12);
    transform: translateY(-4px);
}

.area-icon {
    margin: 0 auto 20px;
    display: inline-block;
    width: 48px;
    height: 48px;
}

.area-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.area-icon svg path {
    fill: none;
    stroke-width: 2;
}

.area-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
}

.area-suburbs {
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

/* ===============================
   FAQ SECTION
   =============================== */

.service-faq-section {
    padding: 120px 0;
    background: #FFFFFF;
}

.faq-grid {
    display: grid;
    gap: 20px;
    margin-top: 60px;
}

.faq-item {
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #0072BC;
    box-shadow: 0 8px 24px rgba(0, 114, 188, 0.12);
}

.faq-item:hover {
    border-color: #0072BC;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.faq-question:hover {
    color: #0072BC;
}

.faq-icon {
    flex-shrink: 0;
    margin-left: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-icon svg {
    width: 24px;
    height: 24px;
    stroke: #0072BC;
}

.faq-answer {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin: 0;
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 32px 28px 32px;
}

/* ===============================
   CTA SECTION
   =============================== */

.service-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0072BC 0%, #005a94 100%);
    position: relative;
    overflow: hidden;
}

.service-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.service-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
}

.cta-title {
    font-size: 46px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
    line-height: 1.3;
}

.cta-description {
    font-size: 20px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

.cta-buttons-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-white {
    background: #FFFFFF;
    color: #0072BC;
}

.btn-white:hover {
    background: #f5f5f5;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
}

.btn-outline-white {
    background: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.btn-outline-white:hover {
    background: #FFFFFF;
    color: #0072BC;
    transform: translateY(-4px);
}

.btn-emergency-large {
    background: linear-gradient(135deg, #FF8C00 0%, #FF6B00 100%);
    color: #FFFFFF;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 6px 24px rgba(255, 140, 0, 0.4);
}

.btn-emergency-large:hover {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8C00 100%);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(255, 140, 0, 0.5);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(255, 140, 0, 0);
    }
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #FFFFFF;
}

.emergency-cta {
    background: linear-gradient(135deg, #FF8C00 0%, #FF6B00 100%);
}

.emergency-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #FFFFFF;
    border-radius: 50px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */

@media (max-width: 1200px) {
    .container-80 {
        width: 85%;
    }

    .service-overview-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

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

@media (max-width: 992px) {
    .container-80 {
        width: 90%;
    }

    .service-hero-title {
        font-size: 48px;
    }

    .service-hero-description {
        font-size: 19px;
    }

    .section-title {
        font-size: 38px;
    }

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

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

    .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .process-step {
        padding: 40px 32px;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .why-choose-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .container-80 {
        width: 95%;
    }

    .service-hero {
        min-height: 65vh;
        padding: 140px 0 100px;
    }

    .service-hero-title {
        font-size: 38px;
    }

    .service-hero-description {
        font-size: 17px;
    }

    .service-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-service-primary,
    .btn-service-secondary {
        justify-content: center;
        width: 100%;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 17px;
    }

    .service-areas-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-description {
        font-size: 18px;
    }

    .cta-contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .process-step {
        padding: 36px 28px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 20px;
    }

    .step-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .service-hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .benefit-card {
        padding: 32px 24px;
    }

    .faq-question {
        font-size: 16px;
        padding: 24px;
    }

    .faq-answer {
        font-size: 15px;
        padding: 0 24px;
    }

    .faq-item.active .faq-answer {
        padding: 0 24px 24px 24px;
    }

    .process-step {
        padding: 32px 24px;
    }

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

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

    .cta-title {
        font-size: 30px;
    }

    /* Equipment Hire Section - Mobile */
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .equipment-card {
        padding: 32px 24px;
    }

    .equipment-icon svg {
        width: 48px;
        height: 48px;
    }

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

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

    .equipment-hire-cta {
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
    }

    .equipment-cta-title {
        font-size: 22px;
    }

    .equipment-cta-text {
        font-size: 15px;
    }

    .equipment-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-equipment-primary,
    .btn-equipment-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ================================
   RELATED SERVICES SECTION
   ================================ */

.related-services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
}

.related-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e8f0, transparent);
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.related-service-card {
    background: #FFFFFF;
    border: 2px solid #f0f4f8;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.related-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0072BC, #005a94);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 114, 188, 0.15);
    border-color: rgba(0, 114, 188, 0.3);
}

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

.related-service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-service-card:hover .related-service-icon {
    background: linear-gradient(135deg, #0072BC 0%, #005a94 100%);
    transform: scale(1.1) rotate(5deg);
}

.related-service-card:hover .related-service-icon svg path,
.related-service-card:hover .related-service-icon svg circle,
.related-service-card:hover .related-service-icon svg rect {
    stroke: #ffffff;
}

.related-service-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.related-service-card:hover .related-service-title {
    color: #0072BC;
}

.related-service-description {
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
    margin: 0 0 24px;
}

.related-service-description a {
    color: #0072BC;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.related-service-description a:hover {
    color: #005a94;
    text-decoration: underline;
}

.related-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #0072BC;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-service-link:hover {
    gap: 12px;
}

.related-service-link svg {
    transition: transform 0.3s ease;
}

.related-service-link:hover svg {
    transform: translateX(4px);
}

/* Related Services Responsive */
@media (max-width: 992px) {
    .related-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .related-services-section {
        padding: 80px 0;
    }

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

    .related-service-card {
        padding: 32px 24px;
    }

    .related-service-icon {
        width: 64px;
        height: 64px;
    }

    .related-service-icon svg {
        width: 40px;
        height: 40px;
    }

    .related-service-title {
        font-size: 20px;
    }

    .related-service-description {
        font-size: 14px;
    }
}

/* ================================
   EQUIPMENT HIRE SECTION
   ================================ */

.equipment-hire-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.equipment-hire-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e8f0, transparent);
}

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

.equipment-hire-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.equipment-hire-header .section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #e6f2ff 0%, #f0f8ff 100%);
    color: #0072BC;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 114, 188, 0.1);
}

.equipment-hire-header .section-title {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.equipment-hire-header .section-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* Equipment Grid */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.equipment-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f0f4f8;
    position: relative;
    overflow: hidden;
}

.equipment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0072BC, #005a94);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.equipment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 114, 188, 0.12);
    border-color: rgba(0, 114, 188, 0.2);
}

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

.equipment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.equipment-card:hover .equipment-icon {
    background: linear-gradient(135deg, #0072BC 0%, #005a94 100%);
    transform: scale(1.1) rotate(5deg);
}

.equipment-card:hover .equipment-icon svg path,
.equipment-card:hover .equipment-icon svg rect,
.equipment-card:hover .equipment-icon svg circle {
    stroke: #ffffff;
}

.equipment-card:hover .equipment-icon svg circle[fill],
.equipment-card:hover .equipment-icon svg path[fill] {
    fill: #ffffff;
}

.equipment-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.equipment-card:hover .equipment-title {
    color: #0072BC;
}

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

/* Equipment Hire CTA */
.equipment-hire-cta {
    background: linear-gradient(135deg, #0072BC 0%, #005a94 100%);
    border-radius: 20px;
    padding: 48px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.equipment-hire-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.equipment-cta-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.equipment-cta-title {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.equipment-cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.equipment-cta-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.btn-equipment-primary,
.btn-equipment-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
}

.btn-equipment-primary {
    background: #ffffff;
    color: #0072BC;
    border: 2px solid #ffffff;
}

.btn-equipment-primary:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-equipment-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-equipment-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .equipment-hire-section {
        padding: 60px 0;
    }

    .equipment-hire-header .section-title {
        font-size: 30px;
    }

    .equipment-hire-header .section-subtitle {
        font-size: 16px;
    }

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

    .equipment-card {
        padding: 32px 24px;
    }

    .equipment-icon {
        width: 64px;
        height: 64px;
    }

    .equipment-icon svg {
        width: 48px;
        height: 48px;
    }

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

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

    .equipment-hire-cta {
        flex-direction: column;
        padding: 40px 24px;
        text-align: center;
        gap: 32px;
    }

    .equipment-cta-title {
        font-size: 24px;
    }

    .equipment-cta-text {
        font-size: 15px;
    }

    .equipment-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-equipment-primary,
    .btn-equipment-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .equipment-hire-cta {
        padding: 40px 48px;
    }
}
