/* ============================================================
   PT. ORTHO MAKSIMA MANDIRI — MAIN STYLESHEET
   Corporate Medical Design System
   Version: 1.0.0
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES (Design Tokens)
   ============================================================ */
:root {
    /* ── Brand Colors ── */
    --omm-navy:         #0D3B6E;
    --omm-navy-dark:    #061F3A;
    --omm-navy-light:   #124E90;
    --omm-blue:         #1E6FA5;
    --omm-blue-light:   #2E87C2;
    --omm-teal:         #00B4D8;
    --omm-teal-light:   #E0F7FC;
    --omm-teal-dark:    #0096B4;

    /* ── Neutral Palette ── */
    --omm-white:        #FFFFFF;
    --omm-off-white:    #F4F7FA;
    --omm-gray-50:      #F8FAFC;
    --omm-gray-100:     #EEF2F7;
    --omm-gray-200:     #D6E0EA;
    --omm-gray-300:     #B8CCE0;
    --omm-gray-400:     #8DA3B8;
    --omm-gray-500:     #6B8AA3;
    --omm-gray-600:     #4A6580;
    --omm-gray-700:     #2E4560;
    --omm-gray-800:     #222277;
    --omm-gray-900:     #0F1F2E;

    /* ── Text ── */
    --omm-text:         #0F1F2E;
    --omm-text-medium:  #2E4560;
    --omm-text-muted:   #5A7491;
    --omm-text-light:   #8DA3B8;

    /* ── Semantic ── */
    --omm-success:      #198754;
    --omm-success-bg:   #D1E7DD;
    --omm-warning:      #FFC107;
    --omm-danger:       #DC3545;

    /* ── Shadows (navy-tinted) ── */
    --shadow-xs:        0 1px 4px rgba(13, 59, 110, 0.06);
    --shadow-sm:        0 2px 12px rgba(13, 59, 110, 0.08);
    --shadow-md:        0 6px 24px rgba(13, 59, 110, 0.11);
    --shadow-lg:        0 12px 40px rgba(13, 59, 110, 0.14);
    --shadow-xl:        0 24px 64px rgba(13, 59, 110, 0.18);

    /* ── Typography ── */
    --font-display:     'Barlow Condensed', 'Poppins', sans-serif;
    --font-body:        'DM Sans', 'Poppins', sans-serif;

    /* ── Layout ── */
    --section-padding:  6rem 0;
    --card-radius:      16px;
    --card-radius-lg:   24px;
    --btn-radius:       8px;

    /* ── Transitions ── */
    --transition:       all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast:  all 0.18s ease;
}


/* ============================================================
   2. GLOBAL RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--omm-text);
    background-color: var(--omm-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--omm-navy);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a {
    color: var(--omm-blue);
    text-decoration: none;
    transition: var(--transition-fast);
}
a:hover { color: var(--omm-teal); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    scroll-margin-top: 80px;
    padding: var(--section-padding);
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--omm-gray-50); }
::-webkit-scrollbar-thumb { background: var(--omm-blue); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--omm-navy); }


/* ============================================================
   3. BOOTSTRAP OVERRIDES
   ============================================================ */

/* Buttons */
.btn {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    padding: 12px 28px;
    border-radius: var(--btn-radius);
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }

.btn-primary {
    background-color: var(--omm-navy);
    color: var(--omm-white);
    box-shadow: var(--shadow-sm);
}
.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--omm-blue);
    color: var(--omm-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--omm-teal);
    color: var(--omm-navy);
    font-weight: 800;
}
.btn-secondary:hover {
    background-color: var(--omm-teal-dark);
    color: var(--omm-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 180, 216, 0.35);
}

