/* Custom Stylesheet for UB Adventurez Bootstrap Template */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --primary-color: #e00404;
    --primary-rgb: 224, 4, 4;
    --dark-color: #171717;
    --light-color: #f5f5f5;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

body {
    font-family: var(--font-sans);
    background-color: var(--light-color);
    color: var(--dark-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: var(--font-serif);
}

/* Navbar styles */
.navbar-custom {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.0) 100%);
}

.navbar-custom.scrolled {
    background: rgba(10, 10, 12, 0.92) !important;
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.navbar-custom.dark-hero:not(.scrolled) .nav-link,
.navbar-custom.dark-hero:not(.scrolled) .btn-nav-trigger {
    color: rgba(255, 255, 255, 0.85);
}

.navbar-custom.dark-hero:not(.scrolled) .nav-link:hover {
    color: #ffffff;
}

/* Custom Navigation Capsule inside Navbar */
.nav-capsule {
    background: rgba(12, 12, 14, 0.82);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 12px 32px;
    border-radius: 50px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04) inset,
        0 20px 48px rgba(0, 0, 0, 0.35);
}

.nav-capsule .nav-link {
    color: rgba(255, 255, 255, 1) !important;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.07em;
    padding: 6px 12px !important;
    border-radius: 30px;
    transition: all 0.25s ease;
    position: relative;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

.nav-capsule .nav-link:hover,
.nav-capsule .nav-item.show .nav-link {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08);
}

/* Custom Dropdown Styling */
.dropdown-menu-custom {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 12px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin-top: 12px !important;
}

.dropdown-menu-custom .dropdown-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 10px 20px;
    transition: all 0.2s ease;
}

.dropdown-menu-custom .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Nested Dropdown CSS */
.dropdown-submenu {
    position: relative;
}
.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: none;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
}
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}
@media (max-width: 991.98px) {
    .dropdown-submenu > .dropdown-menu {
        left: 0;
        margin-left: 1rem;
        position: static;
        display: none;
        box-shadow: none;
    }
    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }
}

/* Hero Carousel Section */
.hero-section-carousel {
    height: 100vh;
    position: relative;
    background-color: var(--dark-color);
}
.hero-section-carousel .carousel-item {
    height: 100vh;
    position: relative;
}
.hero-section-carousel .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.75) 100%);
    z-index: 1;
}
.hero-section-carousel .hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}
.hero-section-carousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-left: 6px;
    margin-right: 6px;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    transition: all 0.3s ease;
}
.hero-section-carousel .carousel-indicators .active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #c00303;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 4, 4, 0.3);
}

.btn-outline-custom {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.section-dark {
    background-color: #121212;
    color: #ffffff;
}

.section-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--primary-color);
    text-transform: uppercase;
}

