/* Custom Styles for AMOHA Logistics */
/* Tailwind is loaded via CDN in header.php */

html {
    scroll-behavior: smooth;
}

:root {
    --brand-red: #9b0014;
    --brand-red-soft: #f3d7dc;
    --brand-orange-soft: #ffe8d9;
    --brand-cyan-soft: #dff5ff;
    --brand-ink: #111827;
}

@layer utilities {
    .clip-button {
        clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
    }
}

body {
    text-rendering: optimizeLegibility;
    background: linear-gradient(180deg, #ffffff 0%, #fdfdfd 45%, #fbfcff 100%);
}

#index-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 70;
    pointer-events: none;
    background: rgba(17, 24, 39, 0.08);
}

#index-scroll-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #9b0014 0%, #f97316 45%, #06b6d4 100%);
    transition: width 0.08s linear;
}

@keyframes orbDrift {
    0% { transform: translate3d(0, var(--float-offset, 0px), 0) scale(1); }
    50% { transform: translate3d(0, calc(var(--float-offset, 0px) - 16px), 0) scale(1.06); }
    100% { transform: translate3d(0, var(--float-offset, 0px), 0) scale(1); }
}

.hero-word {
    display: inline-block;
    transform-origin: 50% 100%;
    opacity: 0;
}

.hero-title-glass {
    width: fit-content;
    max-width: 100%;
    padding: 0.45rem 0.85rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(251, 113, 133, 0.16) 100%);
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

@media (max-width: 640px) {
    .hero-title-glass {
        padding: 0.4rem 0.7rem;
        border-radius: 0.85rem;
    }
}

.hero-cta-btn {
    position: relative;
    overflow: hidden;
    border-radius: 0.6rem;
}

.hero-cta-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.22) 50%, transparent 100%);
    transform: translateX(-120%);
    transition: transform 0.55s ease;
}

.hero-cta-btn:hover::after {
    transform: translateX(120%);
}

.hero-cta-btn-light {
    border: 1px solid rgba(17, 24, 39, 0.08);
}

.hero-dot {
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.hero-stage {
    isolation: isolate;
}

.hero-ambient {
    position: absolute;
    border-radius: 9999px;
    pointer-events: none;
    filter: blur(70px);
    opacity: 0.45;
    z-index: -15;
    animation: orbDrift 6s ease-in-out infinite;
}

.hero-ambient-1 {
    width: 180px;
    height: 180px;
    right: 12%;
    top: 24%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.7) 0%, rgba(249, 115, 22, 0) 70%);
}

.hero-ambient-2 {
    width: 220px;
    height: 220px;
    left: 9%;
    bottom: 8%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.6) 0%, rgba(6, 182, 212, 0) 70%);
    animation-delay: 0.8s;
}

