:root {
            --bg: #F6F7F9;
            --bg-warm: #FDF9F4;
            --surface: #FFF4E8;
            --border: #EAD9C4;
            --primary: #E8871E;
            --primary-dark: #C96A0F;
            --espresso: #2B1810;
            --espresso-soft: #40332D;
            --muted: #40332D;
            --footer-bg: #EFDCBB;
            --navy: #1B2742;
            --shadow: 0 14px 34px rgba(43, 24, 16, .10);
            --radius: 16px;
            --container: 1240px
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box
        }

        html {
            scroll-behavior: smooth
        }

        body {
            margin: 0;
            background: var(--bg);
            color: var(--espresso-soft);
            font-family: 'Inter', sans-serif;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden
        }

        h1,
        h2,
        h3,
        h4 {
            margin: 0;
            color: var(--espresso);
            font-family: 'Poppins', sans-serif;
            line-height: 1.15
        }

        p {
            margin: 0
        }

        a {
            color: inherit;
            text-decoration: none
        }

        ul {
            list-style: none;
            margin: 0;
            padding: 0
        }

        .container {
            max-width: var(--container);
            margin: auto;
            padding: 0 24px
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 11px 20px;
            border: 1.5px solid transparent;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 700;
            white-space: nowrap;
            transition: .2s
        }

        .btn-primary {
            background: var(--primary);
            color: #000
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px)
        }

        .btn-outline {
            border-color: var(--primary);
            color: #000;
            background: transparent
        }

        .btn-outline:hover {
            background: var(--primary);
            transform: translateY(-2px)
        }

        header {
            position: sticky;
            top: 0;
            z-index: 20;
            background: rgba(255, 255, 255, .94);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border)
        }

        .nav-wrap {
            height: 84px;
            display: flex;
            align-items: center
        }

        .logo-link {
            display: flex;
            align-items: center;
            height: 100%;
            margin-right: auto
        }

        .logo-link img {
            height: 116px;
            width: auto
        }

        .main-nav {
            display: flex;
            align-items: center
        }

        .main-nav a {
            padding: 10px 13px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 600;
            color: var(--espresso-soft)
        }

        .main-nav a:hover,
        .main-nav a.active {
            background: var(--surface);
            color: var(--primary-dark)
        }

        .header-actions {
            display: flex;
            align-items: center;
            margin-left: 12px
        }

        .hamburger {
            display: none;
            background: none;
            border: 0;
            padding: 8px
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--espresso);
            margin: 5px 0
        }

        .packages-hero {
            position: relative;
            isolation: isolate;
            min-height: 470px;
            padding: 126px 0 82px;
            text-align: center;
            color: #fff;
            background: #172641;
            overflow: hidden
        }

        .package-hero-scene {
            position: absolute;
            inset: 0;
            z-index: -2;
            background-position: center;
            background-size: cover;
            opacity: 0;
            transform: translateX(100%);
            transition: opacity .8s ease, transform .8s ease
        }

        .package-hero-scene.active {
            opacity: 1;
            transform: translateX(0)
        }

        .package-hero-scene.exit {
            opacity: 0;
            transform: translateX(-100%)
        }

        .package-hero-overlay {
            position: absolute;
            inset: 0;
            z-index: -1;
            background: linear-gradient(180deg, rgba(15, 24, 43, .50), rgba(43, 24, 16, .78))
        }

        .packages-hero .container {
            position: relative;
            z-index: 1
        }

        .eyebrow {
            display: block;
            color: var(--primary);
            font-size: 12px;
            letter-spacing: .18em;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 12px
        }

        .packages-hero h1 {
            font-size: clamp(32px, 4.2vw, 54px);
            max-width: 820px;
            margin: auto;
            color: #fff
        }

        .packages-hero h1 span {
            color: var(--primary)
        }

        .packages-hero p {
            max-width: 680px;
            margin: 14px auto 0;
            font-size: 15px;
            line-height: 1.65;
            color: rgba(255, 255, 255, .88)
        }

        .package-filters {
            padding: 30px 0 12px;
            background: var(--bg)
        }

        .search-wrap {
            max-width: 760px;
            margin: 0 auto
        }

        .search-wrap input {
            width: 100%;
            height: 48px;
            border: 1px solid #D8DDE4;
            border-radius: 999px;
            padding: 0 22px;
            background: #fff;
            color: var(--espresso);
            font: 14px 'Inter', sans-serif;
            outline: none
        }

        .search-wrap input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(232, 135, 30, .16)
        }

        .category-row {
            display: grid;
            grid-template-columns: repeat(8, minmax(0, 1fr));
            gap: 10px;
            margin: 16px auto 0;
            max-width: 1080px
        }

        .category {
            min-height: 46px;
            border: 1px solid var(--primary);
            background: var(--navy);
            border-radius: 12px;
            padding: 9px 8px;
            color: var(--primary);
            font: 600 10px 'Poppins', sans-serif;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(27, 39, 66, .10);
            transition: transform .2s, background .2s, color .2s
        }

        .category.active,
        .category:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: #000;
            transform: translateY(-2px)
        }

        .package-section {
            padding: 32px 0 88px
        }

        .package-grid {
            display: flex;
            flex-direction: column;
            gap: 22px
        }

        .pkg-card {
            background: #FAF8F4;
            border: 1px solid #DDE2E8;
            border-radius: var(--radius);
            overflow: hidden;
            display: flex;
            flex-direction: row-reverse;
            min-width: 0;
            min-height: 230px;
            transition: transform .25s, box-shadow .25s
        }

        .pkg-card:nth-child(even) {
            flex-direction: row
        }

        .pkg-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow)
        }

        .pkg-visual {
            width: 42%;
            min-height: 230px;
            position: relative;
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            background-clip: border-box;
            display: flex;
            align-items: flex-start;
            padding: 12px;
            flex-shrink: 0
        }

        .pkg-visual::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(20, 30, 48, .20), rgba(20, 30, 48, .06) 45%, rgba(43, 24, 16, .25))
        }

        .pkg-visual .badge {
            position: relative;
            z-index: 1;
            background: var(--navy);
            color: #fff;
            border-radius: 999px;
            padding: 6px 10px;
            font: 700 10px 'Inter', sans-serif
        }

        .pkg-body {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 24px 28px 22px;
            flex: 1;
            min-width: 0
        }

        .pkg-body h3 {
            font-size: 20px;
            line-height: 1.3
        }

        .pkg-body h3 span {
            color: var(--primary-dark)
        }

        .pkg-list {
            display: flex;
            flex-direction: column;
            gap: 7px
        }

        .pkg-list li {
            display: flex;
            gap: 7px;
            align-items: flex-start;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.35
        }

        .pkg-list li::before {
            content: "✓";
            color: var(--primary-dark);
            font-weight: 700
        }

        .pkg-foot {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 12px;
            margin-top: auto;
            padding-top: 12px;
            border-top: 1px dashed var(--border)
        }

        .pkg-card:first-child .pkg-foot {
            align-items: flex-start;
            flex-direction: column
        }

        .pkg-foot small {
            color: var(--muted);
            font-size: 11px;
            line-height: 1.35;
            max-width: 72%
        }

        .pkg-foot .btn {
            padding: 8px 12px;
            font-size: 11px
        }

        .hidden {
            display: none !important
        }

        .card-abu-chauffeur {
            background-image: url('./public_html/images/dubai%20to%20ABU%20Dhabi.jpg');
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: center
        }

        .card-classic-city {
            background-image: url('./public_html/images/Dubai%20Classic%20City%20Tour.jfif');
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: center
        }

        .card-modern-city {
            background-image: url('./public_html/images/Dubai%20Modern%20City%20Tour.jfif');
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: center
        }

        .card-abu-city {
            background-image: url('./public_html/images/Private%20Abu%20Dhabi%20City%20Tour.jfif');
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: center
        }

        .card-full-day-old-new {
            background-image: url('./public_html/images/Full%20Day%20Old%20%26%20New%20Dubai%20Tour.jfif');
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: center
        }

        .card-desert-safari {
            background-image: url('./public_html/images/bbq-dinner-desert-safari-dubai.jpg');
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: center
        }

        .card-downtown {
            background-image: url('./public_html/images/Burj%20Khalifa%20%26%20Downtown%20Dubai%20Tour.jfif');
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: center
        }

        .card-yacht {
            background-image: url('./public_html/images/Dubai-Marina-Yacht-Charter.jpg');
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: center
        }

        .card-helicopter {
            background-image: url('./public_html/images/Dubai-by-Helicopter.jpg');
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: center
        }

        .card-dhow {
            background-image: url('./public_html/images/DhowCruiseDinnerDubaiMarina.jpg');
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: center
        }

        .card-mice {
            background-image: url('./public_html/images/MICE%20%26%20Corporate%20Events%20in%20Dubai.jfif');
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: center
        }

        .hero-one {
            background-image: url('./public_html/images/Private%20Abu%20Dhabi%20City%20Tour.jfif')
        }

        .hero-two {
            background-image: url('./public_html/images/Dubai%20Modern%20City%20Tour.jfif')
        }

        footer {
            background: var(--footer-bg);
            color: #000;
            padding: 24px 0 0
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
            gap: 40px;
            padding-bottom: 40px
        }

        .footer-brand img {
            height: 192px;
            width: auto;
            transform: translate(-10px, -12px);
            margin-bottom: -58px
        }

        .footer-brand p {
            max-width: 320px;
            margin: 0 0 12px;
            color: #000;
            font-size: 14px;
            line-height: 1.7
        }

        .social-row {
            display: flex;
            gap: 10px
        }

        .social-row a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(43, 24, 16, .08);
            display: flex;
            align-items: center;
            justify-content: center
        }

        .social-row svg {
            width: 16px;
            height: 16px
        }

        .footer-title {
            font: 700 13px 'Inter', sans-serif;
            text-transform: uppercase;
            letter-spacing: .08em;
            color: var(--espresso);
            margin: 8px 0 18px
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 7px;
            font-size: 14px
        }

        .footer-links a {
            color: #000
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 12px;
            font-size: 14px
        }

        .footer-contact li {
            display: flex;
            gap: 9px;
            align-items: flex-start
        }

        .footer-contact svg {
            width: 17px;
            height: 17px;
            flex: 0 0 auto;
            color: var(--primary-dark)
        }

        .footer-bottom {
            border-top: 1px solid rgba(43, 24, 16, .12);
            padding: 18px 0;
            display: flex;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
            font-size: 13px
        }

        .legal-links {
            display: flex;
            gap: 18px
        }

        .wa-fab {
            position: fixed;
            right: 24px;
            bottom: 24px;
            z-index: 30;
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: #25D366;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
            animation: waAttention 3.2s ease-in-out infinite
        }

        .wa-fab svg {
            width: 34px;
            height: 34px;
            color: #fff
        }

        @keyframes waAttention {

            0%,
            72%,
            100% {
                transform: translateY(0) scale(1);
                box-shadow: 0 8px 24px rgba(37, 211, 102, .4)
            }

            78% {
                transform: translateY(-4px) scale(1.04);
                box-shadow: 0 12px 30px rgba(37, 211, 102, .55)
            }

            84% {
                transform: translateY(0) scale(1)
            }
        }

        @media(prefers-reduced-motion:reduce) {
            .wa-fab {
                animation: none
            }
        }

        @media(max-width:1024px) {
            .footer-top {
                grid-template-columns: 1fr 1fr
            }

            .main-nav a {
                padding-inline: 8px
            }
        }

        @media(max-width:700px) {
            .main-nav {
                display: none
            }

            .header-actions .btn {
                display: none
            }

            .hamburger {
                display: block
            }

            .packages-hero {
                min-height: 430px;
                padding: 100px 0 52px
            }

            .packages-hero h1 {
                font-size: 34px
            }

            .packages-hero p {
                font-size: 14px
            }

            .package-filters {
                padding: 22px 0 8px
            }

            .package-section {
                padding-top: 22px
            }

            .package-grid {
                gap: 16px
            }

            .pkg-card,
            .pkg-card:nth-child(even) {
                flex-direction: column;
                min-height: 0
            }

            .pkg-visual {
                width: 100%;
                height: 180px;
                min-height: 180px
            }

            .pkg-body {
                padding: 18px 16px 16px
            }

            .pkg-body h3 {
                font-size: 16px
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 22px;
                padding-bottom: 28px
            }

            .footer-brand img {
                height: 145px;
                transform: translateX(-10px);
                margin-bottom: -40px
            }

            .footer-bottom {
                flex-direction: column
            }

            .legal-links {
                flex-wrap: wrap
            }

            .category-row {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 9px;
                padding-bottom: 4px
            }

            .category {
                min-height: 42px;
                padding: 8px 7px;
                font-size: 10px
            }

            .container {
                padding-inline: 18px
            }
        }

        @media(max-width:700px) {
            .pkg-card .pkg-foot .btn {
                background: var(--primary);
                border-color: var(--primary);
                color: #000
            }

            .pkg-card .pkg-foot .btn:hover {
                background: var(--primary-dark);
                border-color: var(--primary-dark);
                color: #000
            }
        }

        .package-section {
            background: #191A29
        }

        .booking-section {
            padding: 70px 0;
            background: #1B2742
        }

        .booking-panel {
            max-width: 920px;
            margin: 0 auto;
            padding: 34px;
            background: #1B2742;
            border: 1px solid rgba(232, 135, 30, .55);
            border-radius: var(--radius);
            box-shadow: 0 16px 36px rgba(10, 18, 35, .18)
        }

        .booking-head {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 26px
        }

        .booking-head .eyebrow {
            color: var(--primary);
            margin-bottom: 10px
        }

        .booking-head h2 {
            font-size: clamp(28px, 3.4vw, 40px);
            color: #fff
        }

        .booking-head h2 span {
            color: var(--primary)
        }

        .booking-head p {
            margin-top: 10px;
            color: rgba(255, 255, 255, .80);
            font-size: 15px;
            line-height: 1.6
        }

        .booking-form {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px
        }

        .booking-field {
            display: flex;
            flex-direction: column;
            gap: 7px
        }

        .booking-field.full {
            grid-column: 1 / -1
        }

        .booking-field label {
            font-size: 12px;
            font-weight: 700;
            color: #fff
        }

        .booking-field input,
        .booking-field textarea {
            width: 100%;
            border: 1px solid rgba(255, 255, 255, .28);
            border-radius: 10px;
            background: #fff;
            color: var(--espresso);
            font: 14px 'Inter', sans-serif;
            padding: 12px 13px;
            outline: none
        }

        .booking-field input {
            height: 46px
        }

        .booking-field textarea {
            min-height: 100px;
            resize: vertical
        }

        .booking-checks {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px
        }

        .booking-check {
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 11px 12px;
            border: 1px solid rgba(255, 255, 255, .28);
            border-radius: 10px;
            background: rgba(255, 255, 255, .08);
            color: #fff;
            font-size: 13px;
            cursor: pointer
        }

        .booking-check input {
            width: 16px;
            height: 16px;
            accent-color: var(--primary)
        }

        .booking-check:has(input:checked) {
            border-color: var(--primary);
            background: rgba(232, 135, 30, .18)
        }

        .booking-actions {
            grid-column: 1 / -1;
            display: flex;
            justify-content: center;
            margin-top: 4px
        }

        .booking-actions .btn {
            min-width: 190px;
            cursor: pointer
        }

        .booking-note {
            grid-column: 1 / -1;
            text-align: center;
            color: rgba(255, 255, 255, .72);
            font-size: 11px;
            line-height: 1.5
        }

        .faq-section {
            padding: 76px 0;
            background: #F6F7F9
        }

        .faq-head {
            max-width: 700px;
            margin: 0 0 32px
        }

        .faq-head .eyebrow {
            color: var(--primary-dark)
        }

        .faq-head h2 {
            font-size: clamp(28px, 3.4vw, 40px)
        }

        .faq-head h2 span {
            color: var(--primary-dark)
        }

        .faq-head p {
            margin-top: 12px;
            color: var(--muted);
            font-size: 16px;
            line-height: 1.6
        }

        .faq-list {
            max-width: 820px;
            display: flex;
            flex-direction: column;
            gap: 10px
        }

        .faq-item {
            background: #1B2742;
            border-radius: 12px;
            overflow: hidden
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 17px 18px;
            background: none;
            border: 0;
            color: #fff;
            font: 600 13px 'Poppins', sans-serif;
            text-align: left
        }

        .faq-question span {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border: 1px solid rgba(232, 135, 30, .65);
            border-radius: 8px;
            color: var(--primary);
            font-size: 20px;
            line-height: 1;
            flex-shrink: 0
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            color: rgba(255, 255, 255, .80);
            font-size: 14px;
            line-height: 1.7;
            transition: max-height .3s ease, padding .3s ease
        }

        .faq-item.open .faq-answer {
            max-height: 180px;
            padding: 0 60px 16px 18px
        }

        .faq-item.open .faq-question span {
            transform: rotate(45deg)
        }

        @media(max-width:700px) {
            .booking-section {
                padding: 54px 0
            }

            .booking-panel {
                padding: 24px 16px
            }

            .booking-form {
                grid-template-columns: 1fr;
                gap: 14px
            }

            .booking-field.full,
            .booking-actions,
            .booking-note {
                grid-column: auto
            }

            .booking-actions .btn {
                width: 100%
            }

            .booking-checks {
                grid-template-columns: 1fr
            }

            .faq-section {
                padding: 56px 0
            }

            .faq-head {
                text-align: center;
                margin-bottom: 28px
            }

            .faq-head p {
                font-size: 14px
            }

            .faq-question {
                font-size: 12px;
                padding: 14px 12px
            }

            .faq-question span {
                width: 30px;
                height: 30px;
                font-size: 19px
            }

            .faq-item.open .faq-answer {
                padding: 0 16px 18px
            }
        }

        .package-section {
            background: transparent !important
        }

        .booking-section {
            background: #191A29 !important
        }

        @media(min-width:701px) {
            .booking-section {
                padding: 12px 0
            }

            .booking-panel {
                padding: 14px 20px
            }

            .booking-head {
                margin-bottom: 10px
            }

            .booking-head h2 {
                font-size: 30px
            }

            .booking-head p {
                margin-top: 4px;
                font-size: 13px
            }

            .booking-form {
                gap: 8px
            }

            .booking-field {
                gap: 3px
            }

            .booking-field input {
                height: 34px;
                padding: 6px 10px
            }

            .booking-field textarea {
                min-height: 56px;
                padding: 6px 10px
            }

            .booking-checks {
                gap: 6px
            }

            .booking-check {
                padding: 6px 9px;
                font-size: 11px
            }

            .booking-actions {
                margin-top: 0
            }

            .booking-note {
                margin-top: 0
            }
        }

        @media(min-width:701px) {
            .booking-panel {
                max-width: 820px
            }
        }

        @media(min-width:701px) {
            .booking-panel {
                max-width: 760px
            }

            .booking-section {
                padding: 12px 0
            }

            .booking-panel {
                padding: 18px 22px
            }

            .booking-head {
                margin-bottom: 14px
            }

            .booking-head h2 {
                font-size: 30px
            }

            .booking-head p {
                margin-top: 5px;
                font-size: 13px
            }

            .booking-form {
                gap: 10px
            }

            .booking-field {
                gap: 4px
            }

            .booking-field input {
                height: 38px;
                padding: 8px 10px
            }

            .booking-field textarea {
                min-height: 70px;
                padding: 8px 10px
            }

            .booking-checks {
                gap: 7px
            }

            .booking-check {
                padding: 8px 10px;
                font-size: 12px
            }
        }

        .booking-check input {
            width: 13px !important;
            height: 13px !important;
            min-width: 13px;
            min-height: 13px;
            margin: 0
        }

        @media(min-width:701px) {
            .booking-section {
                padding: 28px 0
            }
        }

        @media(max-width:700px) {
            .booking-section {
                padding: 12px 0
            }

            .booking-panel {
                padding: 14px 12px
            }

            .booking-head {
                margin-bottom: 10px
            }

            .booking-head h2 {
                font-size: 24px
            }

            .booking-head p {
                margin-top: 4px;
                font-size: 12px;
                line-height: 1.35
            }

            .booking-form {
                gap: 6px
            }

            .booking-field {
                gap: 2px
            }

            .booking-field label {
                font-size: 10px
            }

            .booking-field input {
                height: 32px;
                padding: 5px 9px;
                font-size: 12px
            }

            .booking-field textarea {
                min-height: 48px;
                padding: 6px 9px;
                font-size: 12px
            }

            .booking-checks {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 4px
            }

            .booking-check {
                padding: 5px 6px;
                gap: 5px;
                font-size: 10px;
                line-height: 1.1
            }

            .booking-check input {
                width: 11px !important;
                height: 11px !important;
                min-width: 11px;
                min-height: 11px
            }

            .booking-actions .btn {
                min-width: 0;
                width: 100%;
                min-height: 34px;
                padding: 8px 12px;
                font-size: 12px
            }

            .booking-note {
                font-size: 9px;
                line-height: 1.2
            }
        }

        @media(min-width:701px) {
            .booking-section {
                padding: 20px 0
            }

            .booking-panel {
                max-width: 700px;
                padding: 16px 20px
            }

            .booking-head {
                margin-bottom: 10px
            }

            .booking-head h2 {
                font-size: 28px
            }

            .booking-head p {
                font-size: 12px
            }

            .booking-form {
                gap: 8px
            }

            .booking-field input {
                height: 36px
            }

            .booking-field textarea {
                min-height: 60px
            }

            .booking-checks {
                gap: 6px
            }

            .booking-check {
                padding: 7px 9px;
                font-size: 11px
            }
        }

        .packages-hero .container {
            animation: packagesHeroReveal 1s ease-out both
        }

        .pkg-card {
            will-change: transform, box-shadow
        }

        .pkg-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 38px rgba(43, 24, 16, .16)
        }

        .pkg-card.package-reveal {
            opacity: 0;
            transform: translateY(28px)
        }

        .pkg-card.package-reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
            transition: opacity .65s ease, transform .65s ease, box-shadow .25s ease
        }

        .pkg-card.package-reveal.is-visible:hover {
            transform: translateY(-8px)
        }

        .pkg-visual {
            transition: transform .35s ease
        }

        .pkg-card:hover .pkg-visual {
            transform: scale(1.02)
        }

        @keyframes packagesHeroReveal {
            from {
                opacity: 0;
                transform: translateY(18px) scale(.98)
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1)
            }
        }

        @media(prefers-reduced-motion:reduce) {
            .packages-hero .container {
                animation: none
            }

            .pkg-card.package-reveal {
                opacity: 1;
                transform: none
            }

            .pkg-card.package-reveal.is-visible {
                transition: none
            }

            .pkg-visual {
                transition: none
            }
        }

        .booking-panel {
            transition: transform .25s ease, box-shadow .25s ease
        }

        .booking-panel:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 42px rgba(10, 18, 35, .28)
        }

        .booking-field input:hover,
        .booking-field textarea:hover {
            border-color: var(--primary)
        }

        .booking-check {
            transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease
        }

        .booking-check:hover {
            transform: translateY(-2px);
            border-color: var(--primary);
            background: rgba(232, 135, 30, .14);
            box-shadow: 0 6px 14px rgba(10, 18, 35, .16)
        }

        .faq-item {
            transition: transform .25s ease, box-shadow .25s ease
        }

        .faq-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(27, 39, 66, .18)
        }

        .faq-question {
            transition: color .2s ease, background .2s ease
        }

        .faq-question:hover {
            background: rgba(232, 135, 30, .10);
            color: var(--primary)
        }

        .pkg-card:first-child .pkg-foot {
            align-items: flex-end;
            flex-direction: row
        }

        .pkg-body h3 span {
            color: #000
        }

        .booking-popup {
            position: fixed;
            inset: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: rgba(10, 18, 35, .62);
            opacity: 0;
            visibility: hidden;
            transition: opacity .25s ease, visibility .25s ease
        }

        .booking-popup.show {
            opacity: 1;
            visibility: visible
        }

        .booking-popup-card {
            width: min(100%, 380px);
            padding: 30px 24px;
            text-align: center;
            background: #fff;
            border: 2px solid var(--primary);
            border-radius: 16px;
            box-shadow: 0 18px 44px rgba(10, 18, 35, .28)
        }

        .booking-popup-card h3 {
            margin-bottom: 10px;
            font-size: 24px;
            color: var(--espresso)
        }

        .booking-popup-card p {
            margin-bottom: 20px;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.6
        }

        .booking-popup-card .btn {
            cursor: pointer
        }

        @media(max-width:1024px) and (min-width:701px) {
            .main-nav a {
                padding-inline: 6px;
                font-size: 12px;
                white-space: nowrap
            }

            .logo-link img {
                height: 100px
            }
        }