.btn-outline-primary {
    background: transparent;
    color: var(--omm-blue);
    border: 1.5px solid var(--omm-blue);
}
.btn-outline-primary:hover {
    background-color: var(--omm-navy);
    border-color: var(--omm-navy);
    color: var(--omm-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: white;
}

/* Forms */
.form-label {
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    color: var(--omm-text-medium);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    font-family: var(--font-body);
    border: 1.5px solid var(--omm-gray-200);
    border-radius: 10px;
    padding: 0.8rem 1.1rem;
    font-size: 0.92rem;
    color: var(--omm-text);
    background-color: var(--omm-white);
    transition: var(--transition);
}
.form-control:focus,
.form-select:focus {
    border-color: var(--omm-blue);
    box-shadow: 0 0 0 3px rgba(30, 111, 165, 0.12);
    background-color: var(--omm-white);
}
textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

/* Badges */
.badge {
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.06em;
    font-size: 0.7rem;
    padding: 5px 12px;
    border-radius: 100px;
}
.badge-cert {
    background: var(--omm-success-bg);
    color: var(--omm-success);
}
.badge-primary {
    background: var(--omm-teal-light);
    color: var(--omm-blue);
}

/* Pagination */
.pagination { gap: 6px; }
.pagination .page-link {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--omm-blue);
    border: 1.5px solid var(--omm-gray-200);
    border-radius: 8px !important;
    padding: 0.65rem 1.1rem;
    transition: var(--transition);
}
.pagination .page-link:hover {
    background-color: var(--omm-navy);
    border-color: var(--omm-navy);
    color: var(--omm-white);
    transform: translateY(-1px);
}
.pagination .page-item.active .page-link {
    background-color: var(--omm-navy);
    border-color: var(--omm-navy);
}
.pagination .page-item.disabled .page-link {
    background-color: var(--omm-gray-50);
    border-color: var(--omm-gray-100);
    color: var(--omm-text-light);
}

/* bg-light override */
.bg-light { background-color: var(--omm-gray-50) !important; }

/* Alert */
.alert-info {
    background-color: var(--omm-teal-light);
    border: 1.5px solid rgba(0, 180, 216, 0.3);
    color: var(--omm-text-medium);
    border-radius: var(--card-radius);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.alert-info i { color: var(--omm-blue); font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }


/* ============================================================
   4. SECTION UTILITY CLASSES
   ============================================================ */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--omm-teal);
    margin-bottom: 0.75rem;
}
.section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 2px;
    background: var(--omm-teal);
    border-radius: 2px;
    flex-shrink: 0;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--omm-navy);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

.section-lead {
    font-size: 1.05rem;
    color: var(--omm-text-muted);
    line-height: 1.8;
}

/* Legacy support (used in some blade files) */
.section-header { margin-bottom: 3.5rem; text-align: center; }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--omm-navy);
    margin-bottom: 1rem;
    display: inline-block;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--omm-text-muted);
    max-width: 640px;
    margin: 0.75rem auto 0;
    line-height: 1.75;
}

.rounded-custom {
    border-radius: var(--card-radius-lg);
    box-shadow: var(--shadow-lg);
}

.min-vh-80 { min-height: 80vh; }


/* ============================================================
   5. NAVIGATION
   ============================================================ */
.navbar {
    padding: 0.9rem 0;
    background-color: var(--omm-white) !important;
    border-bottom: 1px solid var(--omm-gray-100);
    transition: var(--transition);
}
.navbar.scrolled {
    padding: 0.55rem 0;
    box-shadow: var(--shadow-md);
    border-bottom-color: transparent;
}

.logo-image {
    height: 48px;
    width: auto;
    transition: var(--transition);
}
.navbar.scrolled .logo-image { height: 40px; }

.navbar-brand { padding: 0; transition: var(--transition); }
.navbar-brand:hover { opacity: 0.85; }

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition-fast);
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler:hover { background: var(--omm-gray-100); }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230D3B6E' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--omm-gray-600) !important;
    padding: 0.5rem 1rem !important;
    letter-spacing: 0.01em;
    border-radius: 7px;
    transition: var(--transition-fast);
}
.nav-link:hover,
.nav-link.active {
    color: var(--omm-blue) !important;
    background-color: var(--omm-teal-light);
}

.navbar .btn-booking {
    background: var(--omm-navy);
    color: white !important;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 22px !important;
    border-radius: var(--btn-radius) !important;
    letter-spacing: 0.04em;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.navbar .btn-booking:hover {
    background: var(--omm-blue) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(13, 59, 110, 0.3);
}

/* Mobile nav */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--omm-white);
        padding: 1.25rem;
        border-radius: var(--card-radius);
        margin-top: 0.75rem;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--omm-gray-100);
    }
    .navbar .btn-booking {
        margin-top: 0.75rem;
        width: 100%;
        justify-content: center;
    }
}


/* ============================================================
   6. HERO / CAROUSEL
   ============================================================ */
