@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --om-primary: #fd5056;
    --om-primary-dark: #d43f44;
    --om-gold: #c9a84c;
    --om-gold-light: #e8d48b;
    --om-dark: #0d0d0d;
    --om-dark-blue: #0a1628;
    --om-charcoal: #1a1a2e;
    --om-slate: #16213e;
    --om-light: #f8f6f0;
    --om-cream: #faf7f2;
    --om-mist: #e8e4dc;
    --om-text: #2d2d2d;
    --om-text-light: #6b6b6b;
    --om-white-70: rgba(255,255,255,.7);
    --om-white-10: rgba(255,255,255,.1);
    --om-radius: 20px;
    --om-radius-sm: 12px;
    --om-heading: 'Playfair Display', Georgia, serif;
    --om-body: 'Inter', system-ui, sans-serif;
    --om-transition: cubic-bezier(.165,.84,.44,1);
}

.om-page { overflow-x: hidden; }
.om-page section { position: relative; }
.om-hero h1, .om-hero h2, .om-hero h3, .om-hero h4 { font-family: var(--om-heading); }
.om-page p,.om-page li,.om-page span,.om-page a { font-family: var(--om-body); }

.om-hero {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--om-dark);
}

.om-hero__bg {
    position: absolute;
    inset: -20px;
    z-index: 1;
    will-change: transform;
    transition: transform 0.2s ease-out;
}

.om-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.om-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: 
        linear-gradient(90deg, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.5) 45%, rgba(10, 22, 40, 0.15) 75%, rgba(10, 22, 40, 0) 100%),
        linear-gradient(180deg, rgba(10, 22, 40, 0.55) 0%, rgba(10, 22, 40, 0.35) 40%, rgba(10, 22, 40, 0.75) 75%, rgba(10, 22, 40, 0.96) 100%);
}

.om-hero__frame {
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(201, 168, 76, 0.22);
    z-index: 6;
    pointer-events: none;
    transition: all 0.8s ease;
}

.om-hero__frame::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(201, 168, 76, 0.08);
}

