/* ============================================================
   Nour Egypt Tours — Main Stylesheet
   Version: 1.0.0
   ============================================================ */

/* ─── CSS RESET & ROOT VARIABLES ─── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --sand:              #F5EDD8;
    --sand-light:        #FBF7EF;
    --sand-mid:          #E8D9B5;
    --gold:              #C9963A;
    --gold-light:        #E5B456;
    --gold-dark:         #9A6F22;
    --navy:              #1A2744;
    --navy-mid:          #243460;
    --navy-light:        #2E4080;
    --terracotta:        #C0623A;
    --terracotta-light:  #D9845E;
    --cream:             #FDFAF3;
    --white:             #FFFFFF;
    --text-dark:         #1A1A2E;
    --text-mid:          #4A4A6A;
    --text-light:        #8A8AAA;
    --border:            rgba(201, 150, 58, 0.2);
    --border-strong:     rgba(201, 150, 58, 0.4);
    --shadow:            0 4px 24px rgba(26, 39, 68, 0.08);
    --shadow-hover:      0 12px 48px rgba(26, 39, 68, 0.16);
    --radius:            4px;
    --radius-lg:         8px;
    --transition:        all 0.3s ease;
    --font-serif:        'Cormorant Garamond', Georgia, serif;
    --font-sans:         'Jost', system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

h1 { font-size: clamp(42px, 7vw, 80px); }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }
h4 { font-size: 20px; }

p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-mid);
}

a {
    text-decoration: none;
    color: inherit;
}

.serif-em {
    font-family: var(--font-serif);
    font-style: italic;
}

/* ─── LAYOUT UTILITIES ─── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 90px 0;
}

.section-alt {
    background: var(--sand-light);
}

.section-dark {
    background: var(--navy);
    color: var(--cream);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ─── TAG / EYEBROW ─── */
.tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 150, 58, 0.1);
    border: 1px solid rgba(201, 150, 58, 0.25);
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 16px;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 150, 58, 0.3);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
}

.btn-white:hover {
    background: var(--sand);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* ─── SECTION HEADERS ─── */
.section-header {
    margin-bottom: 56px;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    color: var(--navy);
    margin-bottom: 16px;
}

.section-header p {
    max-width: 560px;
}

.section-header.center p {
    margin: 0 auto;
}

/* ─── TOP BAR ─── */
.topbar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    padding: 8px 0;
    letter-spacing: 0.05em;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.topbar a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.topbar a:hover {
    color: var(--gold-light);
}

.topbar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* ─── SITE HEADER / NAVIGATION ─── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(253, 250, 243, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(26, 39, 68, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

/* Site Logo */
.site-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
}

.logo-main {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.logo-sub {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

/* WordPress wp_nav_menu() Output Styling */
.main-navigation ul {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation ul li a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 4px;
    transition: color 0.2s;
    text-decoration: none;
}

.main-navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s;
}

.main-navigation ul li a:hover {
    color: var(--gold);
}

.main-navigation ul li a:hover::after {
    width: 100%;
}

/* Sub-menus */
.main-navigation ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    min-width: 200px;
    z-index: 100;
    gap: 0;
    padding: 8px 0;
}

.main-navigation ul li {
    position: relative;
}

.main-navigation ul li:hover > ul {
    display: flex;
}

.main-navigation ul ul li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    letter-spacing: 0.05em;
}

.main-navigation ul ul li a::after {
    display: none;
}

.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Hamburger (mobile) */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    margin: 5px 0;
    transition: var(--transition);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    background: var(--cream);
    border-top: 1px solid var(--border);
    padding: 16px 24px 24px;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav ul li a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    color: var(--text-dark);
    text-decoration: none;
}

