@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

:root {
  --leaf-green: #228B22;
 --topbar-bg: #228B22; 
  --accent: #ff9800;
}

body {
  margin: 0;
padding: 0;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}



.top-bar {
background-color: var(--topbar-bg);
  display: flex;
  justify-content: space-between; /* left vs right */
  align-items: center;
  padding: 8px 30px;
  font-size: 15px;
}


.top-bar-left a,
.top-bar-right a,
.top-bar-right span {
  color: #fff;             /* white text for contrast */
  text-decoration: none;
  font-weight: 600;
}

.top-bar a:hover {
 color: var(--accent); /* orange hover accent */
  text-decoration: underline;
}

.logo-title {
  display: flex;
margin-right: 80px;   
 align-items: center;
color: #f7c65a;
}

.logo {
  display: inline-block;
  font-size: 30px;          /* slightly smaller for two rows */
  color: green !important;  /* green text */
  margin-left: 8px;
  text-align: center;       /* center the two rows */
  line-height: 1.2;         /* tighter spacing between rows */
  font-weight: bold;        /* make it stand out */
  text-shadow: none;        /* remove yellow glow */
   white-space: nowrap;
}


.logo-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;          /* white circle background */
  border-radius: 50%;        /* makes it circular */
  width: 100px;
  height: 100px;
  overflow: hidden;
  margin-left: 10px;
}

.head-title  {

margin: 0px;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* ensures logo fits nicely */
}

.header-right {
  display: flex;
  align-items: center;
 gap: 0 !important;        /* remove flex gap */
color: green;
 font-weight: bold;  
font-size: 18px;  
 margin-left: 200px;
}

/* Header */
.site-header {
  display: flex;
justify-content: flex-start;
  align-items: center;
  background: #f9f9f9;
  color: green;
height: 120px;
  padding: 0 20px; /* spacing left/right */

 }

.site-header a {
  color: green;
  text-decoration: none;
}

.list {
     display: flex;
  list-style: none;
   gap: 20px;
  margin-right: 0 !important; /* small controlled spacing before flag */
  padding: 0px;
  white-space: nowrap; 

}

.list li a{
display: block;
  color: green;
  text-decoration: none;
  transition: background 0.3s;
white-space: nowrap;
font-size: 15px;
}

/* Hover effect */
.list li a:hover {
  background: var(--accent);   /* orange background */
color: #000;              /* black text for contrast */
  transform: scale(1.05);      /* slight zoom for impressive feel */
}

/* Active (clicked) effect */
.listl li a:active,
.listl li a.active {     /* :active = click, .active = current page */
background: #32CD32;         /* lime green highlight */
color: #fff;
box-shadow: 0 0 10px rgba(247,198,90,0.8); /* glowing effect */
}

.dropdown {
  position: relative;
}

.dropdown-menu {
 list-style: none;
  display: none;        /* Hidden on page load */
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  padding: 10px 0;
  min-width: 160px;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 9999;
}



/* Show dropdown items normally */
.dropdown-menu a {
  display: block;       /* FIXED */
  color: red;
  text-decoration: none;
  padding: 8px 12px;
}

.dropdown-menu li a:hover {
  background: var(--accent);
  color: #000;
}

#google_translate_element {
  position: absolute;
  left: -9999px;
}


#language-switcher {
  display: flex;
  position: relative; /* stays inside header */
margin-left: 0 !important; /* override any default spacing */
}

#language-switcher img {
  width: 30px;
  height: auto;
  cursor: pointer;
}


#language-switcher img,
  #language-switcher span {
    transition: opacity 1s ease; /* smooth fade */
  }
  .fade-out {
    opacity: 0;
  }
  .fade-in {
    opacity: 1;
  }



/* Hero slideshow */
.hero {
  position: relative;
width: 100%;
height: calc(100vh - 120px); /* subtract header height */
  overflow:hidden;


}

.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slideshow img {
  position: absolute;

  width: 100%;
height: 100%;
 object-fit: cover;   /* ensures full coverage */
object-position: center; /* keeps center visible */
  opacity: 0;
  transition: opacity 1s ease-in-out; /* fade effect */

}


.slideshow img.active {
  opacity: 1;
z-index: 1;
}