.om-hero__frame-corner {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid var(--om-gold);
    pointer-events: none;
}
.om-hero__frame-corner--tl { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.om-hero__frame-corner--tr { top: -2px; right: -2px; border-left: none; border-bottom: none; }
.om-hero__frame-corner--bl { bottom: -2px; left: -2px; border-right: none; border-top: none; }
.om-hero__frame-corner--br { bottom: -2px; right: -2px; border-left: none; border-top: none; }

.om-hero__mist-container {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.om-hero__mist {
    position: absolute;
    width: 200%;
    height: 100%;
    background: repeat-x url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1000' height='300' viewBox='0 0 1000 300'%3E%3Cpath d='M0,150 Q120,80 250,150 T500,150 T750,150 T1000,150 L1000,300 L0,300 Z' fill='rgba(255,255,255,0.03)' filter='blur(22px)'/%3E%3C/svg%3E");
    opacity: 0.75;
}

.om-hero__mist--1 {
    bottom: -50px;
    height: 50%;
    animation: driftSlow 45s linear infinite;
}

.om-hero__mist--2 {
    bottom: 50px;
    height: 40%;
    opacity: 0.45;
    animation: driftFast 30s linear infinite reverse;
}

@keyframes driftSlow {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes driftFast {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.om-hero__particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.om-particle {
    position: absolute;
    bottom: -20px;
    background: radial-gradient(circle, rgba(232, 212, 139, 0.6) 0%, rgba(232, 212, 139, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: riseAndWobble 14s ease-in-out infinite;
}

.om-particle--1 { left: 10%; width: 6px; height: 6px; animation-duration: 16s; animation-delay: 0s; }
.om-particle--2 { left: 25%; width: 4px; height: 4px; animation-duration: 20s; animation-delay: 3s; }
.om-particle--3 { left: 45%; width: 8px; height: 8px; animation-duration: 18s; animation-delay: 1.5s; }
.om-particle--4 { left: 60%; width: 5px; height: 5px; animation-duration: 15s; animation-delay: 5s; }
.om-particle--5 { left: 75%; width: 7px; height: 7px; animation-duration: 22s; animation-delay: 2s; }
.om-particle--6 { left: 90%; width: 4px; height: 4px; animation-duration: 17s; animation-delay: 6.5s; }
.om-particle--7 { left: 35%; width: 6px; height: 6px; animation-duration: 14s; animation-delay: 4.5s; }
.om-particle--8 { left: 80%; width: 5px; height: 5px; animation-duration: 19s; animation-delay: 8s; }

@keyframes riseAndWobble {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.55;
    }
    90% {
        opacity: 0.55;
    }
    100% {
        transform: translateY(-110vh) translateX(60px);
        opacity: 0;
    }
}

.om-hero__scope-wrapper {
    position: absolute;
    right: 12%;
    top: 25%;
    z-index: 3;
    pointer-events: auto;
    will-change: transform;
    transition: transform 0.2s ease-out;
}

.om-hero__scope {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: visible;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
    cursor: crosshair;
    animation: omCombined 15s ease-in-out infinite;
}

.om-hero__scope-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--om-gold);
    position: relative;
    z-index: 2;
    background: var(--om-dark);
}

.om-hero__scope-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.om-hero__scope:hover .om-hero__scope-image img {
    transform: scale(1.15);
}

.om-hero__scope-ring {
    position: absolute;
    inset: -8px;
    border: 1px dashed rgba(201, 168, 76, 0.5);
    border-radius: 50%;
    z-index: 1;
    animation: scopeRotate 30s linear infinite;
}

@keyframes scopeRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.om-hero__scope-crosshairs {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    z-index: 3;
    pointer-events: none;
}

.om-hero__scope-crosshairs::before,
.om-hero__scope-crosshairs::after {
    content: '';
    position: absolute;
    background: rgba(201, 168, 76, 0.35);
}

.om-hero__scope-crosshairs::before {
    top: 50%;
    left: 8px;
    right: 8px;
    height: 1px;
}

/* Vertical line */
.om-hero__scope-crosshairs::after {
    left: 50%;
    top: 8px;
    bottom: 8px;
    width: 1px;
}

.om-hero__scope-label {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--om-gold);
    color: var(--om-dark);
    font-family: var(--om-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 3px 12px;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 4;
    box-shadow: 0 4px 10px rgba(0,0,0,0.35);
}

@keyframes omCombined {
    0%   { transform: translateY(0) rotate(0deg); }
    25%  { transform: translateY(-12px) rotate(2deg); }
    50%  { transform: translateY(-20px) rotate(0deg); }
    75%  { transform: translateY(-10px) rotate(-2deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.om-hero__telemetry {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--om-body);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.om-hero__telemetry-sep {
    color: var(--om-gold);
}

.om-hero__coords i {
    color: var(--om-gold-light);
    margin-right: 4px;
}

.om-hero__weather-badge {
    position: absolute;
    top: 55px;
    right: 60px;
    z-index: 7;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(10, 22, 40, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.4s var(--om-transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    cursor: default;
}

.om-hero__weather-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.om-hero__weather-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0c4ff;
    font-size: 18px;
    animation: floatSnow 3s ease-in-out infinite alternate;
}

.om-hero__weather-info {
    display: flex;
    flex-direction: column;
}

.om-hero__weather-temp {
    font-family: var(--om-body);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 3px;
}

.om-hero__weather-desc {
    font-family: var(--om-body);
    font-size: 9px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@keyframes floatSnow {
    0% { transform: translateY(0) rotate(-5deg); }
    100% { transform: translateY(-4px) rotate(5deg); }
}

/* Layout container */
.om-hero__container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    align-items: center;
}

.om-hero__split-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    width: 100%;
    align-items: center;
}

/* Left Content Panel */
.om-hero__content-left {
    max-width: 650px;
}

/* Right Editorial Gallery Panel */
.om-hero__gallery-right {
    position: relative;
    width: 100%;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Base style for frames */
.om-gallery-frame {
    position: absolute;
    background: rgba(10, 22, 40, 0.65);
    border: 1px solid rgba(201, 168, 76, 0.35);
    padding: 10px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease-out;
    will-change: transform;
}

.om-gallery-frame__inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.om-gallery-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.om-gallery-frame:hover img {
    transform: scale(1.05);
}

.om-gallery-frame__caption {
    font-family: var(--om-body);
    font-size: 9px;
    font-weight: 600;
    color: var(--om-gold-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 10px;
    text-align: center;
}

/* Main Frame positioning */
.om-gallery-frame--main {
    width: 280px;
    height: 220px;
    left: 10%;
    top: 10%;
    transform: rotate(-3deg);
    z-index: 2;
}

/* Detail Frame positioning (closeup peak) */
.om-gallery-frame--detail {
    width: 220px;
    height: 220px;
    right: 5%;
    bottom: 5%;
    transform: rotate(4deg);
    z-index: 3;
    border-color: var(--om-gold);
}

/* Left side animations */
.om-hero__fade-in-item {
    opacity: 0;
    transform: translateY(15px);
    animation: heroItemFadeIn 0.8s var(--om-transition) forwards;
}

.om-hero__telemetry.om-hero__fade-in-item { animation-delay: 0.2s; }
.om-hero__tag.om-hero__fade-in-item { animation-delay: 0.4s; }
.om-hero__title.om-hero__fade-in-item { animation-delay: 0.6s; }
.om-hero__subtitle.om-hero__fade-in-item { animation-delay: 0.8s; }
.om-hero__actions.om-hero__fade-in-item { animation-delay: 1.0s; }

@keyframes heroItemFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

.om-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: var(--om-gold-light);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.om-hero__title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.om-hero__title span {
    font-family: var(--om-heading);
    display: block;
    color: var(--om-gold-light);
    font-style: italic;
    font-weight: 400;
    font-size: 0.52em;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.om-hero__subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    line-height: 1.7;
}

.om-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.om-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.35s var(--om-transition);
    border: 2px solid transparent;
}

.om-hero__btn--primary {
    background: var(--om-primary);
    color: #fff;
    border-color: var(--om-primary);
    box-shadow: 0 8px 30px rgba(253, 80, 86, 0.3);
}

.om-hero__btn--primary:hover {
    background: var(--om-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(253, 80, 86, 0.4);
    color: #fff;
}

.om-hero__btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.om-hero__btn--outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-3px);
    color: #fff;
}

@keyframes heroFadeInOnly {
    to { opacity: 1; }
}

.om-hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: heroFadeInOnly 0.6s 1.4s ease forwards;
}

.om-hero__scroll span {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.om-hero__scroll-line {
    width: 1px;
    height: 45px;
    background: linear-gradient(to bottom, rgba(201, 168, 76, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}


@keyframes scrollPulse {
    0%,100% { opacity: .3; transform: scaleY(.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

.om-intro {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.om-intro__top-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(10, 22, 40, 1), rgba(255, 255, 255, 1));
    z-index: 1;
    pointer-events: none;
}

.om-intro__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left: Immersive Media Frame */
.om-intro__media {
    position: relative;
    padding: 15px; /* space for outline frame offset */
}

.om-intro__outline-frame {
    position: absolute;
    inset: 0;
    border: 1px solid var(--om-gold);
    border-radius: var(--om-radius);
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translate(-15px, 15px);
}

.om-intro__media:hover .om-intro__outline-frame {
    transform: translate(10px, -10px);
}

.om-intro__image-container {
    position: relative;
    border-radius: var(--om-radius);
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 25px 60px rgba(10, 22, 40, 0.08);
}

.om-intro__image-container img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.om-intro__media:hover img {
    transform: scale(1.06);
}

.om-intro__image-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 14px 24px;
    border-radius: var(--om-radius-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    z-index: 3;
}

.om-intro__image-badge span {
    font-family: var(--om-body);
    font-weight: 700;
    font-size: 13px;
    color: var(--om-dark-blue);
    letter-spacing: 0.5px;
}

.om-pulse-icon {
    font-size: 16px;
    color: var(--om-primary);
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* Right: Content & Typography */
.om-intro__content {
    padding-left: 10px;
}

.om-intro__tag {
    display: inline-block;
    color: var(--om-primary);
    font-family: var(--om-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
    position: relative;
    padding-left: 20px;
}

.om-intro__tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background-color: var(--om-primary);
}

.om-intro__title-wrapper {
    position: relative;
    padding-left: 24px;
    margin-bottom: 24px;
}

.om-intro__title-line {
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 3px;
    background: var(--om-gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.om-intro__title-wrapper.is-visible .om-intro__title-line {
    transform: scaleY(1);
}

.om-intro__title {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 800;
    color: var(--om-dark-blue);
    line-height: 1.25;
    margin-bottom: 0;
}

.om-intro__lead {
    font-family: var(--om-heading);
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    font-style: italic;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 500;
}

.om-intro__text {
    font-family: var(--om-body);
    color: var(--om-text-light);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 25px;
}

/* Stats Cards */
.om-intro__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 35px;
}

.om-stat-card {
    background: #ffffff;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-top: 3px solid var(--om-gold);
    border-radius: var(--om-radius-sm);
    padding: 22px 16px;
    text-align: center;
    transition: all 0.4s var(--om-transition);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.05);
}

.om-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(201, 168, 76, 0.12);
    border-top-color: var(--om-primary);
}

.om-stat-card__icon {
    font-size: 20px;
    color: var(--om-gold);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.om-stat-card:hover .om-stat-card__icon {
    color: var(--om-primary);
}

.om-stat-card__value {
    font-family: var(--om-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--om-dark-blue);
    display: block;
    margin-bottom: 4px;
}

.om-stat-card__label {
    font-size: 11px;
    color: var(--om-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.om-section-tag {
    display: inline-block;
    background: rgba(253,80,86,.15);
    color: var(--om-primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 auto 18px auto;
}

.om-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
}

.om-section-desc {
    font-size: 16px;
    line-height: 1.8;
    max-width: 700px;
}


/* ==========================
   4. JOURNEY ROUTE SECTION
   ========================== */
.om-journey {
    padding: 50px 0 80px;
    background: #f8f9fa; /* Very clean, light background */
    position: relative;
}

.om-accordion {
    max-width: 100%;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.om-accordion__item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,.03);
    border: 1px solid transparent;
}

.om-accordion__item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transform: translateY(-2px);
}

.om-accordion__input {
    display: none;
}

/* Checked state for the item box */
.om-accordion__input:checked ~ .om-accordion__content-wrapper {
    grid-template-rows: 1fr;
}

.om-accordion__item:has(.om-accordion__input:checked) {
    box-shadow: 0 15px 40px rgba(253,80,86,.1);
    border-color: rgba(253,80,86,.2);
    transform: translateY(-4px);
}

.om-accordion__header {
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    background: transparent;
    transition: all .3s ease;
    margin: 0;
}

.om-accordion__header-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.om-accordion__day {
    position: relative;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    background: linear-gradient(135deg, var(--om-primary), var(--om-primary-dark));
    padding: 8px 18px;
    border-radius: 30px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(253,80,86,.3);
    z-index: 1;
}

.om-accordion__day::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 32px;
    padding: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
    background-size: 200% 100%;
    animation: dayBorderShine 2s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 2;
    pointer-events: none;
}

@keyframes dayBorderShine {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.om-accordion__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--om-text);
    margin: 0;
    transition: color .3s ease;
}

.om-accordion__item:hover .om-accordion__title {
    color: var(--om-primary);
}

.om-accordion__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(253,80,86,.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--om-primary);
    font-size: 14px;
    transition: all .5s cubic-bezier(0.4, 0, 0.2, 1);
}

.om-accordion__input:checked + .om-accordion__header .om-accordion__icon {
    background: var(--om-primary);
    color: #fff;
    transform: rotate(135deg);
    box-shadow: 0 4px 15px rgba(253,80,86,.4);
}

.om-accordion__content-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.om-accordion__content {
    overflow: hidden;
}

.om-accordion__content p {
    color: var(--om-text-light);
    font-size: 15px;
    line-height: 1.8;
    margin: 0 32px 32px 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,.06);
}

.om-why-book {
    padding: 100px 0 120px 0;
    background: linear-gradient(rgba(18, 20, 24, 0.85), rgba(18, 20, 24, 0.95)), url('../images/special-pages/om-parvat-images/om-parvat-new.jpeg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.om-why-book::before {
    display: none;
}

.om-why-book .om-section-tag {
    background: rgba(253,80,86,.15);
    color: var(--om-primary);
    border: none;
}

.om-why-book,
.om-why-book h2,
.om-why-book h3,
.om-why-book p,
.om-why-book span,
.om-why-book div {
    font-family: unset !important;
}

.om-why-book .om-section-title { color: #fff !important; }
.om-why-book .om-section-desc { color: var(--om-white-70) !important; }

.om-why-book__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.om-why-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.04);
    border-radius: var(--om-radius-sm);
    padding: 24px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,.02);
    transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.om-why-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.om-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--om-primary);
    transition: height .4s ease;
}

.om-why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,.06);
    border-color: rgba(253,80,86,.15);
}

.om-why-card:hover::before {
    height: 100%;
}

.om-why-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(253,80,86,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--om-primary);
    margin-bottom: 16px;
    transition: all .4s var(--om-transition);
}

.om-why-card:hover .om-why-card__icon {
    background: var(--om-primary);
    color: #fff;
    transform: scale(1.05) rotate(-5deg);
}

.om-why-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--om-text);
    margin-bottom: 10px;
}

