/* ===================================
   MURAGATE TRAVEL - Corporate Website
   Modern Travel Agency Design
   =================================== */

/* --- CSS Custom Properties --- */
:root {
    --primary: #1B4D7A;
    --primary-dark: #143B5E;
    --primary-light: #2980b9;
    --accent: #F4A261;
    --accent-dark: #E76F51;
    --success: #2E7D32;
    --text: #1a1a2e;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* --- Typography --- */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.938rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-align: center;
    justify-content: center;
}

.btn--primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn--primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn--outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn--white {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.btn--white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

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

.btn--sm { padding: 8px 20px; font-size: 0.875rem; }
.btn--lg { padding: 16px 36px; font-size: 1rem; }

/* ===================================
   HEADER / NAVIGATION
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255,255,255,0.98);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    overflow: visible;
    position: relative;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text);
    letter-spacing: -0.02em;
}

.nav__logo strong {
    font-weight: 700;
    color: var(--primary);
}

.nav__logo-icon {
    width: 40px;
    height: 40px;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    padding: 8px 18px;
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--text-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav__link:hover,
.nav__link.active {
    color: var(--primary);
    background: rgba(27, 77, 122, 0.06);
}

.nav__cta {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(to bottom, rgba(15, 23, 42, 0.45), rgba(15, 23, 42, 0.75)),
        url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?w=1920&q=80') center/cover no-repeat;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero__container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero__badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -0.02em;
}

.hero .text-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, #FFCA28 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero .btn--outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__stat {
    text-align: center;
}

.hero__stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.hero__stat span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ===================================
   SECTION COMMON
   =================================== */
.section {
    padding: 100px 0;
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section__badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(27, 77, 122, 0.08);
    color: var(--primary);
    font-size: 0.813rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text);
    letter-spacing: -0.02em;
}

.section__text {
    font-size: 1.063rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   SERVICES
   =================================== */
.services {
    background: var(--bg-light);
}

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

.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

.service-card__icon svg {
    width: 100%;
    height: 100%;
}

.service-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.service-card__text {
    font-size: 0.938rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.tour-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.tour-card__image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: var(--transition);
}

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

.tour-card {
    overflow: hidden;
}

.tour-card__image-text {
    display: none;
}

.tour-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tour-card__badge--green { background: var(--success); }
.tour-card__badge--orange { background: var(--accent-dark); }

.tour-card__content {
    padding: 24px;
}

.tour-card__location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.813rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 10px;
}

.tour-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--text);
}

.tour-card__text {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.tour-card__meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.tour-card__duration,
.tour-card__rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.813rem;
    font-weight: 500;
    color: var(--text-light);
}

.tour-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tour-card__price-from {
    display: block;
    font-size: 0.75rem;
    color: var(--text-lighter);
    font-weight: 500;
}

.tour-card__price-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.tour-card__price-per {
    font-size: 0.75rem;
    color: var(--text-lighter);
    font-weight: 400;
}

.tours-preview__cta {
    text-align: center;
    margin-top: 48px;
}

/* ===================================
   WHY CHOOSE US
   =================================== */
.why-us {
    background: var(--bg-light);
}

.why-us__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.why-us__feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-us__feature-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.why-us__feature h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}

.why-us__feature p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
}

.why-us__card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.why-us__card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.why-us__card-header h4 {
    font-size: 1.125rem;
    font-weight: 700;
}

.why-us__card p {
    font-size: 0.938rem;
    color: var(--text-light);
    line-height: 1.6;
}

.why-us__testimonial {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 32px;
    color: #fff;
}

.why-us__stars {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--accent);
}

.why-us__testimonial p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    opacity: 0.95;
}

.why-us__author strong {
    display: block;
    font-size: 0.938rem;
}

.why-us__author span {
    font-size: 0.813rem;
    opacity: 0.7;
}

/* ===================================
   DESTINATIONS
   =================================== */
