/* =====================
   RESET & BASE
===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #eaf4ff;
    color: #111;
    line-height: 1.6;
    overflow-x: hidden;
}

/* =====================
   GLOBAL
===================== */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 12px;
    color: #0A1F44;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 48px;
    color: #666;
    font-size: 1rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* =====================
   GRID + CARDS
===================== */
.grid {
    display: grid;
    gap: 24px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    transition: 0.3s;
    box-shadow: 0 2px 12px rgba(10,31,68,0.06);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(10,31,68,0.1);
}

/* =====================
   NAVBAR
===================== */
.navbar {
    background: #0b3d91;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(10,31,68,0.18);
    padding: 0 20px;
}

.navbar-container {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
}

.navbar-brand-dot {
    width: 8px;
    height: 8px;
    background: #00C896;
    border-radius: 50%;
    flex-shrink: 0;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
}

.navbar-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 7px 11px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.navbar-links a:hover {
    color: #fff;
    background: rgba(255,255,255,0.09);
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.navbar-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 5px 12px;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.navbar-phone:hover {
    color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.25);
}

.navbar .btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #007bff;
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.navbar .btn-quote:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    cursor: pointer;
    flex-shrink: 0;
}

.navbar-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.navbar-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar-drawer {
    display: none;
    flex-direction: column;
    background: #0D2348;
    border-top: 1px solid rgba(255,255,255,0.07);
    gap: 2px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 16px;
}

.navbar-drawer.open {
    max-height: 460px;
    padding: 8px 16px 16px;
}

.navbar-drawer a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.93rem;
    font-weight: 500;
    padding: 11px 12px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar-drawer a:last-child { border-bottom: none; }

.navbar-drawer a:hover {
    color: #fff;
    background: rgba(255,255,255,0.06);
}

.navbar-drawer-phone {
    color: rgba(255,255,255,0.45) !important;
    font-size: 0.82rem !important;
    cursor: default;
}

.navbar-drawer-phone:hover {
    background: transparent !important;
    color: rgba(255,255,255,0.6) !important;
}

.btn-quote-mobile {
    background: #007bff !important;
    color: #fff !important;
    justify-content: center;
    font-weight: 700 !important;
    border-radius: 8px !important;
    margin-top: 6px;
    border-bottom: none !important;
}

.btn-quote-mobile:hover { background: #0056b3 !important; }

@media (max-width: 768px) {
    .navbar-links { display: none; }
    .navbar-phone { display: none; }
    .navbar .btn-quote { display: none; }
    .navbar-toggle { display: flex; }
    .navbar-drawer { display: flex; }
}

/* =====================
   BUTTONS
===================== */
.btn {
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    font-weight: 600;
}

.btn-primary {
    background: #007bff;
    color: #fff;
}

.btn-secondary {
    background: #25d366;
    color: #fff;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

/* =====================
   HERO
===================== */
.hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,31,68,0.35) 0%,
        rgba(10,31,68,0.6) 50%,
        rgba(10,31,68,0.82) 100%
    );
}

.hero-body {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 0 40px;
}

.hero-container { text-align: center; }

.hero-tag {
    display: inline-block;
    background: rgba(0,200,150,0.18);
    border: 1px solid rgba(0,200,150,0.35);
    color: #00C896;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title-accent { color: #FFD700; }

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.82);
    margin-bottom: 36px;
    font-weight: 400;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tagline span { color: #FFD700; font-weight: 600; }

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

.cta-buttons .btn {
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.cta-buttons .btn-primary {
    background: #007bff;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0,123,255,0.35);
}

.cta-buttons .btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,123,255,0.4);
}

.cta-buttons .btn-secondary {
    background: #25d366;
    color: #fff;
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

.cta-buttons .btn-secondary:hover {
    background: #1ebe5b;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37,211,102,0.4);
}

/* =====================
   HERO TRUST
===================== */
.hero-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px 20px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-trust span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    white-space: nowrap;
}

.hero-trust span i {
    color: #25d366;
    font-size: 0.8rem;
}

/* Hospital-grade pill — strongest differentiator */
.hero-trust__highlight {
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.4);
    border-radius: 999px;
    padding: 4px 14px;
    color: #4ade80 !important;
    font-weight: 600 !important;
}

.hero-trust__highlight i {
    color: #4ade80 !important;
}