/* Activities tab switcher */
.activity-tabs-btn {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.activity-tabs-btn.active {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* Activity Card */
.activity-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 30px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.activity-card:hover {
    border-color: rgba(224, 4, 4, 0.4);
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}

.activity-card h4 {
    color: #000000 !important;
}

.activity-card .text-secondary {
    color: #555555 !important;
}

.activity-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.activity-card:hover .activity-card-icon {
    transform: scale(1.1);
}

.activity-card-photo-wrapper {
    width: 100%;
    height: 240px;
    border-radius: 12px 12px 12px 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.activity-card-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.activity-card:hover .activity-card-photo {
    transform: scale(1.08);
}

/* Custom image layout for services detail */
.service-block-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Project Card */
.project-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.project-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-block;
}

.badge-completed {
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.badge-ongoing {
    background-color: rgba(255, 193, 7, 0.15);
    color: #b58100;
}

.badge-upcoming {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

/* Clients serviced alphabetical list */
.client-letter-header {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: 2px solid rgba(224, 4, 4, 0.1);
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.client-name-item {
    font-size: 14px;
    color: #555555;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.client-name-item:hover {
    color: var(--primary-color);
}

/* Video Lightbox Grid */
.video-card-thumb {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.video-card-thumb:hover .video-play-overlay {
    background-color: rgba(224, 4, 4, 0.6);
}

.play-icon-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.video-card-thumb:hover .play-icon-btn {
    transform: scale(1.1);
}

/* Sticky Footer */
footer {
    background-color: #0c0c0d;
    color: #dfdfe6 !important;
    font-size: 15px !important;
}

footer a {
    color: #b0b0b8 !important;
    text-decoration: none;
    transition: all 0.2s ease;
}

footer a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

footer p, 
footer p.text-secondary,
footer .text-secondary {
    color: #c8c8cf !important;
    font-size: 15px !important;
    opacity: 0.95 !important;
}

footer .small,
footer p.small,
footer ul.small,
footer div.small,
footer a.small {
    font-size: 14px !important;
}

footer h5 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    letter-spacing: 0.05em !important;
}

footer .footer-logo-container {
    height: 48px;
    width: 120px;
    position: relative;
}

/* Mobile responsive navbar adjustments */
@media (max-width: 1199.98px) {
    /* Apply solid background to the header when mobile collapse menu is active/shown */
    .navbar-custom:has(.navbar-collapse.show),
    .navbar-collapse.show {
        background-color: rgba(18, 18, 18, 0.98) !important;
        backdrop-filter: blur(15px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    /* Add top/bottom padding inside collapse for mobile spacing */
    .navbar-collapse.show {
        padding-top: 15px;
        padding-bottom: 25px;
        border-radius: 0 0 20px 20px;
        margin-left: -12px;
        margin-right: -12px;
        padding-left: 20px;
        padding-right: 20px;
    }
}
/* Navigation CTA Get in Touch Button */
.btn-nav-cta {
    font-size: 0.8rem !important;
    padding: 10px 24px !important;
    border: 2px solid #58b757 !important;
    background-color: #58b757 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(88, 183, 87, 0.28);
}

.btn-nav-cta:hover {
    background-color: #4aa54a !important;
    color: #ffffff !important;
    border-color: #4aa54a !important;
}

/* Hero background video */
.hero-shell {
    padding: 10px 10px 0;
    background-color: var(--light-color);
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 24px);
    min-height: calc(100vh - 24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    overflow: hidden;
    background-color: var(--dark-color);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 177.78vh;
    min-height: 100vh;
    transform: translate(-50%, -50%);
    border: 0;
}

@media (max-aspect-ratio: 16 / 9) {
    .hero-video-bg iframe {
        width: 177.78vh;
        height: 100vh;
    }
}

@media (max-width: 991.98px) {
    .hero-shell {
        padding: 8px 8px 0;
    }

    .hero-video-container {
        height: calc(78vh - 16px);
        min-height: calc(78vh - 16px);
        border-radius: 14px;
    }
}

/* Boxed Dark Sections on Home Page (matches Hero Banner margins & curves) */
.boxed-dark-section {
    margin: 0 10px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991.98px) {
    .boxed-dark-section {
        margin: 0 8px;
        border-radius: 14px;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0,0,0,0.84) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.84) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.hero-video-container .lead {
    color: rgba(255, 255, 255, 0.72) !important;
}

.about-video-frame {
    border-radius: 24px;
    background: #111111;
}

.about-video-frame iframe {
    border: 0;
}

@media (max-width: 991.98px) {
    .hero-video-container {
        height: 68vh;
        min-height: 68vh;
    }
}


/* Standalone Premium CTA Button */
.btn-premium-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e00404 0%, #ff3b3b 100%);
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em;
    padding: 12px 28px !important;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(224, 4, 4, 0.3);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    text-decoration: none;
}

.btn-premium-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transition: all 0.5s ease;
}

.btn-premium-cta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 30px rgba(224, 4, 4, 0.5);
    background: linear-gradient(135deg, #ff1a1a 0%, #ff4d4d 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-premium-cta:hover::before {
    left: 100%;
    transition: all 0.6s ease;
}

.btn-premium-cta .btn-arrow {
    transition: transform 0.3s ease;
}

.btn-premium-cta:hover .btn-arrow {
    transform: translateX(4px);
}

/* =============================================
   ABOUT US — PREMIUM HERO BANNER
   ============================================= */
.about-hero-banner {
    position: relative;
    min-height: 85vh;
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(10, 0, 0, 0.72) 40%,
        rgba(0, 0, 0, 0.45) 70%,
        rgba(0, 0, 0, 0.20) 100%
    );
    z-index: 1;
}

.about-hero-fade {
    display: none;
}

.about-hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 140px;
    padding-bottom: 100px;
}

/* Top breadcrumb */
.about-hero-breadcrumb {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    padding: 0 60px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.5);
}
.about-hero-breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.about-hero-breadcrumb a:hover { color: #ff6b6b; }
.about-hero-breadcrumb .active-crumb { color: #ff6b6b; }

/* Left content block with red accent line */
.about-hero-left {
    display: flex;
    align-items: stretch;
    gap: 28px;
    animation: aboutHeroIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes aboutHeroIn {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}

.about-hero-accent-line {
    width: 5px;
    min-height: 100%;
    background: linear-gradient(to bottom, #e00404, #ff6b6b);
    border-radius: 4px;
    flex-shrink: 0;
}

.about-hero-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-hero-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #ff6b6b;
}

.about-hero-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.05;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

.about-hero-title-red {
    color: #e00404;
    font-style: italic;
}

.about-hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 480px;
    margin: 0;
}

/* Stat chips row at bottom-right */
.about-hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 48px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: fit-content;
    overflow: hidden;
}

.about-stat-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 36px;
    gap: 4px;
}

.about-stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.about-stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.about-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .about-hero-banner { min-height: 70vh; background-attachment: scroll; }
    .about-hero-breadcrumb { padding: 0 24px; }
    .about-hero-inner { padding-bottom: 80px; }
    .about-hero-left { gap: 18px; }
    .about-hero-stats { width: 100%; justify-content: center; }
    .about-stat-chip { padding: 16px 20px; }
}

/* =============================================
   PREMIUM PAGE BANNERS
   ============================================= */
.page-banner {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(180, 0, 0, 0.18) 50%,
        rgba(0, 0, 0, 0.75) 100%
    );
    z-index: 1;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(245,245,245,1) 0%, transparent 100%);
    z-index: 2;
}

