@font-face {
    font-family: 'DB BrandVoice X';
    src:
        url('../fonts/DBBrandVoiceX-Regular.ttf') format('truetype'),
        url('../fonts/DB%20BrandVoice%20X.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DB BrandVoice X';
    src:
        url('../fonts/DBBrandVoiceX-Bold.ttf') format('truetype'),
        url('../fonts/DB%20BrandVoice%20X%20Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --dark: #0b2d63;
    --dark-2: #123d8f;
    --gold: #b89555;
    --gold-2: #d9bd77;
    --blue-main: #123D8F;
    --blue-dark: #0D2F6D;
    --blue-soft: #EAF1FF;
    --green: #0abf53;
    --paper: #f7f3ea;
    --soft: #f5f7f8;
    --line: #e5e0d6;
    --text: #26313d;
    --muted: #667085;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'DB BrandVoice X', Tahoma, Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.45;
    font-size: 20px;
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.wrap {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 80;
    box-shadow: 0 2px 10px rgba(16, 35, 63, .05);
}

.header-main {
    background: #fff;
}

.header-main-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 310px;
}

.brand-logo {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #fff;
    flex: 0 0 auto;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-logo span {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--dark);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 22px;
    font-weight: 700;
}

.brand-text strong {
    display: block;
    color: var(--dark);
    font-size: 26px;
    line-height: 1;
    font-weight: 700;
}

.brand-text small {
    display: block;
    color: var(--muted);
    font-size: 15px;
    margin-top: 2px;
}

.header-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    color: var(--dark);
}

.info-block + .info-block {
    border-left: 1px solid var(--line);
    padding-left: 18px;
}

.info-block small {
    display: block;
    color: #3e4652;
    font-size: 17px;
    line-height: 1.1;
}

.info-block strong {
    display: block;
    color: var(--dark);
    font-size: 21px;
    line-height: 1.05;
    font-weight: 700;
}

.info-block em {
    display: block;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.1;
    font-style: normal;
    margin-top: 3px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    overflow: hidden;
}

.info-icon img,
.line-icon img,
.phone-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.line-icon,
.phone-icon {
    background: transparent;
}

.phone-icon {
    width: 46px;
    height: 46px;
}

.phone-block strong {
    color: var(--blue-main);
    font-size: 27px;
}

.phone-block small {
    color: var(--blue-dark);
}

/* =========================
   NAV
========================= */

.nav-row {
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 54px;
    gap: 18px;
}

.nav-left-space {
    min-width: 1px;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.main-nav a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0 17px;
    color: #26313d;
    font-size: 21px;
    line-height: 1;
    font-weight: 500;
    transition: color .2s ease;
}

.main-nav a::before {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    top: -1px;
    height: 3px;
    background: var(--blue-main);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .22s ease;
}

.main-nav a:hover {
    color: var(--blue-main);
}

.main-nav a:hover::before {
    transform: scaleX(1);
}

.main-nav a.active {
    color: #26313d;
}

.main-nav a.active::before {
    transform: scaleX(0);
}

.nav-contact-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    min-height: 54px;
}

.nav-email {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--dark);
    font-size: 17px;
    font-weight: 600;
    white-space: nowrap;
    transition: color .2s ease;
}

.nav-email img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.nav-email:hover {
    color: var(--blue-main);
}

.nav-social-icon {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform .2s ease;
}

.nav-social-icon img {
    width: 26px;
    height: 26px;
    max-width: 26px;
    max-height: 26px;
    object-fit: contain;
}

.nav-social-icon:hover {
    transform: translateY(-2px);
}

.menu-btn {
    display: none;
    background: var(--dark);
    border: 0;
    color: #fff;
    padding: 8px 16px;
    font-family: inherit;
    font-size: 18px;
    cursor: pointer;
}

/* =========================
   HAJJ TOP ZONE
========================= */

.hajj-home-zone {
    background: linear-gradient(135deg, rgba(11, 45, 99, .98), rgba(18, 61, 143, .94));
    padding: 22px 0 24px;
    overflow: hidden;
}

.hajj-zone-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
    margin-bottom: 16px;
    color: #fff;
}

.hajj-zone-head p,
.recommend-head p,
.section-head p,
.section-label {
    margin: 0 0 4px;
    color: var(--gold-2);
    font-size: 16px;
    font-weight: 700;
}

.hajj-zone-head h1 {
    margin: 0;
    color: #fff;
    font-size: 36px;
    line-height: 1;
}

.hajj-zone-head span {
    display: block;
    color: rgba(255,255,255,.82);
    font-size: 15px;
    margin-top: 4px;
}

.hajj-head-btn {
    background: var(--gold-2);
    color: var(--dark);
    padding: 10px 18px;
    font-size: 17px;
    font-weight: 700;
    white-space: nowrap;
    transition: .2s;
}

.hajj-head-btn:hover {
    background: #e7c56f;
}

.hajj-package-layout {
    display: grid;
    grid-template-columns: 1.28fr 1.72fr;
    gap: 14px;
    align-items: stretch;
}

