        :root {
            --primary-red: #DF1E08;
            --accent-blue: #5282bf;
            --dark-navy: #18385d;
            --pure-white: #ffffff;
            --light-bg: #f9fcff;
        }


        @font-face {
  font-display: swap;
}

        .page-hero {
            /* background image – subtle logistics/road theme, dark overlay for readability */
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url(' ../images/breadcrumb/angelpackersmovers.webp ') center center / cover no-repeat;
            /* fallback color while loading */
            background-color: #2d3748;
            padding: 3rem 0 2.8rem 0;
            /* compact – small on all screens */
            background-size: 100% 100%, cover;
            margin-bottom: 0;
            position: relative;
        }

        /* overlay to ensure text stands out (already in gradient, but extra insurance) */
        .page-hero-content {
            color: white;
            position: relative;
            z-index: 2;
        }

        /* breadcrumb styling – clean, light, with brand touch */
        .page-breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.35rem 0.6rem;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            /* subtle glass pill */
            padding: 0.4rem 1rem;
            border-radius: 40px;
            width: fit-content;
            backdrop-filter: blur(2px);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .page-breadcrumb a {
            color: white;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            transition: color 0.15s ease;
            opacity: 0.9;
        }

        .page-breadcrumb a i {
            color: white;
            font-size: 1rem;
        }

        .page-breadcrumb a:hover {
            color: white;
            opacity: 1;
        }

        .page-breadcrumb a:hover i {
            color: white;
        }

        .page-breadcrumb span {
            color: rgba(255, 255, 255, 0.7);
        }

        .page-breadcrumb span:last-child {
            color: white;
            font-weight: 600;
            background: var(--primary-color);
            padding: 0.15rem 0.7rem;
            border-radius: 40px;
            margin-left: 0.2rem;
            font-size: 0.85rem;
        }

        /* main heading – bold, large enough but compact */
        .page-hero h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: white;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        /* subtitle / description */
        .page-hero p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.95);
            max-width: 800px;
            margin-bottom: 0.2rem;
            font-weight: 400;
            line-height: 1.5;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
        }

        /* mission & vision specific line (extra emphasis) */
        .hero-tagline {
            font-size: 1.1rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.9);
            margin-top: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .hero-tagline i {
            color: var(--primary-color);
            background: white;
            border-radius: 50%;
            padding: 0.2rem;
            font-size: 1rem;
        }

        /* responsive adjustments – smaller on mobile */
        @media (max-width: 576px) {
            .page-hero {
                padding: 2rem 0 1.8rem 0;
            }

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

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

            .hero-tagline {
                font-size: 0.9rem;
                flex-wrap: wrap;
            }

            .page-breadcrumb {
                font-size: 0.85rem;
                padding: 0.3rem 0.8rem;
            }
        }

        .quote-form-container {
            position: relative;
            margin-top: -40px;
            z-index: 10;
            padding-bottom: 10px;
        }

        @media (max-width: 768px) {
            .quote-form-container {
                margin-top: -40px;
                padding-bottom: 10px;
            }
        }

        /* reusable service section */
        .service-content-section {
            background-color: var(--pure-white);
            padding: 5rem 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .service-content-section::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(82, 130, 191, 0.03) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .service-content-section::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(223, 30, 8, 0.02) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .section-label {
            color: var(--dark-navy);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: .55rem;
        }

        .section-label span {
            color: var(--primary-red);
            border-bottom: 3px solid rgba(223, 30, 8, 0.2);
        }

        .section-label i {
            color: var(--primary-red);
            font-size: 1.2rem;
        }

        .service-description {
            font-size: 1.1rem;
            color: #384453;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        /* reusable image card */

        .service-visual-card {
            background: var(--pure-white);
            border-radius: 20px;
            box-shadow: 0 30px 50px -20px rgba(24, 56, 93, 0.2), 0 8px 20px rgba(0, 0, 0, 0.02);
            transition: transform .4s ease;
            border: 1px solid rgba(82, 130, 191, 0.15);
        }

        .service-visual-card:hover {
            transform: translateY(-6px);
        }

        .service-image {
            width: 100%;
            max-width: 600px;
            height: 400px;
            object-fit: cover;
            object-position: center;
            border-radius: 18px;
            box-shadow: 0 20px 30px -12px rgba(0, 20, 40, 0.15);
            display: block;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .service-image {
                max-width: 100%;
                height: 280px;
                border-radius: 14px;
            }
        }

        .service-btn {
            background: var(--primary-red);
            border: none;
            color: white;
            font-weight: 600;
            padding: 1rem 2.5rem;
            border-radius: 60px;
            font-size: 1rem;
            transition: .25s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: .6rem;
        }

        .service-btn:hover {
            background: #b11100;
            transform: translateY(-3px);
            color: white;
        }

        /* animation */

        .floating-soft {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-6px)
            }

            100% {
                transform: translateY(0)
            }
        }
        .faq-section{
padding:52px 20px;
background:var(--light-gray);
}