/* ─── HERO SECTION ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(135deg, rgba(26, 39, 68, 0.88) 0%, rgba(26, 39, 68, 0.6) 50%, rgba(26, 39, 68, 0.75) 100%),
        url('https://images.unsplash.com/photo-1539768942893-daf53e448371?w=1600&q=80');
    background-size: cover;
    background-position: center 40%;
    background-attachment: fixed;
}

.hero-ornament {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1568322445389-f64ac2515020?w=900&q=80') center / cover no-repeat;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.25;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 120px 0 80px;
    animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold-light);
}

.hero h1 {
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 300;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
    display: block;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    max-width: 520px;
    margin: 20px 0 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 32px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-badge-num {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--gold-light);
    line-height: 1;
    display: block;
}

.hero-badge-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
    display: block;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.scroll-indicator::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─── SEARCH BAR ─── */
.search-section {
    background: var(--white);
    position: relative;
    z-index: 10;
}

.search-bar {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 -4px 40px rgba(26, 39, 68, 0.15), var(--shadow);
    padding: 32px 36px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 180px;
    gap: 16px;
    align-items: end;
}

.search-field label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
}

.search-field select,
.search-field input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-strong);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--sand-light);
    transition: border-color 0.2s;
    outline: none;
}

.search-field select:focus,
.search-field input:focus {
    border-color: var(--gold);
}

/* ─── WHY CHOOSE US ─── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.why-card {
    background: var(--white);
    padding: 40px 32px;
    transition: var(--transition);
}

.why-card:hover {
    background: var(--sand-light);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(201, 150, 58, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.why-card h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--navy);
}

.why-card p {
    font-size: 14px;
    color: var(--text-mid);
}

/* ─── TOUR CARDS ─── */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.tour-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.tour-img {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: var(--sand-mid);
}

.tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-img img {
    transform: scale(1.05);
}

.tour-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 2px;
}

.tour-badge.featured {
    background: var(--terracotta);
}

.tour-duration-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(26, 39, 68, 0.85);
    color: var(--white);
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 2px;
    backdrop-filter: blur(4px);
}

.tour-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-location {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.tour-card h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.tour-card p {
    font-size: 14px;
    flex: 1;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.tour-price {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--navy);
    line-height: 1;
}

.tour-price span {
    font-size: 13px;
    color: var(--text-light);
    font-family: var(--font-sans);
}

.tour-price .old {
    font-size: 14px;
    text-decoration: line-through;
    color: var(--text-light);
    font-family: var(--font-sans);
    display: block;
    margin-bottom: 2px;
}

.tour-stars {
    color: var(--gold);
    font-size: 13px;
}

/* ─── FILTER BAR ─── */
.filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    align-items: center;
}

.filter-btn {
    padding: 9px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: 1.5px solid var(--border-strong);
    background: transparent;
    color: var(--text-mid);
    font-family: var(--font-sans);
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* ─── ABOUT SECTION ─── */
.about-img-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.about-img-main {
    grid-row: 1 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 520px;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-sm {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 248px;
}

.about-img-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    background: var(--gold);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.about-badge-num {
    font-family: var(--font-serif);
    font-size: 48px;
    line-height: 1;
    display: block;
}

.about-badge-text {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 6px;
    display: block;
}

.about-text {
    padding-left: 24px;
}

.about-text h2 {
    color: var(--navy);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin: 28px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text-mid);
}

.feature-list li::before {
    content: '◆';
    color: var(--gold);
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 6px;
}

/* ─── GUIDE CARDS ─── */
.guide-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.guide-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.guide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s;
}

.guide-card:hover .guide-img img {
    transform: scale(1.05);
}

.guide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 39, 68, 0.8), transparent);
    padding: 24px 16px 16px;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.lang-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.guide-body {
    padding: 24px;
}

.guide-body h4 {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 4px;
}

.guide-role {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.guide-body p {
    font-size: 14px;
}

.guide-exp {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.guide-stat-num {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--navy);
    display: block;
    line-height: 1;
}

.guide-stat-label {
    font-size: 11px;
    color: var(--text-light);
    display: block;
    margin-top: 2px;
}

/* ─── DESTINATIONS GRID ─── */
.dest-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 16px;
}

.dest-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.dest-card.tall {
    grid-row: 1 / 3;
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.dest-card:hover img {
    transform: scale(1.06);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 39, 68, 0.75) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: var(--transition);
}