.hajj-main-card,
.hajj-small-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0,0,0,.12);
    transition: transform .2s ease;
}

.hajj-main-card:hover,
.hajj-small-card:hover,
.umrah-card:hover,
.package-card:hover {
    transform: translateY(-2px);
}

.hajj-main-card {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
}

.hajj-main-image {
    width: 100%;
    aspect-ratio: 1200 / 550;
    height: auto;
    overflow: hidden;
    background: #d7dfed;
}

.hajj-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.hajj-main-content {
    min-height: 0;
    padding: 14px 18px 16px;
    display: flex;
    flex-direction: column;
}

.hajj-main-content span,
.hajj-small-content > span,
.umrah-badge {
    display: inline-block;
    background: var(--dark);
    color: #fff;
    padding: 4px 9px;
    font-size: 14px;
    margin-bottom: 7px;
    width: fit-content;
}

.hajj-main-content h2 {
    margin: 0 0 5px;
    color: var(--dark);
    font-size: 29px;
    line-height: 1.05;
}

.hajj-main-content p {
    margin: 0 0 5px;
    color: var(--blue-main);
    font-size: 17px;
    font-weight: 700;
}

.hajj-main-content small {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.hajj-main-content strong {
    display: block;
    margin-top: auto;
    color: var(--gold);
    font-size: 21px;
}

.hajj-small-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
}

.hajj-small-card {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
}

.hajj-small-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #d7dfed;
}

.hajj-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hajj-image-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 18px;
    background: linear-gradient(135deg, #eaf1ff, #d7dfed);
    color: var(--dark);
    font-size: 20px;
    font-weight: 700;
}

.hajj-small-content {
    min-height: 0;
    padding: 12px 13px 14px;
    display: flex;
    flex-direction: column;
}

.hajj-small-content h3 {
    margin: 0 0 4px;
    color: var(--dark);
    font-size: 21px;
    line-height: 1.05;
}

.hajj-small-content .hotel-name,
.hajj-small-content p {
    margin: 0 0 4px;
    color: var(--dark);
    font-size: 14.5px;
    line-height: 1.2;
    font-weight: 600;
}

.hotel-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 2px 0 6px;
    line-height: 1;
}

.hajj-small-content .hotel-stars span {
    background: transparent;
    color: #F5B301;
    padding: 0;
    margin: 0 2px 0 0;
    font-size: 15px;
    line-height: 1;
    display: inline-block;
}

.hotel-detail {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--muted) !important;
    font-size: 13.5px !important;
    line-height: 1.28 !important;
    margin: 0 0 8px !important;
    font-weight: 400 !important;
}

.hajj-small-content strong {
    display: block;
    margin-top: auto;
    color: var(--gold);
    font-size: 18px;
}

/* =========================
   UMRAH RECOMMEND ZONE
========================= */

.umrah-recommend-zone {
    background: var(--blue-soft);
    padding: 48px 0 58px;
}

.recommend-head {
    text-align: center;
    margin-bottom: 28px;
}

.recommend-head h2,
.section-head h2,
.learning-section h2,
.contact-section h2 {
    margin: 0 0 14px;
    color: var(--dark);
    font-size: clamp(38px, 4vw, 46px);
    line-height: 1;
    font-weight: 700;
}

.recommend-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.recommend-tabs span {
    background: #fff;
    color: var(--dark);
    padding: 9px 17px;
    font-size: 18px;
}

.recommend-tabs span.active {
    background: var(--dark);
    color: #fff;
}

.umrah-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.umrah-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(12, 47, 105, .12);
    transition: transform .2s ease;
}

.umrah-image-wrap {
    position: relative;
    height: 250px;
    background: #d7dfed;
}

.umrah-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.umrah-image-placeholder {
    height: 100%;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #d7dfed, #f7f3ea);
    color: var(--dark);
    font-size: 25px;
    font-weight: 700;
}

.umrah-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    margin: 0;
}

.umrah-card-body {
    padding: 20px;
}

.umrah-location {
    margin: 0 0 6px;
    color: var(--gold);
    font-size: 18px;
    font-weight: 700;
}

.umrah-card-body h3 {
    margin: 0 0 8px;
    color: var(--dark);
    font-size: 30px;
    line-height: 1;
}

.umrah-date,
.umrah-detail {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 18px;
}

.umrah-bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
}

.umrah-bottom small {
    display: block;
    color: var(--muted);
    font-size: 16px;
}

.umrah-bottom strong {
    color: var(--blue-main);
    font-size: 25px;
}

.umrah-bottom a {
    background: var(--dark);
    color: #fff;
    padding: 10px 14px;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
}

.umrah-bottom a:hover {
    background: var(--gold);
    color: var(--dark);
}

/* =========================
   LEARNING / SERVICES / GALLERY / CONTACT
========================= */

.learning-section,
.services-section,
.gallery-section,
.contact-section {
    padding: 70px 0;
}

.learning-section {
    background: var(--soft);
}