.om-why-card__text {
    color: var(--om-text-light);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Partners grid inside why-book */
.om-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

@media (max-width: 767px) {
    .om-partners-grid {
        grid-template-columns: 1fr;
    }
}

.om-partner-badge {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    transition: all .4s var(--om-transition);
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.om-partner-badge.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.om-partner-badge:hover {
    transform: translateY(-4px);
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(253, 80, 86, 0.15);
}

.om-partner-badge__logo {
    flex: 0 0 55px;
    height: 55px;
    width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 0; /* Resetting old margin */
}

.om-partner-badge__logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.om-partner-badge__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.om-partner-badge__name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--om-text);
    margin-bottom: 2px;
}

.om-partner-badge__id {
    font-size: 11px;
    color: var(--om-text-light);
    font-family: monospace;
    word-break: break-all;
    margin-bottom: 6px;
}

.om-partner-badge__status {
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-radius: 20px;
    font-weight: 600;
    width: fit-content;
    margin-top: 0;
}

/* ==========================
   4.5 EXPLORE PACKAGES SECTION
   ========================== */
.om-packages {
    padding: 40px 0;
    background: #f8f9fa;
    position: relative;
}

.om-packages__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

@media (max-width: 1199px) {
    .om-packages__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .om-packages__grid {
        grid-template-columns: 1fr;
    }
}

