/* ============================================
   CRYSTAL FACILITY SOLUTIONS - SERVICES
   3D Cinematic Service Cards & Theater
   ============================================ */

/* ============================================
   SERVICES THEATER SECTION - LIGHTER BACKGROUND
   ============================================ */
.services-theater {
    position: relative;
    padding: 8rem 0;
    /* Lighter gradient that complements the video hero */
    background: linear-gradient(135deg, #1a1f2e 0%, #232837 50%, #1e2332 100%);
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
}

/* ============================================
   DYNAMIC BACKGROUND - SUBTLE
   ============================================ */
.services-bg-layers {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.bg-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124, 179, 66, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 179, 66, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridFloat 20s linear infinite;
}

@keyframes gridFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.bg-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: orbPulse 8s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(124, 179, 66, 0.15);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(156, 204, 101, 0.1);
    bottom: 10%;
    right: -5%;
    animation-delay: -3s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(40, 167, 69, 0.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -6s;
}

@keyframes orbPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

.services-particles-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.4;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.services-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeInUp 1s var(--ease-in-out);
}

.header-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(124, 179, 66, 0.12);
    border: 1px solid rgba(124, 179, 66, 0.25);
    border-radius: 50px;
    color: var(--cfs-green);
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    animation: eyebrowGlow 3s ease-in-out infinite;
}

@keyframes eyebrowGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(124, 179, 66, 0.15); }
    50% { box-shadow: 0 0 40px rgba(124, 179, 66, 0.3); }
}

.header-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.title-line {
    display: inline-block;
    animation: titleReveal 1s var(--ease-in-out) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--cfs-green), var(--cfs-light-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.2s;
}

@keyframes titleReveal {
    to { opacity: 1; transform: translateY(0); }
}

.header-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* ============================================
   SERVICE FILTER TABS
   ============================================ */
.service-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease-in-out);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cfs-green), var(--cfs-dark-green));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.filter-btn span,
.filter-btn i {
    position: relative;
    z-index: 1;
}

.filter-btn:hover {
    border-color: var(--cfs-green);
    color: var(--white);
    transform: translateY(-2px);
}

.filter-btn.active {
    border-color: var(--cfs-green);
    color: var(--white);
}

.filter-btn.active::before {
    opacity: 1;
}

.filter-btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 179, 66, 0.25);
}

/* ============================================
   3D SERVICES STAGE
   ============================================ */
.services-stage {
    margin-bottom: 6rem;
    perspective: 2000px;
}

.stage-perspective {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    transform-style: preserve-3d;
    align-items: stretch;
}

/* 3D Service Card */
.service-card-3d {
    position: relative;
    height: 480px;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform 0.6s var(--ease-in-out);
    user-select: none;
    -webkit-user-select: none;
}

.service-card-3d.flipped {
    transform: rotateY(180deg);
}

.service-card-3d.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.8) rotateY(90deg);
    pointer-events: none;
}

.service-card-3d:not(.hidden) {
    display: block;
    opacity: 1;
    transform: scale(1) rotateY(0deg);
}

.card-3d-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s var(--ease-in-out);
}

.service-card-3d.flipped .card-3d-inner {
    transform: rotateY(180deg) !important;
}

/* Card Front */
.card-front {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: rotateY(0deg) translateZ(0);
    transition: all 0.4s var(--ease-in-out);
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.service-card-3d:hover .card-front {
    border-color: rgba(124, 179, 66, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(124, 179, 66, 0.1) inset;
}

/* Card Media */
.card-media {
    position: relative;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 24px 24px 0 0;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s var(--ease-in-out);
}

.service-card-3d:hover .card-media img {
    transform: scale(1.1);
}

.media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(26, 31, 46, 0.9) 100%);
    z-index: 1;
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--cfs-green), var(--cfs-dark-green));
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    z-index: 2;
    animation: badgePulse 2s ease-in-out infinite;
}

