:root {
  --kanga-primary: #F67718;
  --kanga-secondary:#1B47B5;
}

html, body {
  margin: 0;
  padding: 0;
}


/* FONTS START */



.noto-sans-basic {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.noto-sans-title {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 50px;
  font-variation-settings:
    "wdth" 80;

    text-shadow: 2px 2px 4px #000000;
}

.noto-sans-bold {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 50px;
  font-variation-settings:
    "wdth" 180;
}

.noto-sans-subtitle {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  text-shadow: 2px 2px 4px #000000;
  font-variation-settings:
    "wdth" 80;
}

/* FONTS END */

/* SECTIONS & CONTAINERS START */
.main_container {
    max-width: 1598px;
    margin-left: auto;
    margin-right: auto;
}

.intro_area {
    height: 500px;background-color: transparent; display: flex; flex-direction: column; align-self: flex-start;padding-top: 20px;
}
.container_black {
    background-color: var(--kanga-secondary);
}

/* SECTIONS & CONTAINERS END */
/* MENU START */

.logo {
    /* background-color: yellow; */
    height: 100px;
    width: 400px;
    margin-top: 10px;
    margin-bottom: 10px;
    align-content: center;
}

.ul_menu {
    padding-left: 0px !important;
    align-content: center;
    text-shadow: 2px 2px 4px #000000;
}

.ul_menu li {
    display: inline;
    padding-left: 25px;
    padding-right: 25px;

      border-bottom: 2px solid transparent;
    padding-bottom: 6px;
    transition: border-color .2s ease;
    margin-left: 20px;
    margin-right: 20px;
    padding-bottom: 20px;
}

.ul_menu li:hover {
    cursor: pointer;
    color: var(--kanga-primary);
     border-bottom-color: var(--kanga-primary);
}

.menu {
    display: flex;
    justify-content: space-between;
    color: white;
    z-index: 99999;

     position: sticky;
     top: 0;
     width: 100%;
    font-family: myFontMenu;
}

.contact_menu {
    color : #FFB782;
    align-content: center;
    text-align: end;
    text-shadow: 2px 2px 4px #000000;
}

.faq{
     max-width: 800px;
        margin: 0 auto;
        padding: 28px 16px 48px;
}

/* MENU END */

/* INTRO START */

/* .intro {
  background-color: #005CFF;    
  height: 818px;
  position: relative;
  color: white;
   background-image: url("images/view-3d-car.jpg");
   background-repeat: no-repeat;
  background-attachment: fixed; 
  background-size:  100%;
} */

.intro{
  min-height: 800px;           /* or: min-height: 100vh; */
  position: relative;
  color: #fff;
  height: 80%;
  background: url("images/kangarhodes.png") 0 0 no-repeat fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top; /* ✅ bottom-anchored */
}

.row{
    background: rgba(39,62,84,0.82);
    overflow: hidden;
    height: 100%;
    z-index: 2;
}

/* Optional: dark overlay so text is readable */
.intro::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient( to top, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.04) 45%, rgba(0,0,0,0) 100% );
  pointer-events:none;
}

.btn-intro {
    width: 250px;
    height: 80px;
    font-size: 20px;
    background-color: var(--kanga-primary);
    border-radius: 10px;
    margin-top: 80px;
    border: none;
}

/* INTRO END */

/* BOOKING FORM START*/

.booking_form{
  width: min(1000px, calc(100% - 2rem));
  height: auto;

  border-radius: 10px;
  background-color: var(--kanga-primary);

  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  padding: 30px;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: auto;
  gap: 10px;
}



.form-input-date
{
	width: 100%;
    height: 56px;


    padding: 24px 14px 10px;       /* text sits lower */
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.2;
  outline: none;
  color: #0f172a;
}

.btn-search {
    width: 100%;
    height: 50px;
    border: 2px solid var(--kanga-secondary);
    border-radius: 10px;
    background-color: #1B47B5;
    font-size: 25px !important;
    color: white;
}


