/* ══════════════════════════════════════
   SERVICES PAGES — Modern Trendy CSS
   (bathymetric, drone-inspection, surveying-mapping)
   ══════════════════════════════════════ */

/* ── Page Hero ── */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, #0d1f3c 0%, #1A325A 50%, #1e4080 100%);
    padding: 90px 0 80px;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(255, 191, 68, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 80% 30%, rgba(30, 64, 128, 0.4) 0%, transparent 70%);
    z-index: -1;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: #fff;
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.page-hero .breadcrumb a {
    color: #ffbf44;
    transition: opacity 0.2s;
}

.page-hero .breadcrumb a:hover { opacity: 0.8; }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.3); }

.page-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    line-height: 1.15;
}

.page-hero h1 span {
    background: linear-gradient(90deg, #ffbf44, #ffd980);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ── Hero Badges ── */
.hero-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.3px;
}

.hero-badge i { color: #ffbf44; font-size: 11px; }

/* ── Service Intro Section ── */
.service-intro-section,
.drone-intro-section {
    padding: 90px 0;
    background: #fff;
}

.service-page-intro,
.drone-inspection-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text .section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffbf44;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.about-text .section-label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: #ffbf44;
    border-radius: 2px;
}

.about-text h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: #1A325A;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.about-text > p {
    font-size: 15px;
    color: #5a6a7e;
    line-height: 1.85;
    margin-bottom: 8px;
}

/* ── Feature List ── */
.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 28px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: #2d3e55;
    background: #f4f7fb;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #e8eef8;
    transition: background 0.2s, border-color 0.2s;
}

.feature-item:hover {
    background: #eef3fb;
    border-color: #c5d5ee;
}

.feature-item i {
    color: #ffbf44;
    font-size: 14px;
    min-width: 16px;
}

/* ── Hero Image ── */
.service-hero-image,
.drone-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(26, 50, 90, 0.18);
}

.service-hero-image img,
.drone-hero-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.service-hero-image:hover img,
.drone-hero-image:hover img {
    transform: scale(1.03);
}

.image-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(13, 31, 60, 0.92) 0%, transparent 100%);
    color: #fff;
    padding: 40px 22px 22px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

/* Floating stat chip on image */
.img-stat-chip {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    padding: 14px 18px;
    text-align: center;
    color: #fff;
}

.img-stat-chip .chip-num {
    font-size: 26px;
    font-weight: 800;
    color: #ffbf44;
    line-height: 1;
}

.img-stat-chip .chip-lbl {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* ── Capabilities Section ── */
.service-capabilities-section,
.drone-capabilities-section {
    background: #f4f7fb;
    padding: 90px 0;
}

.service-capabilities-section .services-section,
.drone-capabilities-section .services-section {
    background: transparent;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 16px;
}

.services-header .section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffbf44;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.services-header .section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: #ffbf44;
    border-radius: 2px;
}

.services-header .section-title {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: #1A325A;
    margin: 0;
    letter-spacing: -0.3px;
}

/* ── Service Cards Grid ── */
.services-grid.detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

/* ── Service Box Card ── */
.service-box {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e8eef8;
    box-shadow: 0 4px 20px rgba(26, 50, 90, 0.06);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(26, 50, 90, 0.14);
}

.service-img {
    position: relative;
    overflow: hidden;
    height: 230px;
}

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

.service-box:hover .service-img img {
    transform: scale(1.07);
}

/* Gradient overlay on image */
.service-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 31, 60, 0.55) 0%, transparent 55%);
    pointer-events: none;
}

.service-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 191, 68, 0.92);
    color: #1A325A;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(255, 191, 68, 0.35);
}

.service-badge i { font-size: 11px; }

.service-content {
    padding: 26px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.service-box h3 {
    font-size: 19px;
    font-weight: 800;
    color: #1A325A;
    margin: 0;
    letter-spacing: -0.2px;
}

.service-box p {
    font-size: 14px;
    color: #5a6a7e;
    line-height: 1.8;
    margin: 0;
}

/* ── Service List Items ── */
.service-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #f4f7fb;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e8eef8;
}

.service-box ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    font-weight: 500;
    color: #3a4a5e;
    padding: 12px 16px;
    border-bottom: 1px solid #e8eef8;
    transition: background 0.2s;
}

.service-box ul li:last-child { border-bottom: none; }