.floating-social-sidebar {
    position: fixed;
    right: 0.7rem;
    bottom: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 75;
    opacity: 0;
    transform: translateX(16px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-social-sidebar.is-visible {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.floating-social-link {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-social-svg {
    width: 1rem;
    height: 1rem;
    display: block;
    fill: currentColor;
}

.floating-social-link:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.36);
}

.floating-social-link.is-instagram {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 55%, #8134af 100%);
}

.floating-social-link.is-call {
    background: linear-gradient(135deg, #ef4444 0%, #9b0014 100%);
}

.floating-social-link.is-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

@media (max-width: 640px) {
    .floating-social-sidebar {
        right: 0.5rem;
        bottom: 0.85rem;
        gap: 0.42rem;
    }

    .floating-social-link {
        width: 2.05rem;
        height: 2.05rem;
    }
}

.secondary-hero-surface {
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: inset 0 -24px 40px rgba(255, 255, 255, 0.18);
}

.refine-card-lite {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.refine-card-lite:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
    border-color: rgba(155, 0, 20, 0.25) !important;
}

.secondary-kicker {
    display: inline-block;
    width: fit-content;
    padding: 0.28rem 0.7rem;
    border-radius: 0.45rem;
    border: 1px solid rgba(155, 0, 20, 0.28);
    background: rgba(254, 242, 242, 0.9);
    color: #9b0014 !important;
    letter-spacing: 0.08em;
}

@media (max-width: 640px) {
    .secondary-kicker {
        padding: 0.24rem 0.55rem;
        letter-spacing: 0.06em;
    }
}

.section-stage {
    position: relative;
    overflow: hidden;
}

.section-stage-light {
    background: linear-gradient(180deg, #ffffff 0%, #fffaf8 100%);
}

.section-stage-soft {
    background: linear-gradient(180deg, #f9fafb 0%, #fff7f3 100%);
}

.section-stage-warm {
    background: linear-gradient(180deg, #ffffff 0%, #fff6ef 100%);
}

.section-stage-cool {
    background: linear-gradient(180deg, #f8fafc 0%, #eef6ff 100%);
}

.section-stage-dark {
    background: #0f172a;
}

.section-orb {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 9999px;
    filter: blur(55px);
    opacity: 0.22;
    pointer-events: none;
    z-index: 0;
    animation: orbDrift 7.5s ease-in-out infinite;
}

.section-stage > :not(.section-orb):not(.absolute) {
    position: relative;
    z-index: 1;
}

.orb-red {
    top: -28px;
    left: -34px;
    background: radial-gradient(circle, rgba(155, 0, 20, 0.8) 0%, rgba(155, 0, 20, 0) 72%);
}

.orb-blue {
    right: -34px;
    bottom: 10%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.75) 0%, rgba(37, 99, 235, 0) 72%);
}

.orb-amber {
    top: 12%;
    right: -40px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.78) 0%, rgba(249, 115, 22, 0) 74%);
}

.orb-pink {
    left: -36px;
    top: 8%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.72) 0%, rgba(236, 72, 153, 0) 72%);
}

.orb-cyan {
    right: -36px;
    top: 15%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.75) 0%, rgba(6, 182, 212, 0) 72%);
}

@media (max-width: 640px) {
    .hero-ambient {
        opacity: 0.32;
        filter: blur(55px);
    }

    .section-orb {
        width: 130px;
        height: 130px;
        filter: blur(42px);
        opacity: 0.18;
    }
}

.section-stage.is-inview .section-orb {
    opacity: 0.32;
}

.service-progress-rail {
    width: min(360px, 90%);
    margin-left: auto;
    margin-right: auto;
    height: 6px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.08);
    overflow: hidden;
}

.service-progress-fill {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(155, 0, 20, 0.3) 0%, #9b0014 32%, #f97316 55%, rgba(155, 0, 20, 0.3) 100%);
    background-size: 220% 100%;
    animation: servicePulse 1.9s linear infinite;
}

@keyframes servicePulse {
    0% { background-position: 210% 0; }
    100% { background-position: -120% 0; }
}

.about-photo-shell {
    isolation: isolate;
}

.about-photo-three-bg {
    overflow: hidden;
    background: radial-gradient(circle at 18% 22%, rgba(249, 115, 22, 0.22) 0%, rgba(249, 115, 22, 0) 54%), radial-gradient(circle at 82% 74%, rgba(6, 182, 212, 0.2) 0%, rgba(6, 182, 212, 0) 56%), linear-gradient(135deg, rgba(15, 23, 42, 0.82) 0%, rgba(30, 41, 59, 0.72) 100%);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.2);
}

.about-photo-three-bg canvas {
    width: 100% !important;
    height: 100% !important;
    opacity: 0.72;
    mix-blend-mode: screen;
}

.vendor-three-shell {
    isolation: isolate;
}

.vendor-canvas-shell {
    isolation: isolate;
    background: #ffffff;
}

.vendor-canvas-bg {
    width: 100% !important;
    height: 100% !important;
    display: block;
    background: linear-gradient(180deg, #ffffff 0%, #f4fffa 52%, #ffffff 100%);
}

.vendor-three-bg {
    overflow: hidden;
    background: radial-gradient(circle at 15% 20%, rgba(56, 189, 248, 0.24) 0%, rgba(56, 189, 248, 0) 46%), radial-gradient(circle at 84% 76%, rgba(251, 113, 133, 0.22) 0%, rgba(251, 113, 133, 0) 50%), radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 0.38) 0%, rgba(15, 23, 42, 0) 62%), linear-gradient(150deg, #0b1224 0%, #10213f 48%, #131c34 100%);
}

.vendor-three-bg canvas {
    width: 100% !important;
    height: 100% !important;
    opacity: 0.48;
    mix-blend-mode: screen;
    filter: saturate(1.28) contrast(1.05);
}

