/* BOXMAR Desktop — Service Pages (Service cards, features, routes, photos) */

/* ============================================
   SERVICE CARDS (LIGHT BG PAGES)
   ============================================ */
.service-card {
    background: var(--white);
    border: 1px solid var(--silver-200);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--t-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transition: transform var(--t-base);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(200, 146, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(200, 146, 42, 0.15);
}

.service-card h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.15rem;
}

.service-card p {
    color: var(--gray-500);
    font-size: 0.92rem;
    margin-bottom: var(--space-lg);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-600);
    font-weight: 700;
    font-size: 0.88rem;
    transition: gap var(--t-fast);
}

.service-link:hover {
    gap: 10px;
    color: var(--gold-500);
}

/* Dark section service cards */
.section--dark .service-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.07);
}

.section--dark .service-card:hover {
    background: rgba(200, 146, 42, 0.05);
    border-color: rgba(200, 146, 42, 0.15);
}

.section--dark .service-card h3 {
    color: var(--white);
}

.section--dark .service-card p {
    color: var(--silver-400);
}

/* Service card previews (with hover overlay) */
.service-card-preview {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--silver-200);
    transition: all var(--t-base);
}

.service-card-preview:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card-visual {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-card-emoji {
    font-size: 4rem;
    transition: all var(--t-base);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.service-card-preview:hover .service-card-emoji {
    transform: scale(1.15);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 14, 28, 0.93);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    opacity: 0;
    transition: all var(--t-base);
}

.service-card-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.88rem;
    line-height: 1.75;
    text-align: center;
    margin: 0;
}

.service-card-preview:hover .service-card-overlay {
    opacity: 1;
}

.service-card-body {
    padding: var(--space-lg) var(--space-xl) var(--space-xl);
}

.service-card-body h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.12rem;
}

.service-card-body p {
    color: var(--gray-500);
    font-size: 0.88rem;
    margin-bottom: var(--space-md);
}


/* ============================================
   SERVICE PAGE ILLUSTRATIONS
   ============================================ */

/* Illustration container */
.svc-illustration {
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(200, 146, 42, 0.22);
    padding: 0;
    display: block;
    min-height: 280px;
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(200, 146, 42, 0.1),
        0 0 60px rgba(200, 146, 42, 0.04) inset;
    transition: all var(--t-base);
    cursor: default;
}

.svc-illustration:hover {
    border-color: rgba(200, 146, 42, 0.45);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(200, 146, 42, 0.2),
        0 0 80px rgba(200, 146, 42, 0.08) inset;
    transform: translateY(-2px);
}

.svc-illustration svg {
    width: 100%;
    height: auto;
    display: block;
    filter:
        drop-shadow(0 8px 30px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 15px rgba(200, 146, 42, 0.12));
    animation: svc-illus-float 7s ease-in-out infinite;
    transition: filter var(--t-base);
}

.svc-illustration:hover svg {
    filter:
        drop-shadow(0 10px 40px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 25px rgba(200, 146, 42, 0.22));
}

@keyframes svc-illus-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    30% {
        transform: translateY(-5px);
    }

    70% {
        transform: translateY(-3px);
    }
}

/* Illustration with dark background */
.svc-illustration--dark {
    background: linear-gradient(160deg, #010508 0%, #050E1C 40%, #071828 100%);
    border-color: rgba(200, 146, 42, 0.25);
}

.svc-illustration--dark:hover {
    background: linear-gradient(160deg, #020810 0%, #071020 40%, #0A1E38 100%);
}

/* Illustration with light background */
.svc-illustration--light {
    background: linear-gradient(145deg, var(--silver-50), var(--white));
    border-color: rgba(200, 146, 42, 0.15);
}

/* Inline illustration (inside content sections) */
.svc-inline-illus {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-xl);
    position: relative;
}

.svc-inline-illus svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Scene illustration (full-width decorative) */
.svc-scene {
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
    border: 1px solid rgba(200, 146, 42, 0.12);
    padding: var(--space-3xl) var(--space-2xl);
    text-align: center;
    position: relative;
}

.svc-scene svg {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.5));
    animation: svc-illus-float 8s ease-in-out infinite;
}