.service-box ul li:hover { background: #eef3fb; }

.service-box ul li::before {
    content: '';
    width: 7px;
    height: 7px;
    min-width: 7px;
    background: #ffbf44;
    border-radius: 50%;
}

/* ── Scroll Reveal Animation ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .service-page-intro,
    .drone-inspection-intro {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .page-hero { padding: 70px 0 60px; }
    .page-hero::after { height: 40px; }

    .service-intro-section,
    .drone-intro-section { padding: 60px 0; }

    .service-page-intro,
    .drone-inspection-intro {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .service-hero-image img,
    .drone-hero-image img { height: 300px; }

    .feature-list { grid-template-columns: 1fr; }

    .service-capabilities-section,
    .drone-capabilities-section { padding: 60px 0; }

    .services-grid.detailed {
        grid-template-columns: 1fr;
    }

    .hero-badges { gap: 8px; }
}

@media (max-width: 480px) {
    .page-hero h1 { font-size: 28px; }
    .services-grid.detailed { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════
   DRONE INSPECTION — Alternating Row Layout
   ══════════════════════════════════════ */

.drone-capabilities-section {
    background: #0d1f3c;
    padding: 0;
}

.di-section-head {
    padding: 80px 0 60px;
    background: #0d1f3c;
}

.di-section-head .section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffbf44;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.di-section-head .section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: #ffbf44;
    border-radius: 2px;
}

.di-section-head .section-title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
    margin: 0;
}

/* ── Each Row ── */
.di-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 460px;
}

.di-row-reverse {
    direction: rtl;
}

.di-row-reverse > * {
    direction: ltr;
}

/* ── Image Side ── */
.di-img {
    position: relative;
    overflow: hidden;
}

.di-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.di-row:hover .di-img img {
    transform: scale(1.05);
}

.di-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 31, 60, 0.45) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 28px;
}

.di-num {
    font-size: 72px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.12);
    line-height: 1;
    letter-spacing: -4px;
    user-select: none;
}

/* ── Content Side ── */
.di-content {
    background: #111e35;
    padding: 56px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.di-row-reverse .di-content {
    background: #0d1a2e;
}

.di-icon-wrap {
    width: 52px;
    height: 52px;
    background: rgba(255, 191, 68, 0.12);
    border: 1.5px solid rgba(255, 191, 68, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.di-icon-wrap i {
    color: #ffbf44;
    font-size: 20px;
}

.di-content h3 {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
    margin: 0;
    line-height: 1.2;
}

.di-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.85;
    margin: 0;
    max-width: 440px;
}

/* ── Tag List ── */
.di-tags {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.di-tags li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.di-tags li i {
    width: 22px;
    height: 22px;
    background: rgba(255, 191, 68, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffbf44;
    font-size: 9px;
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .di-row,
    .di-row.di-row-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        min-height: unset;
    }

    .di-img { height: 280px; }

    .di-content { padding: 36px 28px; }

    .di-section-head { padding: 60px 0 40px; }
}

@media (max-width: 480px) {
    .di-img { height: 220px; }
    .di-content { padding: 28px 20px; gap: 16px; }
    .di-num { font-size: 48px; }
}


/* ══════════════════════════════════════
   SURVEYING & MAPPING — Tabbed Sidebar Layout
   ══════════════════════════════════════ */

.sm-capabilities-section {
    background: #fff;
    padding: 90px 0;
}

.sm-section-head {
    margin-bottom: 52px;
}

.sm-section-head .section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffbf44;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sm-section-head .section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: #ffbf44;
    border-radius: 2px;
}

.sm-section-head .section-title {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    color: #1A325A;
    margin: 0;
    letter-spacing: -0.3px;
}

/* Layout: tabs left, panel right */
.sm-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 50px rgba(26, 50, 90, 0.1);
    min-height: 480px;
}

/* Tab nav */
.sm-tabs {
    display: flex;
    flex-direction: column;
    background: #1A325A;
    padding: 8px;
    gap: 4px;
}

.sm-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: transparent;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s, color 0.2s;
    color: rgba(255, 255, 255, 0.6);
}

.sm-tab i {
    font-size: 15px;
    min-width: 18px;
    color: rgba(255, 191, 68, 0.5);
    transition: color 0.2s;
}