/* ✅ Mobile fallback: show full image without cropping */
@media (max-width: 768px) {
  .hero {
    height: 60vh; /* smaller hero height for mobile */
  
  }

  .slideshow img {
    object-fit: contain;   /* show full image */
        /* black bars if aspect ratio differs */
  }
}

.slogan {
  position: absolute;
  top: 140px;
  left: 40px;
  color: #fff;
text-alignment:center;
  padding: 15px 20px;
  border-radius: 5px;
 max-width: 90%; /* prevent overflow on small screens */
z-index: 2;  /*ensures it stays above images */

}


/* Responsive text sizing */
.slogan h1 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.5rem); 
  /* min size 1.5rem, scales with viewport, max 2.5rem */
}

.slogan p {
  margin: 5px 0 0;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

/* Extra adjustments for very small screens */
@media (max-width: 600px) {
  .slogan {
    top: 20px;
    left: 20px;
    padding: 10px 15px;
  }

}
/* Sections */

.popular-packages {
  text-align: center;
  padding: 40px 40px;
margin: auto 180px;
}

.package-grid {
  display: flex;              /* horizontal layout */
  justify-space-between;    /* center the packages */
  gap: 20px;                  /* spacing between items */
  flex-wrap: wrap;            /* wrap on small screens */
}

.package {
flex:1;
  min-width: 250px;
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
text-align: center;
}

.package img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.package h3 {
  margin: 10px 0 5px;
  color: var(--leaf-green);
}

.package p {
  font-size: 0.9rem;
 margin-bottom: 15px;
}

/* Action buttons */
.package-actions {
  display: flex;
  justify-content: space-around;
  padding: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: bold;
  color: #fff;
}

.btn.whatsapp {
  background: #25D366;
}

.btn.call {
  background: #228B22; /* leaf green */
}

.btn.enquiry {
  background: #ff9800; /* accent orange */
}

.btn img {
  width: 18px;
  height: 18px;
}
.free-cancel {
  text-align: center;
  padding: 20px 20px;
}

.daytrips {
  text-align: center;
  padding: 20px 20px;
;
}

.trip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 cards per row */
  gap: 20px;
}

.trip {
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  text-align: center;
  padding-bottom: 10px;
}

.trip img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.trip h3 {
  margin: 1px 0 1px;
  color: var(--leaf-green);
}

.trip p {
  font-size: 0.9rem;
  margin-bottom: 1px;
}

/* Action buttons */
.trip-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: bold;
  color: #fff;
}

.btn.whatsapp { background: #25D366; }
.btn.enquiry  { background: #ff9800; }
.btn.call     { background: #228B22; }

.btn img {
  width: 18px;
  height: 18px;
}

/* Responsive: fewer columns on smaller screens */
@media (max-width: 1024px) {
  .trip-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .trip-grid { grid-template-columns: 1fr; }
  .trip-actions { 
      display: flex;
    flex-direction: row;      /* Side by side */
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap; 
      
      
  } 
}


.reviews {
  text-align: center;
  padding: 20px 20px;
}


.site-footer {
  background: var(--leaf-green); /* same as header */
  color: #fff;
  padding: 40px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  padding-bottom: 5px;
}

.footer-col p, .footer-col li, .footer-col a {
  font-size: 0.9rem;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col a {
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--accent); /* orange hover */
}

.social a {
  margin-right: 10px;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

.social a:hover {
  color: var(--accent);
}

.footer-col i {
  margin-right: 6px; /* space between icon and text */
}

/* Copyright bar */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.3);
  margin-top: 30px;
  padding-top: 15px;
  font-size: 0.85rem;
}



/* Responsive: stack columns on small screens */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr; /* 2 columns */
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr; /* single column */
  }
}



.page-title {
  background: var(--leaf-green);
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 24px;
  font-weight: 600;
letter-spacing: 2px;
    text-transform: uppercase;
 font-family: "Cormorant Garamond", serif;
text-align: center;

    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 16px;


    display: block;
    box-sizing: border-box;

    text-shadow: 0 2px 8px rgba(0,0,0,.25);
    box-shadow: 0 10px 25px rgba(0,0,0,.12);

    transition: all .3s ease;

}


.page-title:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(0,0,0,.18);
}

.container {
  display: flex;
  justify-content: space-between;
  padding: 30px;
  gap: 40px; /* margin between description and booking form */
}