.page-banner-dark::after {
    background: linear-gradient(to top, rgba(23,23,23,1) 0%, transparent 100%);
}

.page-banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 120px 20px 80px;
    animation: bannerFadeUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes bannerFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-banner-label {
    display: inline-block;
    background: rgba(224, 4, 4, 0.15);
    border: 1px solid rgba(224, 4, 4, 0.45);
    color: #ff6b6b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.page-banner-title {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
    letter-spacing: -0.01em;
}

.page-banner-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.72);
    max-width: 560px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.page-banner-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
}

.page-banner-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.page-banner-breadcrumb a:hover {
    color: #ff6b6b;
}

.page-banner-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.3);
}

.page-banner-breadcrumb .current {
    color: #ff6b6b;
}

/* Decorative shimmer line on banner */
.page-banner-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e00404, #ff6b6b, #e00404, transparent);
    z-index: 4;
}

/* =============================================
   PREMIUM HOME PAGE COMPONENTS
   ============================================= */

/* Hero Text */
.hero-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #ff6b6b;
    background: rgba(224, 4, 4, 0.12);
    border: 1px solid rgba(224, 4, 4, 0.35);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero-main-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.text-gradient-red {
    background: linear-gradient(90deg, #ff4444, #ff8c8c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    max-width: 580px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #e00404, #ff3b3b);
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(224, 4, 4, 0.35);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(224, 4, 4, 0.5);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.25);
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.5);
}

/* Stats Bar */
.stats-bar {
    background: linear-gradient(135deg, #0a0a0c 0%, #151518 100%);
    padding: 35px 40px;
    margin-top: 24px;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .stats-bar {
        margin-top: 16px;
        margin-left: 8px;
        margin-right: 8px;
        padding: 30px 20px;
        border-radius: 14px;
    }
}

.stat-box {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(224, 4, 4, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(224, 4, 4, 0.08), 0 0 0 1px rgba(224, 4, 4, 0.15) inset;
}

.stat-box:hover::before {
    opacity: 1;
}

.stat-box-glow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(224, 4, 4, 0.35) 0%, transparent 70%);
    pointer-events: none;
    transition: all 0.4s ease;
    opacity: 0.5;
}

.stat-box:hover .stat-box-glow {
    opacity: 0.9;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(224, 4, 4, 0.5) 0%, transparent 70%);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ff4d4d 0%, #c40303 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    text-shadow: 0 10px 25px rgba(224, 4, 4, 0.15);
}

