:root {
  --leaf-green: #228B22;
  --accent: #ff9800;
}

body {
  margin: 0;
padding: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.logo-title {
  display: flex;
 align-items: center;
color: #f7c65a;
}

.logo {

 align-items: center;
font-size: 30px;
color: #f7c65a !important;
margin-left: 10px;
text-shadow: 0 0 10px rgba(247,198,90,0.8);
  letter-spacing: 1px;
}

.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: 0px;
}

.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: 20px;    /* space between nav and language*/
color: #f7c65a;
}

/* Header */
.site-header {
  display: flex;
justify-content: space-between;
  align-items: center;
  background: var(--leaf-green);
  color: #fff;
height: 120px;
  padding: 0 40px; /* spacing left/right */

 }

.site-header a {
  color: #fff;
  text-decoration: none;
}

.list {
  list-style: none;
  display: flex;
   gap: 20px;
  margin: 0px;
  padding: 0px;

}

.list li a{
display: block;
  color: #f7c65a;
  text-decoration: none;
  transition: background 0.3s;

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;
  gap: 10px;         /* spacing between flags */
  position: relative; /* stays inside header */
}

#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%;
  overflow:hidden;
height: 500px;

}

.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}
.slideshow img {
  position: absolute;
inset: 0;
  width: 100%;
height: 100%;
 object-fit: cover;   /* ensures full coverage */
  opacity: 0;
  transition: opacity 1s ease-in-out; /* fade effect */

}

.slideshow img.active {
  opacity: 1;
z-index: 1;
}

.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 { flex-direction: column; } /* stack buttons vertically on phones */
}


.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: linear-gradient(135deg, #0066cc, #003366); /* nice blue gradient */
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 24px;
  font-weight: bold;
}