/* Illustration caption */
.svc-illus-caption {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    margin-top: var(--space-sm);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
}

/* Responsive */


/* ============================================
   SERVICE PAGE PHOTO GALLERY — PREMIUM v3
   ============================================ */

/* ── Photo section header ── */
.svc-photos-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: var(--space-2xl);
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.svc-photos-header-left {
    flex: 1;
    min-width: 200px;
}

.svc-photos-title {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: var(--navy-800);
    margin: var(--space-xs) 0 var(--space-xs);
    font-family: var(--font-accent);
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.svc-photos-subtitle {
    font-size: 0.92rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.6;
}

/* ── Premium Mosaic Grid ── */
/* 5-photo magazine layout:
   [  LARGE  ] [ sm ] [ sm ]
   [  LARGE  ] [ sm ] [ sm ]
*/
.svc-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.svc-photo-grid.grid-featured {
    grid-template-columns: 1.65fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 10px;
}

.svc-photo-grid.grid-featured .svc-photo-card.featured {
    grid-row: span 2;
    aspect-ratio: unset;
}

.svc-photo-grid.grid-mosaic {
    grid-template-columns: 1.65fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 10px;
}

.svc-photo-grid.grid-mosaic .svc-photo-card:nth-child(1) {
    grid-row: span 2;
    aspect-ratio: unset;
}

.svc-photo-grid.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* ── Individual Photo Card ── */
.svc-photo-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--navy-800);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    /* Staggered reveal animation */
    opacity: 0;
    transform: translateY(20px);
}

/* Animate in when parent .reveal becomes .visible */
.reveal.visible .svc-photo-card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.reveal.visible .svc-photo-card:nth-child(1) {
    transition-delay: 0.05s;
}

.reveal.visible .svc-photo-card:nth-child(2) {
    transition-delay: 0.15s;
}

.reveal.visible .svc-photo-card:nth-child(3) {
    transition-delay: 0.22s;
}

.reveal.visible .svc-photo-card:nth-child(4) {
    transition-delay: 0.30s;
}

.reveal.visible .svc-photo-card:nth-child(5) {
    transition-delay: 0.38s;
}

.svc-photo-card.featured {
    aspect-ratio: unset;
}

/* Animated gradient border on hover */
.svc-photo-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: calc(var(--radius-lg) + 1px);
    background: linear-gradient(135deg,
            rgba(200, 146, 42, 0) 0%,
            rgba(200, 146, 42, 0.6) 40%,
            rgba(58, 135, 200, 0.4) 70%,
            rgba(200, 146, 42, 0) 100%);
    background-size: 300% 300%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
    animation: border-gradient-spin 4s linear infinite paused;
}

.svc-photo-card:hover::before {
    opacity: 1;
    animation-play-state: running;
}

@keyframes border-gradient-spin {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.svc-photo-card:hover {
    transform: translateY(-5px) scale(1.005);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(200, 146, 42, 0.25),
        0 0 40px rgba(200, 146, 42, 0.08);
    z-index: 2;
}

/* ── Photo Image ── */
.svc-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
    filter: brightness(0.82) saturate(0.88) contrast(1.04);
}

.svc-photo-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.95) saturate(1.08) contrast(1.0);
}

/* ── Photo Overlay ── */
.svc-photo-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to bottom,
            transparent 30%,
            rgba(2, 8, 16, 0.25) 58%,
            rgba(2, 8, 16, 0.82) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-lg) var(--space-lg);
    transition: background 0.4s ease;
}

.svc-photo-card:hover .svc-photo-overlay {
    background: linear-gradient(to bottom,
            rgba(2, 8, 16, 0.05) 0%,
            rgba(2, 8, 16, 0.4) 55%,
            rgba(2, 8, 16, 0.96) 100%);
}