.destinations__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.destination-card {
    border-radius: var(--radius-lg);
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.destination-card--large {
    grid-column: span 2;
}

.destination-card__content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.destination-card__content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.destination-card__content span {
    font-size: 0.875rem;
    opacity: 0.85;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: 60px 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent) 100%);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-card h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.cta-card p {
    font-size: 1.063rem;
    max-width: 600px;
    margin: 0 auto 32px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.cta-card__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 80px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer__brand p {
    font-size: 0.938rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-top: 20px;
    margin-bottom: 24px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.footer__social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer__links h4,
.footer__contact h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer__links ul li {
    margin-bottom: 10px;
}

.footer__links a {
    font-size: 0.938rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer__contact ul li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer__contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--accent);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__bottom p {
    font-size: 0.813rem;
    color: rgba(255,255,255,0.4);
}

.footer__bottom-links {
    display: flex;
    gap: 24px;
}

.footer__bottom-links a {
    font-size: 0.813rem;
    color: rgba(255,255,255,0.4);
}

.footer__bottom-links a:hover {
    color: var(--accent);
}

/* ===================================
   ABOUT PAGE
   =================================== */
.page-hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(27, 77, 122, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(244, 162, 97, 0.06) 0%, transparent 50%);
}

.page-hero__content {
    position: relative;
    z-index: 2;
}

.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.page-hero__breadcrumb a {
    color: var(--primary);
    font-weight: 500;
}

.page-hero__breadcrumb a:hover {
    text-decoration: underline;
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.page-hero__text {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
}

/* About Content */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro__visual {
    background: 
        linear-gradient(to bottom, rgba(27, 77, 122, 0.25), rgba(27, 77, 122, 0.45)),
        url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=800&q=80') center/cover no-repeat;
    border-radius: var(--radius-xl);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.about-intro__visual::before {
    display: none;
}

.about-intro__visual svg {
    display: none;
}

.about-intro__content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-intro__content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Values */
.values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.value-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.value-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.75rem;
}

.value-card__icon--blue { background: rgba(27, 77, 122, 0.1); }
.value-card__icon--orange { background: rgba(244, 162, 97, 0.15); }
.value-card__icon--green { background: rgba(46, 125, 50, 0.1); }

.value-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.938rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Company Info */
.company-info {
    background: var(--bg-light);
}

.company-info__card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid var(--border);
    max-width: 800px;
    margin: 0 auto;
}

.company-info__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.company-info__item {
    padding: 20px;
    border-radius: var(--radius);
    background: var(--bg-light);
}

.company-info__item h4 {
    font-size: 0.813rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-lighter);
    margin-bottom: 8px;
    font-weight: 600;
}

.company-info__item p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

/* ===================================
   TOURS PAGE
   =================================== */
.tours-filter {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}

.tours-filter__btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: #fff;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.tours-filter__btn:hover,
.tours-filter__btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.tours-page .tours__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.tours-page__more {
    text-align: center;
    padding: 60px 0 0;
}

.tours-page__more p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
}

.contact-info {
    padding: 40px;
    background: var(--primary);
    border-radius: var(--radius-xl);
    color: #fff;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-info > p {
    font-size: 0.938rem;
    opacity: 0.8;
    margin-bottom: 36px;
    line-height: 1.6;
}

.contact-info__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

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

.contact-info__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info__item h4 {
    font-size: 0.938rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info__item p {
    font-size: 0.875rem;
    opacity: 0.8;
    line-height: 1.5;
}

.contact-info__social {
    display: flex;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.contact-info__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.contact-info__social a:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.contact-form {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--border);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-form > p {
    font-size: 0.938rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form__group {
    margin-bottom: 16px;
}

.form__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form__input,
.form__textarea,
.form__select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-primary);
    font-size: 0.938rem;
    color: var(--text);
    background: var(--bg-light);
    transition: var(--transition);
    outline: none;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27, 77, 122, 0.1);
    background: #fff;
}

.form__textarea {
    min-height: 140px;
    resize: vertical;
}

.form__submit {
    margin-top: 8px;
}