.stat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    transition: color 0.4s ease;
}

.stat-box:hover .stat-label {
    color: #ffffff;
}

/* Custom Utility for list gaps and check icon alignment */
.gap-2\.5 {
    gap: 0.75rem !important; /* 12px spacing between icon and text */
}

/* Align checkmark icon with text cleanly */
.d-flex.align-items-start.gap-2\.5 i {
    align-self: flex-start;
    margin-top: 3px !important; /* Vertically align icon with first line of text */
}

/* Service Pages Paragraph & List Enhancements */
.col-lg-7:has(.section-label) p {
    font-size: 1.05rem !important; /* Larger text size */
    color: #495057 !important; /* Vibrant dark gray text */
    line-height: 1.75 !important;
    margin-bottom: 20px !important;
}

.col-lg-7:has(.section-label) h2 + p,
.col-lg-7:has(.section-label) h3 + p {
    font-size: 1.25rem !important; /* Lead paragraph font size */
    font-weight: 500 !important;
    color: #212529 !important; /* Darker vibrant text */
    line-height: 1.6 !important;
}

.col-lg-7:has(.section-label) .gap-2\.5 span {
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    color: #333333 !important;
}

/* Section Typography */
.section-eyebrow {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #e00404;
}
.section-eyebrow.light { color: rgba(255, 100, 100, 0.85); }

.section-headline {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #0e0e10;
}

.section-subtext {
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 560px;
}

/* About Section */
.about-lead-text {
    font-size: clamp(1.15rem, 2.2vw, 1.4rem);
    line-height: 1.75;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 24px;
}

.about-body-text p {
    font-size: 1rem;
    line-height: 1.85;
    color: #5a5a6a;
    margin-bottom: 16px;
}

.btn-text-link {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e00404;
    text-decoration: none;
    transition: all 0.25s ease;
}
.btn-text-link:hover {
    color: #c00000;
}

/* Park Cards (dark bg) */
.park-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 36px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}
.park-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #e00404, transparent);
}
.park-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-4px);
}
.park-card-icon {
    font-size: 2.2rem;
    color: #e00404;
    margin-bottom: 20px;
}
.park-card-content-overlay {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 16px 24px;
    border-radius: 12px;
    margin-top: auto;
    width: fit-content;
    align-self: flex-start;
}
.park-card.has-bg.dark-text-theme .park-card-content-overlay {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.park-card-tag {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #cca464;
    display: block;
    margin-bottom: 6px;
}
.park-card-title {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 24px;
}
.park-card-text {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin-bottom: 28px;
}
.park-card-link {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ff6b6b;
    text-decoration: none;
    transition: color 0.2s;
}
.park-card-link:hover { color: #ffffff; }

/* Image Background Card overrides */
.park-card.has-bg {
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
    z-index: 1;
}
.park-card.has-bg::before {
    background: transparent !important;
}
.park-card.has-bg:hover::before {
    background: transparent !important;
}
.park-card.has-bg .park-card-icon {
    margin-bottom: auto; /* Push content to bottom, keep icon at top */
}
.park-card.has-bg .park-card-tag {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255,255,255,0.7), 0 0 20px rgba(255,255,255,0.5);
}
.park-card.has-bg .park-card-title {
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}
.park-card.has-bg .park-card-text {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.park-card.has-bg .park-card-link {
    color: #e00404 !important;
    background: #ffffff;
    padding: 8px 20px;
    border-radius: 24px;
    text-decoration: none;
    border: none !important;
    align-self: flex-start;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    font-weight: 800;
}
.park-card.has-bg .park-card-link:hover {
    background: #e00404;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(224,4,4,0.4);
}

.park-card-btn-new {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e00404;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}
.park-card:hover .park-card-btn-new {
    background: #e00404;
    color: #ffffff;
    transform: rotate(-45deg) scale(1.08);
}

/* Dark text theme override for bright backgrounds */
.park-card.has-bg.dark-text-theme {
    border: 1px solid rgba(0, 0, 0, 0.08);
}
.park-card.has-bg.dark-text-theme::before {
    background: transparent !important;
}
.park-card.has-bg.dark-text-theme:hover::before {
    background: transparent !important;
}
.park-card.has-bg.dark-text-theme .park-card-tag {
    color: #000000 !important;
    text-shadow: 0 0 10px rgba(0,0,0,0.4), 0 0 20px rgba(0,0,0,0.2) !important;
}
.park-card.has-bg.dark-text-theme .park-card-title {
    color: #000000 !important;
    text-shadow: none !important;
}
.park-card.has-bg.dark-text-theme .park-card-text {
    color: rgba(0, 0, 0, 0.75) !important;
    text-shadow: none !important;
}




/* Service Cards */
.service-card {
    padding: 36px 32px;
    border-radius: 16px;
    border: 1px solid #e8e8ee;
    background: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e00404, #ff6b6b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.service-card:hover {
    border-color: #e00404;
    box-shadow: 0 12px 40px rgba(224,4,4,0.1);
    transform: translateY(-4px);
}
.service-card:hover::after { transform: scaleX(1); }

.service-card-num {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(224,4,4,0.12);
    font-family: var(--font-serif);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
}
.service-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0e0e10;
    margin-bottom: 12px;
}
.service-card-text {
    font-size: 0.93rem;
    color: #6b6b7b;
    line-height: 1.75;
    margin-bottom: 20px;
    flex-grow: 1;
}
.service-card-link {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e00404;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}
.service-card-link:hover { gap: 10px; color: #c00000; }
.service-card { display: flex; flex-direction: column; }

/* Premium Image-based Service Cards (similar to Adventure Solutions) */
.service-card-new {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 480px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px 30px;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 991.98px) {
    .service-card-new {
        height: 400px;
        padding: 30px 24px;
    }
}

@media (max-width: 767.98px) {
    .service-card-new {
        height: 350px;
        padding: 24px 20px;
    }
}
.service-card-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.88) 100%);
    z-index: -1;
    transition: background 0.3s ease;
}
.service-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}
.service-card-new:hover::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.95) 100%) !important;
}
.service-card-num-new {
    display: none;
    position: absolute;
    top: 25px;
    left: 30px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.1em;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}