.textBox{
  width: 100%;
  height: 60px;
  padding: 24px 14px 10px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.2;
  outline: none;

  background: #fff;     /* ✅ */
  color: #0f172a;       /* ✅ makes value visible */
  caret-color: #0f172a; /* ✅ cursor visible */
}

.input-icon{
  position: relative;
  width: 100%;
}

.input-icon i{
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: black;
  pointer-events: none; /* click goes to input */
  font-size: 18px;
}

.input-icon .textBox{
  padding-right: 46px; /* space for icon */
}


/* top-right “placeholder” */
.fake-placeholder{
  position: absolute;
  top: 4px;
  left: 12px;
  font-size: 15px;
  color: #94a3b8;
  pointer-events: none;         /* so clicking still focuses input */
}

/* hide it when input has text or is focused (optional) */


/* Base date input */
.selectBox{
  width: 100%;
  height: 56px;
  padding: 24px 44px 10px 14px;  /* extra right padding for arrow */
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.2;
  background: #fff;
  color: #0f172a;
  outline: none;

  appearance: none;             /* hide default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;

  /* custom arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px 18px;
}

.selectBox:focus{
  border-color: #0ea5e9;
  box-shadow: 0 0 0 4px rgba(14,165,233,.15);
}

/* muted placeholder option */
.selectBox option[disabled]{
  color: #94a3b8;
}


.accordion {
    border: 0;
  background-color: white;
   border-bottom: 1px solid gray;

  color: var(--kanga-secondary);
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;

    font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.active, .accordion:hover {
  background-color: var(--kanga-primary);
  color: black;
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}



.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;

  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  font-variation-settings:
    "wdth" 100;
}

.footer{
    display: flex;
    justify-content: center;
    background-color: var(--kanga-secondary);
   padding-top: 100px;
   padding-bottom: 100px;


    color: white;
}

.footer .content {
    display: grid;
    gap: 100px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    text-align: center;
    justify-items: center;
}

.footer .content div {
   width: 300px;
   text-align: start;
}

.footer ul {
    list-style: none;
    text-align: start;
    padding-left: 5px;
}

.footer ul li{
    padding-bottom: 10px;
}

/* .footer .content .brand {
    border-style: solid;
} */

.footer .content .brand p{
    line-height: 1.5;
}

.footer .content .socials {
    display: flex;
    justify-content: space-between;
}

.copyright{
    display: flex;
    justify-content: center;
    background-color: var(--kanga-secondary);
    padding-bottom: 20px;
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.562);
}

.why-section{
  background: var(--kanga-primary);
  padding: 110px 0 90px;
}

.why-wrap{
  padding: 0 16px;
}

.why-head{
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.why-title{
  margin: 0 0 12px;
  color: var(--kanga-secondary);
}

.why-subtitle{
  margin: 0;
  color: white;
  font-size: 20px; /* keeps it neat under your 50px titles */
}

.why-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.why-card{
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(2,6,23,.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.why-card i{
  font-size: 28px;
  color: var(--kanga-primary);
  display: inline-block;
  margin-bottom: 12px;
}

.why-card h3{
  margin: 0 0 8px;
  color: var(--kanga-secondary);
  font-size: 18px;
}

.why-card p{
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.5;
}

.why-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,183,48,.65);
  box-shadow: 0 16px 44px rgba(2,6,23,.10);
}

.why-cta{
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.why-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--kanga-primary);
  color: #1a1502;
  border: 2px solid var(--kanga-primary);
  text-decoration: none;
  transition: transform .15s ease, background .15s ease;
}

.why-btn:hover{
  transform: translateY(-2px);
  text-decoration: none;
}

.why-btn.outline{
  background: transparent;
  color: var(--kanga-secondary);
  border-color: #e2e8f0;
}

.why-btn.outline:hover{
  border-color: var(--kanga-primary);
}

/* Responsive */
@media (max-width: 1100px){
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .why-grid{ grid-template-columns: 1fr; }
  .why-cta{ flex-direction: column; }
}