.om-pkg-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.om-pkg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: rgba(253,80,86,.2);
}

.om-pkg-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.om-pkg-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.om-pkg-card:hover .om-pkg-card__image img {
    transform: scale(1.08);
}

.om-pkg-card__location {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    color: #1a202c;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 2;
}

.om-pkg-card__location i {
    color: var(--om-primary);
}

.om-pkg-card__price-wrap {
    display: flex;
    flex-direction: column;
}

.om-pkg-card__price-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--om-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.om-pkg-card__price-val {
    font-size: 20px;
    font-weight: 800;
    color: var(--om-primary);
    line-height: 1;
}

.om-pkg-card__content {
    padding: 30px 20px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.om-pkg-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.om-pkg-card__meta span {
    font-size: 12px;
    font-weight: 600;
    color: var(--om-text-light);
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f4f6f8;
    padding: 5px 10px;
    border-radius: 8px;
}

.om-pkg-card__meta i {
    color: var(--om-primary);
}

.om-pkg-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--om-text);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.om-pkg-card__desc {
    font-size: 14px;
    color: var(--om-text-light);
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.om-pkg-card__footer {
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.om-pkg-card__btn {
    font-size: 14px;
    font-weight: 700;
    color: var(--om-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.om-pkg-card__btn i {
    transition: transform 0.3s ease;
}

.om-pkg-card__btn:hover {
    color: var(--om-primary-dark);
}

.om-pkg-card__btn:hover i {
    transform: translateX(5px);
}

/* Shiny Button for All Packages Link */
.om-shiny-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--om-primary), var(--om-primary-dark));
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(253,80,86,0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.om-shiny-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shinyBtn 3s infinite;
}

@keyframes shinyBtn {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.om-shiny-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(253,80,86,0.5);
    color: #fff;
}

.om-shiny-btn i {
    transition: transform 0.3s ease;
}

.om-shiny-btn:hover i {
    transform: translateX(5px);
}

.om-tips {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.om-bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 300px;
    gap: 24px;
    margin-top: 50px;
}

.om-bento-item {
    background: #fff;
    border-radius: var(--om-radius);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.om-bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.om-bento-item--large {
    grid-column: span 3;
    grid-row: span 2;
}

.om-bento-item--wide {
    grid-column: span 3;
    grid-row: span 1;
}

.om-bento-item--solid {
    grid-column: span 2;
    grid-row: span 1;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.om-bento-item--solid:hover {
    border-color: rgba(253, 80, 86, 0.2);
    box-shadow: 0 15px 40px rgba(253, 80, 86, 0.08);
}

/* Background image overlay */
.om-bento-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    object-position: top;
    z-index: 1;
    transition: transform 0.8s ease;
}

.om-bento-item:hover .om-bento-bg {
    transform: scale(1.05);
}

.om-bento-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

.om-bento-content {
    position: relative;
    z-index: 3;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.om-bento-content--bottom {
    justify-content: flex-end;
}

.om-bento-split {
    display: flex;
    height: 100%;
    width: 100%;
}

.om-bento-split--reverse {
    flex-direction: row-reverse;
}

.om-bento-split-img {
    flex: 0 0 45%;
    overflow: hidden;
    position: relative;
}

.om-bento-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.om-bento-item:hover .om-bento-split-img img {
    transform: scale(1.08);
}

.om-bento-split .om-bento-content {
    flex: 1;
    padding: 24px;
}

.om-bento-icon {
    width: 50px;
    height: 50px;
    background: rgba(253,80,86,.1);
    color: var(--om-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.om-bento-item--solid .om-bento-icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(253, 80, 86, 0.08);
    color: var(--om-primary);
    box-shadow: none;
    border: 1px solid rgba(253, 80, 86, 0.15);
    font-size: 22px;
}

.om-bento-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--om-text);
    margin-bottom: 12px;
}

.om-bento-item--solid .om-bento-title {
    color: var(--om-text);
}

.om-bento-desc {
    font-size: 14.5px;
    color: var(--om-text-light);
    line-height: 1.6;
    margin: 0;
}

/* White text for cards with background images */
.om-bento-item--large .om-bento-title,
.om-bento-item--large .om-bento-desc {
    color: #fff;
}

.om-bento-item--large .om-bento-desc {
    color: rgba(255,255,255,0.8);
}

.om-bento-item--solid .om-bento-desc {
    color: var(--om-text-light);
}

.om-accordion {
    margin-top: 30px;
}

.om-accordion__item {
    background: var(--om-cream);
    border-radius: var(--om-radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.05);
    transition: all .3s ease;
}

.om-accordion__item.active {
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    border-color: rgba(253,80,86,.15);
}

.om-accordion__header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    cursor: pointer;
    transition: background .3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: var(--om-body);
}

.om-accordion__header:hover {
    background: rgba(253,80,86,.03);
}

.om-accordion__header-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(253,80,86,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--om-primary);
    flex-shrink: 0;
    transition: all .3s ease;
}

.om-accordion__item.active .om-accordion__header-icon {
    background: var(--om-primary);
    color: #fff;
}

.om-accordion__header-text {
    flex: 1;
    font-weight: 600;
    font-size: 15px;
    color: var(--om-text);
}

.om-accordion__chevron {
    font-size: 14px;
    color: var(--om-text-light);
    transition: transform .3s ease;
}

.om-accordion__item.active .om-accordion__chevron {
    transform: rotate(180deg);
    color: var(--om-primary);
}

.om-accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--om-transition);
}