.service-card-content-new {
    z-index: 2;
    transition: transform 0.3s ease;
    padding-right: 60px; /* Prevent text from overlapping the button */
}
.service-card-title-new {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.service-card-text-new {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.service-card-new:hover .service-card-text-new {
    max-height: 100px;
    opacity: 1;
    margin-top: 8px;
    margin-bottom: 20px;
}
.service-card-btn-new {
    position: absolute;
    bottom: 25px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e00404;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.service-card-new:hover .service-card-btn-new {
    background: #e00404;
    color: #ffffff;
    transform: rotate(-45deg) scale(1.08);
}


/* Training Cards (dark bg) */
.training-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 36px 28px;
    height: 100%;
    transition: all 0.3s ease;
}
.training-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(224,4,4,0.35);
    transform: translateY(-4px);
}
.training-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(224,4,4,0.15);
    border: 1px solid rgba(224,4,4,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #ff6b6b;
    margin-bottom: 22px;
}
.training-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
}
.training-card-text {
    font-size: 0.93rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin: 0;
}

/* Training Image Cards */
.training-img-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 520px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.training-img-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.training-img-card:hover .training-img-overlay {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.95) 0%,
        rgba(180,0,0,0.25) 55%,
        rgba(0,0,0,0.2) 100%
    );
}

.training-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.92) 0%,
        rgba(0,0,0,0.45) 55%,
        rgba(0,0,0,0.1) 100%
    );
    transition: background 0.4s ease;
    z-index: 1;
}

.training-img-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 28px;
    z-index: 2;
}

.training-img-content .training-card-icon {
    margin-bottom: 16px;
}

.training-img-content .training-card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.training-img-content .training-card-text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}
.training-img-card:hover .training-img-content .training-card-text {
    max-height: 200px;
    opacity: 1;
}

/* ===================================================
   OTHER SERVICES SECTION
   =================================================== */
.other-services-section {
    background: #080809;
    padding: 80px 0 0;
    overflow: hidden;
}

/* Header Row */
.os-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 60px 48px;
    gap: 32px;
    flex-wrap: wrap;
}

.os-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #e00404;
    margin-bottom: 12px;
}