.about-section{
  background: #fff;
  padding: 110px 0 90px;
}

.about-wrap{
  padding: 0 16px;
}

.about-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
}

.about-title{
  margin: 0 0 14px;
  color: var(--kanga-primary);
}

.about-p{
  margin: 0 0 14px;
  color: #475569;
  font-size: 17px;
  line-height: 1.7;
}

.about-highlights{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.about-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #0f172a;
  font-size: 14px;
}

.about-pill i{
  color: var(--kanga-primary);
}

.about-cta{
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.about-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--kanga-primary);
  color: #1a1502;
  border: 2px solid var(--kanga-primary);
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.about-btn:hover{
  transform: translateY(-2px);
  text-decoration: none;
}

.about-btn.outline{
  background: transparent;
  border-color: #e2e8f0;
  color: var(--kanga-secondary);
}

.about-btn.outline:hover{
  border-color: var(--kanga-primary);
}

.about-media{
  display: flex;
  justify-content: center;
}

.about-card{
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 50px rgba(2,6,23,.10);
}

.about-card img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center bottom; /* keeps “bottom up” vibe */
  display: block;
}

/* Responsive */
@media (max-width: 980px){
  .about-grid{
    grid-template-columns: 1fr;
  }
  .about-card img{
    height: 320px;
  }
  .about-cta{
    flex-direction: column;
  }
}


.fleet-section{
  background: #ffffff;
  padding: 90px 0;
}

.fleet-wrap{
  padding: 0 16px;
}

.fleet-head{
  text-align: center;
  max-width: 900px;
  margin: 0 auto 26px;
}

.fleet-title{
  margin: 0 0 10px;
  color: var(--kanga-secondary);
}

.fleet-subtitle{
  margin: 0;
  color: #475569;
  font-size: 18px;
}

.fleet-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.car-card{
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(2,6,23,.08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.car-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,183,48,.7);
  box-shadow: 0 18px 50px rgba(2,6,23,.12);
}

.car-img{
  position: relative;
  height: 210px;
  background: #fff;
}

.car-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;     /* ✅ no crop, centered */
  object-position: center Ensure; /* ✅ */
  display: block;
}

.car-badge{
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,183,48,.95);
  color: #1a1502;
  border: 1px solid rgba(26,21,2,.18);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.car-body{
  padding: 16px 16px 18px;
}

.car-name{
  margin: 0 0 12px;
  color: var(--kanga-secondary);
  font-size: 18px;
}

.car-features{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  color: #475569;
  font-size: 14px;
}

.car-features i{
  color: var(--kanga-primary);
  margin-right: 6px;
}

.car-foot{
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.car-price{
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--kanga-secondary);
}

.car-price .amount{
  font-size: 26px;
  font-weight: 800;
}

.car-price .from,
.car-price .per{
  color: #64748b;
  font-size: 13px;
}

.car-btn{
   
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  background: var(--kanga-primary);
  border: 2px solid var(--kanga-primary);
  color: #1a1502;
  text-decoration: none;
  transition: transform .15s ease;
  width: 100px;
}

.car-btn:hover{
  transform: translateY(-2px);
  text-decoration: none;
}

.fleet-cta{
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.fleet-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 18px;
  border-radius: 12px;
  background: transparent;
  border: 2px solid rgba(26,21,2,.18);
  color: var(--kanga-secondary);
  text-decoration: none;
}

.fleet-btn:hover{
  border-color: var(--kanga-primary);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 980px){
  .fleet-grid{ grid-template-columns: 1fr; }
  .car-img{ height: 220px; }
}

/* 2-column layout: filters + results */
.fleet-layout{
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 22px;
  align-items: start;
  margin-top: 24px;
  margin-bottom: 24px;
}

/* Sticky filters */
.filters-sticky{
  position: sticky;
  top: 175px; /* adjust if your header is taller */
}

.filters-card{
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 14px 40px rgba(2,6,23,.08);
}

.filters-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.filters-head h3{
  margin: 0;
  font-size: 18px;
  color: var(--kanga-secondary);
}