.om-accordion__body-inner {
    padding: 0 22px 18px 76px;
    color: var(--om-text-light);
    line-height: 1.7;
    font-size: 14.5px;
}

/* ==========================
   7b. REVIEWS MARQUEE
   ========================== */
.om-reviews {
    padding: 40px 0 80px;
    background: #f9fafb;
    overflow: hidden;
}

.om-reviews-marquee {
    overflow: hidden;
    position: relative;
    margin-top: 30px;
    padding: 10px 0;
}

.om-reviews-marquee:first-of-type {
    margin-top: 50px;
}

.om-reviews-marquee::before,
.om-reviews-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 5;
    pointer-events: none;
}

.om-reviews-marquee::before {
    left: 0;
    background: linear-gradient(to right, #f9fafb, transparent);
}

.om-reviews-marquee::after {
    right: 0;
    background: linear-gradient(to left, #f9fafb, transparent);
}

@keyframes marqueeScrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marqueeScrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.om-reviews-track {
    display: flex;
    gap: 24px;
    width: max-content;
}

.om-reviews-track--left {
    animation: marqueeScrollLeft 45s linear infinite;
}

.om-reviews-track--right {
    animation: marqueeScrollRight 45s linear infinite;
}

.om-reviews-track:hover {
    animation-play-state: paused;
}

.om-review-card {
    flex: 0 0 380px;
    background: #fff;
    border-radius: var(--om-radius);
    padding: 28px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.om-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

.om-review-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.om-review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(253,80,86,0.1);
    color: var(--om-primary);
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.om-review-card__meta {
    flex: 1;
}

.om-review-card__meta strong {
    display: block;
    font-size: 15px;
    color: var(--om-text);
}

.om-review-card__meta span {
    font-size: 12px;
    color: var(--om-text-light);
}

.om-review-card__google {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.om-review-card__stars {
    margin: 14px 0 10px;
    color: #f4b73a;
    font-size: 13px;
    letter-spacing: 2px;
}

.om-review-card__text {
    font-size: 14px;
    color: var(--om-text-light);
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.om-cta-modern {
    position: relative;
    padding: 0 0 100px;
    overflow: hidden;
    background: #ffffff;
}

@keyframes ctaCardGlow {
    0%, 100% { box-shadow: 0 30px 60px rgba(253,80,86,0.06); }
    50% { box-shadow: 0 30px 70px rgba(253,80,86,0.15); }
}

.om-cta-card {
    background: #fff;
    border-radius: var(--om-radius);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(253,80,86,0.06);
    display: flex;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(0,0,0,0.05);
    animation: ctaCardGlow 4s ease-in-out infinite;
}

.om-cta-card__left {
    flex: 1.2;
    position: relative;
    overflow: hidden;
    min-height: 420px;
}

.om-cta-card__left-bg {
    position: absolute;
    inset: 0;
}

@keyframes ctaKenBurns {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.om-cta-card__left-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: ctaKenBurns 20s ease-in-out infinite;
}

.om-cta-card__left-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.om-cta-card__left-content {
    position: relative;
    z-index: 3;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    color: #fff;
}

.om-cta-card__title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.om-cta-card__desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 40px;
}

.om-cta-card__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.om-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.om-btn-modern--whatsapp {
    background: #fff;
    color: #333;
    box-shadow: 0 8px 20px rgba(0,0,0, 0.1);
}

.om-btn-modern--whatsapp i {
    color: #25D366;
    font-size: 18px;
}

.om-btn-modern--whatsapp:hover {
    background: #f8f9fa;
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0, 0.15);
}

.om-btn-modern--primary {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
}

.om-btn-modern--primary:hover {
    background: #fff;
    color: var(--om-primary);
    transform: translateY(-4px);
}

.om-cta-card__right {
    flex: 1;
    padding: 60px;
    background: #fff;
    display: flex;
    align-items: center;
}

.om-contact-grid {
    display: flex;
    flex-direction: column;
    gap: 36px;
    width: 100%;
}

.om-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

@keyframes ctaIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.om-contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(253,80,86,.08);
    color: var(--om-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.om-contact-item:nth-child(1) .om-contact-icon {
    animation: ctaIconPulse 3s ease-in-out infinite;
}

.om-contact-item:nth-child(2) .om-contact-icon {
    animation: ctaIconPulse 3s ease-in-out infinite 1s;
}

.om-contact-item:nth-child(3) .om-contact-icon {
    animation: ctaIconPulse 3s ease-in-out infinite 2s;
}

.om-contact-item:hover .om-contact-icon {
    background: var(--om-primary);
    color: #fff;
    transform: scale(1.1);
}

.om-contact-info {
    display: flex;
    flex-direction: column;
}

.om-contact-info span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--om-text-light);
    margin-bottom: 6px;
    font-weight: 700;
}

.om-contact-info strong {
    font-size: 18px;
    color: var(--om-text);
    line-height: 1.4;
    font-weight: 600;
}

.om-sticky-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform .4s var(--om-transition);
    box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}

.om-sticky-mobile.is-visible {
    transform: translateY(0);
}

.om-sticky-mobile__inner {
    display: flex;
}

.om-sticky-mobile__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: none;
    transition: background .3s ease;
}

