:root {
    --amd-blue: #073b78;
    --amd-blue-2: #0a5da6;
    --amd-teal: #078b98;
    --amd-teal-dark: #05727d;
    --amd-orange: #f58216;
    --amd-gold: #ffc247;
    --amd-ink: #0b1d36;
    --amd-muted: #5d6d80;
    --amd-line: #dce8f3;
    --amd-soft: #f5fbff;
    --amd-white: #ffffff;
    --amd-shadow: 0 18px 45px rgba(7, 59, 120, .11);
    --amd-radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    background: var(--amd-white);
    color: var(--amd-ink);
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.container-xxl {
    max-width: 1360px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 8px 24px rgba(4, 36, 72, .06);
    backdrop-filter: blur(12px);
}

.topbar {
    color: #fff;
    background: linear-gradient(90deg, #052b61, var(--amd-blue));
    font-size: 13px;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0;
}

.topbar a,
.topbar span {
    color: #fff;
}

.topbar strong {
    color: #fff;
}

.amd-navbar {
    min-height: 108px;
    padding: 1.05rem 0;
}

.amd-brand img {
    width: 178px;
    height: auto;
}

.navbar-nav {
    align-items: center;
    gap: 6px;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-item + .nav-item::before {
    content: "";
    position: absolute;
    left: -4px;
    top: 50%;
    width: 1px;
    height: 14px;
    background: #d9e5ef;
    transform: translateY(-50%);
}

.navbar-nav .nav-link {
    color: #122743;
    position: relative;
    font-size: 13px;
    font-weight: 800;
    padding: .62rem .9rem !important;
    white-space: nowrap;
    transition: color .2s ease, transform .2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
    color: var(--amd-orange);
}

.navbar-nav .nav-link:hover {
    transform: translateY(-1px);
}

.navbar-nav .nav-link::after {
    transition: color .2s ease, border-color .2s ease;
}

.navbar-nav > .nav-item > .nav-link::before {
    content: "";
    position: absolute;
    left: .9rem;
    right: .9rem;
    bottom: .28rem;
    width: auto;
    height: 2px;
    background: var(--amd-orange);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .2s ease;
}

.navbar-nav > .nav-item > .nav-link:hover::before,
.navbar-nav > .nav-item > .nav-link.active::before {
    transform: scaleX(1);
}

.btn {
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0;
    padding: 13px 24px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.btn:hover,
.btn:focus {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0) scale(.98);
}

.btn-amd-orange {
    background: linear-gradient(135deg, #ff9b29, var(--amd-orange));
    color: #fff;
    border: 0;
    box-shadow: 0 12px 22px rgba(245, 130, 22, .28);
}

.btn-amd-orange:hover,
.btn-amd-orange:focus {
    color: #fff;
    background: linear-gradient(135deg, var(--amd-orange), #dd6d05);
}

.btn-amd-teal {
    background: linear-gradient(135deg, #09a7b3, var(--amd-teal));
    color: #fff;
    border: 0;
    box-shadow: 0 12px 22px rgba(7, 139, 152, .24);
}

.btn-amd-teal:hover,
.btn-amd-teal:focus {
    color: #fff;
    background: linear-gradient(135deg, var(--amd-teal), var(--amd-teal-dark));
}

.btn-amd-outline {
    border: 2px solid #1b65a8;
    color: var(--amd-blue);
    background: #fff;
}

.btn-amd-outline:hover,
.btn-amd-outline:focus {
    color: #fff;
    background: var(--amd-blue);
}

.btn.compact {
    padding: 8px 20px;
    font-size: 13px;
}

.nav-whatsapp {
    white-space: nowrap;
    font-size: 13px;
    padding: 13px 22px;
    margin-left: 18px;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 52px 0 26px;
    background:
        radial-gradient(circle at 72% 45%, rgba(5, 138, 153, .12), transparent 31%),
        linear-gradient(180deg, #ffffff 0%, #eef9ff 100%);
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--amd-orange);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.section-kicker span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--amd-orange);
}

.hero-section h1 {
    color: var(--amd-blue);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 5vw, 76px);
    font-weight: 800;
    line-height: .98;
    margin: 0 0 16px;
}

.hero-section h1::first-line {
    color: var(--amd-blue);
}

.hero-section h1 {
    text-shadow: 0 1px 0 rgba(255, 255, 255, .6);
}

.hero-section h1,
.about-band h2,
.why-section h2,
.destinations-section h2,
.contact-cta h2 {
    letter-spacing: 0;
}

.hero-lead {
    color: #0a2545;
    font-size: clamp(20px, 2vw, 27px);
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 18px;
}

.hero-copy {
    color: #52677d;
    font-size: 16px;
    max-width: 610px;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 30px;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.trust-strip div {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 10px;
    align-items: center;
}

.trust-strip i {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 2px solid #c5e7f2;
    border-radius: 14px;
    color: var(--amd-blue-2);
    font-size: 21px;
}

.trust-strip strong {
    display: block;
    color: var(--amd-blue);
    font-size: 13px;
    line-height: 1.2;
}

.trust-strip span {
    color: #547085;
    font-size: 12px;
    line-height: 1.2;
}

.hero-visual {
    position: relative;
    min-height: 420px;
    border-radius: 52% 0 0 52%;
    overflow: hidden;
    background: #dff3ff;
    box-shadow: inset 22px 0 60px rgba(255, 255, 255, .8), 0 20px 60px rgba(7, 59, 120, .13);
}

.hero-main-img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    object-position: center;
}

.hero-plane {
    position: absolute;
    top: 34px;
    right: 18%;
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    color: #fff;
    background: linear-gradient(135deg, var(--amd-teal), var(--amd-blue-2));
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(7, 59, 120, .2);
    font-size: 31px;
    transform: rotate(-18deg);
}

.service-overview {
    margin-top: -8px;
    padding: 22px 0 12px;
    background: linear-gradient(180deg, #fff 0%, #fff 70%, #f9fdff 100%);
}

.service-overview .row > [class*="col-"] {
    display: flex;
}

.service-card {
    position: relative;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-areas:
        "icon title"
        "icon text";
    column-gap: 16px;
    align-content: center;
    width: 100%;
    height: 100%;
    min-height: 132px;
    padding: 22px 54px 22px 22px;
    color: var(--amd-ink);
    background: #fff;
    border: 1px solid #d7e8f4;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(7, 59, 120, .08);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.service-card:hover {
    color: var(--amd-ink);
    border-color: #b8d9ee;
    background: linear-gradient(180deg, #fff, #f8fdff);
    transform: translateY(-5px);
    box-shadow: var(--amd-shadow);
}

.service-card:active {
    transform: translateY(-1px) scale(.992);
}

.service-card:hover .card-arrow {
    color: #fff;
    background: var(--amd-orange);
    transform: translateX(4px) scale(1.08);
}

.service-card strong {
    grid-area: title;
    display: block;
    margin: 0 0 6px;
    color: #102642;
    font-size: 18px;
    line-height: 1.25;
}

.service-card p {
    grid-area: text;
    margin: 0;
    color: #5e6e7e;
    font-size: 13px;
    line-height: 1.55;
}

.service-icon {
    grid-area: icon;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    align-self: start;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #dce8f3;
    font-size: 25px;
    transition: transform .24s ease, background .24s ease, color .24s ease, border-color .24s ease;
}

.service-card:hover .service-icon {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--amd-teal), var(--amd-blue-2));
    transform: rotate(-3deg) scale(1.05);
}

.service-icon.teal {
    color: var(--amd-teal);
}

.service-icon.blue {
    color: var(--amd-blue-2);
}

.service-icon.orange {
    color: var(--amd-orange);
}

.card-arrow {
    position: absolute;
    right: 21px;
    bottom: 21px;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    color: var(--amd-orange);
    border-radius: 50%;
    font-size: 20px;
    transition: transform .2s ease, color .2s ease, background .2s ease;
}

.about-band,
.why-section,
.destinations-section,
.split-services {
    padding: 36px 0;
}

.about-band {
    padding-bottom: 20px;
}

.about-band .row {
    align-items: stretch !important;
}

.about-band .col-lg-5,
.about-band .col-lg-7 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-band .section-kicker {
    margin-bottom: 5px;
}

.why-section {
    padding-top: 16px;
}

.mission-photo {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 312px;
    border-radius: 18px;
    box-shadow: var(--amd-shadow);
}

.mission-photo img {
    width: 100%;
    height: 100%;
    min-height: 370px;
    object-fit: cover;
}

.mission-card {
    position: absolute;
    left: 28px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 330px;
    padding: 22px;
    background: rgba(7, 139, 152, .94);
    color: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 30px rgba(0, 0, 0, .18);
}

.mission-card span {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .65);
    font-size: 28px;
    flex: 0 0 auto;
}

.mission-card strong {
    display: block;
    color: #fff;
    font-size: 22px;
    line-height: 1.2;
}

.mission-card p {
    margin: 4px 0 0;
    color: #e9feff;
    font-size: 14px;
    line-height: 1.35;
}

.about-band h2,
.why-section h2,
.destinations-section h2 {
    color: var(--amd-blue);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 3vw, 48px);
    font-weight: 800;
    line-height: 1.1;
}

.about-band p {
    color: #4e6074;
}

.about-band .mission-card p {
    color: #e9feff;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 22px;
    border: 1px solid var(--amd-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(7, 59, 120, .07);
    overflow: hidden;
}

.stats-row div {
    padding: 15px 16px;
    border-right: 1px solid var(--amd-line);
}

.stats-row div:last-child {
    border-right: 0;
}

.stats-row strong {
    display: block;
    color: var(--amd-blue-2);
    font-size: 22px;
}

.stats-row span {
    color: #607388;
    font-size: 12px;
    line-height: 1.2;
}

.section-heading {
    margin-bottom: 22px;
}

.why-section .section-heading {
    margin-bottom: 18px;
}

.why-section .section-kicker {
    margin-bottom: 7px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    padding: 16px;
    border: 1px solid var(--amd-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(7, 59, 120, .08);
}

.why-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 14px;
    align-content: start;
    padding: 20px 18px;
    border-right: 1px solid var(--amd-line);
    transition: background .22s ease, transform .22s ease;
}

.why-item:hover {
    background: #f8fdff;
    transform: translateY(-2px);
}

.why-item:last-child {
    border-right: 0;
}

.why-item i {
    display: grid;
    place-items: center;
    grid-row: span 2;
    width: 44px;
    height: 44px;
    margin-bottom: 0;
    border-radius: 14px;
    background: #ecfbfd;
    color: var(--amd-teal);
    border: 1px solid #d2eef4;
    font-size: 20px;
    transition: transform .22s ease, background .22s ease, color .22s ease;
}

.why-item:hover i {
    color: #fff;
    background: var(--amd-teal);
    transform: scale(1.05);
}

.why-item strong {
    display: block;
    color: var(--amd-blue);
    line-height: 1.25;
}

.why-item p {
    margin: 5px 0 0;
    color: #5e7081;
    font-size: 13px;
    line-height: 1.35;
}

.hajj-promo {
    padding: 10px 0 28px;
}

.hajj-banner {
    position: relative;
    display: grid;
    grid-template-columns: 260px 1fr 170px;
    gap: 26px;
    align-items: center;
    min-height: 172px;
    padding: 20px 26px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 194, 71, .17), transparent 24%),
        linear-gradient(135deg, #063975 0%, #06549b 100%);
    border-radius: 16px;
    box-shadow: var(--amd-shadow);
}

.hajj-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(45deg, rgba(255,255,255,.05) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.05) 50%, rgba(255,255,255,.05) 75%, transparent 75%, transparent);
    background-size: 28px 28px;
    opacity: .35;
}