.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: linear-gradient(to right, #4A90E2, #50C9C3); /* sky blue gradient */
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.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 */

/*addis ababa city tour*/

/* Addis Ababa City Tour page */
.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: #006B6B;
  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 addis ababa city tourstyle*/

/* tour detail and booking page*/

/* Tour Detail + Booking Layout */
.tour-detail-booking {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

/* Left side: tour details */
.tour-detail-booking .left-detail {
  flex: 2;
}

.tour-detail-booking .hero-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
}

.tour-detail-booking .detail-box {
  background: #f9f9f9;
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.tour-detail-booking .detail-box h2 {
  color: var(--accent);
  margin-top: 0;
  margin-bottom: 15px;
}

/* Right side: booking form */
.tour-detail-booking .right-booking {
  flex: 1;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 20px;
}

.tour-detail-booking .booking-header {
  text-align: center;
  margin-bottom: 20px;
}

.tour-detail-booking .booking-header h2 {
  color: var(--leaf-green);
}

.tour-detail-booking .form-group {
  margin-bottom: 20px;
}

.tour-detail-booking .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.tour-detail-booking .form-group input {
  width: 100%;
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 8px;
}

.tour-detail-booking .submit-btn {
  background: linear-gradient(to right, #4A00E0, #8E2DE2);
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.tour-detail-booking .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Responsive stacking */
@media (max-width: 900px) {
  .tour-detail-booking {
    flex-direction: column;
  }
}

/* end tour detail page */

/* booking form for book option */
/* Scope everything under .booking-page */
.booking-page {
  font-family: Arial, sans-serif;
  padding: 20px;
  background-color: #f4f4f4;
}

/* Hero */
.booking-page .booking-hero {
  background: url('images/addis-background.jpg') center/cover no-repeat;
  padding: 60px 20px;
  text-align: center;
  color: white;
  text-shadow: 1px 1px 3px black;
}
.booking-page .booking-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.booking-page .booking-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Tour details */
.booking-page .booking-details {
  text-align: center;
  font-size: 1.1rem;
  margin: 30px 0;
}

/* Itinerary */
.booking-page .booking-itinerary ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}
.booking-page .booking-itinerary li {
  background: #e0f7fa;
  margin: 10px 0;
  padding: 12px;
  border-radius: 6px;
}

/* Included / Excluded */
.booking-page .booking-included-excluded {
  display: flex;
  gap: 30px;
  margin: 30px 0;
}
.booking-page .booking-included-excluded div {
  flex: 1;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.booking-page .included h3 { color: green; }
.booking-page .excluded h3 { color: red; }

/* Booking form */

.email-contact {
 background: linear-gradient(135deg, #00b4db, #0083b0); /* vibrant blue-teal gradient */ 
color: white;
 padding: 20px 20px; 
margin:20px ;
border-radius: 0 0 40px 40px; /* curved bottom for fancy look */ 
box-shadow: 0 6px 15px rgba(0,0,0,0.2);
 }
.email-contact .email-layout { 

 text-align: right; /* ✅ left aligned */
 }

.email-contact h2 { font-size: 2.2rem; margin-bottom: 20px; text-shadow: 1px 1px 4px rgba(0,0,0,0.4); }
.email-contact p { font-size: 1.2rem; margin: 10px 0; } .email-contact strong { color: #ffeb3b; /* highlight important text in yellow */ } .email-contact p::before { content: "✨ "; }

.trip-page {
  font-family: 'Segoe UI', Arial, sans-serif;
  padding: 40px;
  background: linear-gradient(to bottom, #f9f9f9, #eaf4f4);

}

/* Layout */
.trip-page .trip-layout {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  margin-top: 30px;
}

/* Left content */
.trip-page .trip-content {
  flex: 2;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Hero */
.trip-page .trip-hero {
  background: url('images/addisababa.jpg') center/cover no-repeat;
  padding: 80px 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  color: black;
  text-align: center;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}
.trip-page .trip-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
color: white;
}
.trip-page .trip-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
color: white;
}

/* Tour details */
.trip-page .trip-details {
  text-align: center;
  font-size: 1.2rem;
  margin: 30px 0;
  font-weight: bold;
  color: #006B6B;
}

/* Itinerary */
.trip-page .trip-itinerary h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #0074CC;
}
.trip-page .trip-itinerary ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}
.trip-page .trip-itinerary li {
  background: #e0f7fa;
  margin: 12px 0;
  padding: 14px;
  border-radius: 8px;
  font-size: 1rem;
  transition: transform 0.2s;
}
.trip-page .trip-itinerary li:hover {
  transform: scale(1.02);
  background: #b2ebf2;
}

/* Included / Excluded */
.trip-page .trip-included-excluded {
  display: flex;
  gap: 30px;
  margin: 40px 0;
}
.trip-page .trip-included-excluded div {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.trip-page .included h3 { color: green; }
.trip-page .excluded h3 { color: red; }

/* Right form */
.trip-page .trip-form {
  flex: 0 0 300px;
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: sticky; /* stays visible while scrolling */
  top: 20px;

}
.trip-page .trip-form label {
  font-weight: bold;
  display: block;
  margin-top: 12px;

}
.trip-page .trip-form input {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.3s;
}
.trip-page .trip-form input:focus {
  border-color: #0074CC;
  outline: none;
}

/* Buttons */



.trip-page .trip-form .btn-book {
  background-color: #128C7E;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.trip-page .trip-form .btn-book:hover {
  background-color: #0f6f63;
  transform: translateY(-2px);
}


.trip-page .trip-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  resize: vertical;
  font-family: inherit;
  transition: border-color 0.3s;
}
.trip-page .trip-form textarea:focus {
  border-color: #0074CC;
  outline: none;
}

/* WhatsApp smaller */
.trip-page .trip-form .btn-whatsapp.small {
  display: inline-block;     /* not full width */
  width: auto;               /* shrink to fit text */
  background-color: #25D366;
  color: white;
  padding: 8px 16px;         /* smaller padding */
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 12px;          /* sits below Book Now */
text-align: center;
}
.trip-page .trip-form .btn-whatsapp.small:hover {
  background-color: #1da851;
}


/* Responsive */
@media (max-width: 992px) {
  .trip-page .trip-layout {
    flex-direction: column;
  }
  .trip-page .trip-form {
    position: static;
    margin-top: 30px;
  }
}


/* end booking form */


/* 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 */