/* ── Caption ── */
.svc-photo-caption {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.01em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.45;
    transform: translateY(6px);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-photo-card:hover .svc-photo-caption {
    transform: translateY(0);
}

/* ── Tag Badge ── */
.svc-photo-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold-200);
    margin-bottom: 6px;
    background: rgba(200, 146, 42, 0.18);
    border: 1px solid rgba(200, 146, 42, 0.4);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    width: fit-content;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 0 12px rgba(200, 146, 42, 0.1) inset;
    transform: translateY(6px);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0.04s;
}

.svc-photo-card:hover .svc-photo-tag {
    transform: translateY(0);
}

/* ── Zoom icon on hover (featured card) ── */
.svc-photo-card.featured::after {
    content: '';
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(200, 146, 42, 0.15);
    border: 1px solid rgba(200, 146, 42, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23E0B050' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='M21 21l-4.35-4.35'/%3E%3Cpath d='M11 8v6M8 11h6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    z-index: 3;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.svc-photo-card.featured:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* ── Responsive ── */


/* ============================================
   SERVICE PAGE — RELATED SERVICES SECTION
   ============================================ */
.svc-related-section {
    background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
    position: relative;
    overflow: hidden;
}

.svc-related-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(200, 146, 42, 0.04) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 50%, rgba(58, 135, 200, 0.04) 0%, transparent 55%);
    pointer-events: none;
}

.svc-related-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.svc-related-card {
    position: relative;
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(200, 146, 42, 0.15);
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.4s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.svc-related-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transition: transform var(--t-base);
    transform-origin: left;
}

.svc-related-card:hover::before {
    transform: scaleX(1);
}

.svc-related-card:hover {
    background: rgba(200, 146, 42, 0.08);
    border-color: rgba(200, 146, 42, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(200, 146, 42, 0.15), 0 0 30px rgba(200, 146, 42, 0.06);
}

.svc-related-card.active-service {
    background: rgba(200, 146, 42, 0.08);
    border-color: rgba(200, 146, 42, 0.3);
    cursor: default;
}

.svc-related-card.active-service::before {
    transform: scaleX(1);
}

.svc-related-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(200, 146, 42, 0.1);
    border: 1px solid rgba(200, 146, 42, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    transition: all var(--t-base);
    flex-shrink: 0;
}

.svc-related-card:hover .svc-related-icon {
    background: rgba(200, 146, 42, 0.18);
    border-color: rgba(200, 146, 42, 0.4);
    transform: scale(1.08);
}

.svc-related-card.active-service .svc-related-icon {
    background: var(--grad-gold);
    color: var(--navy-900);
    border-color: var(--gold-400);
}

.svc-related-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

.svc-related-card.active-service .svc-related-name {
    color: var(--gold-300);
}

.svc-related-arrow {
    margin-top: auto;
    color: rgba(255, 255, 255, 0.25);
    transition: color var(--t-fast), transform var(--t-fast);
    font-size: 1rem;
}

.svc-related-card:hover .svc-related-arrow {
    color: var(--gold-400);
    transform: translateX(3px);
}


/* ============================================
   SERVICE PAGE — ENHANCED COMPONENTS v2
   ============================================ */

/* ── Improved Page Hero ── */
.page-hero {
    padding: 200px 0 110px;
}

.page-hero .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 146, 42, 0.1);
    border: 1px solid rgba(200, 146, 42, 0.25);
    border-radius: var(--radius-full);
    padding: 6px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold-400);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
}

.page-hero .hero-eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-400);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.page-hero h1 {
    font-size: clamp(2.2rem, 4.5vw + 0.5rem, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.page-hero h1 .highlight {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero .hero-desc {
    font-size: 1.15rem !important;
    color: rgba(255, 255, 255, 0.72) !important;
    max-width: 600px;
    line-height: 1.75;
    margin-bottom: var(--space-xl) !important;
}

/* ── Hero CTA Row ── */
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-xl);
}

/* ── Service Highlight Strip ── */
.svc-highlight-strip {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.svc-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

.svc-highlight-item svg {
    flex-shrink: 0;
    color: var(--gold-400);
}

/* ── Improved Feature Cards ── */
.svc-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.svc-feature-card {
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    background: var(--white);
    border: 1px solid var(--silver-100);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.svc-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.svc-feature-card::after {
    display: none;
}

.svc-feature-card:hover::before {
    transform: scaleX(1);
}

.svc-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(200, 146, 42, 0.25);
}

.svc-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, rgba(200, 146, 42, 0.1), rgba(200, 146, 42, 0.05));
    border: 1px solid rgba(200, 146, 42, 0.2);
    transition: all 0.3s ease;
}

