/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: Arial, sans-serif;
}


/* NAVBAR */

.navbar{

display:flex;
justify-content:space-between;
align-items:center;

padding:15px 60px;

background:#0E3B2E;

position:sticky;
top:0;

z-index:1000;

}


.logo img{

height:60px;

}


/* NAV LINKS */

.nav-links{

display:flex;
list-style:none;

}


.nav-links li{

margin-left:30px;

}


.nav-links a{

text-decoration:none;
color:white;
font-weight:500;

}


.nav-links a:hover{

color:#D4A017;

}


/* Hero Section with Video Background */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Gradient overlay on top of video for readability */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    z-index: 1;
}

/* Video styling */
.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* Content above video */
.hero .content {
    position: relative;
    z-index: 2; /* ensures text is above overlay & video */
    max-width: 90%;
    display: flex;           /* add this */
    flex-direction: column;  /* add this */
    align-items: center;     /* add this */
    gap: 15px;               /* controls spacing between h1, p, and btn */
}

.hero h1{
    font-size:3rem;
    margin:0 0 10px 0;   /* top right bottom left */
}

.hero p{
    font-size:1.3rem;
    max-width:600px;
    margin:0 0 20px 0;   /* removes browser default margins */
}

.hero .btn{
    padding:12px 25px;
    background:#1F7A4C;
    color:white;
    text-decoration:none;
    border-radius:5px;
    display:inline-block;
}

.btn:hover{

background:#145a36;

}


/* FEATURED SAFARIS */
.featured {
    padding: 80px 8%;
    text-align: center;
    background: linear-gradient(180deg, #f9f7f4 0%, #fff 100%);
}

.featured h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0a2e1f;
    margin-bottom: 12px;
}

.featured .section-tag {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D4A017;
    margin-bottom: 6px;
}

.featured .section-divider {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #D4A017, #1F7A4C);
    margin: 16px auto 40px;
    border-radius: 3px;
}

/* Container */
.tour-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap; /* responsive */
    margin-top: 40px;
}

/* Card */
.tour-card {
    background: #fff;
    padding: 28px;
    border-radius: 14px;
    width: 260px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* Title */
.tour-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a2e1f;
    margin-bottom: 12px;
}

/* Link Button */
.tour-card a {
    display: inline-block;
    margin-top: 18px;
    padding: 10px 20px;
    background: linear-gradient(90deg, #1F7A4C, #145a36);
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.tour-card a:hover {
    background: linear-gradient(90deg, #145a36, #0a2e1f);
    transform: translateY(-2px);
}



/* WHY CHOOSE US VIDEO BACKGROUND */

.why-us{
position:relative;
height:auto;
padding:80px 10%;
text-align:center;
overflow:hidden;
color:white;
}

.why-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:0;
}

.why-overlay{
position:relative;
z-index:1;
}

.why-container{
display:flex;
justify-content:center;
gap:30px;
margin-top:40px;
flex-wrap:wrap;
}

.why-card{
background:rgba(0,0,0,0.6);
padding:30px;
width:250px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
transition:transform 0.3s;
}

.why-card:hover{
transform:translateY(-10px);
}

.why-card h3{
margin-bottom:15px;
color:#D4A017;
}

.why-card p{
font-size:14px;
line-height:1.6;
color:white;
}

/* GALLERY PREVIEW */

.gallery-preview{

padding:80px 10%;
text-align:center;

}

.gallery-container{

display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin-top:40px;

}

.gallery-card{

width:250px;
height:180px;
overflow:hidden;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:transform 0.3s;

}

.gallery-card img{

width:100%;
height:100%;
object-fit:cover;

}

.gallery-card:hover{

transform:scale(1.05);

}

/* CALL-TO-ACTION FORM */

.cta {
    padding: 100px 10%;
    text-align: center;
    background: #0a2e1f;
    color: white;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: #D4A017;
}

.cta-subtitle {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D4A017;
    margin-bottom: 12px;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.cta-divider {
    width: 60px;
    height: 2px;
    background: #D4A017;
    margin: 20px auto 40px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 520px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.cta-form input,
.cta-form textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    color: white;
    font-size: 14px;
    transition: border 0.3s, background 0.3s;
    outline: none;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
    color: rgba(255,255,255,0.45);
}

.cta-form input:focus,
.cta-form textarea:focus {
    border-color: #D4A017;
    background: rgba(255,255,255,0.12);
}

.cta-form textarea {
    resize: none;
    height: 110px;
}

.cta-form button {
    width: 100%;
    padding: 15px;
    background: #D4A017;
    color: #0a2e1f;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.cta-form button:hover {
    background: #e6b420;
    transform: translateY(-2px);
}

/* FOOTER */

.footer{
background:#0E3B2E;
color:white;
padding:50px 10% 20px 10%;
}

.footer-container{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:20px;
}

.footer-section h3{
margin-bottom:15px;
color:#D4A017;
}

.footer-section a{
color:white;
text-decoration:none;
}

.footer-section a:hover{
color:#D4A017;
}

.footer-section ul{
list-style:none;
padding:0;
}

.footer-section ul li{
margin-bottom:10px;
}

.footer-bottom{
text-align:center;
margin-top:30px;
font-size:14px;
color:#f5f5f5;
}

/* HERO ABOUT SECTION */

.hero-about {
    height: 60vh;
    background: url('../images/view.jpeg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.section-tag {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D4A017;
    margin-bottom: 10px;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: #D4A017;
    margin: 16px auto 30px;
}

.about-story {
    padding: 80px 10%;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-story h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0a2e1f;
}

.about-story p {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 16px;
}

/* Gradient instead of flat dark overlay — preserves image clarity */
.hero-about::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.55) 100%
    );
}

/* Gold bottom accent line */
.hero-about::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 4px;
    background: #D4A017;
}