.card-badge.badge-safety {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.card-badge.badge-eco {
    background: linear-gradient(135deg, #10b981, #059669);
}

.card-badge.badge-24h {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(124, 179, 66, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(124, 179, 66, 0); }
}

/* Card Icon */
.card-icon {
    position: absolute;
    bottom: 20px;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cfs-green), var(--cfs-light-green));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(124, 179, 66, 0.3), 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.4s var(--ease-in-out);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.card-icon i,
.card-icon svg {
    font-size: 1.5rem;
    color: var(--white);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-3d:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(124, 179, 66, 0.4);
}

/* Card Content */
.card-content {
    padding: 1.5rem 1.5rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 5;
    min-height: 0;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.card-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

/* Card Meta */
.card-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: nowrap;
    margin-top: auto;
    flex-shrink: 0;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    white-space: nowrap;
}

.meta-item i {
    color: var(--cfs-green);
    font-size: 0.75rem;
}

/* Card CTA */
.card-cta {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: rgba(124, 179, 66, 0.1);
    border-top: 1px solid rgba(124, 179, 66, 0.2);
    color: var(--cfs-green);
    font-weight: var(--font-weight-semibold);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: auto;
    flex-shrink: 0;
    visibility: visible !important;
    opacity: 1 !important;
}

.card-cta i {
    transition: transform 0.3s ease;
}

.service-card-3d:hover .card-cta {
    background: rgba(124, 179, 66, 0.2);
    color: var(--white);
}

.service-card-3d:hover .card-cta i {
    transform: translateX(5px);
}

/* ============================================
   CARD BACK
   ============================================ */
.card-back {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 35, 50, 0.98), rgba(40, 45, 60, 0.98));
    border: 1px solid rgba(124, 179, 66, 0.3);
    border-radius: 24px;
    padding: 2rem;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: rotateY(180deg) translateZ(1px);
    -webkit-transform: rotateY(180deg) translateZ(1px);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1;
    scrollbar-width: thin;
    scrollbar-color: rgba(124, 179, 66, 0.5) rgba(255, 255, 255, 0.1);
}

.card-back::-webkit-scrollbar {
    width: 6px;
}

.card-back::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    margin: 10px 0;
}

.card-back::-webkit-scrollbar-thumb {
    background: rgba(124, 179, 66, 0.5);
    border-radius: 3px;
}

.card-back::-webkit-scrollbar-thumb:hover {
    background: rgba(124, 179, 66, 0.8);
}

.back-content {
    display: flex;
    flex-direction: column;
    min-height: min-content;
}

.back-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-right: 3rem;
    flex-shrink: 0;
}

.back-content h4::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(to bottom, var(--cfs-green), var(--cfs-light-green));
    border-radius: 2px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-shrink: 0;
}

.feature-list li {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-list li:hover {
    background: rgba(124, 179, 66, 0.1);
    border-color: rgba(124, 179, 66, 0.2);
    transform: translateX(5px);
}

.feature-list li i {
    width: 24px;
    height: 24px;
    background: rgba(124, 179, 66, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cfs-green);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-list li div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-list li strong {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: var(--font-weight-semibold);
}

.feature-list li span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Back Actions */
.back-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0;
    padding-top: 0.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.btn-quick-quote,
.btn-learn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.btn-quick-quote {
    background: linear-gradient(135deg, var(--cfs-green), var(--cfs-dark-green));
    color: var(--white);
}

.btn-quick-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 179, 66, 0.4);
}

.btn-learn-more {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-learn-more:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-close-back {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100;
}

.btn-close-back:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: rotate(90deg);
}

/* ============================================
   QUICK QUOTE DRAWER (Shell + Animation)
   ============================================ */
.quick-quote-drawer {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quick-quote-drawer.active {
    opacity: 1;
    pointer-events: all;
}

.drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quick-quote-drawer.active .drawer-backdrop {
    opacity: 1;
}

.drawer-panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 500px;
    background: linear-gradient(135deg, #1e2332 0%, #2a3040 100%);
    border-left: 1px solid rgba(124, 179, 66, 0.2);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-in-out);
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
}

.quick-quote-drawer.active .drawer-panel {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.drawer-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.drawer-title i {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--cfs-green), var(--cfs-light-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
}

.drawer-title h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.selected-service {
    font-size: 0.875rem;
    color: var(--cfs-green);
    font-weight: 500;
}

.btn-close-drawer {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-close-drawer:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: rotate(90deg);
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.drawer-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

/* Step Indicator */
.step-indicator {
    display: flex;
    gap: 0.5rem;
}

.step-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.step-dot.active {
    background: var(--cfs-green);
    transform: scale(1.2);
}

/* ============================================
   SERVICES CTA - BUNDLE
   ============================================ */
.services-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.08), rgba(124, 179, 66, 0.04));
    border: 1px solid rgba(124, 179, 66, 0.2);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 179, 66, 0.08) 0%, transparent 70%);
    animation: ctaGlow 10s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

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

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-bundle-quote {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--cfs-green), var(--cfs-dark-green));
    border: none;
    border-radius: 50px;
    color: var(--white);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(124, 179, 66, 0.3);
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.btn-bundle-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(124, 179, 66, 0.4);
}