.svc-feature-card:hover .svc-feature-icon {
    background: linear-gradient(135deg, rgba(200, 146, 42, 0.18), rgba(200, 146, 42, 0.08));
    border-color: rgba(200, 146, 42, 0.4);
    transform: scale(1.1) rotate(3deg);
}

.svc-feature-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: var(--space-xs);
    letter-spacing: -0.01em;
}

.svc-feature-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
}

/* ── Improved Process Steps ── */
.svc-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    position: relative;
    margin-top: var(--space-2xl);
    counter-reset: step-counter;
}

.svc-process::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 2px;
    background: linear-gradient(90deg,
            rgba(200, 146, 42, 0.6) 0%,
            rgba(200, 146, 42, 0.3) 50%,
            rgba(200, 146, 42, 0.6) 100%);
    z-index: 0;
}

.svc-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-xl);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, box-shadow 0.4s ease;
    border: 1px solid transparent;
}

.svc-process-step:hover {
    background: rgba(200, 146, 42, 0.05);
    border-color: rgba(200, 146, 42, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.svc-step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--grad-gold);
    color: var(--navy-900);
    font-family: var(--font-accent);
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    box-shadow: 0 8px 24px rgba(200, 146, 42, 0.35), 0 0 0 4px rgba(200, 146, 42, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.svc-step-num::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed rgba(200, 146, 42, 0.25);
    animation: spin-slow 12s linear infinite;
}

@keyframes spin-slow {
    to {
        transform: rotate(360deg);
    }
}

.svc-process-step:hover .svc-step-num {
    transform: scale(1.15);
    box-shadow: 0 12px 32px rgba(200, 146, 42, 0.5), 0 0 0 6px rgba(200, 146, 42, 0.15);
}

.svc-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

.svc-step-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.65;
}

/* ── Service Spec Table ── */
.svc-spec-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.svc-spec-table th {
    background: var(--navy-800);
    color: var(--gold-400);
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.svc-spec-table td {
    padding: var(--space-md) var(--space-lg);
    font-size: 0.9rem;
    color: var(--navy-700);
    border-bottom: 1px solid var(--silver-100);
}

.svc-spec-table tr:last-child td {
    border-bottom: none;
}

.svc-spec-table tr:nth-child(even) td {
    background: var(--gray-50);
}

.svc-spec-table tr:hover td {
    background: rgba(200, 146, 42, 0.04);
}

/* ── Service Route Card ── */
.svc-route-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.svc-route-card {
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.svc-route-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.svc-route-card:hover::before {
    transform: scaleX(1);
}

.svc-route-card:hover {
    background: rgba(200, 146, 42, 0.05);
    border-color: rgba(200, 146, 42, 0.2);
    transform: translateY(-4px);
}

.svc-route-from,
.svc-route-to {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
}

.svc-route-arrow {
    color: var(--gold-400);
    font-size: 1.2rem;
    margin: var(--space-xs) 0;
    display: block;
}

.svc-route-time {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: var(--space-xs);
}

/* ── Service Advantage List ── */
.svc-advantage-list {
    list-style: none;
    padding: 0;
    margin: var(--space-xl) 0 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.svc-advantage-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: rgba(200, 146, 42, 0.04);
    border: 1px solid rgba(200, 146, 42, 0.18);
    border-radius: var(--radius-lg);
    transition: all 0.25s ease;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

.svc-advantage-list li:hover {
    background: rgba(200, 146, 42, 0.08);
    border-color: rgba(200, 146, 42, 0.2);
    transform: translateX(4px);
}

.svc-advantage-list .adv-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: rgba(200, 146, 42, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold-400);
}

.svc-advantage-list .adv-text strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 2px;
}

.svc-advantage-list .adv-text span {
    font-size: 0.82rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* Dark variant */
.section--dark .svc-advantage-list li {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.07);
}

.section--dark .svc-advantage-list li:hover {
    background: rgba(200, 146, 42, 0.06);
    border-color: rgba(200, 146, 42, 0.18);
}

.section--dark .svc-advantage-list .adv-text strong {
    color: var(--white);
}

.section--dark .svc-advantage-list .adv-text span {
    color: rgba(255, 255, 255, 0.5);
}

/* ── Service Stats Row ── */
.svc-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin: var(--space-3xl) 0;
}