@media (max-width: 768px) {
    .vendor-three-bg canvas {
        opacity: 0.36;
    }

    .vendor-canvas-bg {
        opacity: 0.92;
    }

    .about-photo-three-bg canvas {
        opacity: 0.58;
    }
}

@keyframes vendorHeadingGlow {
    0%, 100% {
        text-shadow: 0 0 0 rgba(244, 114, 182, 0);
    }
    50% {
        text-shadow: 0 0 18px rgba(244, 114, 182, 0.38);
    }
}

.vendor-premium-dark .section-orb {
    opacity: 0.28;
    filter: blur(64px);
}

.vendor-premium-dark h2 {
    color: #ffffff !important;
    animation: vendorHeadingGlow 4.2s ease-in-out infinite;
    text-shadow: 0 4px 20px rgba(2, 6, 23, 0.45);
}

.vendor-premium-dark h3,
.vendor-premium-dark p,
.vendor-premium-dark span,
.vendor-premium-dark .text-brand-black,
.vendor-premium-dark .text-gray-600,
.vendor-premium-dark .text-gray-700,
.vendor-premium-dark .text-gray-800,
.vendor-premium-dark .text-gray-900 {
    color: #f8fafc !important;
    text-shadow: 0 2px 12px rgba(2, 6, 23, 0.34);
}

.vendor-premium-dark .text-gray-600 {
    color: #dbeafe !important;
}

.vendor-premium-dark .glass-box {
    background: linear-gradient(138deg, rgba(15, 23, 42, 0.66) 0%, rgba(30, 41, 59, 0.6) 100%);
    border: 1px solid rgba(226, 232, 240, 0.32);
    box-shadow: 0 14px 32px rgba(2, 6, 23, 0.44);
    backdrop-filter: blur(14px);
}

.vendor-premium-dark .section-image {
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 18px 34px rgba(2, 6, 23, 0.4);
}

.vendor-premium-dark .benefit-bullet .bullet {
    color: #fda4af;
    text-shadow: 0 0 10px rgba(244, 114, 182, 0.35);
}

.vendor-premium-dark .vendor-hotline {
    color: #fda4af !important;
    text-shadow: 0 0 14px rgba(244, 114, 182, 0.35);
}

.vendor-premium-dark .vendor-hotline:hover {
    color: #ffffff !important;
}

.vendor-premium-dark .vendor-subheadline-glass {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(191, 219, 254, 0.42);
    background: linear-gradient(132deg, rgba(15, 23, 42, 0.72) 0%, rgba(30, 41, 59, 0.62) 100%);
    box-shadow: 0 12px 26px rgba(2, 6, 23, 0.42);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(2, 6, 23, 0.42);
}

.vendor-premium-dark .text-center .vendor-subheadline-glass {
    margin-left: auto;
    margin-right: auto;
}

.vendor-premium-light h2 {
    color: #0f172a !important;
}

.vendor-premium-light h3,
.vendor-premium-light p,
.vendor-premium-light span,
.vendor-premium-light .text-brand-black,
.vendor-premium-light .text-gray-600,
.vendor-premium-light .text-gray-700,
.vendor-premium-light .text-gray-800,
.vendor-premium-light .text-gray-900 {
    color: #1f2937 !important;
    text-shadow: none;
}

.vendor-premium-light .text-gray-600 {
    color: #374151 !important;
}

.vendor-premium-light .glass-box {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(5, 150, 105, 0.24);
    box-shadow: 0 10px 28px rgba(5, 150, 105, 0.08);
    backdrop-filter: blur(10px);
}

.vendor-premium-light .section-image {
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.14);
}

.vendor-premium-light .benefit-bullet .bullet {
    color: #059669;
    text-shadow: none;
}

.vendor-premium-light .vendor-hotline {
    color: #9b0014 !important;
    text-shadow: none;
}

.vendor-premium-light .vendor-hotline:hover {
    color: #111827 !important;
}