.learning-grid,
.contact-box {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 44px;
    align-items: start;
}

.learning-section p,
.contact-section p {
    color: var(--muted);
    font-size: 22px;
}

.text-link {
    display: inline-block;
    color: var(--dark);
    font-weight: 700;
    border-bottom: 1px solid var(--gold);
    margin-top: 10px;
    font-size: 21px;
}

.lesson-list {
    display: grid;
    gap: 12px;
}

.lesson-item {
    background: white;
    border: 1px solid var(--line);
    padding: 18px 22px;
    display: grid;
    grid-template-columns: 78px 1fr;
    align-items: center;
    gap: 16px;
}

.lesson-item strong {
    color: var(--gold);
    font-size: 26px;
    font-weight: 700;
}

.lesson-item span {
    color: var(--dark);
    font-weight: 600;
    font-size: 22px;
}

.services-section,
.gallery-section {
    background: #fff;
}

.services-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.services-row span {
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--dark);
    padding: 12px 20px;
    font-weight: 600;
    font-size: 21px;
}

.gallery-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gallery-row div {
    min-height: 180px;
    background: var(--blue-soft);
    border: 1px solid #d7dfed;
    display: grid;
    place-items: center;
    color: var(--dark);
    font-size: 24px;
    font-weight: 700;
}

.contact-section {
    background: var(--dark);
    color: white;
}

.contact-section h2,
.contact-section .section-label {
    color: white;
}

.contact-info {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    padding: 24px;
    display: grid;
    gap: 12px;
}

.contact-info a {
    background: white;
    color: var(--dark);
    padding: 13px 16px;
    font-weight: 700;
    font-size: 21px;
    transition: .2s;
}

.contact-info a:hover {
    background: var(--gold-2);
    color: var(--dark);
}

/* =========================
   DETAIL PAGE
========================= */

.detail-page {
    background: #f5f7fb;
}

.hajj-detail-hero {
    background: linear-gradient(135deg, rgba(11, 45, 99, .98), rgba(18, 61, 143, .92));
    padding: 54px 0;
    color: #fff;
}

.hajj-detail-hero p {
    margin: 0 0 8px;
    color: var(--gold-2);
    font-size: 20px;
    font-weight: 700;
}

.hajj-detail-hero h1 {
    margin: 0;
    font-size: 48px;
    line-height: 1;
}

.hajj-detail-hero span {
    display: block;
    margin-top: 10px;
    color: rgba(255,255,255,.85);
    font-size: 20px;
}