.hero-about .hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-about .hero-tag {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #D4A017;
}

.hero-about h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

.hero-about .hero-divider {
    width: 50px;
    height: 2px;
    background: #D4A017;
}

.hero-about p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 550px;
    line-height: 1.7;
    margin: 0;
}
/* ABOUT STORY */

.about-story{
padding:80px 10%;
text-align:center;
}

.about-story h2{
margin-bottom:20px;
color:#1F7A4C;
}

.about-story p{
font-size:16px;
line-height:1.8;
}

/* TEAM SECTION */

.team{
padding:80px 10%;
text-align:center;
background:#f9f9f9;
}

.team h2{
margin-bottom:40px;
color:#1F7A4C;
}

.team-container{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.team-member{
width:250px;
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:transform 0.3s;
}

.team-member:hover{
transform:translateY(-10px);
}

.team-member img{
width:100%;
height:250px;
object-fit:cover;
}

.team-member h3{
margin:15px 0 5px 0;
}

.team-member p{
margin-bottom:15px;
font-size:14px;
color:#555;
}

/* ==============================
   TOURS LISTING PAGE
   ============================== */

.tours-page {
    padding: 100px 10%;
    text-align: center;
    background: #f9f7f4;
}

.tours-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.tour-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8e4dc;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 420px;
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.tour-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.tour-card:hover .tour-image img {
    transform: scale(1.06);
}

.tour-price {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: #D4A017;
    color: #0a2e1f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 4px;
}

.tour-body {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tour-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0a2e1f;
    margin: 0 0 8px;
}

.tour-body p {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 12px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-body .btn {
    align-self: flex-start;
    padding: 9px 20px;
    background: #1F7A4C;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.3s;
}

.tour-body .btn:hover {
    background: #145a36;
}

/* ==============================
   TOUR DETAIL PAGE — PREMIUM
   ============================== */

/* Hero */
.tour-hero {
    position: relative;
    height: 85vh;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.tour-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
    z-index: 0;
}

.tour-hero.loaded .tour-hero-bg {
    transform: scale(1);
}

.tour-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 46, 31, 0.92) 0%,
        rgba(10, 46, 31, 0.3) 50%,
        rgba(0,0,0,0.15) 100%
    );
    z-index: 1;
}

.tour-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, #D4A017, #1F7A4C);
    z-index: 3;
}

.tour-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 8% 70px;
    max-width: 900px;
}

.tour-hero-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #D4A017;
    border: 1px solid rgba(212,160,23,0.4);
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 20px;
}

.tour-hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: 1px;
}

.tour-hero-meta {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.tour-hero-price {
    font-size: 1rem;
    font-weight: 600;
    color: #D4A017;
    letter-spacing: 1px;
    white-space: nowrap;
}

.tour-hero-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    max-width: 560px;
    padding-top: 4px;
    border-left: 1px solid rgba(212,160,23,0.4);
    padding-left: 20px;
    margin: 0;
}

/* Two-column layout */
.tour-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 5%;
    align-items: start;
}

/* About */
.tour-about {
    margin-bottom: 60px;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #D4A017;
    display: block;
    margin-bottom: 12px;
}

.tour-about h2,
.tour-itinerary h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0a2e1f;
    margin: 0 0 6px;
    line-height: 1.2;
}

.gold-rule {
    width: 50px;
    height: 2px;
    background: #D4A017;
    margin: 16px 0 28px;
    border: none;
}

.tour-about p {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
}

/* Video */
.tour-video-wrap {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    position: relative;
}

.tour-video-wrap::before {
    content: '';
    display: block;
    padding-top: 56.25%;
}

.tour-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Itinerary timeline */
.tour-itinerary {
    margin-top: 60px;
}

.itinerary-timeline {
    margin-top: 40px;
    position: relative;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, #D4A017, rgba(212,160,23,0.1));
}