.vendor-premium-light .vendor-subheadline-glass {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(155, 0, 20, 0.28);
    background: linear-gradient(135deg, rgba(254, 242, 242, 0.95) 0%, rgba(255, 237, 237, 0.88) 100%);
    box-shadow: 0 10px 22px rgba(155, 0, 20, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #9b0014 !important;
}

.vendor-premium-light .text-center .vendor-subheadline-glass {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 640px) {
    .vendor-premium-dark .vendor-subheadline-glass {
        padding: 0.45rem 0.78rem;
        font-size: 0.92rem;
    }

    .vendor-premium-light .vendor-subheadline-glass {
        padding: 0.45rem 0.78rem;
        font-size: 0.92rem;
    }
}

.section-image {
    transition: transform 0.5s ease;
}

.section-image:hover {
    transform: scale(1.05);
}

.service-card {
    background: #ffffff;
    border: 1px solid #ebedf0;
    border-radius: 18px;
    padding: 2rem 1.5rem;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 38px rgba(17, 24, 39, 0.12);
}

.service-card:hover .icon-pop {
    animation: iconBounce 0.7s ease;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: #f4f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Premium Service Card Zig-Zag Layout */
.service-card-premium {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card-premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.14);
    border-color: #9b0014;
}

.service-icon-premium {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(155, 0, 20, 0.12) 0%, rgba(155, 0, 20, 0.06) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.service-card-premium:hover .service-icon-premium {
    transform: scale(1.12);
}

.service-card-premium h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.service-card-premium p {
    color: #6b7280;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .service-card-premium {
        width: 100% !important;
        padding: 1.5rem;
    }

    .flex.justify-center > .service-card-premium,
    .flex.justify-start > .service-card-premium,
    .flex.justify-end > .service-card-premium {
        width: 100% !important;
    }
}

/* Compact Collapsible Service Cards */
.service-card-compact {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
    transition: all 0.3s ease;
}

.service-card-compact:hover {
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.1);
    border-color: #9b0014;
}

.service-icon-compact {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(155, 0, 20, 0.12) 0%, rgba(155, 0, 20, 0.06) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-toggle-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fee0e3;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1;
}

.service-toggle-btn:hover {
    background: #9b0014;
    transform: scale(1.1);
}

.service-toggle-btn:hover span {
    color: #ffffff;
}

/* Service Accordion */
.service-accordion {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(17, 24, 39, 0.05);
    transition: box-shadow 0.3s ease;
}

.service-accordion:hover {
    box-shadow: 0 4px 12px rgba(17, 24, 39, 0.1);
}

.service-accordion.is-open {
    border-color: rgba(155, 0, 20, 0.4);
    box-shadow: 0 10px 26px rgba(155, 0, 20, 0.14);
}

.service-accordion.is-open .service-accordion-header {
    background: linear-gradient(90deg, rgba(155, 0, 20, 0.08) 0%, rgba(249, 115, 22, 0.08) 100%);
}

.service-accordion-header {
    background: #ffffff;
    padding: 1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 1rem;
    width: 100%;
}

.service-accordion-header:hover {
    background-color: #f9fafb;
}

.service-accordion-header:focus {
    outline: 2px solid #9b0014;
    outline-offset: -2px;
}

.service-accordion-content {
    background-color: #f9fafb;
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
    overflow: visible !important;
    max-height: none !important;
}

.service-accordion-content.hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .service-card-compact {
        padding: 0.875rem;
    }

    .service-icon-compact {
        width: 36px;
        height: 36px;
    }

    .service-toggle-btn {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
}

.benefit-card {
    background: #ffffff;
    border: 1px solid #ebedf0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(17, 24, 39, 0.07);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(17, 24, 39, 0.12);
}

.primary-gradient-btn {
    background: linear-gradient(120deg, #9b0014 0%, #48000a 100%);
    color: #ffffff;
    padding: 0.85rem 1.6rem;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 10px 24px rgba(155, 0, 20, 0.28);
}

.primary-gradient-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(155, 0, 20, 0.35);
}

.why-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    border-radius: 12px;
    padding: 1rem;
    font-weight: 500;
    color: #1f2937;
}