.dest-card:hover .dest-overlay {
    background: linear-gradient(to top, rgba(26, 39, 68, 0.85) 0%, rgba(26, 39, 68, 0.1) 60%);
}

.dest-name {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--white);
    line-height: 1.1;
}

.dest-count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 4px;
}

.dest-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition);
    color: var(--white);
    font-size: 16px;
}

.dest-card:hover .dest-arrow {
    opacity: 1;
    transform: translateY(0);
}

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 64px;
    color: var(--gold);
    line-height: 0.5;
    margin-bottom: 16px;
    display: block;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-family: var(--font-serif);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(201, 150, 58, 0.4);
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
}

.testimonial-origin {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 12px;
    margin-bottom: 4px;
}

/* ─── BLOG CARDS ─── */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.blog-img {
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-body {
    padding: 24px;
}

.blog-cat {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.blog-body h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-body p {
    font-size: 14px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-light);
}

/* ─── BOOKING / INQUIRY FORM ─── */
.booking-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(201, 150, 58, 0.05);
    pointer-events: none;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.booking-text h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.booking-text p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 32px;
}

.booking-trust {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

.trust-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(201, 150, 58, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

/* Form Card */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-card h3 {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-card > p {
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-strong);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--sand-light);
    transition: border-color 0.2s;
    outline: none;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group textarea {
    min-height: 100px;
}

.form-privacy {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.form-success {
    display: none;
    background: rgba(201, 150, 58, 0.08);
    border: 1px solid rgba(201, 150, 58, 0.3);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    color: var(--gold-dark);
    font-size: 14px;
    margin-top: 16px;
}

/* WordPress wpcf7 / WPForms compatibility */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea,
.wpforms-field input,
.wpforms-field select,
.wpforms-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-strong);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--sand-light);
    outline: none;
}

.wpcf7 input[type="submit"],
.wpforms-submit {
    background: var(--gold);
    color: var(--white);
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.wpcf7 input[type="submit"]:hover,
.wpforms-submit:hover {
    background: var(--gold-dark);
}

/* ─── FAQ ─── */
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
    font-family: var(--font-serif);
    font-size: 19px;
    color: var(--navy);
    line-height: 1.4;
    padding: 4px 0;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 16px;
    transition: var(--transition);
}

.faq-item.open .faq-icon {
    background: var(--gold);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding-top: 16px;
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ─── CONTACT PAGE ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

.contact-info h2 {
    color: var(--navy);
    margin-bottom: 16px;
}

.contact-info p {
    margin-bottom: 36px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(201, 150, 58, 0.1);
    border: 1.5px solid rgba(201, 150, 58, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item h5 {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 15px;
    color: var(--text-dark);
    margin: 0;
}

.map-placeholder {
    background: var(--sand-mid);
    border-radius: var(--radius-lg);
    height: 300px;
    overflow: hidden;
    margin-top: 28px;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ─── SINGLE TOUR PAGE ─── */
.tour-hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.tour-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 39, 68, 0.85) 0%, rgba(26, 39, 68, 0.3) 60%);
    display: flex;
    align-items: flex-end;
}

.tour-hero-text {
    padding: 48px 0;
}

.tour-hero-text h1 {
    color: var(--white);
    font-size: clamp(32px, 5vw, 56px);
}

.tour-page-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
    padding: 60px 0;
}

.itinerary-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.day-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.itinerary-item h4 {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 8px;
}

.inc-exc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 40px 0;
    padding: 32px;
    background: var(--sand-light);
    border-radius: var(--radius-lg);
}

.inc-exc h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 16px;
}

.inc-list {
    list-style: none;
}

.inc-list li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-mid);
    display: flex;
    gap: 10px;
}

.inc-list li.yes::before {
    content: '✓';
    color: #22a06b;
    font-weight: 700;
}

.inc-list li.no::before {
    content: '✗';
    color: var(--terracotta);
    font-weight: 700;
}