.faq-grid{
display:grid;
grid-template-columns:1fr 0.9fr;
gap:32px;
align-items:center;
}

/* header */

.faq-label{
font-size:12px;
font-weight:700;
letter-spacing:1px;
color:var(--primary-red);
text-transform:uppercase;
display:flex;
gap:5px;
align-items:center;
margin-bottom:6px;
}

.faq-title{
font-size:26px;
font-weight:700;
color:var(--dark-navy);
margin-bottom:8px;
line-height:1.25;
}

.faq-title span{
color:var(--primary-red);
}

.faq-subtitle{
color:var(--text-muted);
margin-bottom:20px;
max-width:480px;
font-size:14px;
}

/* accordion */

.faq-accordion{
display:flex;
flex-direction:column;
gap:8px;
}

.faq-item{
background:#fff;
border-radius:10px;
border:1px solid #e9eef5;
overflow:hidden;
transition:.28s;
}

.faq-question{
width:100%;
background:none;
border:none;
padding:13px 16px;
font-size:14.5px;
font-weight:600;
color:var(--dark-navy);
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;
text-align:left;
}

.faq-icon{
font-size:18px;
color:var(--primary-red);
flex-shrink:0;
margin-left:8px;
transition:transform .25s;
}

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

.faq-answer{
padding:0 16px 14px 16px;
font-size:13.5px;
line-height:1.6;
color:var(--text-dark);
display:none;
}

.faq-item.active .faq-answer{
display:block;
}

.faq-item.active{
border-color:var(--accent-blue);
box-shadow:0 6px 16px rgba(0,0,0,0.05);
}

/* right image */

.faq-right img{
width:100%;
height:auto;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
display:block;
}

.faq-call-wrap{
margin-top:20px;
}

.faq-call-btn{
width:100%;
display:flex;
align-items:center;
justify-content:space-between;
gap:12px;
padding:14px 18px;
border-radius:12px;
background:linear-gradient(95deg,#DF1E08 0%,#b91506 100%);
color:#fff;
text-decoration:none;
font-weight:700;
border:1px solid rgba(223,30,8,0.28);
box-shadow:0 10px 24px rgba(223,30,8,0.2);
transition:transform .25s ease,box-shadow .25s ease;
}

.faq-call-btn:hover{
color:#fff;
transform:translateY(-2px);
box-shadow:0 14px 28px rgba(223,30,8,0.28);
}

.faq-call-text{
font-size:15px;
line-height:1.2;
}

.faq-call-action{
display:inline-flex;
align-items:center;
gap:8px;
font-size:15px;
line-height:1.2;
white-space:nowrap;
}

.faq-call-action i{
font-size:15px;
}

.faq-call-now-btn{
display:inline-flex;
align-items:center;
gap:6px;
padding:7px 12px;
border-radius:999px;
background:#ffffff;
color:#c61807;
font-size:13px;
font-weight:800;
line-height:1;
text-transform:uppercase;
letter-spacing:.4px;
box-shadow:0 3px 10px rgba(0,0,0,.15);
}

.faq-call-number{
font-size:15px;
font-weight:700;
letter-spacing:.2px;
}

/* responsive */

@media(max-width:900px){

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

.faq-right{
display:block;
max-width:460px;
margin:14px auto 0;
}

.faq-right img{
width:100%;
height:auto;
max-height:320px;
object-fit:cover;
}

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

.faq-section{
padding:40px 16px;
}

.faq-call-btn{
flex-direction:column;
align-items:flex-start;
padding:12px 14px;
}

.faq-call-text,
.faq-call-action{
font-size:14px;
}

.faq-call-now-btn{
font-size:12px;
padding:6px 10px;
}

.faq-call-number{
font-size:13px;
}

}