.sm-tab span {
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.sm-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.sm-tab:hover i { color: #ffbf44; }

.sm-tab.active {
    background: #ffbf44;
    color: #1A325A;
}

.sm-tab.active i { color: #1A325A; }

/* Panels */
.sm-panels {
    position: relative;
    background: #f4f7fb;
}

.sm-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

.sm-panel.active {
    display: grid;
    animation: smFadeIn 0.35s ease;
}

@keyframes smFadeIn {
    from { opacity: 0; transform: translateX(12px); }
    to   { opacity: 1; transform: translateX(0); }
}

.sm-panel-img {
    overflow: hidden;
    min-height: 380px;
}

.sm-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.sm-panel.active .sm-panel-img img {
    animation: smImgZoom 6s ease forwards;
}

@keyframes smImgZoom {
    from { transform: scale(1.06); }
    to   { transform: scale(1); }
}

.sm-panel-content {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    background: #fff;
}

.sm-panel-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffbf44;
}

.sm-panel-content h3 {
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 800;
    color: #1A325A;
    margin: 0;
    line-height: 1.2;
}

.sm-panel-content p {
    font-size: 14px;
    color: #5a6a7e;
    line-height: 1.8;
    margin: 0;
}

.sm-panel-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sm-panel-content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: #2d3e55;
}

.sm-panel-content ul li i {
    width: 20px;
    height: 20px;
    background: rgba(255, 191, 68, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffbf44;
    font-size: 9px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .sm-layout {
        grid-template-columns: 1fr;
    }
    .sm-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 10px;
        gap: 6px;
    }
    .sm-tab { padding: 10px 14px; }
    .sm-tab span { font-size: 12px; }
    .sm-panel { grid-template-columns: 1fr; }
    .sm-panel-img { min-height: 240px; }
    .sm-panel-content { padding: 28px 24px; }
}

@media (max-width: 480px) {
    .sm-capabilities-section { padding: 60px 0; }
    .sm-tab span { display: none; }
    .sm-tab { padding: 10px 12px; justify-content: center; }
}


/* ══════════════════════════════════════
   BATHYMETRIC — Flip Card Layout
   ══════════════════════════════════════ */

.bathy-capabilities-section {
    background: linear-gradient(160deg, #0d1f3c 0%, #1a3a6e 100%);
    padding: 90px 0;
}

.bathy-section-head {
    text-align: center;
    margin-bottom: 56px;
}

.bathy-section-head .section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffbf44;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.bathy-section-head .section-label::before,
.bathy-section-head .section-label::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: #ffbf44;
    border-radius: 2px;
}

.bathy-section-head .section-title {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -0.3px;
}

.bathy-section-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Grid */
.bathy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Flip card */
.flip-card {
    height: 460px;
    perspective: 1200px;
    cursor: pointer;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    border-radius: 20px;
}

.flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

/* Front */
.flip-front,
.flip-back {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    overflow: hidden;
}

.flip-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.flip-card:hover .flip-front img {
    transform: scale(1.05);
}

.flip-front-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 31, 60, 0.88) 0%, rgba(13, 31, 60, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px 28px;
    gap: 10px;
}

.flip-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 191, 68, 0.18);
    border: 1.5px solid rgba(255, 191, 68, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-icon i {
    color: #ffbf44;
    font-size: 18px;
}

.flip-front-overlay h3 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.flip-hint {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.flip-hint i { font-size: 10px; }

/* Back */
.flip-back {
    background: #fff;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 32px;
    gap: 18px;
}

.flip-back-icon {
    width: 54px;
    height: 54px;
    background: #1A325A;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-back-icon i {
    color: #ffbf44;
    font-size: 20px;
}

.flip-back h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1A325A;
    margin: 0;
    line-height: 1.2;
}

.flip-back p {
    font-size: 14px;
    color: #5a6a7e;
    line-height: 1.8;
    margin: 0;
}

.flip-back ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flip-back ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: #2d3e55;
}

.flip-back ul li i {
    width: 20px;
    height: 20px;
    background: rgba(255, 191, 68, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffbf44;
    font-size: 9px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .bathy-grid {
        grid-template-columns: 1fr 1fr;
    }
    .flip-card { height: 400px; }
}

@media (max-width: 580px) {
    .bathy-grid { grid-template-columns: 1fr; }
    .flip-card { height: 380px; }
    .bathy-capabilities-section { padding: 60px 0; }
}