.btn-bundle-quote i {
    transition: transform 0.3s ease;
}

.btn-bundle-quote:hover i {
    transform: rotate(360deg);
}

.cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.bundle-preview {
    position: relative;
    width: 200px;
    height: 200px;
}

.bundle-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--cfs-green);
    animation: iconOrbit 8s linear infinite;
}

.icon-1 { animation-delay: 0s; top: 0; left: 50%; transform: translateX(-50%); }
.icon-2 { animation-delay: -2s; top: 50%; right: 0; transform: translateY(-50%); }
.icon-3 { animation-delay: -4s; bottom: 0; left: 50%; transform: translateX(-50%); }
.icon-4 { animation-delay: -6s; top: 50%; left: 0; transform: translateY(-50%); }

@keyframes iconOrbit {
    0% { transform: rotate(0deg) translateX(80px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(80px) rotate(-360deg); }
}

.bundle-connector {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px dashed rgba(124, 179, 66, 0.3);
    border-radius: 50%;
    animation: connectorSpin 20s linear infinite;
}

@keyframes connectorSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .stage-perspective {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card-3d {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .services-theater {
        padding: 5rem 0;
    }

    .services-container {
        padding: 0 1.5rem;
    }

    .services-header {
        margin-bottom: 3rem;
    }

    .header-title {
        font-size: 2rem;
    }

    .service-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }

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

    .service-card-3d {
        height: 420px;
        max-width: 400px;
        margin: 0 auto;
    }

    .card-back {
        padding: 1.5rem;
    }

    .back-actions {
        grid-template-columns: 1fr;
    }

    .drawer-panel {
        max-width: 100%;
    }

    .services-cta {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2rem;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

    .bundle-preview {
        width: 150px;
        height: 150px;
    }

    .bundle-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    @keyframes iconOrbit {
        0% { transform: rotate(0deg) translateX(60px) rotate(0deg); }
        100% { transform: rotate(360deg) translateX(60px) rotate(-360deg); }
    }

    .services-stage {
        perspective: none !important;
    }

    .stage-perspective {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        transform-style: flat !important;
    }

    .service-card-3d {
        height: auto !important;
        min-height: 420px !important;
        width: 100% !important;
        transform-style: flat !important;
        transform: none !important;
        position: relative !important;
        backface-visibility: visible !important;
        -webkit-backface-visibility: visible !important;
    }

    .service-card-3d .card-3d-inner {
        transform-style: flat !important;
        transform: none !important;
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
    }

    .service-card-3d .card-front {
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
        backface-visibility: visible !important;
        -webkit-backface-visibility: visible !important;
        transform: none !important;
        display: flex !important;
        flex-direction: column !important;
        opacity: 1 !important;
        z-index: 1 !important;
    }

    .service-card-3d .card-back {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        backface-visibility: visible !important;
        -webkit-backface-visibility: visible !important;
        transform: none !important;
        -webkit-transform: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
        display: none !important;
        z-index: 10 !important;
    }

    .service-card-3d.flipped .card-back {
        opacity: 1 !important;
        pointer-events: all !important;
        display: flex !important;
        flex-direction: column !important;
        z-index: 20 !important;
    }

    .service-card-3d.flipped .card-front {
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .service-card-3d.flipped .card-3d-inner {
        transform: none !important;
    }

    .card-media {
        position: relative !important;
        height: 200px !important;
        width: 100% !important;
        overflow: hidden !important;
        border-radius: 24px 24px 0 0 !important;
    }

    .card-media img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        transform: none !important;
    }

    .card-content {
        padding: 1.5rem !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .card-content h3 {
        font-size: 1.25rem !important;
        font-weight: 700 !important;
        color: var(--white) !important;
        text-align: left !important;
    }

    .back-content h4,
    .feature-list li strong,
    .feature-list li span {
        text-align: left !important;
    }

    .back-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.75rem !important;
        margin-top: auto !important;
    }
}

@media (max-width: 480px) {
    .service-card-3d {
        min-height: 380px !important;
    }

    .card-media {
        height: 180px !important;
    }

    .back-actions {
        grid-template-columns: 1fr !important;
    }

    .header-title {
        font-size: 1.75rem;
    }

    .card-content h3 {
        font-size: 1.25rem;
    }

    .card-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .drawer-footer {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .step-indicator {
        order: -1;
        width: 100%;
        justify-content: center;
    }

    .bundle-checkboxes {
        grid-template-columns: 1fr;
    }

    .transportation-fields .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ACCESSIBILITY & REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .bg-grid-pattern,
    .bg-gradient-orb,
    .card-badge,
    .bundle-icon,
    .bundle-connector,
    .services-cta::before {
        animation: none;
    }

    .service-card-3d {
        transition: none;
    }

    .service-card-3d.flipped {
        transform: none;
    }

    .card-back {
        display: none;
    }

    .service-card-3d:focus .card-back,
    .service-card-3d:active .card-back {
        display: flex;
        position: relative;
        transform: none;
    }
}

.service-card-3d:focus-visible {
    outline: 2px solid var(--cfs-green);
    outline-offset: 4px;
}

.filter-btn:focus-visible,
.btn-quick-quote:focus-visible,
.btn-learn-more:focus-visible,
.btn-bundle-quote:focus-visible {
    outline: 2px solid var(--cfs-green);
    outline-offset: 2px;
}

@media (prefers-contrast: high) {
    .card-front,
    .card-back {
        border-width: 2px;
    }

    .filter-btn.active {
        border-width: 3px;
    }
}

/* ============================================
   SERVICE DETAIL DRAWER (Left-Side)
   ============================================ */

.service-detail-drawer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-detail-drawer.active {
    opacity: 1;
    pointer-events: all;
}

.detail-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-detail-drawer.active .detail-drawer-backdrop {
    opacity: 1;
}

.detail-drawer-panel {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 680px;
    background: linear-gradient(135deg, #1a1f2e 0%, #252b3d 100%);
    border-right: 1px solid rgba(124, 179, 66, 0.2);
    display: flex;
    flex-direction: column;
    box-shadow: 20px 0 60px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.detail-drawer-left {
    left: 0;
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detail-drawer.active .detail-drawer-left {
    transform: translateX(0);
}

/* Header */
.detail-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
}

.detail-drawer-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-drawer-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--cfs-green), var(--cfs-light-green));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(124, 179, 66, 0.3);
}

.detail-drawer-title h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

.detail-drawer-subtitle {
    font-size: 0.875rem;
    color: var(--cfs-green);
    font-weight: 500;
    display: block;
    margin-top: 0.25rem;
}

.btn-close-detail-drawer {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-close-detail-drawer:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    transform: rotate(90deg);
    border-color: rgba(124, 179, 66, 0.4);
}

/* Body - Scrollable */
.detail-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(124, 179, 66, 0.4) rgba(255, 255, 255, 0.05);
}

.detail-drawer-body::-webkit-scrollbar {
    width: 6px;
}

.detail-drawer-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 3px;
}

