    :root {
                --bg: #F6F7F9;
                --warm: #FDF9F4;
                --surface: #FFF4E8;
                --border: #EAD9C4;
                --primary: #E8871E;
                --primary-dark: #C96A0F;
                --espresso: #2B1810;
                --muted: #40332D;
                --navy: #1B2742;
                --footer: #EFDCBB;
                --radius: 16px;
                --container: 1240px;
                --shadow: 0 16px 36px rgba(43, 24, 16, .12)
            }

            *,
            *::before,
            *::after {
                box-sizing: border-box
            }

            html {
                scroll-behavior: smooth
            }

            body {
                margin: 0;
                background: var(--bg);
                color: var(--muted);
                font-family: 'Inter', sans-serif;
                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 {
                text-decoration: none;
                color: inherit
            }

            .container {
                max-width: var(--container);
                margin: auto;
                padding: 0 24px
            }

            .btn {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                padding: 12px 22px;
                border: 1.5px solid transparent;
                border-radius: 999px;
                font-size: 13px;
                font-weight: 700;
                white-space: nowrap;
                transition: transform .22s, background .22s, color .22s, box-shadow .22s
            }

            .btn-primary {
                background: var(--primary);
                color: #000
            }

            .btn-primary:hover {
                background: var(--primary-dark);
                transform: translateY(-2px);
                box-shadow: 0 10px 22px rgba(201, 106, 15, .24)
            }

            .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
            }

            .main-nav a:hover,
            .main-nav a.active {
                background: var(--surface);
                color: var(--primary-dark)
            }

            .header-actions {
                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
            }

            .about-hero {
                position: relative;
                isolation: isolate;
                min-height: 470px;
                padding: 126px 0 88px;
                text-align: center;
                color: #fff;
                background: var(--navy);
                overflow: hidden
            }

            .hero-image {
                position: absolute;
                inset: 0;
                z-index: -2;
                background: url('public_html/images/servicehero.webp') center/cover no-repeat;
                transition: transform .8s ease
            }

            .about-hero:hover .hero-image {
                transform: scale(1.04)
            }

            .hero-overlay {
                position: absolute;
                inset: 0;
                z-index: -1;
                background: linear-gradient(180deg, rgba(15, 24, 43, .48), rgba(43, 24, 16, .84))
            }

            .about-hero .container {
                position: relative;
                z-index: 1;
                animation: heroReveal .9s ease-out both
            }

            .eyebrow {
                display: block;
                color: var(--primary);
                font-size: 12px;
                letter-spacing: .18em;
                text-transform: uppercase;
                font-weight: 700;
                margin-bottom: 12px
            }

            .about-hero h1 {
                max-width: 900px;
                margin: auto;
                color: #fff;
                font-size: clamp(34px, 4.5vw, 58px)
            }

            .about-hero h1 span {
                color: var(--primary)
            }

            .about-hero p {
                max-width: 720px;
                margin: 16px auto 0;
                color: rgba(255, 255, 255, .88);
                font-size: 16px;
                line-height: 1.7
            }

            .section {
                padding: 82px 0
            }

            .section.warm {
                background: var(--warm)
            }

            .section.dark {
                background: var(--navy);
                color: #fff
            }

            .section-heading {
                max-width: 760px;
                margin: 0 auto 38px;
                text-align: center
            }

            .section-heading h2 {
                font-size: clamp(28px, 3.5vw, 44px)
            }

            .section-heading h2 span {
                color: var(--primary-dark)
            }

            .section-heading p {
                margin-top: 12px;
                font-size: 15px;
                line-height: 1.7
            }

            .split {
                display: grid;
                grid-template-columns: 1fr 1fr;
                align-items: center;
                gap: 60px
            }

            .split-copy .eyebrow {
                text-align: left
            }

            .split-copy h2 {
                font-size: clamp(30px, 3.8vw, 48px)
            }

            .split-copy h2 span {
                color: var(--primary-dark)
            }

            .split-copy p {
                margin-top: 16px;
                font-size: 15px;
                line-height: 1.8
            }

            .split-copy p+p {
                margin-top: 12px
            }

            .story-visual {
                min-height: 430px;
                border-radius: var(--radius);
                background: url('./public_html/images/arabic%20man%20per.png')
                center/cover no-repeat;
                background-size:100% 100%;
                box-shadow: var(--shadow);
                position: relative;
                overflow: hidden
            }

            .story-visual::after {
                content: 'Dubai-based travel team';
                position: absolute;
                left: 20px;
                bottom: 20px;
                padding: 10px 15px;
                border-radius: 999px;
                background: #fff;
                color: var(--espresso);
                font-weight: 700;
                font-size: 12px
            }

            .mission-grid,
            .values-grid,
            .service-grid,
            .team-grid {
                display: grid;
                gap: 18px
            }

            .mission-grid {
                grid-template-columns: repeat(2, 1fr)
            }

            .values-grid {
                grid-template-columns: repeat(3, 1fr)
            }

            .service-grid {
                grid-template-columns: repeat(3, 1fr)
            }

            .team-grid {
                grid-template-columns: repeat(3, 1fr)
            }

            .info-card,
            .value-card,
            .service-card,
            .team-card {
                background: #fff;
                border: 1px solid #DDE2E8;
                border-radius: var(--radius);
                overflow: hidden;
                transition: transform .3s, box-shadow .3s, border-color .3s
            }

            .info-card,
            .value-card {
                padding: 28px
            }

            .info-card:hover,
            .value-card:hover,
            .service-card:hover,
            .team-card:hover {
                transform: translateY(-7px);
                box-shadow: var(--shadow);
                border-color: var(--primary)
            }

            .card-icon {
                width: 46px;
                height: 46px;
                display: grid;
                place-items: center;
                border-radius: 50%;
                background: rgba(232, 135, 30, .14);
                color: var(--primary-dark);
                font: 700 22px 'Poppins', sans-serif;
                margin-bottom: 18px
            }

            .info-card h3,
            .value-card h3 {
                font-size: 21px
            }

            .info-card p,
            .value-card p {
                margin-top: 10px;
                font-size: 14px;
                line-height: 1.7
            }

            .team-image,
            .service-image {
                width: 100%;
                max-width: 100%;
                height: 210px;
                background-position: center;
                background-size: cover;
                overflow: hidden;
                transition: transform .45s
            }

            .service-card:hover .service-image {
                transform: scale(1.05)
            }

            .team-card:hover .team-image {
                transform: none
            }

            .team-body,
            .service-body {
                padding: 20px
            }

            .team-body h3,
            .service-body h3 {
                font-size: 20px
            }

            .team-body h3 span,
            .service-body h3 span {
                color: var(--primary-dark)
            }

            .team-role {
                margin-top: 5px;
                color: var(--primary-dark);
                font-size: 12px;
                font-weight: 700
            }

            .team-body p,
            .service-body p {
                margin-top: 10px;
                font-size: 13.5px;
                line-height: 1.6
            }

            .team-one {
                background-image: url('./public_html/images/team%201%20exact.jpg');
                background-size: 100% 100%;
                background-repeat: no-repeat;
                overflow: hidden
            }

            .team-two {
                background-image: url('./public_html/images/team%20two%20exact.jfif');
                background-size: 100% 100%;
                background-repeat: no-repeat;
                overflow: hidden
            }

            .team-three {
                background-image: url('./public_html/images/team%20three.jfif');
                background-size: 100% 100%
            }

            .service-one {
                background-image: url('./public_html/images/Burj-Khalifacard.jpg')
            }

            .service-two {
                background-image: url('./public_html/images/bbq-dinner-desert-safari-dubai.jpg')
            }

            .service-three {
                background-image: url('./public_html/images/DhowCruiseDinnerDubaiMarina.jpg')
            }

            .service-four {
                background-image: url('./public_html/images/Dubai-Marina-Yacht-Charter.jpg')
            }

            .service-five {
                background-image: url('./public_html/images/Dubai-by-Helicopter.jpg')
            }

            .service-six {
                background-image: url('./public_html/images/servicehero.webp')
            }

            .info-card,
            .value-card,
            .service-card,
            .team-card {
                background: #fff;
                border: 1px solid #DDE2E8;
                border-radius: var(--radius);
                overflow: hidden;
                transition: transform .3s, box-shadow .3s, border-color .3s
            }

            .info-card,
            .value-card {
                padding: 28px
            }

            .info-card:hover,
            .value-card:hover,
            .service-card:hover,
            .team-card:hover {
                transform: translateY(-7px);
                box-shadow: var(--shadow);
                border-color: var(--primary)
            }

            .card-icon {
                width: 46px;
                height: 46px;
                display: grid;
                place-items: center;
                border-radius: 50%;
                background: rgba(232, 135, 30, .14);
                color: var(--primary-dark);
                font: 700 22px 'Poppins', sans-serif;
                margin-bottom: 18px
            }

            .info-card h3,
            .value-card h3 {
                font-size: 21px
            }

            .info-card p,
            .value-card p {
                margin-top: 10px;
                font-size: 14px;
                line-height: 1.7
            }

            .mission-grid .info-card {
                background: var(--navy);
                border-color: rgba(143, 183, 232, .3);
                color: #fff
            }

            .mission-grid .info-card h3 {
                color: #fff
            }

            .mission-grid .info-card p {
                color: rgba(255, 255, 255, .8)
            }

            .mission-grid .info-card .card-icon {
                background: rgba(232, 135, 30, .16);
                color: var(--primary)
            }

            .team-image,
            .service-image {
                width: 100%;
                max-width: 100%;
                height: 210px;
                background-position: center;
                background-size: cover;
                overflow: hidden;
                transition: transform .45s
            }

            .service-card:hover .service-image {
                transform: scale(1.05)
            }

            .team-card:hover .team-image {
                transform: none
            }

            .team-body,
            .service-body {
                padding: 20px
            }

            .team-body h3,
            .service-body h3 {
                font-size: 20px
            }

            .team-body h3 span,
            .service-body h3 span {
                color: var(--primary-dark)
            }

            .team-role {
                margin-top: 5px;
                color: var(--primary-dark);
                font-size: 12px;
                font-weight: 700
            }

            .team-body p,
            .service-body p {
                margin-top: 10px;
                font-size: 13.5px;
                line-height: 1.6
            }

            .service-one {
                background-image: url('./public_html/images/Burj-Khalifacard.jpg')
            }

            .service-two {
                background-image: url('./public_html/images/bbq-dinner-desert-safari-dubai.jpg')
            }

            .service-three {
                background-image: url('./public_html/images/DhowCruiseDinnerDubaiMarina.jpg')
            }

            .service-four {
                background-image: url('./public_html/images/Dubai-Marina-Yacht-Charter.jpg')
            }

            .service-five {
                background-image: url('./public_html/images/Dubai-by-Helicopter.jpg')
            }

            .service-six {
                background-image: url('./public_html/images/servicehero.webp')
            }

            .why-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 18px
            }

            .why-card {
                padding: 24px;
                border: 1px solid rgba(255, 255, 255, .16);
                border-radius: var(--radius);
                background: rgba(255, 255, 255, .06);
                transition: transform .25s, background .25s
            }

            .why-card:hover {
                transform: translateY(-6px);
                background: rgba(232, 135, 30, .14)
            }

            .why-card h3 {
                color: #fff;
                font-size: 18px
            }

            .why-card p {
                margin-top: 8px;
                color: rgba(255, 255, 255, .76);
                font-size: 13px;
                line-height: 1.6
            }

            .faq-list {
                max-width: 820px;
                margin: auto;
                display: flex;
                flex-direction: column;
                gap: 9px
            }

            .faq-item {
                background: var(--navy);
                border-radius: 12px;
                overflow: hidden
            }

            .faq-question {
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 16px;
                padding: 16px 18px;
                border: 0;
                background: none;
                color: #fff;
                font: 600 13px 'Poppins', sans-serif;
                text-align: left;
                cursor: pointer
            }

            .faq-question span {
                display: grid;
                place-items: center;
                width: 30px;
                height: 30px;
                border: 1px solid rgba(232, 135, 30, .65);
                border-radius: 8px;
                color: var(--primary);
                font-size: 19px
            }

            .faq-answer {
                max-height: 0;
                overflow: hidden;
                padding: 0 18px;
                color: rgba(255, 255, 255, .78);
                font-size: 14px;
                line-height: 1.7;
                transition: max-height .3s, padding .3s
            }

            .faq-item.open .faq-answer {
                max-height: 160px;
                padding: 0 54px 16px 18px
            }

            .faq-item.open .faq-question span {
                transform: rotate(45deg)
            }

            .about-cta {
                padding: 72px 0;
                background: var(--surface);
                text-align: center
            }

            .about-cta h2 {
                font-size: clamp(28px, 3.5vw, 44px)
            }

            .about-cta h2 span {
                color: var(--primary-dark)
            }

            .about-cta p {
                max-width: 650px;
                margin: 12px auto 22px;
                font-size: 15px;
                line-height: 1.7
            }

            .btn-row {
                display: flex;
                justify-content: center;
                gap: 12px;
                flex-wrap: wrap
            }

            footer {
                background: var(--footer);
                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;
                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: 8px;
                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-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)
            }

            .wa-fab svg {
                width: 34px;
                height: 34px;
                color: #fff
            }

            @keyframes heroReveal {
                from {
                    opacity: 0;
                    transform: translateY(22px) scale(.98)
                }

                to {
                    opacity: 1;
                    transform: translateY(0) scale(1)
                }
            }

            .reveal {
                opacity: 0;
                transform: translateY(28px);
                transition: opacity .7s ease, transform .7s ease
            }

            .reveal.visible {
                opacity: 1;
                transform: translateY(0)
            }

            .split.reveal .split-copy,
            .split.reveal .story-visual {
                opacity: 0;
                transition: opacity .8s ease, transform .8s ease
            }

            .split.reveal .split-copy {
                transform: translateX(-60px)
            }

            .split.reveal .story-visual {
                transform: translateX(60px)
            }

            .split.reveal.visible .split-copy,
            .split.reveal.visible .story-visual {
                opacity: 1;
                transform: translateX(0)
            }

            .split.reveal.visible .story-visual {
                transition-delay: .12s
            }

            @media(max-width:1024px) {

                .values-grid,
                .service-grid,
                .why-grid {
                    grid-template-columns: repeat(2, 1fr)
                }

                .footer-top {
                    grid-template-columns: 1fr 1fr
                }
            }

            @media(max-width:700px) {
                .main-nav {
                    display: none
                }

                .header-actions .btn {
                    display: none
                }

                .hamburger {
                    display: block
                }

                .container {
                    padding-inline: 18px
                }

                .about-hero {
                    min-height: 430px;
                    padding: 100px 0 70px
                }

                .about-hero h1 {
                    font-size: 34px
                }

                .about-hero p {
                    font-size: 14px
                }

                .section {
                    padding: 58px 0
                }

                .split,
                .mission-grid,
                .values-grid,
                .service-grid,
                .team-grid,
                .why-grid {
                    grid-template-columns: 1fr;
                    gap: 16px
                }

                .story-visual {
                    min-height: 300px;
                    order: -1
                }

                .split.reveal .split-copy,
                .split.reveal .story-visual {
                    transform: translateY(28px)
                }

                .split.reveal.visible .split-copy,
                .split.reveal.visible .story-visual {
                    transform: translateY(0)
                }

                .section-heading {
                    margin-bottom: 28px
                }

                .section-heading h2,
                .split-copy h2 {
                    font-size: 30px
                }

                .team-image,
                .service-image {
                    height: 180px
                }

                .about-cta {
                    padding: 56px 0
                }

                .footer-top {
                    grid-template-columns: 1fr;
                    gap: 22px
                }

                .footer-brand img {
                    height: 145px;
                    transform: translateX(-10px);
                    margin-bottom: -40px
                }

                .footer-bottom {
                    flex-direction: column
                }

                .btn-row .btn {
                    width: 100%
                }

                .faq-question {
                    padding: 13px 12px;
                    font-size: 12px
                }

                .faq-answer {
                    font-size: 13px
                }
            }

            @media(prefers-reduced-motion:reduce) {

                .reveal,
                .split.reveal .split-copy,
                .split.reveal .story-visual,
                .about-hero .container {
                    opacity: 1;
                    transform: none;
                    transition: none;
                    animation: none
                }
            }

            .section:has(.mission-grid) {
                background: var(--warm)
            }

            .section:has(.mission-grid) {
                background: var(--navy)
            }

            .section:has(.mission-grid) .section-heading h2 {
                color: #fff
            }

            .section:has(.mission-grid) .section-heading p {
                color: rgba(255, 255, 255, .78)
            }

            .mission-grid .info-card {
                background: rgba(255, 255, 255, .06);
                border-color: rgba(255, 255, 255, .16)
            }

            .mission-grid .info-card:hover {
                background: rgba(232, 135, 30, .14)
            }

            .section:has(.values-grid) {
                background: var(--navy)
            }

            .section:has(.values-grid) .section-heading h2 {
                color: #fff
            }

            .section:has(.values-grid) .section-heading p {
                color: rgba(255, 255, 255, .78)
            }

            .values-grid .value-card {
                background: rgba(255, 255, 255, .06);
                border-color: rgba(255, 255, 255, .16);
                color: #fff
            }

            .values-grid .value-card:hover {
                background: rgba(232, 135, 30, .14)
            }

            .values-grid .value-card h3 {
                color: #fff
            }

            .values-grid .value-card p {
                color: rgba(255, 255, 255, .8)
            }

            .values-grid .value-card .card-icon {
                background: rgba(232, 135, 30, .16);
                color: var(--primary)
            }

            .about-cta {
                background: var(--navy);
                color: #fff
            }

            .about-cta h2 {
                color: #fff
            }

            .about-cta p {
                color: rgba(255, 255, 255, .82)
            }

            .about-cta .btn-outline {
                color: #fff;
                border-color: var(--primary)
            }

            @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
                }
            }