/* Dot separators between items on desktop */
@media (min-width: 769px) {
    .hero-trust span + span::before {
        content: '·';
        margin-right: 20px;
        color: rgba(255, 255, 255, 0.25);
        font-size: 1rem;
        pointer-events: none;
    }

    /* No dot immediately after the pill */
    .hero-trust__highlight + span::before {
        display: none;
    }
}

/* =====================
   SERVICES STRIP
===================== */
.services-strip {
    background: #fff;
    border-top: 3px solid #00C896;
    box-shadow: 0 4px 24px rgba(10,31,68,0.1);
    position: relative;
    z-index: 3;
}

.services-strip-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 16px;
    text-decoration: none;
    border-right: 1px solid #e8f0fb;
    transition: background 0.2s;
}

.strip-item:last-child { border-right: none; }
.strip-item:hover { background: #f5f9ff; }

.strip-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.strip-icon--blue   { background: #EAF4FF; color: #007bff; }
.strip-icon--green  { background: #F0FFF6; color: #25d366; }
.strip-icon--amber  { background: #FFFBEA; color: #f59e0b; }
.strip-icon--purple { background: #F5F0FF; color: #8b5cf6; }
.strip-icon--teal   { background: #E6FFF9; color: #00C896; }
.strip-icon--red    { background: #FFF0F0; color: #e53e3e; }

.strip-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.strip-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0A1F44;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.strip-price {
    font-size: 0.72rem;
    color: #007bff;
    font-weight: 600;
    white-space: nowrap;
}

.strip-arrow {
    color: #bcd0e8;
    font-size: 0.75rem;
    transition: transform 0.2s, color 0.2s;
    flex-shrink: 0;
}

.strip-item:hover .strip-arrow {
    transform: translateX(3px);
    color: #007bff;
}

/* =====================
   WHY SECTION
===================== */
.why-wrapper {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    max-width: 900px;
    margin: auto;
}

.why-item { text-align: center; }

/* =====================
   SERVICES PREMIUM
===================== */
.services-premium {
    padding: 80px 20px;
    background: #eaf4ff;
}

.services-premium .header {
    text-align: center;
    margin-bottom: 48px;
}

.services-premium .header h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    color: #0A1F44;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.services-premium .header p {
    color: #666;
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
}

.services-premium .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 28px;
    align-items: stretch;
}

/* =====================
   SERVICE CARDS
===================== */
.service-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(10,31,68,0.07);
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.7s ease;
    opacity: 0;
    transform: translateY(24px);
}

.service-card.show {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(10,31,68,0.13);
}

.image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #dce8f8;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .image-wrapper img { transform: scale(1.06); }

.image-wrapper .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #FFD700;
    color: #0A1F44;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-content {
    padding: 22px 20px 18px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    color: #0A1F44;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}

.service-content p {
    font-size: 0.92rem;
    color: #666;
    margin-bottom: 6px;
    line-height: 1.6;
    flex: 1;
}

.service-price {
    font-size: 1rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 14px;
}

.service-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f0f4ff;
}

.service-actions a, .btn-book {
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: 0.2s;
}

.service-actions .btn-book, .btn-book {
    background: #007bff;
    color: #fff;
}

.service-actions .btn-book:hover, .btn-book:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

.service-actions .btn-read, .btn-read {
    background: transparent;
    border: 1.5px solid #007bff;
    color: #007bff;
    font-weight: 600;
    text-decoration: none;
}

.service-actions .btn-read:hover, .btn-read:hover {
    background: #007bff;
    color: #fff;
}

.btn-read i { margin-left: 5px; transition: transform 0.3s; }
.btn-read:hover i { transform: translateX(3px); }

.services-cta {
    text-align: center;
    margin-top: 52px;
}

.services-cta .cta-btn {
    background: #25d366;
    color: #fff;
    padding: 16px 44px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: 0.3s;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

.services-cta .cta-btn:hover {
    background: #1ebe5b;
    transform: translateY(-2px);
}

/* =====================
   WORKFLOW CAROUSEL
===================== */
.how-it-works-carousel {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.workflow-carousel-wrapper { position: relative; overflow: hidden; }

.workflow-carousel {
    display: flex;
    transition: transform 0.8s ease;
}

.workflow-slide {
    min-width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.workflow-slide.show {
    opacity: 1;
    transform: translateY(0);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.step-card {
    background: #f0f6ff;
    padding: 28px 20px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #dce8f8;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(10,31,68,0.1);
}

.step-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.step-icon.blue  { background: #007bff; }
.step-icon.pink  { background: #ff6fb5; }
.step-icon.green { background: #28a745; }

.slide-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #0A1F44;
    margin-bottom: 15px;
}

.how-it-works-carousel .cta-btn {
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: 0.3s;
}

.how-it-works-carousel .cta-btn:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

.carousel-nav {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.carousel-nav button {
    width: 44px;
    height: 44px;
    padding: 0;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50%;
    background: #0A1F44;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav button:hover {
    background: #007bff;
    transform: scale(1.08);
}

/* =====================
   BEFORE & AFTER
===================== */
.before-after {
    padding: 90px 20px;
    background: #fff;
    text-align: center;
}

.before-after-header { margin-bottom: 48px; }

.before-after-tag {
    display: inline-block;
    background: #e8f0ff;
    color: #007bff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.before-after .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #0A1F44;
    margin-bottom: 12px;
}

.before-after .section-subtitle {
    color: #666;
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.before-after-slider {
    position: relative;
    width: 100%;
    max-width: 860px;
    margin: 0 auto 48px;
    border-radius: 20px;
    overflow: hidden;
    cursor: ew-resize;
    box-shadow: 0 20px 60px rgba(10,31,68,0.15);
    user-select: none;
}

.before-image, .after-image { width: 100%; }

.before-image img {
    width: 100%;
    display: block;
    height: 480px;
    object-fit: cover;
}

.after-image {
    position: absolute;
    top: 0; left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.after-image img {
    width: 100vw;
    max-width: 860px;
    height: 480px;
    object-fit: cover;
    display: block;
}

.handle-label {
    position: absolute;
    top: 16px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    pointer-events: none;
}

.handle-label.before {
    left: 16px;
    background: rgba(10,31,68,0.7);
    backdrop-filter: blur(4px);
}

.handle-label.after {
    right: 16px;
    background: rgba(37,211,102,0.8);
    backdrop-filter: blur(4px);
}

.slider-handle {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 4;
    pointer-events: none;
}

.handle-line {
    flex: 1;
    width: 2px;
    background: rgba(255,255,255,0.8);
}

.handle-circle {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    pointer-events: auto;
    cursor: ew-resize;
    flex-shrink: 0;
    color: #0A1F44;
}

.handle-circle svg { width: 20px; height: 20px; }

.before-after-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    background: #f0f6ff;
    border-radius: 16px;
    padding: 24px 32px;
    max-width: 700px;
    margin: 0 auto;
}

.ba-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
    gap: 4px;
}

.ba-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0A1F44;
    line-height: 1;
}

.ba-stat-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.ba-stat-divider {
    width: 1px;
    height: 40px;
    background: #dce8f8;
}

/* =====================
   TESTIMONIALS
===================== */
.testimonials {
    padding: 80px 20px;
    background: #fff;
}

.testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    width: 100%;
}

.testimonial-card {
    background: #f5f9ff;
    border-radius: 18px;
    padding: 28px 24px;
    text-align: left;
    border: 1px solid #dce8f8;
    box-shadow: 0 2px 12px rgba(10,31,68,0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s ease;
}

.testimonial-card.show {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(10,31,68,0.1);
}

.testimonial-card .stars {
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-style: italic;
    color: #444;
    font-size: 0.96rem;
    line-height: 1.7;
    flex: 1;
}

.testimonial-card strong {
    color: #0A1F44;
    font-size: 0.87rem;
    font-weight: 700;
    display: block;
    padding-top: 10px;
    border-top: 1px solid #dce8f8;
}

.testimonials-grid .testimonial-card:only-child {
    max-width: 480px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin: 8px 0;
    border-radius: 12px;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

.video-card { background: #eef5ff; }

.no-testimonials {
    text-align: center;
    color: #888;
    font-style: italic;
    padding: 40px 0;
    grid-column: 1 / -1;
}

/* =====================
   TESTIMONIAL FORM
===================== */
.testimonial-form-section {
    background: #0b3d91;
    padding: 72px 20px;
}

.testimonial-form-section > .container > h3 {
    text-align: center;
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.testimonial-form-section > .container > p {
    text-align: center;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    font-size: 1rem;
}

.testimonial-form-wrap {
    background: #ffffff;
    border-radius: 20px;
    padding: 44px 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}

.testimonial-form-wrap h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0A1F44;
    margin-bottom: 6px;
}

.testimonial-form-wrap > p {
    color: #666;
    margin-bottom: 28px;
    font-size: 0.93rem;
}

.testimonial-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0A1F44;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required { color: #e53e3e; margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #dde6f5;
    border-radius: 10px;
    font-size: 0.94rem;
    color: #0A1F44;
    background: #f7faff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.12);
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-color: #f7faff;
    cursor: pointer;
}

.form-error { font-size: 0.78rem; color: #e53e3e; }

.btn-submit {
    display: block;
    width: 100%;
    padding: 15px;
    background: #0A1F44;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.3px;
    margin-top: 4px;
    font-family: inherit;
}

.btn-submit:hover {
    background: #007bff;
    transform: translateY(-2px);
}

.alert-success {
    background: #f0fff4;
    border: 1.5px solid #68d391;
    color: #276749;
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 0.92rem;
    font-weight: 600;
    text-align: center;
}

/* =====================
   FAQ
===================== */
.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid #dce8f8;
    transition: box-shadow 0.2s;
}

.faq-item:hover { box-shadow: 0 4px 16px rgba(10,31,68,0.08); }

.faq-question {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #0A1F44;
    font-size: 0.96rem;
    gap: 12px;
    user-select: none;
}

.faq-question span.faq-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: #eaf0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #007bff;
    font-weight: 400;
    transition: background 0.2s, transform 0.3s;
}

.faq-item.active .faq-question span.faq-icon {
    background: #007bff;
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s;
    color: #555;
    font-size: 0.93rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 18px;
}

/* =====================
   FOOTER
===================== */
.footer {
    background: #0b3d91;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 56px 0 48px;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo-dot {
    width: 9px;
    height: 9px;
    background: #00C896;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.footer-text {
    font-size: 0.875rem;
    color: #7A99BB;
    line-height: 1.75;
    margin-bottom: 0;
}

.footer-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: #00C896;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links li a,
.footer-links--plain li {
    color: #7A99BB;
    font-size: 0.875rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-links li a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #1E3A5F;
    border-radius: 50%;
    flex-shrink: 0;
    transition: background 0.2s;
}

.footer-links li a:hover { color: #fff; padding-left: 4px; }
.footer-links li a:hover::before { background: #00C896; }

.footer-links--plain li a {
    color: #7A99BB;
    font-size: 0.875rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-links--plain li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #1E3A5F;
    border-radius: 50%;
    flex-shrink: 0;
    transition: background 0.2s;
}

.footer-links--plain li a:hover { color: #fff; padding-left: 4px; }
.footer-links--plain li:has(a:hover)::before { background: #00C896; }

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.875rem;
    color: #7A99BB;
}

.footer-contact-list li a {
    color: #7A99BB;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-list li a:hover { color: #fff; }

.footer-contact-icon {
    width: 26px;
    height: 26px;
    background: rgba(0, 200, 150, 0.12);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00C896;
    flex-shrink: 0;
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 0;
}

.footer-copyright { font-size: 0.8rem; color: #3D5A7A; }

.footer-bottom-contact { display: flex; gap: 20px; flex-wrap: wrap; }

.footer-bottom-contact span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: #3D5A7A;
}

.footer-bottom-contact svg { color: #00C896; fill: #00C896; flex-shrink: 0; }

/* =====================
   MODALS
===================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,31,68,0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-box {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 64px rgba(0,0,0,0.2);
    animation: modalIn 0.25s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
    position: absolute;
    top: 16px; right: 20px;
    background: #f0f4ff;
    border: none;
    font-size: 1.3rem;
    width: 34px; height: 34px;
    border-radius: 50%;
    cursor: pointer;
    color: #0A1F44;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.modal-close:hover { background: #dce8ff; }

.choice-modal { max-width: 420px; text-align: center; }
.choice-header { margin-bottom: 28px; }
.choice-icon { font-size: 2.5rem; margin-bottom: 12px; }

.choice-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0A1F44;
    margin-bottom: 6px;
}

.choice-service-name { font-size: 0.9rem; color: #007bff; font-weight: 600; }
.choice-options { display: flex; flex-direction: column; gap: 12px; }

.choice-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: 0.2s;
    text-align: left;
    width: 100%;
    font-family: inherit;
}

.choice-btn-icon { font-size: 1.6rem; }
.choice-btn strong { display: block; font-size: 0.97rem; font-weight: 700; color: #0A1F44; }
.choice-btn small { font-size: 0.8rem; color: #666; }

.choice-system { background: #f0f6ff; border-color: #dce8ff; }
.choice-system:hover { background: #dce8ff; border-color: #007bff; }
.choice-whatsapp { background: #f0fff6; border-color: #c3f0d4; }
.choice-whatsapp:hover { background: #dcf8e8; border-color: #25d366; }
.choice-divider { font-size: 0.85rem; color: #aaa; text-align: center; }

.form-modal { max-width: 560px; }

.modal-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0A1F44;
    margin-bottom: 4px;
}

.modal-subtitle { font-size: 0.9rem; color: #666; margin-bottom: 24px; }
.booking-form { display: flex; flex-direction: column; gap: 14px; }

.detail-modal { max-width: 560px; padding: 0; overflow: hidden; }
.detail-image-wrap { height: 240px; overflow: hidden; }
.detail-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.detail-content { padding: 28px 32px 32px; }

.detail-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0A1F44;
    margin-bottom: 10px;
}

.detail-content p { color: #555; font-size: 0.95rem; line-height: 1.7; margin-bottom: 8px; }
.detail-price { font-size: 1.1rem; font-weight: 700; color: #007bff; margin-bottom: 20px !important; }
.detail-actions { margin-top: 20px; }

.detail-actions .btn-book {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* =====================
   CONTACT PAGE
===================== */
.contact-hero {
    background: linear-gradient(
        to bottom,
        rgba(10,31,68,0.92) 0%,
        rgba(10,31,68,0.75) 100%
    ), url('/assets/images/contact-bg.jpg') center/cover no-repeat;
    background-color: #0A1F44;
    color: white;
    padding: 100px 20px 80px;
    text-align: center;
}

.contact-hero .before-after-tag { margin-bottom: 20px; }

.contact-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.contact-hero p { font-size: 1.05rem; opacity: 0.85; max-width: 520px; margin: 0 auto 32px; }

.contact-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.contact-hero-actions .btn {
    padding: 13px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.contact-hero-actions .btn-primary { background: #007bff; color: #fff; box-shadow: 0 6px 20px rgba(0,123,255,0.35); }
.contact-hero-actions .btn-primary:hover { background: #0056b3; transform: translateY(-2px); }
.contact-hero-actions .btn-secondary { background: #25d366; color: #fff; box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.contact-hero-actions .btn-secondary:hover { background: #1ebe5b; transform: translateY(-2px); }

.contact-cards-section { background: #fff; padding: 48px 20px; box-shadow: 0 2px 12px rgba(10,31,68,0.06); }
.contact-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.contact-info-card {
    background: #f7faff;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid #dce8f8;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-info-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(10,31,68,0.1); }

.contact-info-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 14px;
}

.contact-info-card h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #999; margin-bottom: 6px; }
.contact-info-card p, .contact-info-card a { color: #0A1F44; font-weight: 600; font-size: 0.93rem; text-decoration: none; }
.contact-info-card a:hover { color: #007bff; }

.contact-body { padding: 60px 20px 80px; background: #eaf4ff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }

.contact-form-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(10,31,68,0.07);
    margin-bottom: 24px;
    border: 1px solid #dce8f8;
}

.contact-form-wrap h2 { font-size: 1.35rem; font-weight: 800; color: #0A1F44; margin-bottom: 6px; }
.contact-form-wrap > p { color: #666; font-size: 0.9rem; margin-bottom: 24px; }

.contact-areas { padding: 28px 32px; }
.areas-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

.area-badge {
    background: #eaf4ff;
    border: 1px solid #dce8f8;
    color: #0A1F44;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.area-badge i { color: #25d366; font-size: 0.8rem; }

/* =====================
   RESPONSIVE
===================== */
@media (min-width: 992px) {
    .services-premium .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) and (max-width: 991px) {
    .services-premium .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .services-strip-grid { grid-template-columns: repeat(3, 1fr); }
    .services-premium .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-col--brand { grid-column: 1 / -1; }
    .before-after-stats { padding: 24px 20px; }
    .ba-stat { padding: 0 20px; }
    .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 60px 16px; }
    .container { padding: 0 16px; }
    .section-title { font-size: 1.8rem; }
    .section-subtitle { font-size: 0.93rem; }

    .hero { min-height: 65vh; }
    .hero-body { padding: 32px 0 32px; }
    .hero-title { font-size: 1.9rem; }
    .hero-tagline { font-size: 0.95rem; margin-bottom: 24px; }
    .cta-buttons { flex-direction: column; align-items: center; gap: 10px; }
    .cta-buttons .btn { width: 100%; max-width: 280px; justify-content: center; padding: 13px 20px; }
    .hero-trust { flex-direction: column; gap: 8px; align-items: center; }

    .services-strip-grid { grid-template-columns: repeat(2, 1fr); }
    .strip-item { border-bottom: 1px solid #e8f0fb; padding: 16px 14px; }
    .strip-item:nth-child(odd) { border-right: 1px solid #e8f0fb; }
    .strip-item:nth-child(even) { border-right: none; }
    .strip-item:nth-child(5), .strip-item:nth-child(6) { border-bottom: none; }

    .services-premium { padding: 60px 16px; }
    .services-premium .services-grid { grid-template-columns: 1fr; gap: 20px; }
    .image-wrapper { height: 220px; }

    .before-after { padding: 60px 16px; }
    .before-after-slider { border-radius: 14px; max-width: 100%; }
    .before-image img, .after-image img { height: 260px; }
    .ba-stat-divider { display: none; }
    .before-after-stats { gap: 16px; padding: 20px 16px; flex-wrap: wrap; }
    .ba-stat { padding: 0 12px; }
    .ba-stat-number { font-size: 1.4rem; }

    .how-it-works-carousel { padding: 60px 16px; }
    .steps-grid { grid-template-columns: 1fr; gap: 16px; }
    .slide-title { font-size: 1.4rem; }

    .testimonials { padding: 60px 16px; }
    .testimonials-grid { grid-template-columns: 1fr; }

    .testimonial-form-section { padding: 52px 16px; }
    .testimonial-form-wrap { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }

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

    .modal-box { padding: 24px 18px; }
    .choice-modal, .form-modal, .detail-modal { max-width: 100%; }
    .detail-image-wrap { height: 200px; }
    .detail-content { padding: 20px 18px 24px; }

    .footer-container { grid-template-columns: 1fr 1fr; gap: 24px 20px; padding: 44px 0 36px; }
    .footer-col--brand { grid-column: 1 / -1; text-align: center; }
    .footer-logo { justify-content: center; }
    .footer-links li a, .footer-links--plain li, .footer-links--plain li a, .footer-contact-list li { justify-content: center; }
    .footer-title { text-align: center; }
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

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

    .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-hero h1 { font-size: 1.8rem; }
    .contact-hero-actions { flex-direction: column; align-items: center; }
    .contact-hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
}

@media (max-width: 600px) {
    .before-after-stats { flex-wrap: wrap; gap: 20px; padding: 20px 16px; }
    .ba-stat-divider { display: none; }
    .ba-stat { padding: 0; width: 45%; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .testimonial-form-wrap { padding: 28px 20px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.6rem; }
    .strip-item { padding: 12px 10px; gap: 8px; }
    .strip-icon { width: 36px; height: 36px; font-size: 0.9rem; border-radius: 10px; }
    .strip-name { font-size: 0.75rem; }
    .strip-price { font-size: 0.68rem; }
    .strip-arrow { display: none; }

    .service-content h3 { font-size: 1rem; }
    .service-actions { flex-direction: column; gap: 8px; }
    .service-actions a, .service-actions button { width: 100%; text-align: center; justify-content: center; }
    .before-image img, .after-image img { height: 220px; }
    .handle-circle { width: 36px; height: 36px; }
    .testimonial-card { padding: 20px 16px; }
    .modal-box { padding: 20px 14px; border-radius: 14px; }
    .modal-title { font-size: 1.2rem; }
    .choice-header h3 { font-size: 1.15rem; }
    .choice-btn { padding: 13px 14px; gap: 12px; }
    .ba-stat-number { font-size: 1.2rem; }
    .ba-stat-label { font-size: 0.72rem; }
    .faq-question { font-size: 0.85rem; }
    .footer-title { font-size: 0.95rem; }
    .footer-text { font-size: 0.88rem; }
    .footer-inner { padding: 0 16px; }
    .footer-container { gap: 20px 16px; }
    .contact-cards-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px 18px; }
    .modal-box { padding: 24px 18px; }
    .detail-content { padding: 20px; }
}

@media (max-width: 360px) {
    .hero-content h1 { font-size: 1.3rem; }
    .cta-buttons .btn { font-size: 0.85rem; padding: 11px 16px; }
    .section-title { font-size: 1.5rem; }
    .service-content h3 { font-size: 0.95rem; }
}

@media (max-width: 768px) and (orientation: landscape) {
    .hero { min-height: 60vh; }
    .hero-content h1 { font-size: 1.4rem; }
    .hero-trust { display: none; }
    .cta-buttons { flex-direction: row; }
    .cta-buttons .btn { width: auto; }
}

/* =====================
   SECTION SPACING
===================== */
.services-premium,
.how-it-works-carousel,
.before-after,
.testimonials,
.testimonial-form-section,
.section {
    padding-top: 80px;
    padding-bottom: 80px;
}
.detail-description {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #444;
    max-height: 240px;
    overflow-y: auto;
    padding-right: 6px;
}

.detail-description p          { margin-bottom: 0.75rem; }
.detail-description ul,
.detail-description ol         { padding-left: 1.25rem; margin-bottom: 0.75rem; }
.detail-description li         { margin-bottom: 0.3rem; }
.detail-description strong     { color: #111; }
.detail-description h2         { font-size: 1.1rem; font-weight: 700; margin: 0.75rem 0 0.4rem; color: #0A1F44; }
.detail-description h3         { font-size: 1rem; font-weight: 600; margin: 0.75rem 0 0.4rem; color: #0A1F44; }
.detail-description blockquote {
    border-left: 3px solid #007bff;
    padding-left: 12px;
    color: #555;
    font-style: italic;
    margin: 0.75rem 0;
}

.detail-description::-webkit-scrollbar       { width: 4px; }
.detail-description::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }
/* =====================
   SERVICES STRIP
===================== */
.services-strip {
    background: #fff;
    border-top: 3px solid #00C896;
    box-shadow: 0 4px 24px rgba(10,31,68,0.1);
    position: relative;
    z-index: 3;
}

.services-strip-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    overflow: hidden;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 14px;
    text-decoration: none;
    border-right: 1px solid #e8f0fb;
    border-bottom: 1px solid #e8f0fb;
    transition: background 0.2s;
    min-width: 0;
}

.strip-item:last-child { border-right: none; }
.strip-item:hover { background: #f5f9ff; }

.strip-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.strip-icon--blue   { background: #EAF4FF; color: #007bff; }
.strip-icon--green  { background: #F0FFF6; color: #25d366; }
.strip-icon--amber  { background: #FFFBEA; color: #f59e0b; }
.strip-icon--purple { background: #F5F0FF; color: #8b5cf6; }
.strip-icon--teal   { background: #E6FFF9; color: #00C896; }
.strip-icon--red    { background: #FFF0F0; color: #e53e3e; }

.strip-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.strip-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: #0A1F44;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.strip-price {
    font-size: 0.7rem;
    color: #007bff;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.strip-arrow {
    color: #bcd0e8;
    font-size: 0.7rem;
    transition: transform 0.2s, color 0.2s;
    flex-shrink: 0;
}

.strip-item:hover .strip-arrow {
    transform: translateX(3px);
    color: #007bff;
}

/* Strip responsive breakpoints */
@media (max-width: 1200px) {
    .services-strip-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .strip-item:nth-child(3n) { border-right: none; }
    .strip-item:nth-child(n+4) { border-bottom: none; }
}

@media (max-width: 768px) {
    .services-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .strip-item {
        padding: 14px 12px;
        gap: 10px;
        border-right: 1px solid #e8f0fb;
        border-bottom: 1px solid #e8f0fb;
    }
    /* Reset nth-child from 1200px breakpoint */
    .strip-item:nth-child(3n) { border-right: 1px solid #e8f0fb; }
    /* 2-col layout borders */
    .strip-item:nth-child(2n) { border-right: none; }
    .strip-item:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 480px) {
    .services-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .strip-item { padding: 12px 10px; gap: 8px; }
    .strip-icon { width: 34px; height: 34px; font-size: 0.85rem; border-radius: 8px; }
    .strip-name { font-size: 0.72rem; }
    .strip-price { font-size: 0.65rem; }
    .strip-arrow { display: none; }
}