.detail-drawer-body::-webkit-scrollbar-thumb {
    background: rgba(124, 179, 66, 0.4);
    border-radius: 3px;
}

.detail-drawer-body::-webkit-scrollbar-thumb:hover {
    background: rgba(124, 179, 66, 0.7);
}

/* Sections */
.detail-section {
    margin-bottom: 2.5rem;
}

.detail-section:last-child {
    margin-bottom: 0;
}

.detail-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(124, 179, 66, 0.15);
}

.detail-section-title i {
    color: var(--cfs-green);
    font-size: 1.1rem;
    width: 32px;
    height: 32px;
    background: rgba(124, 179, 66, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tasks */
.detail-tasks {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.detail-task {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.detail-task:hover {
    background: rgba(124, 179, 66, 0.08);
    border-color: rgba(124, 179, 66, 0.2);
    transform: translateX(6px);
}

.task-number {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--cfs-green), var(--cfs-dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.task-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.task-content strong {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
}

.task-content span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* Special Services Grid */
.detail-special-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.special-card {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    text-align: center;
    transition: all 0.4s ease;
}

.special-card:hover {
    background: rgba(124, 179, 66, 0.1);
    border-color: rgba(124, 179, 66, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(124, 179, 66, 0.15);
}

.special-card i {
    font-size: 1.75rem;
    color: var(--cfs-green);
    margin-bottom: 0.75rem;
    display: block;
}

.special-card strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.special-card span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    line-height: 1.4;
}

/* Highlight Section */
.detail-section-highlight {
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.08), rgba(124, 179, 66, 0.03));
    border: 1px solid rgba(124, 179, 66, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
}

.detail-section-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.detail-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: rgba(124, 179, 66, 0.12);
    border: 1px solid rgba(124, 179, 66, 0.25);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--cfs-green);
    transition: all 0.3s ease;
}

.detail-tag:hover {
    background: rgba(124, 179, 66, 0.2);
    transform: translateY(-2px);
}

.detail-tag i {
    font-size: 0.7rem;
}

/* Footer */
.detail-drawer-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-detail-quote {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--cfs-green), var(--cfs-dark-green));
    border: none;
    border-radius: 50px;
    color: var(--white);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(124, 179, 66, 0.3);
}