.filters-clear{
  border: 1px solid rgba(26,21,2,.25);
  background: transparent;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
}

.filters-clear:hover{
  border-color: var(--kanga-primary);
}

.filter_panel{
  margin-top: 14px;
}

.filter_panel h4{
  margin: 0 0 10px;
  font-size: 14px;
  color: #334155;
}

.filters-list{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-chip{
  width: 100%;
  text-align: left;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #0f172a;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
}

.filter-chip:hover{
  border-color: rgba(251,193,54,.9);
  background: rgba(251,193,54,.18);
}

/* match your existing selected class */
.filter_button_selected{
  border-color: var(--kanga-secondary) !important;
  background: rgba(26,21,2,.08) !important;
}

/* Responsive: stack filters above results */
@media (max-width: 980px){
  .fleet-layout{
    grid-template-columns: 1fr;
  }
  .filters-sticky{
    position: static; /* sticky off on mobile */
  }
  .filters-list{
    flex-direction: row;
    flex-wrap: wrap;
  }
  .filter-chip{
    width: auto;
    text-align: center;
  }
}

/* ===== Booking page layout ===== */
.booking-page{
    background: #f8fafc;
    padding: 60px 0 90px;
}

.booking-wrap{ padding: 0 16px; }

.booking-head{
    text-align: center;
    max-width: 900px;
    margin: 0 auto 22px;
}

/* remove hero text-shadow here (optional) */
.booking-page .noto-sans-title{ text-shadow: none; }

.booking-title{
    margin: 0 0 10px;
    color: var(--kanga-secondary);
}

.booking-subtitle{
    margin: 0;
    color: #475569;
    font-size: 18px;
}

.booking-grid{
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 18px;
    align-items: start;
    margin-top: 20px;
}

/* cards */
.booking-card,
.summary-card{
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 14px 40px rgba(2,6,23,.08);
}

.booking-card-title{
    margin: 0 0 12px;
    color: var(--kanga-secondary);
    font-size: 18px;
}

/* form grid */
.booking-fields{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-field{ position: relative; }
.form-field-span2{ grid-column: span 2; }

/* textarea */
.textAreaBox{
    width: 92%;
    min-height: 120px;
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    background-color: #fff;
    color: #0f172a;
    line-height: 1.4;
    resize: vertical;
}

/* summary */
.summary-car{
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.summary-car-img{
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    height: 86px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-car-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.summary-car-name{
    font-size: 16px;
    color: var(--kanga-secondary);
}

.summary-price{
    margin-top: 6px;
    color: #475569;
}

.summary-lines{
    border-top: 1px solid #eef2f7;
    padding-top: 10px;
    display: grid;
    gap: 8px;
}

.summary-line{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: #334155;
    font-size: 14px;
}

.summary-features{
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    color: #475569;
    font-size: 14px;
}

.summary-features i{
    color: var(--kanga-primary);
    margin-right: 6px;
}

/* terms */
.terms-details{
    margin-top: 14px;
    border-top: 1px solid #eef2f7;
    padding-top: 10px;
}

.terms-details summary{
    cursor: pointer;
    color: var(--kanga-secondary);
    font-weight: 700;
}

.terms-content{
    margin-top: 10px;
    color: #334155;
    font-size: 14px;
    line-height: 1.6;
}

/* extras */
.extras-grid{
    display: grid;
    gap: 10px;
}

.extras-row{
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: 12px;
    align-items: center;
}

.extras-left{ color: #0f172a; }

.extras-check{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0f172a;
}

.insurance-box{
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px;
    background: #f8fafc;
}

.captcha-wrap{
    margin-top: 12px;
}

/* responsive */
@media (max-width: 980px){
    .booking-grid{ grid-template-columns: 1fr; }
    .booking-fields{ grid-template-columns: 1fr; }
    .form-field-span2{ grid-column: span 1; }
    .extras-row{ grid-template-columns: 1fr; }
}

.places-section{
    background: #fff;
    padding: 90px 0;
}

.places-wrap{
    padding: 0 16px;
}

.places-head{
    text-align: center;
    max-width: 900px;
    margin: 0 auto 26px;
}

.places-title{
    margin: 0 0 10px;
    color: var(--kanga-primary);
}

.places-subtitle{
    margin: 0;
    color: #475569;
    font-size: 18px;
}

.places-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.place-card{
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(2,6,23,.08);
    text-decoration: none;
    color: inherit;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    display: block;
}

.place-card:hover{
    transform: translateY(-4px);
    border-color: rgba(255,183,48,.7);
    box-shadow: 0 18px 50px rgba(2,6,23,.12);
    text-decoration: none;
}

.place-img{
    height: 210px;
    background: #fff;
}

.place-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.place-body{
    padding: 14px 16px 16px;
}

.place-text{
    margin: 0 0 10px;
    color: #334155;
    font-size: 15px;
    line-height: 1.5;
}

.place-link{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--kanga-secondary);
    font-size: 13px;
    opacity: .85;
}

.place-link i{
    color: var(--kanga-primary);
}

@media (max-width: 1100px){
    .places-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px){
    .places-grid{ grid-template-columns: 1fr; }
    .place-img{ height: 220px; }
}
/* ===== Footer ===== */
.footer{
    background: var(--kanga-secondary);
    color: #fff;
    padding: 90px 0 60px;
}

.footer-wrap{
    padding: 0 16px;
}

.footer-grid{
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 34px;
    align-items: start;
}

.footer-logo{
    width: 220px;
    max-width: 100%;
    display: block;
    margin-bottom: 12px;
}

.footer-text{
    margin: 0 0 14px;
    color: rgba(255,255,255,.75);
    line-height: 1.7;
    font-size: 14px;
}

.footer-title{
    margin: 0 0 12px;
    color: var(--kanga-primary);
    font-weight: 800;
    font-size: 16px;
}

.footer-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-list a{
    color: rgba(255,255,255,.78);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color .15s ease, border-color .15s ease;
}

.footer-list a:hover{
    color: #fff;
    border-bottom-color: rgba(251,193,54,.8);
}

.footer-contact{
    display: grid;
    gap: 10px;
}

.footer-contact-row{
    display: flex;
    gap: 10px;
    align-items: center;
    color: rgba(255,255,255,.78);
    font-size: 14px;
}

.footer-contact-row i{
    width: 18px;
    color: var(--kanga-primary);
}

.footer-contact-row a{
    color: rgba(255,255,255,.85);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.footer-contact-row a:hover{
    border-bottom-color: rgba(251,193,54,.8);
}

.footer-socials{
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer-social{
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.footer-social:hover{
    transform: translateY(-2px);
    border-color: rgba(251,193,54,.7);
    background: rgba(251,193,54,.12);
}

.footer-cta{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
    height: 46px;
    padding: 0 16px;
    border-radius: 12px;
    background: var(--kanga-primary);
    border: 2px solid var(--kanga-primary);
    color: #1a1502;
    text-decoration: none;
    transition: transform .15s ease;
}

.footer-cta:hover{
    transform: translateY(-2px);
    text-decoration: none;
}

/* ===== Copyright ===== */
.copyright{
    background: var(--kanga-secondary);
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 16px 0;
    color: rgba(255,255,255,.55);
}

.copyright-wrap{
    padding: 0 16px;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.copyright-sep{
    opacity: .6;
}

/* Responsive */
@media (max-width: 1100px){
    .footer-grid{
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px){
    .footer-grid{
        grid-template-columns: 1fr;
    }
    .copyright-wrap{
        flex-direction: column;
        align-items: flex-start;
    }
    .copyright-sep{
        display: none;
    }
}




@media (max-width: 1449px) {
    .menu {
        display: flex;
        flex-direction: row; /* Force horizontal row */
        justify-content: space-between; /* Logo left, Burger right */
        align-items: center;
        /*padding: 10px 20px;*/
        position: relative; /* Needed so the dropdown stays attached */
    }

    .logo {
        width: auto;
        height: 60px; /* Constrain height so it doesn't push the bar too wide */
        margin: 0;
    }

    .menu-toggle {
        display: block; /* Show the burger */
        order: 2; /* Ensures it stays to the right */
    }

    .ul_menu {
        display: none; /* Hide by default */
        flex-direction: column;
        position: absolute;
        top: 100%; /* Appears directly below the header bar */
        left: 0;
        width: 100%;
        background-color: var(--kanga-secondary);
        padding: 20px 0 !important;
        margin: 0;
        z-index: 9999;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    .ul_menu.active {
        display: flex; /* Show when clicked */
    }

    .ul_menu li {
        margin: 0;
        padding: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    /* Hide the contact info on the top bar for mobile to save space */
    .contact_menu {
        display: none;
    }

    .logo > img {
        width: 400px !important;
    }
}

.mob_details {
    display: none;
    justify-content: space-around;
    height: 40px;
    background-color: #f67718;
    color: white;
    font-size: 20px;
    align-items: center;
}

.mob_details a{ color: #fff !important; }

/* --- 1. BASE BURGER STYLES --- */
#mobile-burger.menu-toggle {
    display: none; /* Hide on desktop */
    background-color: var(--kanga-primary) !important; /* Bright orange so we can't miss it! */
    color: white !important; /* White icon */
    border: none !important;
    font-size: 35px !important;
    padding: 10px 15px !important;
    border-radius: 8px !important;
    cursor: pointer;
    z-index: 999999 !important; /* Keep it on top of everything */
}

/* --- 2. SHOW ON MOBILE (Max-width: 1449px) --- */
@media (max-width: 1449px) {
    #mobile-burger.menu-toggle {
        display: block !important; /* FORCE it to show on mobile */
        order: 2;
        margin-right: 10px;
        margin-top: 20px;
    }

    .mob_details {
        display: flex !important;
    }
    /* Ensure the menu flexbox lets it sit next to the logo */
    .menu.main_container {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .intro_area {
        padding: unset;
        justify-content: end;
    }
}

@media (max-width: 1449px) {
    #headline {
        font-size : 30px;
    }
}

@media (max-width: 500px){
    .logo > img {
        width: 300px !important;
    }

    .booking_form {
        display: block;
    }

    .booking_form > div {
        padding-bottom: 10px;
    }


}
@media (max-width: 600px) {
    #headline {
        display: none;
    }

    .mob_details {
        display: flex !important;
        height: 90px;
        flex-direction: column;
    }



    .intro {
        background-position: 30% top;
    }
}


.contact_menu .contact_item{
    display:flex;
    align-items:center;
    gap:10px;
    margin:6px 0;
}
.contact_menu i{
    width:18px;
    font-size:16px;
}
.contact_menu a{
    color:inherit;
    text-decoration:none;
}
.contact_menu a:hover{
    text-decoration:underline;
}

.lang_switcher{
    display:flex;
    align-items:center;
    gap:8px;
    margin-left:14px;
}

.lang_btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:34px;
    /*height:24px;*/
    border-radius:6px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.25);
    transition:transform .15s ease, border-color .15s ease, opacity .15s ease;
}

.lang_btn img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.lang_btn:hover{
    transform:translateY(-1px);
    border-color:rgba(255,255,255,0.6);
}

.lang_btn.active{
    border-color:#fff;
}

/* default: mobile flags hidden */
.lang_switcher--mobile{ display:none; }

/* MOBILE */
@media (max-width: 1449px){
    /* hide flags in the top menu (desktop one) */
    .menu .lang_switcher{ display:none; }

    /* show the mobile flags block */
    .lang_switcher--mobile{
        display:flex;
        justify-content:center;
        gap:10px;
        margin: 10px auto 14px;
        z-index: 5;
        position: absolute;
        top: 100px;
        right: 0px;
        flex-direction: row;
    }

    /* make sure flags are same size */
    .lang_btn{ width:34px; }
}