.svc-stat-card {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(200, 146, 42, 0.18);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, border-color 0.3s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.svc-stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.svc-stat-card:hover::after {
    transform: scaleX(1);
}

.svc-stat-card:hover {
    background: rgba(200, 146, 42, 0.06);
    border-color: rgba(200, 146, 42, 0.2);
    transform: translateY(-4px);
}

.svc-stat-card .stat-num {
    font-family: var(--font-accent);
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.svc-stat-card .stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.svc-stat-card .stat-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 4px;
}

/* ── Service Why Choose Section ── */
.svc-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.svc-why-card {
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    background: var(--white);
    border: 1px solid var(--silver-100);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.svc-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.svc-why-card:hover::before {
    transform: scaleX(1);
}

.svc-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
    border-color: rgba(200, 146, 42, 0.2);
}

.svc-why-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200, 146, 42, 0.12), rgba(200, 146, 42, 0.04));
    border: 2px solid rgba(200, 146, 42, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    transition: all 0.3s ease;
}

.svc-why-card:hover .svc-why-icon {
    background: linear-gradient(135deg, rgba(200, 146, 42, 0.2), rgba(200, 146, 42, 0.08));
    border-color: rgba(200, 146, 42, 0.4);
    transform: scale(1.1);
}

.svc-why-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: var(--space-sm);
}

.svc-why-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
}

/* ── Service Testimonial ── */
.svc-testimonial {
    background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    border: 1px solid rgba(200, 146, 42, 0.15);
    position: relative;
    overflow: hidden;
    margin-top: var(--space-3xl);
}

.svc-testimonial::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 12rem;
    font-family: Georgia, serif;
    color: rgba(200, 146, 42, 0.08);
    line-height: 1;
    pointer-events: none;
}

.svc-testimonial-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.svc-testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

.svc-testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--grad-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--navy-900);
    flex-shrink: 0;
}

.svc-testimonial-name {
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
}

.svc-testimonial-role {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.svc-testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: var(--space-lg);
}

.svc-testimonial-stars span {
    color: var(--gold-400);
    font-size: 1.1rem;
}

/* ── Service FAQ ── */
.svc-faq {
    margin-top: var(--space-2xl);
}

.svc-faq-item {
    border-bottom: 1px solid var(--silver-100);
    padding: var(--space-lg) 0;
}

.svc-faq-item:last-child {
    border-bottom: none;
}

.svc-faq-q {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-800);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    transition: color 0.2s;
}

.svc-faq-q:hover {
    color: var(--gold-600);
}

.svc-faq-q::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gold-500);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.svc-faq-item.open .svc-faq-q::after {
    transform: rotate(45deg);
}

.svc-faq-a {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.75;
    margin-top: var(--space-md);
    display: none;
}

.svc-faq-item.open .svc-faq-a {
    display: block;
}

/* ── Service CTA Banner ── */
.svc-cta-banner {
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 40%, rgba(200, 146, 42, 0.1) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl) var(--space-3xl);
    border: 1px solid rgba(200, 146, 42, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    margin-top: var(--space-3xl);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(200, 146, 42, 0.08);
}

.svc-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200, 146, 42, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.svc-cta-banner-text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.svc-cta-banner-text p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    margin: 0;
}

.svc-cta-banner-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ── Responsive ── */