.btn-detail-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124, 179, 66, 0.4);
}

.btn-detail-quote i {
    font-size: 1.1rem;
}

.detail-footer-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   RESPONSIVE - DETAIL DRAWER
   ============================================ */
@media (max-width: 768px) {
    .detail-drawer-panel {
        max-width: 100%;
    }

    .detail-drawer-header {
        padding: 1.25rem 1.5rem;
    }

    .detail-drawer-title h3 {
        font-size: 1.15rem;
    }

    .detail-drawer-body {
        padding: 1.5rem;
    }

    .detail-special-grid {
        grid-template-columns: 1fr;
    }

    .detail-task {
        padding: 0.875rem 1rem;
    }

    .task-content strong {
        font-size: 0.9rem;
    }

    .task-content span {
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .detail-drawer-icon {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }

    .detail-section-title {
        font-size: 1.05rem;
    }

    .btn-detail-quote {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
}

/* ============================================
   TRANSPORTATION DRAWER SPECIFIC STYLES
   ============================================ */

.detail-serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.875rem;
}

.serve-card {
    padding: 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    text-align: center;
    transition: all 0.4s ease;
}

.serve-card:hover {
    background: rgba(124, 179, 66, 0.1);
    border-color: rgba(124, 179, 66, 0.2);
    transform: translateY(-4px);
}

.serve-card i {
    font-size: 1.5rem;
    color: var(--cfs-green);
    margin-bottom: 0.75rem;
    display: block;
}

.serve-card strong {
    display: block;
    color: var(--white);
    font-size: 0.88rem;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.serve-card span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    line-height: 1.4;
}

/* Fleet */
.detail-fleet-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fleet-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: all 0.4s ease;
}

.fleet-card:hover {
    background: rgba(124, 179, 66, 0.08);
    border-color: rgba(124, 179, 66, 0.2);
    transform: translateX(6px);
}

.fleet-card.fleet-highlight {
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.1), rgba(124, 179, 66, 0.03));
    border-color: rgba(124, 179, 66, 0.25);
}

.fleet-icon {
    width: 56px;
    height: 56px;
    background: rgba(124, 179, 66, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--cfs-green);
    flex-shrink: 0;
}

.fleet-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.fleet-info strong {
    color: var(--white);
    font-size: 1rem;
}

.fleet-capacity {
    color: var(--cfs-green);
    font-size: 0.85rem;
    font-weight: 600;
}

.fleet-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
}

/* Area Tags */
.detail-area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.area-tag {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.area-tag:hover {
    background: rgba(124, 179, 66, 0.15);
    border-color: rgba(124, 179, 66, 0.3);
    color: var(--cfs-green);
}

/* Policy List */
.detail-policy-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.policy-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.policy-item:hover {
    background: rgba(124, 179, 66, 0.08);
    border-color: rgba(124, 179, 66, 0.2);
    transform: translateX(6px);
}

.policy-item > i {
    color: var(--cfs-green);
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
    width: 24px;
}

.policy-item div {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.policy-item strong {
    color: var(--white);
    font-size: 0.95rem;
}

.policy-item span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.87rem;
    line-height: 1.5;
}

/* Payment */
.detail-payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.payment-card:hover {
    background: rgba(124, 179, 66, 0.1);
    border-color: rgba(124, 179, 66, 0.2);
}

.payment-card i {
    color: var(--cfs-green);
    font-size: 1.1rem;
}

.payment-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    line-height: 1.5;
}