/* Booking Widget (sidebar) */
.booking-widget {
    background: var(--white);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: sticky;
    top: 90px;
}

.price-display .price {
    font-family: var(--font-serif);
    font-size: 42px;
    color: var(--navy);
    line-height: 1;
}

.price-display .per {
    font-size: 14px;
    color: var(--text-light);
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
    background: var(--sand-light);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--gold);
}

.breadcrumb span {
    margin: 0 8px;
}

/* ─── NEWSLETTER ─── */
.newsletter {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    padding: 72px 0;
    text-align: center;
}

.newsletter h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
    margin: 0 auto 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 14px;
    outline: none;
}

/* ─── FOOTER ─── */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.6);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--white);
    display: block;
    text-decoration: none;
}

.footer-logo-sub {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    display: block;
    margin-bottom: 16px;
}

.footer-about {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.footer-col h5 {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

/* Footer navigation from wp_nav_menu() */
.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.footer-nav ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
    text-decoration: none;
}

.footer-nav ul li a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom a {
    color: var(--gold-light);
    text-decoration: none;
}

/* ─── WHATSAPP FLOATING BUTTON ─── */
.whatsapp-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
}

@keyframes pulse-wa {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0);
    }
}

/* ─── WORDPRESS CORE ─── */
/* Alignment classes */
.alignleft  { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.alignfull   { width: 100vw; margin-left: calc(50% - 50vw); }
.alignwide   { width: calc(100% + 80px); margin-left: -40px; }

/* WordPress image caption */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--text-light); text-align: center; margin-top: 8px; }

/* WordPress search form */
.search-form { display: flex; gap: 8px; }
.search-field { flex: 1; padding: 12px 16px; border: 1.5px solid var(--border-strong); border-radius: var(--radius); font-size: 14px; }
.search-submit { padding: 12px 20px; background: var(--gold); color: var(--white); border: none; border-radius: var(--radius); cursor: pointer; }

/* Pagination */
.pagination, .nav-links {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 48px 0;
    flex-wrap: wrap;
}

.page-numbers, .nav-links a {
    padding: 8px 16px;
    border: 1.5px solid var(--border-strong);
    border-radius: var(--radius);
    font-size: 13px;
    color: var(--text-mid);
    transition: var(--transition);
    text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover,
.nav-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* Comments */
.comments-area { padding: 48px 0; }
.comment-list { list-style: none; padding: 0; }
.comment { padding: 24px 0; border-bottom: 1px solid var(--border); }
.comment-author img { border-radius: 50%; width: 48px; height: 48px; }

/* ─── PAGE HEADER BANNER ─── */
.page-header {
    background: var(--navy);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-size: cover;
    background-position: center;
}

.page-header-inner {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--white);
    font-size: clamp(36px, 5vw, 64px);
    margin-bottom: 12px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    max-width: 560px;
}

/* ─── 404 PAGE ─── */
.error-404 {
    text-align: center;
    padding: 120px 24px;
}

.error-404 .error-code {
    font-family: var(--font-serif);
    font-size: 120px;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.error-404 h1 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 16px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .grid-4, .why-grid { grid-template-columns: repeat(2, 1fr); }
    .grid-3, .tours-grid, .testimonials-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .dest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .dest-card.tall { grid-row: auto; }
    .booking-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-text { padding-left: 0; }
    .tour-page-grid { grid-template-columns: 1fr; }
    .booking-widget { position: static; }
    .search-bar { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .grid-2 { grid-template-columns: 1fr; gap: 32px; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }
    .tours-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .main-navigation ul { display: none; }
    .hamburger { display: block; }
    .hero-badges { gap: 20px; }
    .search-bar { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .inc-exc { grid-template-columns: 1fr; }
    .about-img-grid { grid-template-columns: 1fr; }
    .about-img-main { grid-row: auto; height: 300px; }
    .dest-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .nav-cta { display: none; }
}

@media (max-width: 480px) {
    .grid-4 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-badges { flex-direction: column; gap: 16px; }
    .topbar .container { flex-direction: column; }
}