.hero-section {
    margin-top: -1px;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    min-height: 620px;
    display: flex;
    align-items: center;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
    background-color: var(--omm-navy);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 59, 110, 0.55);
    z-index: 0;
}
.hero-slide .container { position: relative; z-index: 2; }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--omm-white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    max-width: 580px;
    margin-bottom: 2.25rem;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 52px;
    height: 52px;
    background-color: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: var(--transition);
}
.carousel-control-prev { left: 24px; }
.carousel-control-next { right: 24px; }
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--omm-teal);
    border-color: var(--omm-teal);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none;
}
.carousel-control-prev-icon::before {
    content: '\F284';
    font-family: 'bootstrap-icons';
    color: var(--omm-white);
    font-size: 1.3rem;
}
.carousel-control-next-icon::before {
    content: '\F285';
    font-family: 'bootstrap-icons';
    color: var(--omm-white);
    font-size: 1.3rem;
}
.carousel-indicators { margin-bottom: 1.5rem; }
.carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    border: none;
    transition: var(--transition);
}
.carousel-indicators button.active {
    background-color: var(--omm-teal);
    transform: scale(1.3);
    width: 28px;
    /* border-radius: 6px; */
}


/* ============================================================
   7. CARDS — SERVICES / PRODUCTS / FACILITIES
   ============================================================ */

/* ── Service Card ── */
.service-card {
    background: var(--omm-white);
    padding: 2.25rem 2rem;
    border-radius: var(--card-radius);
    border: 1.5px solid var(--omm-gray-100);
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--omm-navy), var(--omm-teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--omm-gray-200);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--omm-navy), var(--omm-blue));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--omm-blue), var(--omm-teal));
    transform: scale(1.08);
}
.service-icon i {
    font-size: 1.7rem;
    color: var(--omm-white);
}

.service-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--omm-navy);
    font-weight: 700;
}
.service-card p {
    color: var(--omm-text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.service-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--omm-blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}
.service-link:hover { color: var(--omm-teal); gap: 10px; }

/* ── Facility Card ── */
.facility-card {
    background: var(--omm-white);
    padding: 2rem 1.75rem;
    border-radius: var(--card-radius);
    border: 1.5px solid var(--omm-gray-100);
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
    height: 100%;
    text-align: left;
}
.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0,180,216,0.3);
}

.facility-icon {
    width: 54px;
    height: 54px;
    background: var(--omm-teal-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}
.facility-card:hover .facility-icon { background: var(--omm-navy); }
.facility-icon i {
    font-size: 1.4rem;
    color: var(--omm-blue);
    transition: var(--transition);
}
.facility-card:hover .facility-icon i { color: var(--omm-white); }

.facility-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--omm-navy);
}
.facility-card p {
    font-size: 0.85rem;
    color: var(--omm-text-muted);
    margin: 0;
    line-height: 1.65;
}

/* ── Product Card ── */
.product-card {
    background: var(--omm-white);
    border-radius: var(--card-radius);
    border: 1.5px solid var(--omm-gray-100);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--omm-gray-200);
}

.product-image {
    overflow: hidden;
    height: 240px;
    background: var(--omm-gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0rem;
    transition: transform 0.4s ease;
}
.product-card:hover .product-image img { transform: scale(1.06); }

.product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-content h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--omm-navy);
    line-height: 1.35;
}
.product-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--omm-blue);
    margin-bottom: 1.25rem;
    font-family: var(--font-display);
}

/* ── Article Card ── */
.article-card {
    background: var(--omm-white);
    border-radius: var(--card-radius);
    border: 1.5px solid var(--omm-gray-100);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--omm-gray-200);
}

.article-image {
    overflow: hidden;
    height: 220px;
}
.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.article-card:hover .article-image img { transform: scale(1.05); }

.article-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.article-date {
    font-size: 0.78rem;
    color: var(--omm-text-muted);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}
.article-content h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--omm-navy);
    line-height: 1.4;
    flex: 1;
}
.article-content p {
    font-size: 0.85rem;
    color: var(--omm-text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.article-link {
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--omm-blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}
.article-link:hover { color: var(--omm-teal); gap: 10px; }


/* ============================================================
   8. ABOUT PAGE COMPONENTS
   ============================================================ */
.about-section { background-color: var(--omm-gray-50); }

.about-card {
    background: var(--omm-white);
    padding: 2.5rem 2rem;
    border-radius: var(--card-radius);
    border: 1.5px solid var(--omm-gray-100);
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}
.about-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0,180,216,0.3);
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--omm-teal-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.about-card:hover .about-icon { background: var(--omm-navy); transform: scale(1.08) rotate(4deg); }
.about-icon i { font-size: 2rem; color: var(--omm-blue); transition: var(--transition); }
.about-card:hover .about-icon i { color: var(--omm-white); }

.about-card h4 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--omm-navy); }
.about-card p { font-size: 0.88rem; color: var(--omm-text-muted); line-height: 1.75; }