.timeline-item {
    display: flex;
    gap: 28px;
    margin-bottom: 44px;
    position: relative;
}

.timeline-dot {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #0a2e1f;
    border: 2px solid #D4A017;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 11px;
    font-weight: 700;
    color: #D4A017;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.timeline-dot span:first-child {
    font-size: 8px;
    opacity: 0.7;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.timeline-body {
    flex: 1;
    padding-top: 6px;
}

.timeline-body h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0a2e1f;
    margin: 0 0 10px;
}

.timeline-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.85;
    margin: 0;
}

.timeline-img {
    width: 100%;
    max-width: 440px;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 16px;
    display: block;
}

/* Sidebar */
.tour-sidebar {
    position: sticky;
    top: 100px;
    padding-left: 50px;
}

.sidebar-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e8e4dc;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    margin-bottom: 24px;
}

.sidebar-card-header {
    background: #0a2e1f;
    padding: 24px;
}

.sidebar-card-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0 0 4px;
    line-height: 1.3;
}

.price-display {
    font-size: 1.7rem;
    font-weight: 600;
    color: #D4A017;
    display: block;
    margin-bottom: 8px;
}

.price-label {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.sidebar-card-body {
    padding: 24px;
}

.sidebar-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.sidebar-info-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0ece4;
    font-size: 13px;
}

.sidebar-info-list li:last-child {
    border-bottom: none;
}

.info-label {
    color: #999;
    font-weight: 500;
}

.info-val {
    color: #0a2e1f;
    font-weight: 600;
    text-align: right;
    max-width: 60%;
}

.sidebar-book-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #1F7A4C, #145a36);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.sidebar-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31,122,76,0.3);
    color: white;
    background: linear-gradient(135deg, #1F7A4C, #145a36);
}

.sidebar-enquire-btn {
    display: block;
    width: 100%;
    padding: 13px;
    background: transparent;
    color: #0a2e1f;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid #0a2e1f;
    transition: background 0.2s, color 0.2s;
    box-sizing: border-box;
}

.sidebar-enquire-btn:hover {
    background: #0a2e1f;
    color: white;
}

/* Tour final CTA */
.tour-final-cta {
    background: #0a2e1f;
    padding: 80px 10%;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.tour-final-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, #D4A017, #1F7A4C);
}

.tour-final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 12px;
}

.tour-final-cta p {
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    margin: 0 0 32px;
}

/* Tour responsive */
@media (max-width: 960px) {
    .tour-layout {
        grid-template-columns: 1fr;
        padding: 50px 6%;
    }
    .tour-sidebar {
        padding-left: 0;
        position: static;
    }
    .tour-hero-content {
        padding: 0 6% 50px;
    }
    .tour-hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .tour-hero-desc {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(212,160,23,0.3);
        padding-top: 12px;
    }
    .itinerary-timeline::before {
        display: none;
    }
}

/* DESTINATIONS PAGE */

.destinations-page {
    padding: 100px 10%;
    text-align: center;
    background: #f9f7f4;
}

.destinations-page .section-tag {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D4A017;
    margin-bottom: 10px;
}

.destinations-page h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a2e1f;
    margin: 0;
}

.destination-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

/* Card is now full-image with overlay */
.destination-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 380px;
    cursor: pointer;
}

 .destination-card img {
    position: absolute;  /* ADD THIS */
    inset: 0;            /* ADD THIS */
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    z-index: 0;          /* ADD THIS */
}

.destination-card:hover img {
    transform: scale(1.06);
}

/* Dark gradient from bottom */
.destination-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.1) 60%
    );
    z-index: 1;
}

/* Country badge top left */
.destination-card .badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #D4A017;
    color: #0a2e1f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 3;  /* was 2, now 3 */
}

/* Text content sits at the bottom */
.destination-card .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    text-align: left;
    z-index: 2;
}

.destination-card h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.destination-card p {
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 16px;
}

.destination-card .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #D4A017;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: none;
    padding: 0;
    transition: gap 0.3s;
}

.destination-card .btn:hover {
    gap: 10px;
    background: none;
}

/* OVERVIEW SECTION */
.dest-overview {
    padding: 80px 10%;
    background: #f9f7f4;
}

.dest-overview-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
    text-align: left;
}

.overview-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e8e4dc;
}

.overview-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.overview-card h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #D4A017;
    margin: 0 0 8px;
}

.overview-card p,
.overview-card li {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.overview-card ul {
    padding-left: 16px;
    margin: 0;
}

.dest-map {
    text-align: left;
}

.dest-map h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #D4A017;
    margin-bottom: 16px;
}

/* ITINERARY SECTION */
.dest-itinerary {
    padding: 80px 10%;
    background: white;
}

.dest-itinerary-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.itinerary-list {
    margin-top: 40px;
    text-align: left;
}