/* Map placeholder */
.contact-map {
    margin-top: 60px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* ===================================
   ANIMATIONS
   =================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .why-us__wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .destination-card--large {
        grid-column: span 2;
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 100px 24px 24px;
        gap: 4px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease;
        z-index: 998;
    }

    .nav__menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav__link {
        width: 100%;
        padding: 14px 18px;
        font-size: 1rem;
    }

    .nav__cta {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .hero__stats {
        gap: 30px;
    }

    .hero__stat strong {
        font-size: 1.5rem;
    }

    .section {
        padding: 70px 0;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .tours__grid,
    .tours-page .tours__grid {
        grid-template-columns: 1fr;
    }

    .destinations__grid {
        grid-template-columns: 1fr;
    }

    .destination-card--large {
        grid-column: span 1;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-card {
        padding: 48px 28px;
    }

    .values__grid {
        grid-template-columns: 1fr;
    }

    .company-info__grid {
        grid-template-columns: 1fr;
    }

    .form__row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__stats {
        flex-direction: column;
        gap: 20px;
    }

    .btn--lg {
        width: 100%;
    }

    .cta-card__actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================
   BOOKING MODAL
   ========================================== */

.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}

.booking-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.booking-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.booking-modal__container {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    max-width: 640px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.3s ease;
}

.booking-modal.active .booking-modal__container {
    transform: translateY(0) scale(1);
}

.booking-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #333;
}

.booking-modal__close:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.booking-modal__header {
    margin-bottom: 28px;
    text-align: center;
}

.booking-modal__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.booking-modal__tour-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.booking-modal__tour-name {
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

.booking-modal__tour-price {
    background: var(--accent);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.booking-modal__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.booking-modal__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.booking-modal__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.booking-modal__field--full {
    grid-column: 1 / -1;
}

.booking-modal__field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
}

.booking-modal__field input,
.booking-modal__field select,
.booking-modal__field textarea {
    padding: 12px 14px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #fafafa;
    color: #333;
}

.booking-modal__field input:focus,
.booking-modal__field select:focus,
.booking-modal__field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
    background: #fff;
}

.booking-modal__field input::placeholder,
.booking-modal__field textarea::placeholder {
    color: #aaa;
}

.booking-modal__field textarea {
    resize: vertical;
    min-height: 80px;
}

.booking-modal__actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.booking-modal__actions .btn {
    flex: 1;
    padding: 14px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn--outline {
    background: transparent;
    border: 2px solid #ddd;
    color: #555;
}

.btn--outline:hover {
    border-color: #bbb;
    background: #f5f5f5;
}

.booking-modal__disclaimer {
    font-size: 0.78rem;
    color: #999;
    text-align: center;
    margin-top: 4px;
    line-height: 1.5;
}

.book-now-btn {
    cursor: pointer;
    border: none;
}

/* Booking Modal Responsive */
@media (max-width: 600px) {
    .booking-modal__container {
        padding: 24px 20px;
        width: 95%;
        max-height: 95vh;
    }

    .booking-modal__row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .booking-modal__title {
        font-size: 1.4rem;
    }

    .booking-modal__actions {
        flex-direction: column;
    }

    .booking-modal__tour-info {
        flex-direction: column;
        gap: 8px;
    }
}

/* ==========================================
   TOUR DETAIL PANEL
   ========================================== */

.tour-detail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}

.tour-detail.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.tour-detail__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
}

.tour-detail__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 580px;
    max-width: 100%;
    height: 100%;
    background: #fff;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.2);
}

.tour-detail.active .tour-detail__panel {
    transform: translateX(0);
}

.tour-detail__header-bar {
    position: sticky;
    top: 0;
    background: #fff;
    padding: 16px 24px;
    border-bottom: 1px solid #eee;
    z-index: 10;
}

.tour-detail__back {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    padding: 4px 0;
    transition: opacity 0.2s ease;
}

.tour-detail__back:hover {
    opacity: 0.7;
}

.tour-detail__hero {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.tour-detail__body {
    padding: 28px 24px 130px;
}

.tour-detail__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 16px;
}

.tour-detail__meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.tour-detail__meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #555;
}

.tour-detail__section {
    margin-bottom: 28px;
}

.tour-detail__section h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.tour-detail__section p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #444;
}

.td-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.td-list li {
    padding: 7px 0 7px 28px;
    position: relative;
    font-size: 0.92rem;
    color: #444;
    line-height: 1.5;
}

.td-list--highlights li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #F4A261;
    font-size: 0.85rem;
}

.td-list--included li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 700;
}

.td-list--excluded li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 700;
}

.td-heading--green { color: #059669 !important; }
.td-heading--red { color: #dc2626 !important; }

.tour-detail__grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.td-meeting-box {
    background: #f0f7ff;
    padding: 16px;
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

.tour-detail__book-bar {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 580px;
    max-width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    z-index: 10;
}

.tour-detail__price-box {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.tour-detail__price-box span {
    font-size: 0.85rem;
    color: #777;
}

.tour-detail__price-box strong {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Tour card clickable + view detail link */
.tour-card[data-tour-id] {
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tour-card[data-tour-id]:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.tour-card__view-detail {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 8px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.tour-card__view-detail:hover {
    color: var(--accent);
}

.tour-card__view-detail span {
    transition: transform 0.2s ease;
    display: inline-block;
}

.tour-card__view-detail:hover span {
    transform: translateX(4px);
}

/* Tour Detail Responsive */
@media (max-width: 640px) {
    .tour-detail__panel {
        width: 100%;
    }
    .tour-detail__book-bar {
        width: 100%;
        padding: 12px 16px;
    }
    .tour-detail__hero {
        height: 200px;
    }
    .tour-detail__title {
        font-size: 1.3rem;
    }
    .tour-detail__grid-2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .tour-detail__body {
        padding: 20px 16px 150px;
    }
    .tour-detail__book-bar {
        flex-direction: column;
    }
    .tour-detail__book-bar .btn {
        width: 100%;
    }
}