.om-sticky-mobile__btn--call {
    background: var(--om-primary);
    color: #fff;
}

.om-sticky-mobile__btn--call:hover {
    background: var(--om-primary-dark);
    color: #fff;
}

.om-sticky-mobile__btn--whatsapp {
    background: #25d366;
    color: #fff;
}

.om-sticky-mobile__btn--whatsapp:hover {
    background: #1fb855;
    color: #fff;
}

/* ==========================
   SCROLL REVEAL ANIMATION CLASSES
   ========================== */
.om-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s var(--om-transition);
}

.om-reveal--left {
    transform: translateX(-50px);
}

.om-reveal--right {
    transform: translateX(50px);
}

.om-reveal--scale {
    transform: scale(.9);
}

.om-reveal.is-visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

.om-delay-1 { transition-delay: .1s; }
.om-delay-2 { transition-delay: .2s; }
.om-delay-3 { transition-delay: .3s; }
.om-delay-4 { transition-delay: .4s; }
.om-delay-5 { transition-delay: .5s; }
.om-delay-6 { transition-delay: .6s; }

@media (max-width: 1200px) {
    .om-facts__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .om-partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .om-intro__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .om-intro__image-container img {
        height: 380px;
    }

    .om-facts__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .om-tips__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .om-tips__content {
        position: static;
    }

    .om-tips__image-wrap {
        display: none;
    }

    .om-hero {
        height: auto;
        min-height: 100vh;
        padding: 40px 0;
    }

    .om-hero__container {
        padding: 100px 20px 60px 20px;
        align-items: center;
        height: auto;
        min-height: auto;
    }

    .om-hero__split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .om-hero__content-left {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .om-hero__telemetry {
        justify-content: center;
    }

    .om-hero__actions {
        justify-content: center;
    }

    .om-hero__gallery-right {
        height: 280px;
        margin-top: 20px;
    }

    .om-gallery-frame--main {
        width: 220px;
        height: 170px;
        left: 15%;
        top: 0;
    }

    .om-gallery-frame--detail {
        width: 170px;
        height: 170px;
        right: 10%;
        bottom: 0;
    }

    .om-hero__weather-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 24px;
        padding: 6px 16px;
    }

    .om-history__floating-om {
        width: 200px;
        right: -40px;
    }
}