.itinerary-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f0ece4;
}

.itinerary-item:last-child {
    border-bottom: none;
}

.itinerary-image {
    flex-shrink: 0;
    width: 200px;
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
}

.itinerary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.itinerary-body {
    flex: 1;
}

.day-badge {
    display: inline-block;
    background: #D4A017;
    color: #0a2e1f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.itinerary-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a2e1f;
    margin: 0 0 10px;
}

.itinerary-body p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* RATES SECTION */
.dest-rates {
    padding: 80px 10%;
    background: #f9f7f4;
}

.dest-rates-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8e4dc;
    background: white;
}

.rates-table thead th {
    background: #0a2e1f;
    color: white;
    padding: 16px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rates-table tbody td {
    padding: 16px;
    border-bottom: 1px solid #f0ece4;
    font-size: 15px;
    color: #333;
    text-align: center;
}

.rates-table tbody tr:last-child td {
    border-bottom: none;
}

.rates-table tbody tr:hover td {
    background: #f9f7f4;
}

.rate-price {
    font-weight: 700;
    font-size: 1.1rem !important;
    color: #1F7A4C !important;
}

.rate-book-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #1F7A4C;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    transition: background 0.3s;
}

.rate-book-btn:hover {
    background: #145a36;
}

/* FINAL CTA */
.dest-final-cta {
    padding: 80px 10%;
    background: #0a2e1f;
    text-align: center;
    color: white;
}

.dest-final-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 12px;
}

.dest-final-cta p {
    color: rgba(255,255,255,0.75);
    margin: 0 0 30px;
    font-size: 15px;
}

/* GALLERY PAGE */

.gallery-page {
    padding: 100px 10%;
    text-align: center;
    background: #f9f7f4;
}

.gallery-subtitle {
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D4A017;
    margin-bottom: 10px;
}

.gallery-page h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a2e1f;
    letter-spacing: 1px;
    margin: 0;
}

.gallery-divider {
    width: 60px;
    height: 2px;
    background: #D4A017;
    margin: 18px auto 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

/* Caption overlay — hidden by default */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-overlay p {
    font-size: 14px;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Hover effects */
.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
}

/* Make some cards taller for a mosaic feel */
.gallery-card:nth-child(3n+1) {
    grid-row: span 1;
}

.gallery-card:nth-child(5n+2) {
    grid-row: span 2;
}

/* CONTACT PAGE */

.contact-page{
padding:80px 10%;
text-align:center;
}

.contact-info{
margin-bottom:50px;
}

.contact-info h2{
color:#1F7A4C;
margin-bottom:20px;
}

.contact-info p{
font-size:16px;
margin-bottom:10px;
}

.contact-info a{
color:#1F7A4C;
text-decoration:none;
}

.contact-form{
max-width:600px;
margin:0 auto;
display:flex;
flex-direction:column;
gap:15px;
}

.contact-form h2{
color:#1F7A4C;
margin-bottom:15px;
}

.contact-form input,
.contact-form textarea{
padding:12px;
border-radius:5px;
border:1px solid #ccc;
font-size:14px;
width:100%;
}

.contact-form textarea{
resize:none;
height:120px;
}

.contact-form button{
padding:12px;
background:#1F7A4C;
color:white;
border:none;
border-radius:5px;
font-size:16px;
cursor:pointer;
transition:background 0.3s;
}

.contact-form button:hover{
background:#145a36;
}

#google_translate_element {
    position: fixed;
    top: 10px;
    right: 20px;
    z-index: 1000;
}

.goog-te-banner-frame.skiptranslate { display: none !important; } 
body { top: 0 !important; }  /* removes Google's top banner */

/* DESTINATION DETAIL PAGE */
.dest-detail {
    padding: 100px 10%;
    background: #f9f7f4;
}

.dest-detail-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.dest-detail-body {
    flex: 1;
}

.dest-detail-body p {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 30px;
}

.dest-detail-image {
    flex: 1;
}

.dest-detail-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
}

.dest-cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #1F7A4C;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s;
}

.dest-cta-btn:hover {
    background: #145a36;
    transform: translateY(-2px);
}

/* PAYMENT SECTION */
.payment-section {
    text-align: center;
    margin: 40px auto;
    padding: 40px;
    max-width: 600px;
    background: #0a2e1f;
    border-radius: 12px;
    border-top: 4px solid #D4A017;
}

.payment-section h2 {
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 10px;
}

.payment-section p {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    margin: 0 0 24px;
}

.pay-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #D4A017;
    color: #0a2e1f;
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s;
}

.pay-btn:hover {
    background: #e6b420;
    transform: translateY(-2px);
}

/* FOOTER */

footer{

background:#0E3B2E;

color:white;

text-align:center;

padding:20px;

margin-top:50px;

}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    z-index: 9999;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 28px rgba(37,211,102,0.5);
}