.tour-description, .booking-form {
  flex: 1;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.tour-description h2, .booking-form h2 {
  margin-top: 0;
  color: #333;
}

.booking-form input, .booking-form button {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.booking-form button {
  background: #0066cc;
  color: white;
  border: none;
  cursor: pointer;
}

.booking-form button:hover {
  background: #004c99;
}


.whatsapp-booking {
  margin-top: 20px;
  text-align: center;
}

.whatsapp-btn {
  display: inline-block;
  padding: 12px 20px;
  background: #25D366; /* WhatsApp green */
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}


.about-page {
  background: #3d3d3d; /* nice blue gradient */
  color: white;
  text-align: center;
  padding: 60px;
  font-size: 42px;
  font-weight: bold;
}


/* Page banner with background color */
.page-banner {
  background: var(--leaf-green);
  color: #fff;
  text-align: center;
    padding: 50px 30px;

    width: 90%;
    max-width: 1400px;
    margin: 30px auto;

    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,.15);
}

.page-banner h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Breadcrumb navigation */
.breadcrumb {
  font-size: 0.95rem;
  color: #fff;
}

.breadcrumb a {
  color: #ffeb3b; /* yellow accent */
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Page content */
.page-content {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* about us page style*/
/* ABOUT US – Scoped Styles Only */
/* About Us page styles */
.about-page {
  /* white background only for this section */
  margin: 0;
  padding: 10px;
background: linear-gradient(to right, #4A90E2, #50C9C3);
}

.about-page .page-title {
  background: linear-gradient(to right, #4A90E2, #50C9C3); /* sky blue gradient */
  color: #fff;
  text-align: center;
  padding: 30px;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 8px;
  margin-bottom: 30px;
}

.about-section {
  margin-bottom: 10px;
background: #fff;   /* each section stays white */
marigin: 10px 80px;
padding: 20px 40px;
margin-left: 80px; 
  max-width: 1200px;
 font-family: Arial, sans-serif;
}

.about-section h2 {
  color: var(--leaf-green);
  margin-bottom: 15px;
}

.about-section p, 
.about-section ul {
  font-size: 1 srem;
  line-height: 1.8;
 font-family: Arial, sans-serif;
}

/* Staff grid */
.staff-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.staff-member {
  flex: 1 1 200px;
  text-align: center;
}

.staff-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

/* completed about us style */




/* Unique Hero Design */
.ancient-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    background-color: #000;
}

.ancient-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.ancient-hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.ethiopiadiscover-centered-title {
    color: #fff;
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
}

/* Page Layout */
.ethiopiadiscover-main-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.ethiopiadiscover-section {
    margin-bottom: 100px;
}

.ethiopiadiscover-heading {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.ethiopiadiscover-subheading {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #333;
}

/* Alternating Row System */
.ethiopiadiscover-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.ethiopiadiscover-reverse {
    flex-direction: row-reverse;
}

.ethiopiadiscover-image-box {
    flex: 1;
}

.ethiopiadiscover-image-box img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ethiopiadiscover-text-box {
    flex: 1.2;
}

.ethiopiadiscover-text-box p {
    font-size: 1 rem;
    line-height: 1.8;
    color: #444;
}

.ethiopiadiscover-divider {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 60px 0;
}

/* Mobile Responsiveness */
@media (max-width: 850px) {
    .ethiopiadiscover-row, .ethiopiadiscover-reverse {
        flex-direction: column !important;
        gap: 20px;
    }
    .ethiopiadiscover-centered-title {
        font-size: 2.5rem;
    }
}

/* History Chronicle Styling */
.ethiopiadiscover-history-chronicle {
    background-color: #f9f7f2; /* Light parchment/cream background */
    padding: 60px 20px;
    border-radius: 10px;
    text-align: center;
}

.ethiopiadiscover-chronicle-container {
    max-width: 700px;
    margin: 0 auto;
}

.ethiopiadiscover-history-chronicle .ethiopiadiscover-subheading {
    margin-bottom: 50px;
    font-family: serif;
    font-size: 2.2rem;
    color: #4a3728;
    border-bottom: 2px solid #d4af37; /* Gold highlight */
}

/* Individual Ruler Row */
.ethiopiadiscover-ruler-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    border-bottom: 1px solid #e0dcd0; /* The tiny separator line */
    transition: background 0.3s ease;
}

.ethiopiadiscover-ruler-entry:hover {
    background-color: #f0ede4;
}

.ethiopiadiscover-year {
    font-weight: bold;
    color: #8b0000; /* Dark Red for years */
    font-family: 'Courier New', Courier, monospace;
    flex: 1;
    text-align: left;
}

.ethiopiadiscover-name {
    flex: 2;
    text-align: right;
    font-size: 1.2rem;
    color: #2c3e50;
    font-style: italic;
}

/* Remove border from the last item */
.ethiopiadiscover-ruler-entry:last-child {
    border-bottom: none;
}

@media (max-width: 600px) {
    .ethiopiadiscover-ruler-entry {
        flex-direction: column;
        text-align: center;
    }
    .ethiopiadiscover-year, .ethiopiadiscover-name {
        text-align: center;
        flex: none;
    }
}

/* getting there page style */
/* Wrapper for Getting There page */
.getting-page {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

/* Section 1: image + description below */
.getting-page .section1 img {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 0 auto 20px; /* center with margin below */
  border-radius: 8px;
}
.getting-page .section1 p {
  text-align: center;
  font-size: 1.1rem;
}

/* Section 2: left image, right text */
.getting-page .section2 {
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 40px 0;
}
.getting-page .section2 .left img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
}
.getting-page .section2 .right {
  flex: 1;
}

/* Section 3: full-width banner style */
.getting-page .section3 {
  background: #f9f9f9;
  
  padding: 40px;
  border-radius: 8px;
  margin: 40px 0;
}
.getting-page .section3 h2 {
  margin-top: 0;
}

/* Section 4: two-column grid */
.getting-page .section4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}
.getting-page .section4 h3 {
  color: var(--accent);
}

/* Section 5: highlight box */
.getting-page .section5 {
  background: #f9f9f9;
  padding: 30px;
  border-left: 5px solid var(--accent);
  border-radius: 8px;
  margin: 40px 0;
}
.getting-page .section5 ul {
  list-style: disc;
  padding-left: 20px;
}
/* getting page style finished */



/*visa and immigration*/

/* Container */
.ethiopiavisa-wrapper {
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
    font-family: 'Segoe UI', sans-serif;
    color: black;
}

/* Info Cards Grid */
.ethiopiavisa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.ethiopiavisa-card {
    background: light blue;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 4px solid #d4af37; /* Gold accent */
}

.ethiopiavisa-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Side by Side Content */
.ethiopiavisa-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.ethiopiavisa-text-box, .ethiopiavisa-image-box {
    flex: 1;
}

.ethiopiavisa-image-box img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.ethiopiavisa-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

/* Steps List */
.ethiopiavisa-steps {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.ethiopiavisa-steps li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

/* The "Apply" Button */
.ethiopiavisa-cta-button {
    display: inline-block;
    background-color: #006341; /* Ethiopia Flag Green */
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.ethiopiavisa-cta-button:hover {
    background-color: #004d32;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Requirements Table */
.ethiopiavisa-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
}

.ethiopiavisa-table th, .ethiopiavisa-table td {
    text-align: left;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.ethiopiavisa-table th {
    background-color: #f8f9fa;
    color: #555;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 800px) {
    .ethiopiavisa-row {
        flex-direction: column;
    }
}
/*visa and imigratin style completed*/

.bestTime-ethiopia {
font-family: 'Segoe UI', sans-serif;
max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
}

/*health and safety */

/* Health & Safety page wrapper */
.health-page {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px 40px;
  background: #fff; /* keep page clean */
}

/* Page title */
.health-page .page-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: var(--leaf-green);
  margin-bottom: 40px;
}

/* Each section */
.health-page .health-section {
  background: #f9f9f9;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Section headings */
.health-page .health-section h2 {
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--accent);
  font-size: 1.4rem;
}

/* Paragraphs */
.health-page .health-section p {
  font-size: 1.05rem;
  line-height: 1.7;
}
/* health and safety style finished */


/* testimony */

main1 {
  font-family: Arial, sans-serif;
  margin: 2rem auto;
  max-width: 1000px;
  padding: 0 1rem;
}

.company-branding {
  text-align: center;
  margin: 2rem 0;
}

.company-logo {
  width: 120px;
  height: auto;
  margin-bottom: 1rem;
}

.page-title {
  text-align: center;
  margin-bottom: 2rem;
}

.featured-testimonial {
  background: #f9f9f9;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 1rem;
  margin: 1rem;
  border-radius: 6px;
}

.testimonial-card.large {
  text-align: center;
}

.testimonial-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.video-testimonials {
  text-align: center;
  margin: 3rem 0;
}

.video-wrapper {
  max-width: 560px;
  margin: 0 auto;
}

.trusted-by, .awards {
  text-align: center;
  margin: 3rem 0;
}

.partner-logos, .award-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.partner-logos img, .award-logos img {
  max-width: 120px;
  height: auto;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.partner-logos img:hover, .award-logos img:hover {
  opacity: 1;
}

.cta {
  text-align: center;
  margin: 3rem 0;
}

.cta-button {
  background: #0077cc;
  color: #fff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
.cta-button:hover {
  background: #005fa3;
}
/* end testimony */



/* The whole Package layout Style */
.addis-page {
  max-width: 1200px;
  margin: 0px auto;
  padding: 20px 40px;
  background: #fff;
}

/* Page title */
.addis-page .page-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: white;
  margin-bottom: 30px;
}

/* Intro text */
.addis-page .intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

/* Destinations grid */
.addis-page .destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;

margin-bottom: 100px;

}

/* Destination card */
.addis-page .destination-card {
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  padding: 0;
  transition: transform 0.3s;

}


.addis-page .destination-card:hover {
  transform: translateY(-5px);
}

.addis-page .destination-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 0px;
}

.addis-page .destination-card h3 {
  color: var(--accent);
  margin-bottom: 0px;
}

.addis-page .destination-card p {
  font-size: 1rem;
  margin-bottom: 5px;
}


/* Action buttons container */
.actions-addisbutton {
  display: flex;
  gap: 12px;
  margin: 15px;
}

/* Common button style */
.addis-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 4px 8px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
line-height: 1;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 10 6px 15px rgba(0,0,0,0.15);
}

/* WhatsApp button */
.addis-whatsapp {

  background: #25D366;
  color: white;
}

.addis-whatsapp .addis-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}
.addis-icon {
  max-width: 1em;
  max-height: 1em;`
display: block;
     margin-top: 1px;
object-fit: contain;
}


.addis-whatsapp:hover {
  background: #2abe5d;
  transform: translateY(-2px);
}

/* Book button */
.addis-book {
  background-color: var(--leaf-green);
  color: white;
border-radius: 16px;
  padding: 12px 20px;
  font-weight: bold;
}

.addis-whatsapp {
  background-color: #25D366;
 color: white;
border-radius: 16px;
  
  font-weight: bold;
}

.addis-book:hover {
  background: linear-gradient(135deg, #ff5722, #e64a19);
  transform: translateY(-2px);
}



/* end of package layout */


/* =========================
   BOOKING PAGE
========================= */
/* MAIN PAGE */


/* ✅ Mobile-only overrides (will  not have any effect on the desktop*/
@media (max-width: 768px) {

  .site-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    height: auto;
    text-align: center;
  }
  

  .header-right {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  /* your existing mobile CSS... */


  /* Navigation */
  .site-header .list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    margin-top: 12px;
    padding: 0;
    list-style: none;
  }

  .site-header .list li {
    margin: 0;
  }

  .site-header .list li a {
    display: block;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    white-space: nowrap;
    transition: 0.3s;
  }

  .site-header .list li a:hover,
  .site-header .list li a.active {
    background: #2f6d3a;
    color: #fff;
  }




  .popular-packages {
    margin: auto 20px;
    padding: 20px;
  }

  .package-grid {
    flex-direction: column;
    gap: 20px;
       }

  .container {
    flex-direction: column;
    gap: 20px;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 300px; /* shrink hero on phones */
  }

  .slogan {
    top: 40px;
    left: 10px;
    padding: 8px 12px;
  }

  .slogan h1 {
    font-size: 1.2rem;
  }

  .slogan p {
    font-size: 0.9rem;
  }

  .footer-container {
    grid-template-columns: 1fr; /* stack footer columns */
  }
}





@media (max-width: 480px) {
  /* Hero section shrinks */
  .hero {
    height: 300px;
  }
  .slogan {
    top: 30px;
    left: 10px;
    padding: 8px 12px;
  }
  .slogan h1 { font-size: 1.4rem; }
  .slogan p { font-size: 0.9rem; }

  /* Cards stack if screen is very narrow */
  .package-grid, .trip-grid {
    grid-template-columns: 1fr;
  }

  /* Footer stacks cleanly */
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* Booking page mobile fixes */
@media (max-width: 768px) {
  .tour-detail-booking,
  .trip-layout,
  .container {
    flex-direction: column;   /* stack sections vertically */
    gap: 20px;
    padding: 15px;
  }

  .left-detail,
  .trip-content,
  .booking-form,
  .right-booking,
  .trip-form {
    width: 100%;              /* full width on mobile */
    position: static;         /* remove sticky positioning */
  }

  .hero-image img,
  .trip-hero {
    height: auto;             /* let images shrink naturally */
    max-height: 250px;        /* cap height for phones */
  }

  .trip-included-excluded {
    flex-direction: column;   /* stack included/excluded boxes */
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .trip-hero h1 {
    font-size: 1.4rem;
  }
  .trip-hero p {
    font-size: 0.9rem;
  }
  .trip-form input,
  .trip-form textarea,
  .trip-form .btn-book {
    font-size: 0.9rem;
    padding: 10px;
  }
}


/* ==============================
   FINAL BOOKING STRUCTURE
============================== */

/* =====================================
   BOOKING PAGE FINAL LAYOUT
   FOR CURRENT BOOK.EJS
===================================== */
/* ==========================================================================
   Trip Page Layout
   ========================================================================== */

.trip-page {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #333;
}

/* 1. Hero Section (Full width with side margins) */
.trip-hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 450px;
}

.trip-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trip-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 40px;
  color: #fff;
}

.trip-hero-overlay h1 {
  font-size: 2.5rem;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.trip-hero-overlay p {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.9;
}

/* 2. Main Two-Column Layout (Content vs Form) */
.trip-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

@media (max-width: 992px) {
  .trip-layout {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Left Content Section
   ========================================================================== */

.trip-content {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* Tour Meta Details */
.trip-details {
  background: #f8f9fa;
  padding: 15px 25px;
  border-radius: 8px;
  border-left: 5px solid #ff5a5f;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Itinerary Timeline Design */
.trip-itinerary h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #2c3e50;
}

.trip-itinerary ul {
  list-style: none;
  padding: 0;
  position: relative;
}

/* The timeline vertical line */
.trip-itinerary ul::before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 15px;
  width: 2px;
  background: #e0e0e0;
}

.trip-itinerary li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 30px;
}

/* Timeline nodes */
.trip-itinerary li::before {
  content: '✓';
  position: absolute;
  left: 3px;
  top: 0;
  width: 24px;
  height: 24px;
  background: #30B700;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  box-shadow: 0 0 0 5px #fff;
}

.trip-itinerary li strong {
  font-size: 1.2rem;
  color: #2c3e50;
  display: inline-block;
  margin-bottom: 6px;
}

.trip-itinerary li br + text, 
.trip-itinerary li {
  line-height: 1.6;
  color: #555;
}

/* Included / Excluded Grid Box */
.trip-included-excluded {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

@media (max-width: 576px) {
  .trip-included-excluded {
    grid-template-columns: 1fr;
  }
}

.trip-included-excluded h3 {
  margin-top: 0;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.trip-included-excluded ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trip-included-excluded li {
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
  color: #4a4a4a;
  font-size: 0.95rem;
}

.trip-included-excluded li:last-child {
  border-bottom: none;
}

/* ==========================================================================
   Right Sticky Reservation Form
   ========================================================================== */

.trip-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  position: sticky;
  top: 20px; /* Sticks to top when scrolling down */
}

#reserveForm {
  display: flex;
  flex-direction: column;
}

#reserveForm label {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  color: #777;
  letter-spacing: 0.5px;
}

#reserveForm input,
#reserveForm textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

#reserveForm input:focus,
#reserveForm textarea:focus {
  border-color: #ff5a5f;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 90, 95, 0.15);
}

/* Interactive Buttons */
.btn-book {
  background: #ff5a5f;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  width: 100%;
  margin-bottom: 12px;
}

.btn-book:hover {
  background: #e04b50;
}

.btn-book:active {
  transform: scale(0.98);
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: background 0.2s ease;
}

.btn-whatsapp:hover {
  background: #20ba5a;
}