.hajj-detail-content {
    padding: 48px 0 60px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.detail-card {
    background: #fff;
    border: 1px solid #d7dfed;
    padding: 26px;
}

.detail-card h2 {
    margin: 0 0 12px;
    color: var(--dark);
    font-size: 32px;
}

.detail-card p,
.detail-card li {
    color: #4d5b6b;
    font-size: 20px;
}

.detail-card ul {
    margin: 0;
    padding-left: 24px;
}

.detail-action {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.detail-action a {
    background: var(--dark);
    color: #fff;
    padding: 12px 20px;
    font-size: 20px;
    font-weight: 700;
}

.detail-action a:first-child {
    background: var(--gold-2);
    color: var(--dark);
}

/* =========================
   FOOTER
========================= */

.footer {
    background: #08182b;
    color: rgba(255, 255, 255, .75);
    padding: 28px 0;
    font-size: 18px;
}

.footer strong {
    color: white;
    font-weight: 700;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-height: 720px) and (min-width: 1051px) {
    .hajj-home-zone {
        padding: 18px 0 20px;
    }

    .hajj-zone-head {
        margin-bottom: 12px;
    }

    .hajj-zone-head h1 {
        font-size: 32px;
    }

    .hajj-zone-head span {
        font-size: 14px;
    }

    .hajj-main-content {
        padding: 12px 16px 14px;
    }

    .hajj-main-content h2 {
        font-size: 27px;
    }

    .hajj-small-content {
        padding: 10px 12px 12px;
    }

    .hajj-small-content h3 {
        font-size: 20px;
    }

    .hotel-detail {
        font-size: 13px !important;
    }
}

@media (max-width: 1180px) {
    .nav-email span {
        display: none;
    }

    .nav-email {
        gap: 0;
    }
}

@media (max-width: 1050px) {
    .wrap {
        width: min(100% - 30px, 1040px);
    }

    .header-main-inner {
        min-height: auto;
        padding: 18px 0;
        display: block;
    }

    .brand {
        justify-content: center;
        margin-bottom: 16px;
    }

    .header-info {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hajj-package-layout,
    .learning-grid,
    .contact-box,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .hajj-small-grid,
    .umrah-card-grid,
    .gallery-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 820px) {
    .menu-btn {
        display: block;
    }

    .nav-inner {
        display: flex;
        justify-content: space-between;
        position: relative;
    }

    .nav-left-space {
        display: none;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 54px;
        left: 0;
        right: 0;
        background: white;
        border: 1px solid var(--line);
        z-index: 90;
        box-shadow: 0 16px 34px rgba(16, 35, 63, .12);
    }

    .main-nav.show {
        display: block;
    }

    .main-nav a {
        min-height: auto;
        display: block;
        padding: 14px 16px;
        border-bottom: 1px solid var(--line);
        font-size: 20px;
    }

    .main-nav a::before,
    .main-nav a:hover::before,
    .main-nav a.active::before {
        display: none;
    }

    .nav-contact-social {
        margin-left: auto;
        gap: 8px;
    }

    .nav-social-icon,
    .nav-social-icon img,
    .nav-email img {
        width: 24px;
        height: 24px;
        max-width: 24px;
        max-height: 24px;
    }

    .hajj-small-grid,
    .umrah-card-grid,
    .gallery-row {
        grid-template-columns: 1fr;
    }

    .hajj-zone-head {
        display: block;
    }

    .hajj-zone-head h1,
    .recommend-head h2,
    .hajj-detail-hero h1 {
        font-size: 36px;
    }

    .hajj-head-btn {
        display: inline-flex;
        margin-top: 14px;
    }
}

@media (max-width: 620px) {
    body {
        font-size: 19px;
    }

    .header-main-inner {
        padding: 14px 0;
    }

    .brand {
        min-width: 0;
        justify-content: flex-start;
    }

    .brand-logo {
        width: 52px;
        height: 52px;
    }

    .brand-logo span {
        width: 52px;
        height: 52px;
        font-size: 18px;
    }

    .brand-text strong {
        font-size: 20px;
    }

    .brand-text small {
        display: none;
    }

    .header-info {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .info-block {
        border: 1px solid var(--line);
        padding: 10px !important;
        min-height: auto;
    }

    .info-block + .info-block {
        border-left: 1px solid var(--line);
    }

    .time-block {
        display: none;
    }

    .phone-block strong {
        font-size: 24px;
    }

    .hajj-home-zone,
    .learning-section,
    .services-section,
    .gallery-section,
    .contact-section,
    .umrah-recommend-zone {
        padding: 44px 0;
    }

    .hajj-main-content h2,
    .umrah-card-body h3,
    .detail-card h2 {
        font-size: 30px;
    }

    .hajj-small-content h3 {
        font-size: 24px;
    }

    .lesson-item {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .umrah-bottom {
        display: grid;
        align-items: start;
    }

    .umrah-bottom a {
        text-align: center;
    }

    .footer-inner {
        display: block;
    }
}
/* =========================================================
   FIX NAV EMAIL + SOCIAL ICON SPACING
   แก้ระยะห่างอีเมล Facebook YouTube
========================================================= */

.nav-contact-social {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 14px !important;
    min-height: 54px !important;
    white-space: nowrap !important;
}

.nav-email {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    color: #0b2d63 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    margin-right: 6px !important;
}

.nav-email img {
    width: 21px !important;
    height: 21px !important;
    max-width: 21px !important;
    max-height: 21px !important;
    object-fit: contain !important;
    display: block !important;
}

.nav-social-icon {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.nav-social-icon img {
    width: 30px !important;
    height: 30px !important;
    max-width: 30px !important;
    max-height: 30px !important;
    object-fit: contain !important;
    display: block !important;
}

.nav-social-icon:hover,
.nav-email:hover {
    transform: translateY(-1px);
}
/* =========================================================
   HAJJ DETAIL PRODUCT PAGE
========================================================= */

.hajj-detail-page {
    background: #f5f7fb;
}

.detail-breadcrumb-wrap {
    background: #f5f7fb;
    padding: 18px 0 0;
}

.detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #1f2d3d;
    font-size: 17px;
}

.detail-breadcrumb a {
    color: #0b2d63;
    font-weight: 700;
}

.detail-breadcrumb span {
    color: #8a94a3;
}

.detail-product-section {
    padding: 22px 0 60px;
}

.detail-product-card {
    background: #fff;
    border: 1px solid #e3e8f0;
    box-shadow: 0 10px 30px rgba(11, 45, 99, .08);
    padding: 28px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 34px;
}

.detail-left h1 {
    margin: 0 0 14px;
    color: #0b2d63;
    font-size: 38px;
    line-height: 1.1;
}

.detail-code {
    color: #4d5b6b;
    font-size: 18px;
    margin: 0 0 18px;
    font-weight: 700;
}

.detail-main-image {
    background: #eaf1ff;
    border: 1px solid #d7dfed;
    overflow: hidden;
    margin-bottom: 24px;
}

.detail-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.detail-image-placeholder {
    min-height: 340px;
    display: grid;
    place-items: center;
    color: #0b2d63;
    font-size: 28px;
    font-weight: 700;
}

.detail-contact-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 30px;
}

.detail-contact-item {
    border: 1px solid #d7dfed;
    background: #fff;
    padding: 16px;
    text-align: center;
    display: grid;
    justify-items: center;
    gap: 6px;
}

.detail-contact-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
}

.detail-contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.detail-contact-item span {
    color: #667085;
    font-size: 16px;
}

.detail-contact-item strong {
    color: #0b2d63;
    font-size: 18px;
    line-height: 1.15;
}

.detail-section-block {
    border-top: 1px solid #e3e8f0;
    padding-top: 24px;
    margin-top: 24px;
}

.detail-section-block h2 {
    margin: 0 0 16px;
    color: #0b2d63;
    font-size: 31px;
}

.detail-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.detail-two-col > div {
    background: #f8fafc;
    border: 1px solid #e3e8f0;
    padding: 18px;
}

.detail-two-col h3 {
    margin: 0 0 8px;
    color: #0b2d63;
    font-size: 24px;
}

.detail-two-col p {
    margin: 0 0 6px;
    color: #4d5b6b;
    font-size: 18px;
}

.detail-check-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.detail-check-list li {
    position: relative;
    padding-left: 28px;
    color: #4d5b6b;
    font-size: 19px;
}

.detail-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #b89555;
    font-weight: 700;
}

/* ขวา */

.detail-right {
    display: grid;
    gap: 16px;
    align-content: start;
}

.side-info-card {
    border: 1px solid #e3e8f0;
    background: #fff;
    padding: 22px;
}

.side-info-card h2 {
    margin: 0 0 18px;
    color: #0b2d63;
    font-size: 27px;
}

.side-info-item {
    border-bottom: 1px solid #edf1f6;
    padding: 0 0 12px;
    margin-bottom: 12px;
}

.side-info-item span,
.side-info-price span {
    display: block;
    color: #667085;
    font-size: 16px;
    margin-bottom: 3px;
}

.side-info-item strong {
    color: #0b2d63;
    font-size: 19px;
}

.side-stars {
    color: #F5B301;
    font-size: 20px;
    letter-spacing: 2px;
}

.side-info-price {
    background: #f8fafc;
    border: 1px solid #e3e8f0;
    padding: 14px;
    margin: 18px 0;
}

.side-info-price strong {
    color: #b89555;
    font-size: 24px;
}

.side-btn-group {
    display: grid;
    gap: 10px;
}

.side-btn {
    min-height: 46px;
    display: grid;
    place-items: center;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

.side-btn.primary {
    background: #b9242f;
    color: #fff;
}

.side-btn.outline {
    background: #fff;
    color: #b9242f;
    border: 1px solid #b9242f;
}

.side-btn.dark {
    background: #0b2d63;
    color: #fff;
}

.side-info-card.small {
    padding: 20px;
}

.side-info-card.small ul {
    margin: 0;
    padding-left: 20px;
}

.side-info-card.small li,
.side-info-card.small p {
    color: #4d5b6b;
    font-size: 18px;
    line-height: 1.45;
}

.side-info-card.small p strong {
    color: #0b2d63;
}

/* Responsive */

@media (max-width: 1050px) {
    .detail-product-card {
        grid-template-columns: 1fr;
    }

    .detail-right {
        grid-template-columns: 1fr 1fr;
    }

    .side-info-card:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .detail-product-card {
        padding: 18px;
    }

    .detail-left h1 {
        font-size: 32px;
    }

    .detail-contact-row,
    .detail-two-col,
    .detail-right {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   HAJJ DETAIL MAIN IMAGE 1:1
   ใช้รูปสี่เหลี่ยมจัตุรัสในหน้ารายละเอียดแพ็กเกจ
========================================================= */

.detail-main-image {
    width: 100%;
    max-width: 760px;
    aspect-ratio: 1 / 1;
    background: #f4f6fa;
    border: 1px solid #d7dfed;
    overflow: hidden;
    margin-bottom: 24px;
}

.detail-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center center;
    display: block;
    background: #f4f6fa;
}

.detail-image-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    color: #0b2d63;
    font-size: 28px;
    font-weight: 700;
    background: #f4f6fa;
}
.detail-main-image {
    margin-left: auto;
    margin-right: auto;
}
/* =========================================================
   FIX HAJJ DETAIL PAGE ให้รูป 1:1 พอดีจอ
   วางท้ายสุดของ style.css
========================================================= */

@media (min-width: 1051px) {

    .detail-breadcrumb-wrap {
        padding: 14px 0 0 !important;
    }

    .detail-product-section {
        padding: 16px 0 46px !important;
    }

    .detail-product-card {
        width: min(1100px, calc(100% - 40px)) !important;
        margin: 0 auto !important;
        padding: 22px 28px !important;
        grid-template-columns: minmax(0, 650px) 310px !important;
        gap: 28px !important;
    }

    .detail-left h1 {
        font-size: 34px !important;
        margin-bottom: 10px !important;
    }

    .detail-code {
        font-size: 16px !important;
        margin-bottom: 14px !important;
    }

    .detail-main-image {
        width: 100% !important;
        max-width: 560px !important;
        aspect-ratio: 1 / 1 !important;
        margin: 0 0 18px 0 !important;
        background: #f4f6fa !important;
        border: 1px solid #d7dfed !important;
        overflow: hidden !important;
    }

    .detail-main-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        object-position: center center !important;
        display: block !important;
    }

    .detail-contact-row {
        max-width: 560px !important;
        gap: 10px !important;
        margin-bottom: 22px !important;
    }

    .detail-contact-item {
        padding: 12px 10px !important;
    }

    .detail-contact-icon {
        width: 34px !important;
        height: 34px !important;
    }

    .detail-contact-item span {
        font-size: 14px !important;
    }

    .detail-contact-item strong {
        font-size: 15px !important;
    }

    .side-info-card {
        padding: 20px !important;
    }

    .side-info-card h2 {
        font-size: 25px !important;
        margin-bottom: 16px !important;
    }

    .side-info-item {
        padding-bottom: 10px !important;
        margin-bottom: 10px !important;
    }

    .side-info-item strong {
        font-size: 18px !important;
    }
}

/* สำหรับจอโน้ตบุ๊กเตี้ย */
@media (max-height: 760px) and (min-width: 1051px) {

    .detail-product-card {
        grid-template-columns: minmax(0, 600px) 300px !important;
        padding: 18px 24px !important;
    }

    .detail-left h1 {
        font-size: 31px !important;
    }

    .detail-main-image {
        max-width: 500px !important;
    }

    .detail-contact-row {
        max-width: 500px !important;
    }
}
/* =========================================================
   HAJJ PRODUCT DETAIL - ORIGINAL STYLE
   จัดหน้าแนวเดียวกับตัวอย่าง แต่ไม่ลอกตรง
========================================================= */

.hajj-product-page {
    background: #f3f5f9;
}

.hajj-product-section {
    padding: 18px 0 50px;
}

.hajj-product-card {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e1e7f0;
    box-shadow: 0 10px 30px rgba(11, 45, 99, .08);
    padding: 28px;
}

.hajj-product-title-row {
    margin-bottom: 18px;
}

.hajj-product-title-row h1 {
    margin: 0 0 8px;
    color: #0b2d63;
    font-size: 40px;
    line-height: 1.05;
}

.product-code {
    margin: 0;
    color: #4b5a6a;
    font-size: 17px;
    font-weight: 700;
}

.hajj-product-layout {
    display: grid;
    grid-template-columns: 430px 1fr 280px;
    gap: 24px;
    align-items: start;
}

/* ซ้าย */
.product-left {
    min-width: 0;
}

.product-main-image {
    width: 100%;
    background: #f6f8fc;
    border: 1px solid #d8e0ec;
    overflow: hidden;
}

.product-main-image img {
    width: 100%;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: #f6f8fc;
}

.product-image-placeholder {
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    color: #0b2d63;
    font-size: 28px;
    font-weight: 700;
}

.product-contact-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 16px;
}

.contact-pill {
    border: 1px solid #d8e0ec;
    background: #fff;
    text-align: center;
    padding: 14px 10px;
    display: grid;
    justify-items: center;
    gap: 6px;
}

.contact-pill img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.contact-pill span {
    color: #6a7683;
    font-size: 14px;
}

.contact-pill strong {
    color: #0b2d63;
    font-size: 15px;
    line-height: 1.2;
}

/* กลาง */
.product-middle {
    min-width: 0;
}

.share-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.share-btn {
    border: 0;
    cursor: pointer;
    min-height: 36px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.share-btn.fb {
    background: #1877f2;
    color: #fff;
}

.share-btn.line {
    background: #06c755;
    color: #fff;
}

.share-btn.copy {
    background: #f3f5f9;
    color: #0b2d63;
    border: 1px solid #d4dde8;
}

.summary-badge {
    display: inline-block;
    background: #0b2d63;
    color: #fff;
    padding: 7px 14px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
}

.summary-list {
    display: grid;
    gap: 10px;
}

.summary-item {
    border-bottom: 1px solid #e9eef5;
    padding-bottom: 10px;
}

.summary-item span {
    display: block;
    color: #6b7684;
    font-size: 14px;
    margin-bottom: 3px;
}

.summary-item strong {
    color: #0b2d63;
    font-size: 19px;
    line-height: 1.25;
}

.summary-stars {
    color: #f4b000;
    font-size: 22px;
    letter-spacing: 1px;
}

.summary-price-box {
    margin-top: 18px;
    border: 1px solid #e1e7f0;
    background: #f9fbfe;
    padding: 18px;
}

.summary-price-box span {
    display: block;
    color: #6b7684;
    font-size: 15px;
    margin-bottom: 6px;
}

.summary-price-box strong {
    display: block;
    color: #c32a2a;
    font-size: 34px;
    line-height: 1.05;
    margin-bottom: 5px;
}

.summary-price-box small {
    color: #6b7684;
    font-size: 13px;
}

/* ขวา */
.product-right {
    display: grid;
    gap: 16px;
}

.info-side-card {
    border: 1px solid #e1e7f0;
    padding: 20px;
    background: #fff;
}

.info-side-card h2 {
    margin: 0 0 16px;
    color: #0b2d63;
    font-size: 30px;
}

.info-side-card h3 {
    margin: 0 0 14px;
    color: #0b2d63;
    font-size: 24px;
}

.info-side-item {
    border-bottom: 1px solid #edf1f5;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.info-side-item span {
    display: block;
    color: #6b7684;
    font-size: 14px;
    margin-bottom: 3px;
}

.info-side-item strong {
    color: #0b2d63;
    font-size: 17px;
    line-height: 1.3;
}

.right-btn {
    min-height: 44px;
    display: grid;
    place-items: center;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
}

.right-btn.outline {
    background: #fff;
    color: #c32a2a;
    border: 1px solid #c32a2a;
}

.right-btn.solid {
    background: #c32a2a;
    color: #fff;
}

.small-card ul {
    margin: 0;
    padding-left: 20px;
}

.small-card li {
    color: #4d5966;
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 1100px) {
    .hajj-product-layout {
        grid-template-columns: 1fr;
    }

    .product-right {
        grid-template-columns: 1fr 1fr;
    }

    .product-contact-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 720px) {
    .hajj-product-card {
        width: min(100%, calc(100% - 20px));
        padding: 18px;
    }

    .hajj-product-title-row h1 {
        font-size: 30px;
    }

    .product-contact-strip,
    .product-right {
        grid-template-columns: 1fr;
    }

    .share-row {
        flex-direction: column;
    }

    .share-btn {
        width: 100%;
    }

    .summary-price-box strong {
        font-size: 28px;
    }
}
/* =========================================================
   HOME UMRAH PACKAGE SECTION
   โซนอุมเราะห์ใต้แพ็กเกจฮัจย์
========================================================= */

.home-umrah-zone {
    background: #f5f7fb;
    padding: 56px 0 64px;
}

.home-umrah-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.home-umrah-head p {
    margin: 0 0 6px;
    color: #b89555;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .3px;
}

.home-umrah-head h2 {
    margin: 0;
    color: #0b2d63;
    font-size: 44px;
    line-height: 1;
    font-weight: 700;
}

.home-umrah-head span {
    display: block;
    margin-top: 8px;
    color: #607086;
    font-size: 19px;
}

.umrah-head-btn {
    background: #0b2d63;
    color: #fff;
    padding: 12px 20px;
    font-size: 19px;
    font-weight: 700;
    white-space: nowrap;
    transition: .2s;
}

.umrah-head-btn:hover {
    background: #b89555;
    color: #0b2d63;
}

.home-umrah-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.home-umrah-card {
    background: #fff;
    border: 1px solid #e1e7f0;
    box-shadow: 0 12px 28px rgba(11, 45, 99, .08);
    overflow: hidden;
    transition: .2s;
}

.home-umrah-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(11, 45, 99, .12);
}

.home-umrah-image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #d7dfed;
}