/* ============================================================
   9. CONTACT PAGE COMPONENTS
   ============================================================ */
.contact-section { background-color: var(--omm-white); }

.contact-info-card {
    background: var(--omm-white);
    padding: 2.25rem 2rem;
    border-radius: var(--card-radius);
    border: 1.5px solid var(--omm-gray-100);
    box-shadow: var(--shadow-xs);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 180, 216, 0.3);
}

.contact-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 1.25rem;
    background: var(--omm-teal-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.contact-info-card:hover .contact-icon { background: var(--omm-navy); }
.contact-icon i { font-size: 1.6rem; color: var(--omm-blue); transition: var(--transition); }
.contact-info-card:hover .contact-icon i { color: var(--omm-white); }

.contact-info-card h5 { font-size: 1.05rem; margin-bottom: 0.75rem; color: var(--omm-navy); }
.contact-info-card p,
.contact-info-card a {
    font-size: 0.88rem;
    color: var(--omm-text-muted);
    display: block;
    margin-bottom: 0.3rem;
}
.contact-info-card a:hover { color: var(--omm-teal); }

.contact-form {
    background: var(--omm-white);
    padding: 2.5rem;
    border-radius: var(--card-radius);
    border: 1.5px solid var(--omm-gray-100);
    box-shadow: var(--shadow-md);
}
.contact-form h4 { font-size: 1.5rem; margin-bottom: 1.75rem; color: var(--omm-navy); }


/* ============================================================
   10. SCHEDULE / TABLE
   ============================================================ */
.schedule-section { background-color: var(--omm-white); }

.schedule-table {
    background: var(--omm-white);
    border-radius: var(--card-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1.5px solid var(--omm-gray-100);
}
.schedule-table .table { margin-bottom: 0; }
.schedule-table thead {
    background-color: var(--omm-navy);
    color: var(--omm-white);
}
.schedule-table thead th {
    border: none;
    padding: 1.1rem 1.25rem;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.schedule-table thead th:first-child { border-top-left-radius: 10px; }
.schedule-table thead th:last-child  { border-top-right-radius: 10px; }
.schedule-table tbody td {
    padding: 1rem 1.25rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--omm-gray-100);
    font-size: 0.9rem;
}
.schedule-table tbody tr:hover { background-color: var(--omm-gray-50); }
.schedule-table tbody tr:last-child td { border-bottom: none; }


/* ============================================================
   11. GALLERY
   ============================================================ */
.gallery-section { background-color: var(--omm-gray-50); }

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--card-radius);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1.5px solid var(--omm-gray-100);
}
.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}
.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 59, 110, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2.5rem; color: var(--omm-white); }

.modal-content {
    border: none;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.gallery-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: var(--omm-white);
    opacity: 1;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}
.gallery-close:hover { background: var(--omm-navy); color: white; }


/* ============================================================
   12. TEAM
   ============================================================ */
.team-section { background-color: var(--omm-gray-50); }

.team-card {
    background: var(--omm-white);
    border-radius: var(--card-radius);
    border: 1.5px solid var(--omm-gray-100);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--omm-gray-200); }

.team-image { overflow: hidden; height: 260px; background: var(--omm-gray-50); }
.team-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.team-card:hover .team-image img { transform: scale(1.06); }

.team-content { padding: 1.5rem; }
.team-content h5 { font-size: 1.1rem; margin-bottom: 0.3rem; color: var(--omm-navy); }
.team-role { font-size: 0.85rem; font-weight: 700; color: var(--omm-teal); margin-bottom: 0.6rem; }
.team-experience {
    font-size: 0.82rem;
    color: var(--omm-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.team-experience i { color: var(--omm-blue); }


/* ============================================================
   13. FOOTER
   ============================================================ */
.footer {
    background-color: var(--omm-gray-800);
    color: rgba(255,255,255,0.65);
    padding: 4rem 0 2rem;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--omm-navy), var(--omm-teal));
}

.footer-logo-image {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--omm-teal);
    margin-bottom: 1.25rem;
}

.footer-text {
    font-size: 0.88rem;
    color: rgb(255 255 255 / 81%);
    line-height: 1.75;
}

.social-links { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.06);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255 255 255 / 81%);
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
}
.social-links a:hover { background: var(--omm-teal); color: var(--omm-navy); transform: translateY(-2px); }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
    font-size: 0.87rem;
    color: rgb(255 255 255 / 81%);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--omm-teal); padding-left: 4px; }