.payment-notice i {
    color: #f59e0b;
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* ============================================
   LANDSCAPING DRAWER SPECIFIC STYLES
   ============================================ */

.detail-intro {
    margin-bottom: 2rem;
    padding: 1.25rem;
    background: rgba(124, 179, 66, 0.05);
    border-left: 3px solid var(--cfs-green);
    border-radius: 0 12px 12px 0;
}

.detail-intro p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.detail-service-grid,
.detail-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.landscape-card,
.why-item {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: all 0.4s ease;
}

.landscape-card:hover,
.why-item:hover {
    background: rgba(124, 179, 66, 0.1);
    border-color: rgba(124, 179, 66, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(124, 179, 66, 0.12);
}

.landscape-icon {
    width: 44px;
    height: 44px;
    background: rgba(124, 179, 66, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--cfs-green);
    margin-bottom: 0.75rem;
}

.landscape-card strong,
.why-item strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.landscape-card span,
.why-item span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.83rem;
    line-height: 1.5;
}

.why-item i {
    font-size: 1.5rem;
    color: var(--cfs-green);
    margin-bottom: 0.75rem;
    display: block;
}

/* ============================================
   MAINTENANCE DRAWER SPECIFIC STYLES
   ============================================ */

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

.maint-card {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: all 0.4s ease;
}

.maint-card:hover {
    background: rgba(124, 179, 66, 0.1);
    border-color: rgba(124, 179, 66, 0.2);
    transform: translateY(-4px);
}

.maint-icon {
    width: 44px;
    height: 44px;
    background: rgba(124, 179, 66, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--cfs-green);
    margin-bottom: 0.75rem;
}

.maint-card strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.maint-card span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.83rem;
    line-height: 1.5;
}

.detail-approach-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.approach-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.approach-item:hover {
    background: rgba(124, 179, 66, 0.08);
    border-color: rgba(124, 179, 66, 0.2);
    transform: translateX(6px);
}

.approach-item > i {
    color: var(--cfs-green);
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
    width: 24px;
}

.approach-item div {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.approach-item strong {
    color: var(--white);
    font-size: 0.95rem;
}

.approach-item span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.87rem;
    line-height: 1.5;
}

/* ============================================
   RESPONSIVE - ALL DRAWER COMPONENTS
   ============================================ */
@media (max-width: 768px) {
    .detail-serve-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-service-grid,
    .detail-why-grid,
    .detail-maint-grid {
        grid-template-columns: 1fr;
    }

    .detail-payment-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fleet-card {
        flex-direction: column;
        text-align: center;
        gap: 0.875rem;
    }

    .serve-card {
        padding: 1rem 0.75rem;
    }

    .serve-card i {
        font-size: 1.25rem;
    }

    .serve-card strong {
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .detail-serve-grid {
        grid-template-columns: 1fr;
    }

    .detail-payment-grid {
        grid-template-columns: 1fr;
    }

    .detail-area-tags {
        gap: 0.4rem;
    }

    .area-tag {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }

    .policy-item,
    .approach-item {
        padding: 0.875rem 1rem;
    }

    .detail-intro {
        padding: 1rem;
    }

    .detail-intro p {
        font-size: 0.88rem;
    }
}


/* ============================================
   SERVICE SELECTOR (Quick Quote Drawer Step 1)
   ============================================ */
.service-selector-group {
    margin-bottom: 2rem;
}

.service-selector-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.service-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 0.75rem;
}

.service-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-align: center;
}

.service-option i {
    font-size: 1.5rem;
    color: #7cb342;
    transition: all 0.3s ease;
}

.service-option:hover {
    background: rgba(124, 179, 66, 0.1);
    border-color: rgba(124, 179, 66, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 179, 66, 0.15);
}

.service-option.selected,
.service-option[aria-checked="true"] {
    background: rgba(124, 179, 66, 0.2);
    border-color: #7cb342;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(124, 179, 66, 0.3);
}

.service-option.selected i,
.service-option[aria-checked="true"] i {
    transform: scale(1.15);
}

.service-option:focus-visible {
    outline: 2px solid #7cb342;
    outline-offset: 2px;
}

@media (max-width: 480px) {
    .service-selector {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-option {
        padding: 0.75rem 0.5rem;
        font-size: 0.75rem;
    }

    .service-option i {
        font-size: 1.25rem;
    }
}