.hajj-photo,
.hajj-content,
.quality-badge {
    position: relative;
    z-index: 1;
}

.hajj-photo img {
    width: 100%;
    height: 136px;
    object-fit: cover;
    border-radius: 14px;
    border: 3px solid rgba(255, 194, 71, .9);
}

.hajj-content {
    text-align: center;
    align-self: stretch;
    display: grid;
    align-content: center;
}

.hajj-content h2 {
    margin: 0;
    color: var(--amd-gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 35px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hajj-content p {
    margin: 0 0 18px;
    font-size: 18px;
}

.hajj-features {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, .32);
    padding-top: 16px;
}

.hajj-features span {
    display: grid;
    gap: 7px;
    justify-items: center;
    align-content: center;
    color: #fff;
    font-size: 12px;
    line-height: 1.2;
    min-height: 70px;
    padding: 0 10px;
    border-right: 1px solid rgba(255, 255, 255, .32);
}

.hajj-features span:last-child {
    border-right: 0;
}

.hajj-features i {
    color: var(--amd-gold);
    font-size: 26px;
}

.quality-badge {
    display: grid;
    place-items: center;
    width: 148px;
    min-height: 122px;
    margin-left: auto;
    color: var(--amd-blue);
    background: #fff;
    border: 5px solid var(--amd-orange);
    border-radius: 32px;
    text-align: center;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.55;
}

.destinations-section {
    background: linear-gradient(180deg, #fff 0%, #f4fbff 100%);
    overflow: hidden;
}

.destinations-section .section-heading {
    margin-bottom: 15px;
}

.destinations-section h2 {
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: clamp(26px, 3vw, 36px);
    letter-spacing: .08em;
}

.destinations-section p {
    margin: 0;
    color: #557086;
}

.destination-carousel {
    position: relative;
    padding: 0 48px;
}

.destination-viewport {
    overflow: hidden;
    padding: 4px 4px 16px;
}

.destination-track {
    display: flex;
    gap: 16px;
    will-change: transform;
    transition: transform .55s cubic-bezier(.22, .61, .36, 1);
}

.destination-track article {
    flex: 0 0 calc((100% - 80px) / 6);
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--amd-line);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(7, 59, 120, .07);
}

.destination-track img {
    width: 100%;
    height: 104px;
    object-fit: cover;
}

.destination-track strong,
.destination-track span {
    display: block;
    padding: 0 13px;
}

.destination-track strong {
    padding-top: 10px;
    color: var(--amd-blue);
}

.destination-track span {
    padding-bottom: 12px;
    color: #5f7285;
    font-size: 13px;
}

.destination-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--amd-teal), var(--amd-blue-2));
    box-shadow: 0 12px 24px rgba(7, 59, 120, .22);
    transform: translateY(-50%);
    transition: transform .2s ease, box-shadow .2s ease;
}