.home-umrah-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-umrah-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 24px;
    color: #0b2d63;
    background: linear-gradient(135deg, #eaf1ff, #d7dfed);
    font-size: 24px;
    font-weight: 700;
}

.home-umrah-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    background: #0b2d63;
    color: #fff;
    padding: 7px 12px;
    font-size: 16px;
    font-weight: 700;
}

.home-umrah-body {
    padding: 20px;
}

.umrah-location {
    margin: 0 0 6px;
    color: #b89555;
    font-size: 17px;
    font-weight: 700;
}

.home-umrah-body h3 {
    margin: 0 0 8px;
    color: #0b2d63;
    font-size: 30px;
    line-height: 1.05;
}

.umrah-date {
    margin: 0 0 14px;
    color: #123d8f;
    font-size: 18px;
    font-weight: 700;
}

.umrah-info-list {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 10px;
    margin-bottom: 14px;
}

.umrah-info-list div {
    background: #f8fafc;
    border: 1px solid #e1e7f0;
    padding: 11px 12px;
}

.umrah-info-list strong {
    display: block;
    color: #0b2d63;
    font-size: 16px;
    line-height: 1.1;
    margin-bottom: 4px;
}

.umrah-info-list span {
    display: block;
    color: #4d5b6b;
    font-size: 15px;
    line-height: 1.25;
}