.os-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin: 0;
    letter-spacing: -0.02em;
}

/* Controls below slider */
.os-controls {
    display: flex;
    justify-content: flex-end;
    padding: 0 60px 48px;
}

.os-nav-btns {
    display: flex;
    gap: 12px;
}

.os-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: transparent;
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.os-btn:hover,
.os-btn-active {
    background: #e00404 !important;
    border-color: #e00404 !important;
    color: #fff !important;
}

/* Slider */
.os-slider-wrapper {
    overflow: hidden;
    padding: 0 60px;
    padding-bottom: 80px;
}

.os-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Card */
.os-card {
    flex: 0 0 300px;
    height: 420px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1c;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    transition: flex 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.os-card:hover {
    flex: 0 0 400px;
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}

.os-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 55%, rgba(0,0,0,0.05) 100%);
    transition: background 0.3s ease;
}

.os-card:hover .os-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.1) 100%);
}

.os-card-body {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.os-card-label {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.2;
    font-family: var(--font-sans);
}

.os-card-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: background 0.25s ease, transform 0.25s ease;
    backdrop-filter: blur(4px);
}

.os-card:hover .os-card-arrow {
    background: #e00404;
    border-color: #e00404;
    transform: rotate(0deg) scale(1.08);
}

/* Mobile */
@media (max-width: 768px) {
    .os-header {
        padding: 0 24px 36px;
    }
    .os-slider-wrapper {
        padding: 0 24px 60px;
    }
    .os-card {
        flex: 0 0 240px;
        height: 320px;
    }
    .os-card:hover {
        flex: 0 0 280px;
    }
    .os-controls {
        padding: 0 24px 36px;
    }
}

/* Premium CTA Banner (matches home page card styling details) */
.premium-cta-box {
    background: linear-gradient(135deg, #0a0a0c 0%, #151518 100%);
    padding: 60px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    margin-bottom: 20px;
}

.premium-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(224, 4, 4, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.premium-cta-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.premium-cta-box p {
    font-size: 1.05rem;
    color: #b0b0b8 !important;
    max-width: 700px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.premium-cta-box .btn-cta {
    background: linear-gradient(135deg, #ff3333 0%, #a30000 100%);
    color: #ffffff !important;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 25px rgba(224, 4, 4, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.premium-cta-box .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(224, 4, 4, 0.4);
    background: linear-gradient(135deg, #ff4d4d 0%, #c40303 100%);
}

/* Premium Mosaic Services Grid (Adventure Solutions US style) */
.services-mosaic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

/* Card specific mosaic grid placements */
.mosaic-card-1 {
    grid-column: span 2;
    height: 380px !important;
}

.mosaic-card-2 {
    grid-row: span 2;
    height: 784px !important; /* height of two rows (380 + 380) + gap (24) */
}

.mosaic-card-3 {
    height: 380px !important;
}

.mosaic-card-4 {
    height: 380px !important;
}

.mosaic-card-5 {
    grid-row: span 2;
    height: 784px !important;
}

.mosaic-card-6 {
    grid-column: span 2;
    height: 380px !important;
}

.mosaic-card-7 {
    grid-column: span 2;
    height: 380px !important;
}

/* Mobile responsive adjustments */
@media (max-width: 991px) {
    .services-mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .mosaic-card-1 {
        grid-column: span 2;
        height: 340px !important;
    }
    .mosaic-card-2 {
        grid-row: span 1;
        grid-column: span 1;
        height: 340px !important;
    }
    .mosaic-card-3 {
        grid-column: span 1;
        height: 340px !important;
    }
    .mosaic-card-4 {
        grid-column: span 1;
        height: 340px !important;
    }
    .mosaic-card-5 {
        grid-row: span 1;
        grid-column: span 1;
        height: 340px !important;
    }
    .mosaic-card-6 {
        grid-column: span 2;
        height: 340px !important;
    }
    .mosaic-card-7 {
        grid-column: span 2;
        height: 340px !important;
    }
}

@media (max-width: 767px) {
    .services-mosaic-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .mosaic-card-1, .mosaic-card-2, .mosaic-card-3, .mosaic-card-4, .mosaic-card-5, .mosaic-card-6, .mosaic-card-7 {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        height: 320px !important;
    }