.destination-arrow:hover,
.destination-arrow:focus {
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 16px 30px rgba(7, 59, 120, .28);
}

.destination-prev {
    left: 0;
}

.destination-next {
    right: 0;
}

.split-services {
    padding-top: 8px;
}

.split-services .row > [class*="col-"] {
    display: flex;
}

.split-card {
    display: grid;
    grid-template-columns: 190px 1fr;
    align-items: center;
    gap: 18px;
    width: 100%;
    min-height: 272px;
    padding: 22px;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #bfe8ef;
    background: linear-gradient(135deg, #eafcff, #f8ffff);
    box-shadow: 0 10px 25px rgba(7, 59, 120, .06);
}

.work-card {
    grid-template-columns: 1fr 180px;
    border-color: #ffd4aa;
    background: linear-gradient(135deg, #fff6eb, #fffdf8);
}

.split-person {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 16px;
}

.split-copy h2 {
    margin: 0 0 2px;
    color: var(--amd-teal);
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
}

.work-card h2 {
    color: var(--amd-orange);
}

.split-copy p {
    margin-bottom: 8px;
    color: #26435f;
    font-weight: 700;
}

.split-copy ul {
    padding-left: 18px;
    margin-bottom: 12px;
    color: #213a55;
    font-size: 13px;
}

.contact-cta {
    padding: 6px 0 0;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 26px 32px;
    color: #fff;
    background:
        radial-gradient(circle at 95% 30%, rgba(255, 255, 255, .19), transparent 22%),
        linear-gradient(135deg, #0689ac, #075b99);
    border-radius: 18px 18px 0 0;
}

.cta-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-title > span {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    min-width: 76px;
    flex: 0 0 76px;
    aspect-ratio: 1 / 1;
    color: #0b6da0;
    background: #fff;
    border-radius: 50%;
    font-size: 34px;
}

.cta-title h2 {
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 3vw, 42px);
}

.cta-title p {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.cta-contact {
    display: grid;
    gap: 5px;
    padding-left: 24px;
    border-left: 1px dashed rgba(255, 255, 255, .55);
}

.cta-contact a,
.cta-contact span {
    color: #fff;
    font-weight: 700;
}

.cta-contact i {
    width: 22px;
}

.cta-whatsapp {
    background: #fff;
    color: #087d89;
    white-space: nowrap;
}

.cta-whatsapp:hover {
    background: #eafffb;
    color: #055d66;
}

.amd-footer {
    padding: 28px 0 24px;
    color: #dcecff;
    background: linear-gradient(135deg, #04316a, #052b61 48%, #031f49);
}

.footer-logo {
    width: 164px;
    display: block;
    margin-bottom: 12px;
    border-radius: 8px;
    background: #fff;
}

.amd-footer h3 {
    margin-bottom: 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
}

.amd-footer p,
.amd-footer span,
.amd-footer a {
    color: #dcecff;
    font-size: 13px;
}

.amd-footer a,
.amd-footer span {
    display: block;
    margin-bottom: 7px;
}

.amd-footer a:hover {
    color: var(--amd-gold);
}

.copyright {
    margin-top: 10px;
    opacity: .85;
}

.social-row {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.social-row a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin: 0;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
}

.social-row a:nth-child(1) { background: #1877f2; }
.social-row a:nth-child(2) { background: #e4405f; }
.social-row a:nth-child(3) { background: #25d366; }
.social-row a:nth-child(4) { background: #ff0000; }

.footer-mini-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-mini-links a {
    margin: 0;
    font-size: 12px;
}

.page-hero {
    padding: 64px 0;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(4, 49, 106, .94), rgba(7, 139, 152, .78)),
        url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1500&q=80") center/cover;
}

.page-hero h1 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 800;
}

.page-content {
    padding: 56px 0;
}

.content-panel {
    padding: 32px;
    border: 1px solid var(--amd-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--amd-shadow);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.content-panel:hover {
    border-color: #c5ddeb;
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(7, 59, 120, .1);
}

.content-panel h2,
.content-panel h3 {
    color: var(--amd-blue);
    font-weight: 900;
}

.checked-list {
    display: grid;
    gap: 11px;
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}

.checked-list li {
    position: relative;
    padding-left: 30px;
    color: #415870;
}

.checked-list li::before {
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 1px;
    font-family: FontAwesome;
    color: var(--amd-teal);
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: #fff;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 18px 35px rgba(37, 211, 102, .32);
    font-size: 29px;
    animation: whatsapp-attention 4.8s ease-in-out infinite;
    transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

.whatsapp-float::before,
.whatsapp-float::after {
    content: "";
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(37, 211, 102, .42);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    animation: whatsapp-pulse 2.8s ease-out infinite;
}

.whatsapp-float::after {
    animation-delay: 1.4s;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
    color: #fff;
    background: #1fbd5b;
    box-shadow: 0 22px 42px rgba(37, 211, 102, .4);
    transform: translateY(-4px) scale(1.04);
    animation-play-state: paused;
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after,
.whatsapp-float:focus::before,
.whatsapp-float:focus::after {
    animation-play-state: paused;
}

@keyframes whatsapp-pulse {
    0% {
        opacity: .5;
        transform: scale(.82);
    }
    70% {
        opacity: 0;
        transform: scale(1.34);
    }
    100% {
        opacity: 0;
        transform: scale(1.34);
    }
}

@keyframes whatsapp-attention {
    0%, 72%, 100% {
        transform: translateY(0) scale(1);
    }
    78% {
        transform: translateY(-5px) scale(1.03);
    }
    84% {
        transform: translateY(0) scale(1);
    }
    90% {
        transform: translateY(-3px) scale(1.02);
    }
}

.notice-panel {
    padding: 18px 20px;
    color: #744909;
    background: #fff8ed;
    border: 1px solid #ffe0b9;
    border-radius: 16px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.package-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 26px;
    background: #fff;
    border: 1px solid var(--amd-line);
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(7, 59, 120, .07);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.package-card:hover {
    border-color: #b8d9ee;
    transform: translateY(-5px);
    box-shadow: var(--amd-shadow);
}

.package-card .pill {
    align-self: flex-start;
    display: inline-flex;
    padding: 7px 12px;
    color: var(--amd-teal-dark);
    background: #e9f8fb;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.package-card h3 {
    margin: 0;
    color: var(--amd-blue);
    font-size: 22px;
    font-weight: 900;
}

.package-price {
    color: var(--amd-blue-2);
    font-size: 26px;
    font-weight: 900;
}

.faq-list {
    border-top: 1px solid var(--amd-line);
}

.faq-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--amd-line);
}

.faq-item h3 {
    color: var(--amd-blue);
    font-size: 19px;
    font-weight: 900;
}

.faq-item p {
    margin: 0;
    color: var(--amd-muted);
}

.page-intro {
    max-width: 760px;
    margin-bottom: 30px;
}

.page-intro .section-kicker {
    margin-bottom: 8px;
}

.page-intro h2 {
    color: var(--amd-blue);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.08;
}

.page-intro p {
    color: var(--amd-muted);
    font-size: 16px;
}

.services-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.services-tabs a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 17px;
    color: #26425f;
    background: #fff;
    border: 1px solid #d6e5f2;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.services-tabs a:hover,
.services-tabs a:focus {
    color: #fff;
    background: var(--amd-blue);
    border-color: var(--amd-blue);
}

.service-detail-row {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 26px;
    margin-bottom: 30px;
}

.service-detail-row.reverse {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
}

.detail-panel,
.visual-panel {
    min-height: 386px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--amd-line);
    background: #fff;
    box-shadow: 0 12px 32px rgba(7, 59, 120, .08);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.detail-panel:hover,
.visual-panel:hover {
    border-color: #b8d9ee;
    transform: translateY(-4px);
    box-shadow: var(--amd-shadow);
}

.detail-panel {
    padding: 34px;
}

.detail-panel.highlight {
    color: #fff;
    border: 0;
    background: linear-gradient(135deg, #073779, #0b91a9);
}

.detail-panel h3 {
    margin: 0 0 14px;
    color: var(--amd-blue);
    font-size: clamp(27px, 3vw, 34px);
    font-weight: 900;
    line-height: 1.12;
}

.detail-panel.highlight h3 {
    color: #fff;
}

.detail-panel p {
    color: #55697d;
    font-size: 15px;
}

.detail-panel.highlight p {
    color: rgba(255, 255, 255, .88);
}

.service-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
    padding: 9px 14px;
    color: var(--amd-orange);
    background: rgba(245, 130, 22, .1);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.detail-panel.highlight .service-pill {
    color: #fff;
    background: rgba(255, 255, 255, .16);
}

.detail-bullets {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.detail-bullets span {
    position: relative;
    padding-left: 31px;
    color: #1e3956;
    font-size: 14px;
    font-weight: 750;
}

.detail-panel.highlight .detail-bullets span {
    color: #fff;
}

.detail-bullets span::before {
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 1px;
    display: grid;
    place-items: center;
    width: 21px;
    height: 21px;
    color: var(--amd-teal);
    background: #e8f8fb;
    border-radius: 50%;
    font-family: FontAwesome;
    font-size: 11px;
}

.detail-panel.highlight .detail-bullets span::before {
    color: #fff;
    background: rgba(255, 255, 255, .18);
}

.visual-panel {
    position: relative;
    background-size: cover;
    background-position: center;
}

.visual-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 38, 84, .04), rgba(6, 38, 84, .62));
    transition: background .24s ease;
}

.visual-panel:hover::before {
    background: linear-gradient(180deg, rgba(6, 38, 84, .0), rgba(6, 38, 84, .54));
}

.visual-panel.umrah {
    background-image: url("https://images.unsplash.com/photo-1591604129939-f1efa4d9f7fa?auto=format&fit=crop&w=900&q=80");
}

.visual-panel.tours {
    background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=900&q=80");
}

.visual-panel.study {
    background-image: url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=900&q=80");
}

.visual-panel.work {
    background-image: url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=900&q=80");
}

.visual-label {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    max-width: 290px;
    padding: 16px 18px;
    color: var(--amd-blue);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(7, 59, 120, .16);
    font-weight: 900;
}

.visual-label small {
    display: block;
    margin-top: 3px;
    color: var(--amd-muted);
    font-size: 12px;
    font-weight: 700;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.process-step {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    column-gap: 16px;
    padding: 25px;
    background: #fff;
    border: 1px solid var(--amd-line);
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(7, 59, 120, .07);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.process-step:hover {
    border-color: #ffd0a0;
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(245, 130, 22, .12);
}

.process-step span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    grid-row: span 2;
    margin-bottom: 0;
    color: #fff;
    background: linear-gradient(135deg, var(--amd-orange), #ffb24a);
    border-radius: 14px;
    font-weight: 900;
    transition: transform .24s ease;
}

.process-step:hover span {
    transform: rotate(-4deg) scale(1.06);
}

.process-step h3 {
    margin-bottom: 6px;
    color: var(--amd-blue);
    font-size: 18px;
    font-weight: 900;
}

.process-step p {
    margin: 0;
    color: var(--amd-muted);
    font-size: 14px;
}

.support-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
    gap: 28px;
    align-items: stretch;
}

.support-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 318px;
    padding: 30px 34px;
    color: #fff;
    background: linear-gradient(135deg, #062b61, #079ab2);
    border-radius: 24px;
    box-shadow: var(--amd-shadow);
    transition: transform .24s ease, box-shadow .24s ease;
}

.support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 54px rgba(7, 59, 120, .16);
}

.support-card h2 {
    max-width: 720px;
    margin-bottom: 12px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 3.4vw, 40px);
    line-height: 1.1;
}

.support-card p {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .87);
}

.support-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.support-list span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 9px 13px;
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    transition: background .2s ease, transform .2s ease;
}

.support-list span:hover {
    background: rgba(255, 255, 255, .18);
    transform: translateY(-2px);
}

.request-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 318px;
    padding: 30px 34px;
    background: #fff;
    border: 1px solid var(--amd-line);
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(7, 59, 120, .07);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.request-panel:hover {
    border-color: #c5ddeb;
    transform: translateY(-4px);
    box-shadow: var(--amd-shadow);
}

.request-panel h3 {
    margin-bottom: 10px;
    color: var(--amd-blue);
    font-size: 26px;
    font-weight: 900;
}

.request-panel p {
    margin-bottom: 18px;
    color: var(--amd-muted);
}

.request-quick-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0 0 22px;
    list-style: none;
}

.request-quick-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #1f3e5c;
    font-size: 14px;
    font-weight: 800;
}

.request-quick-list span {
    display: grid;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--amd-orange), #ff9f2d);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 900;
}

.request-fields {
    display: grid;
    gap: 12px;
}

.request-fields .form-control,
.request-fields .form-select {
    min-height: 50px;
    border-color: #d5e4ef;
    border-radius: 14px;
}

.inquiry-form .field-validation-error {
    display: block;
    margin-top: 6px;
    color: #c43d2f;
    font-size: 13px;
    font-weight: 700;
}

.inquiry-form .input-validation-error {
    border-color: #f0a59b;
    box-shadow: 0 0 0 .2rem rgba(196, 61, 47, .08);
}

.inquiry-form .validation-summary-valid {
    display: none;
}

.inquiry-result {
    display: none;
    padding: 14px 16px;
    margin-bottom: 16px;
    border-radius: 10px;
    font-weight: 700;
}

.inquiry-result-success,
.inquiry-result-error {
    display: block;
}

.inquiry-result-success {
    color: #075a37;
    background: #def8eb;
    border: 1px solid #b7e8d1;
}

.inquiry-result-error {
    color: #8a1620;
    background: #f8d7da;
    border: 1px solid #f0b5bc;
}

.website-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.service-quick-links {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.service-quick-links a {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    color: var(--amd-blue);
    background: #f7fbfe;
    border: 1px solid var(--amd-line);
    border-radius: 12px;
    font-weight: 800;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.service-quick-links a:hover,
.service-quick-links a:focus {
    color: #fff;
    background: var(--amd-blue);
    transform: translateX(3px);
}

@media (max-width: 1199px) {
    .navbar-nav .nav-link {
        font-size: 12.5px;
        padding-left: .62rem !important;
        padding-right: .62rem !important;
    }

    .navbar-nav {
        gap: 2px;
    }

    .navbar-nav .nav-item + .nav-item::before {
        left: -2px;
    }

    .destination-track article {
        flex-basis: calc((100% - 32px) / 3);
    }

    .why-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-item {
        border-right: 0;
        border-bottom: 1px solid var(--amd-line);
    }
}

@media (max-width: 991px) {
    .amd-navbar {
        min-height: 78px;
        padding: .7rem 0;
    }

    .amd-brand img {
        width: 140px;
    }

    .navbar-nav {
        align-items: stretch;
        gap: 4px;
        padding-top: 12px;
    }

    .navbar-nav .nav-item + .nav-item::before {
        display: none;
    }

    .navbar-nav .nav-link {
        padding: .75rem 1rem !important;
        border-radius: 10px;
        background: #f7fbfe;
    }

    .navbar-nav > .nav-item > .nav-link::before {
        left: 1rem;
        right: 1rem;
    }

    .nav-whatsapp {
        margin: 12px 0 4px;
        justify-content: center;
    }

    .hero-section {
        padding-top: 40px;
    }

    .hero-visual {
        min-height: 330px;
        border-radius: 28px;
    }

    .hero-main-img {
        min-height: 340px;
    }

    .trust-strip,
    .stats-row,
    .hajj-banner,
    .cta-inner,
    .service-detail-row,
    .service-detail-row.reverse,
    .support-grid,
    .package-grid {
        grid-template-columns: 1fr;
    }

    .topbar-inner {
        flex-direction: column;
        gap: 4px;
    }

    .hajj-content {
        text-align: left;
    }

    .hajj-features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        border-top: 0;
        padding-top: 0;
    }

    .hajj-features span {
        border-right: 0;
        justify-items: start;
        min-height: auto;
        padding: 0;
    }

    .quality-badge {
        margin: 0;
    }

    .cta-contact {
        padding-left: 0;
        border-left: 0;
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 43px;
    }

    .hero-actions {
        display: grid;
    }

    .service-card {
        min-height: auto;
        grid-template-columns: 48px minmax(0, 1fr);
        padding-right: 46px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .stats-row,
    .why-grid,
    .detail-bullets,
    .process-grid,
    .support-list {
        grid-template-columns: 1fr;
    }

    .destination-carousel {
        padding: 0 42px;
    }

    .destination-track article {
        flex-basis: 100%;
    }

    .stats-row div {
        border-right: 0;
        border-bottom: 1px solid var(--amd-line);
    }

    .stats-row div:last-child {
        border-bottom: 0;
    }

    .mission-card {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }

    .hajj-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split-card,
    .work-card {
        grid-template-columns: 1fr;
    }

    .work-card .split-person {
        order: -1;
    }

    .cta-inner {
        padding: 22px;
    }

    .cta-title {
        align-items: flex-start;
    }

    .cta-title > span {
        width: 58px;
        height: 58px;
        min-width: 58px;
        flex-basis: 58px;
        font-size: 25px;
    }
}

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

    .btn:hover,
    .navbar-nav .nav-link:hover,
    .service-card:hover,
    .why-item:hover,
    .process-step:hover,
    .content-panel:hover,
    .detail-panel:hover,
    .visual-panel:hover,
    .package-card:hover,
    .support-card:hover,
    .request-panel:hover {
        transform: none;
    }

    .whatsapp-float,
    .whatsapp-float::before,
    .whatsapp-float::after {
        animation: none !important;
    }
}

@media (max-width: 460px) {
    .hero-section h1 {
        font-size: 36px;
    }

    .hero-lead {
        font-size: 18px;
    }

    .hajj-features {
        grid-template-columns: 1fr;
    }

    .destination-track img {
        height: 150px;
    }
}