/* Glass Box Style for Highlight */
.glass-box {
    background: rgba(155, 0, 20, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(155, 0, 20, 0.15);
    border-radius: 16px;
    animation: glassBoxAppear 0.8s ease-out forwards;
}

@keyframes glassBoxAppear {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Benefit Bullet Style */
.benefit-bullet {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    opacity: 0;
}

.benefit-bullet .bullet {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9b0014;
    font-size: 1.25rem;
    line-height: 1;
    flex-shrink: 0;
    font-weight: bold;
}

.benefit-bullet p {
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 640px) {
    .benefit-bullet {
        gap: 0.5rem;
    }

    .benefit-bullet .bullet {
        font-size: 1rem;
    }

    .benefit-bullet p {
        font-size: 0.9rem;
    }
}

[data-animate] {
    will-change: transform, opacity;
}

@keyframes iconBounce {
    0% { transform: scale(1); }
    30% { transform: scale(1.18); }
    60% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

/* Review Glassmorphism Cards */
.review-glass-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.12);
}

.review-card.is-active .review-glass-card {
    border-color: rgba(155, 0, 20, 0.35);
    box-shadow: 0 14px 38px rgba(155, 0, 20, 0.18);
    transform: translateY(-4px);
}

#reviews-container {
    scroll-behavior: smooth;
    overflow-y: visible;
    padding-top: 0.45rem;
    scroll-padding-left: 0.5rem;
}

.review-card {
    box-sizing: border-box;
}

.review-card .review-glass-card {
    will-change: transform;
}

.scroll-indicator {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 9999px;
    height: 8px;
}

.scroll-indicator.active {
    width: 24px;
    background-color: #9b0014;
}

.scroll-indicator:hover {
    background-color: #9b0014;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .review-glass-card {
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 1rem !important;
    }

    #reviews-container {
        gap: 1rem;
        padding-top: 0.38rem;
    }
}

/* Hero Breadcrumb & Description Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-breadcrumb {
    animation: fadeInUp 0.8s ease-out;
}

.hero-description {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Hero CTA Premium Styling & Positioning */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes heroCardGlow {
    0% {
        box-shadow: 0 14px 28px rgba(155, 0, 20, 0.12), 0 0 0 rgba(255, 111, 97, 0);
    }
    50% {
        box-shadow: 0 20px 38px rgba(155, 0, 20, 0.2), 0 0 24px rgba(255, 111, 97, 0.18);
    }
    100% {
        box-shadow: 0 14px 28px rgba(155, 0, 20, 0.12), 0 0 0 rgba(255, 111, 97, 0);
    }
}

.premium-cta-card {
    border: 1px solid rgba(155, 0, 20, 0.2) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 0 20px rgba(155, 0, 20, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-cta-card:hover {
    border-color: rgba(155, 0, 20, 0.4) !important;
    box-shadow: 0 15px 50px rgba(155, 0, 20, 0.15) !important;
    transform: translateY(-2px);
}

.premium-small-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: #111827; /* Dark theme default */
}

.premium-small-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.premium-small-btn:hover::before {
    left: 100%;
}

.premium-small-btn:hover {
    background: #9b0014 !important;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(155, 0, 20, 0.4) !important;
}

@media (max-width: 640px) {
    .hero-action-buttons a {
        border-radius: 0.55rem;
        letter-spacing: 0.035em;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    }

    .hero-cta-container {
        position: absolute;
        bottom: -52px;
        left: 0;
        right: 0;
        padding: 0 1rem;
        margin-top: 0 !important;
        z-index: 30;
        animation: float 4s ease-in-out infinite, fadeInUp 0.8s ease-out 0.4s both;
    }

    .premium-cta-card.trip-cta-card {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 242, 244, 0.95) 50%, rgba(255, 239, 227, 0.94) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        margin: 0 auto;
        max-width: 300px;
        width: 100%;
        border-radius: 14px;
        padding: 0.75rem !important;
        gap: 0.6rem !important;
        border: 1.5px solid rgba(155, 0, 20, 0.2) !important;
        box-shadow: 0 14px 28px rgba(155, 0, 20, 0.12), 0 0 18px rgba(255, 111, 97, 0.12) !important;
        animation: heroCardGlow 3s ease-in-out infinite;
    }

    .premium-cta-card.trip-cta-card h3 {
        font-size: 0.74rem !important;
        margin-bottom: 0.1rem !important;
        color: #111827;
    }

    .premium-cta-card.trip-cta-card p {
        font-size: 0.66rem !important;
        color: #4b5563;
    }

    .premium-small-btn {
        width: auto !important;
        padding: 0.5rem 0.85rem !important;
        font-size: 9px !important;
        border-radius: 6px !important;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25) !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