.footer-contact { }
.footer-contact p {
    font-size: 0.87rem;
    color: rgb(255 255 255 / 81%);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.75rem;
}
.footer-contact i { color: var(--omm-teal); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgb(255 255 255 / 81%); }
.footer-contact a:hover { color: var(--omm-teal); }

.footer-divider { border-color: rgba(255,255,255,0.08); margin: 2.5rem 0 1.5rem; }

.footer-copyright {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    text-align: center;
}
.footer-copyright strong { color: var(--omm-teal); }


/* ============================================================
   14. BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    background: var(--omm-navy);
    color: var(--omm-white);
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
}
.back-to-top:hover {
    background: var(--omm-teal);
    color: var(--omm-navy);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}
.back-to-top.show { display: flex; }


/* ============================================================
   15. ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fadeInUp 0.7s ease-out both; }

@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}


/* ============================================================
   16. RESPONSIVE
   ============================================================ */
@media (max-width: 1199.98px) {
    .hero-title { font-size: clamp(2rem, 4vw, 3.2rem); }
}

@media (max-width: 991.98px) {
    :root { --section-padding: 4.5rem 0; }
    .hero-slide { min-height: 500px; padding: 100px 0 60px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
}

@media (max-width: 767.98px) {
    :root { --section-padding: 3.5rem 0; }
    .carousel-control-prev { left: 10px; }
    .carousel-control-next { right: 10px; }
    .contact-form,
    .schedule-table { padding: 1.75rem 1.25rem; }
    .back-to-top { bottom: 20px; right: 20px; }
}

@media (max-width: 575.98px) {
    :root { --section-padding: 3rem 0; }
    .section-header { margin-bottom: 2.5rem; }
    .service-card,
    .facility-card,
    .about-card,
    .contact-info-card { padding: 1.75rem 1.5rem; }
}


/* ============================================================
   17. UTILITY OVERRIDES
   ============================================================ */
.text-primary  { color: var(--omm-blue)  !important; }
.text-teal     { color: var(--omm-teal)  !important; }
.text-navy     { color: var(--omm-navy)  !important; }
.text-muted    { color: var(--omm-text-muted) !important; }
.bg-primary    { background-color: var(--omm-navy)  !important; }
.bg-secondary  { background-color: var(--omm-blue)  !important; }
.bg-teal       { background-color: var(--omm-teal)  !important; }
.border-primary { border-color: var(--omm-navy) !important; }


/* ── Category Card ── */
.omm-cat-card {
    cursor: pointer;
    transition: var(--transition);
}
.omm-cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.omm-cat-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .5s ease;
}
.omm-cat-card:hover .omm-cat-bg { transform: scale(1.07); }

.omm-cat-bg--gradient {
    background: linear-gradient(135deg, var(--omm-navy) 0%, var(--omm-blue) 50%, var(--omm-teal) 100%);
}

.omm-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,30,60,.85) 0%, rgba(10,30,60,.3) 60%, transparent 100%);
    transition: background .3s;
}
.omm-cat-card:hover .omm-cat-overlay {
    background: linear-gradient(to top, rgba(10,30,60,.92) 0%, rgba(10,30,60,.45) 60%, transparent 100%);
}

.omm-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,.25);
    transition: background .2s;
}
.omm-cat-card:hover .omm-cat-badge {
    background: var(--omm-teal);
    border-color: var(--omm-teal);
}

/* ── Latest Product Card ── */
.omm-latest-card {
    border: 1.5px solid var(--omm-gray-100) !important;
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
}
.omm-latest-card:hover {
    border-color: var(--omm-blue) !important;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}


/* ── Swiper Nav Buttons ── */
.omm-swiper-nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1.5px solid var(--omm-gray-200);
    background: var(--omm-white);
    color: var(--omm-navy);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}
.omm-swiper-nav-btn:hover {
    background: var(--omm-navy);
    border-color: var(--omm-navy);
    color: var(--omm-white);
}
.omm-swiper-nav-btn.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* ── Pagination dots ── */
.omm-swiper-pagination {
    bottom: 0 !important;
}
.omm-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--omm-gray-300);
    opacity: 1;
    transition: var(--transition);
}
.omm-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--omm-navy);
    width: 24px;
    border-radius: 4px;
}

/* Pastikan card dalam swiper full height */
.omm-featured-swiper .swiper-slide {
    height: auto;
}
.omm-featured-swiper .swiper-slide > a {
    display: flex;
    height: 100%;
}
.omm-featured-swiper .product-card {
    width: 100%;
}