.umrah-detail-text {
    margin: 0 0 16px;
    color: #5f6f83;
    font-size: 17px;
    line-height: 1.35;
}

.umrah-card-bottom {
    border-top: 1px solid #e1e7f0;
    padding-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.umrah-card-bottom strong {
    color: #b89555;
    font-size: 23px;
    line-height: 1;
}

.umrah-card-bottom a {
    background: #0b2d63;
    color: #fff;
    padding: 9px 14px;
    font-size: 17px;
    font-weight: 700;
    white-space: nowrap;
}

.umrah-card-bottom a:hover {
    background: #b89555;
    color: #0b2d63;
}

/* Responsive */
@media (max-width: 1050px) {
    .home-umrah-grid {
        grid-template-columns: 1fr;
    }

    .home-umrah-head {
        display: block;
    }

    .umrah-head-btn {
        display: inline-flex;
        margin-top: 16px;
    }
}

@media (max-width: 620px) {
    .home-umrah-zone {
        padding: 42px 0 48px;
    }

    .home-umrah-head h2 {
        font-size: 36px;
    }

    .home-umrah-head span {
        font-size: 17px;
    }

    .home-umrah-body h3 {
        font-size: 26px;
    }

    .umrah-info-list {
        grid-template-columns: 1fr;
    }

    .umrah-card-bottom {
        display: grid;
    }

    .umrah-card-bottom a {
        text-align: center;
    }
}
/* =========================================================
   PRICE BOX - HAJJ DETAIL
   กล่องราคาให้ดูพรีเมียมขึ้น
========================================================= */

.price-highlight-box {
    position: relative;
    margin-top: 18px !important;
    padding: 18px !important;
    border: 1px solid #d9bd77 !important;
    background:
        linear-gradient(135deg, #fffdf7 0%, #f8f2df 100%) !important;
    box-shadow: 0 10px 24px rgba(11, 45, 99, .08);
    overflow: hidden;
}

.price-highlight-box::before {
    content: "";
    position: absolute;
    right: -38px;
    top: -38px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(217, 189, 119, .22);
}

.price-label-row {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.price-label-row span {
    color: #0b2d63;
    font-size: 16px;
    font-weight: 700;
}

.price-label-row em {
    background: #0b2d63;
    color: #fff;
    font-style: normal;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 9px;
}

.price-main {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 2px;
    margin-bottom: 10px;
}

.price-main small {
    color: #7a6a3a;
    font-size: 15px;
    font-weight: 700;
}

.price-main strong {
    color: #b9242f;
    font-size: 42px;
    line-height: .95;
    font-weight: 700;
    letter-spacing: -.5px;
}

.price-main span {
    color: #0b2d63;
    font-size: 18px;
    font-weight: 700;
}

.price-highlight-box p {
    position: relative;
    z-index: 2;
    margin: 10px 0 12px;
    color: #4d5b6b;
    font-size: 15px;
    line-height: 1.35;
}

.price-note {
    position: relative;
    z-index: 2;
    background: rgba(11, 45, 99, .06);
    border-left: 3px solid #d9bd77;
    padding: 8px 10px;
    color: #0b2d63;
    font-size: 14px;
    font-weight: 600;
}

/* ลดขนาดในจอเล็ก */
@media (max-width: 720px) {
    .price-main strong {
        font-size: 36px;
    }

    .price-highlight-box {
        padding: 16px !important;
    }
}

/* =========================================================
   MOBILE SECTION SAFE DEFAULT
   โซนมือถือแบบทดลองถูกซ่อนไว้ ไม่ให้รบกวน Desktop
   ถ้าจะใช้มือถือ ให้จัดใน assets/css/mobile.css
========================================================= */

.home-mobile-style-zone {
    display: none;
}
/* =========================================================
   HIDE MOBILE HEADER ON DESKTOP
   กัน Mobile Header โผล่บนคอม
========================================================= */

@media (min-width: 821px) {
    .mobile-header-only,
    .mobile-drawer,
    .mobile-drawer-backdrop {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }
}
/* =========================================================
   FOOTER LICENSE
========================================================= */

.footer-inner-license {
    align-items: center;
}

.footer-license {
    text-align: center;
    color: rgba(255, 255, 255, .82);
    font-size: 17px;
    line-height: 1.5;
}

.footer-company,
.footer-copy {
    min-width: 220px;
}

.footer-copy {
    text-align: right;
}

@media (max-width: 820px) {
    .footer-inner-license {
        display: grid !important;
        gap: 12px;
        text-align: center;
    }

    .footer-company,
    .footer-copy {
        min-width: 0;
        text-align: center;
    }

    .footer-license {
        font-size: 15px;
    }
}
/* =========================================================
   FOOTER LICENSE + OFFICIAL LOGOS
========================================================= */

.footer-inner-license {
    align-items: center;
}

.footer-company,
.footer-copy {
    min-width: 220px;
}

.footer-copy {
    text-align: right;
}

.footer-center-box {
    display: grid;
    justify-items: center;
    gap: 10px;
    text-align: center;
}

.footer-official-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-official-logos img {
    width: auto;
    height: 42px;
    max-width: 120px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    padding: 5px 8px;
}

.footer-license {
    text-align: center;
    color: rgba(255, 255, 255, .84);
    font-size: 17px;
    line-height: 1.5;
}

@media (max-width: 820px) {
    .footer-inner-license {
        display: grid !important;
        gap: 14px;
        text-align: center;
    }

    .footer-company,
    .footer-copy {
        min-width: 0;
        text-align: center;
    }

    .footer-official-logos {
        gap: 10px;
    }

    .footer-official-logos img {
        height: 34px;
        max-width: 95px;
        padding: 4px 6px;
        border-radius: 7px;
    }

    .footer-license {
        font-size: 15px;
    }
}