@media (max-width: 768px) {
    .om-hero {
        min-height: auto;
        padding: 60px 0 40px 0;
    }

    .om-intro,
    .om-history,
    .om-journey,
    .om-why-book,
    .om-facts,
    .om-tips,
    .om-cta-modern {
        padding: 70px 0;
    }

    .om-intro__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .om-stat-card {
        padding: 14px 10px;
    }

    .om-stat-card__value {
        font-size: 1.3rem;
    }

    .om-why-book__grid {
        grid-template-columns: repeat(2, 1fr);
    }



    .om-partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .om-accordion__header {
        padding: 20px;
    }
    .om-accordion__header-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .om-accordion__title {
        font-size: 1.15rem;
    }
    .om-accordion__content {
        padding: 0;
    }
    .om-accordion__content p {
        margin: 0 20px 20px 20px;
        padding-top: 20px;
    }

    .om-hero__scroll {
        display: none;
    }

    .om-cta-modern {
        padding: 60px 0;
    }

    .om-timeline {
        padding-left: 30px;
    }

    .om-timeline__item {
        padding-left: 22px;
    }

    .om-timeline__dot {
        left: -27px;
    }
}

@media (max-width: 576px) {
    .om-hero {
        padding-top: 20px;
    }

    .om-hero__container {
        padding: 40px 25px 20px 25px;
    }

    .om-hero__frame {
        inset: 15px;
    }

    .om-hero__tag {
        font-size: 11px;
        padding: 6px 16px;
        letter-spacing: 1.5px;
    }

    .om-hero__gallery-right {
        height: 200px;
    }

    .om-gallery-frame--main {
        width: 170px;
        height: 130px;
        left: 10%;
    }

    .om-gallery-frame--detail {
        width: 130px;
        height: 130px;
        right: 5%;
    }

    .om-intro__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .om-stat-card {
        padding: 12px 6px;
    }

    .om-stat-card__value {
        font-size: 1.1rem;
    }

    .om-stat-card__label {
        font-size: 10px;
    }

    .om-why-book__grid {
        grid-template-columns: 1fr;
    }



    .om-partners-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .om-partner-badge {
        padding: 16px 10px;
    }

    .om-partner-badge__logo {
        flex: 0 0 45px;
        width: 45px;
        height: 45px;
    }

    .om-partner-badge__name {
        font-size: 12px;
    }

    .om-partner-badge__id {
        font-size: 11px;
    }

    .om-why-card {
        padding: 24px 20px;
    }

    .om-journey__stop {
        flex: 0 0 240px;
    }

    .om-hero__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 12px;
    }

    .om-hero__btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }

    .om-cta-card {
        flex-direction: column;
    }
    
    .om-cta-card__left {
        min-height: 300px;
    }

    .om-cta-card__left-content {
        padding: 40px 30px;
    }

    .om-cta-card__right {
        padding: 40px 30px;
    }

    .om-cta-card__title {
        font-size: 1.8rem;
    }

    .om-btn-modern {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }

    .om-intro__image-container img {
        height: 320px;
    }

    .om-intro__outline-frame {
        transform: translate(-10px, 10px);
    }

    .om-intro__media:hover .om-intro__outline-frame {
        transform: translate(6px, -6px);
    }

    .om-intro__title-wrapper {
        padding-left: 16px;
    }

    .om-history__floating-om {
        display: none;
    }
}

@media (max-width: 380px) {
    .om-intro__stats {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 6px;
    }

    .om-stat-card__value {
        font-size: 1rem;
    }

    .om-stat-card__label {
        font-size: 9px;
    }


}

@media (max-width: 991px) {
    .om-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .om-bento-item--large {
        grid-column: span 2;
    }
    .om-bento-item--wide {
        grid-column: span 2;
    }
    .om-bento-item--solid {
        grid-column: span 1;
    }
}

@media (max-width: 767px) {
    .om-bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .om-bento-item--large,
    .om-bento-item--wide,
    .om-bento-item--solid {
        grid-column: span 1;
        grid-row: span 1;
    }
    .om-bento-split {
        flex-direction: column;
    }
    .om-bento-split-img {
        flex: 0 0 200px;
    }
}
