
/* =======================
   GLOBAL
======================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial,sans-serif
}
body{
  background:#F6F7F8;
  color:#353333
}
.container{
  max-width:1200px;
  margin:auto;
  padding:20px
}

/* =======================
   HEADER
======================= */
.header{
  background:#fff;
  border-bottom:1px solid #eee
}
.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center
}
.logo a{
  text-decoration:none;
  font-size:22px;
  font-weight:bold;
  color:#07C369
}
.nav{
  display:flex;
  gap:12px
}
/* =======================
   HEADER NAV – SIMPLE & CLEAN
======================= */
.nav{
  display:flex;
  align-items:center;
  gap:22px
}

.nav-link {
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  color: #353333;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link.active {
  background: #f0fdf4; /* açıq yaşıl */
  color: #07c369;
}

.nav-link:hover {
  background: #dcfce7;
  color: #07c369;
}

/* HOTELLER - ENDİRİM */
.hotel-link {
  position: relative;
  color: #fff;
  background: #22c55e; /* canlı yaşıl */
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
}

.hotel-link:hover {
  background: #16a34a;
}

/* ENDİRİM YAZISI */
.hotel-link .discount {
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  text-transform: uppercase;
}


/* =======================
   HERO
======================= */
.hero{
  background:#1C303F;
  padding:70px 0
}
.hero h1{
  color:#fff;
  font-size:34px;
  margin-bottom:15px
}
.hero-desc{
  color:#e5e5e5;
  max-width:720px;
  margin-bottom:35px;
  line-height:1.6
}

/* =======================
   SEARCH
======================= */
.search-card{
  background:#F6F7F8;
  padding:32px;
  border-radius:18px;
  box-shadow:0 15px 35px rgba(0,0,0,.12);
  border:1px solid #e6e6e6
}

/* =======================
   FEATURES
======================= */
.features{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin:60px auto
}
.feature{
  background:#fff;
  padding:28px;
  border-radius:16px
}
.feature h3{
  color:#07C369;
  margin-bottom:10px
}

/* =======================
   SEO TEXT
======================= */
.seo-text{
  margin:70px auto;
  max-width:900px
}
.seo-text h2{
  margin-bottom:15px;
  font-size:28px
}
.seo-text p{
  line-height:1.8;
  color:#444
}

/* =======================
   FAQ
======================= */
.faq-section{
  margin:80px auto;
  max-width:900px
}
.faq-section h2{
  font-size:28px;
  margin-bottom:8px
}
.faq-subtitle{
  color:#666;
  margin-bottom:30px
}
.faq-item{
  background:#fff;
  border-radius:14px;
  margin-bottom:12px;
  padding:18px 22px;
  border:1px solid #eee
}
.faq-item summary{
  cursor:pointer;
  font-weight:600;
  list-style:none;
  position:relative;
  padding-right:30px
}
.faq-item summary::after{
  content:"+";
  position:absolute;
  right:0;
  font-size:20px;
  color:#07C369
}
.faq-item[open] summary::after{
  content:"–"
}
.faq-item p{
  margin-top:12px;
  line-height:1.7;
  color:#444
}

/* =======================
   POPULAR AIRLINES
======================= */
.popular-airlines{
  padding:60px 0
}
.container2{
  max-width:1200px;
  margin:0 auto;
  padding:0 16px;
  text-align:center
}
.airline-row{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:48px;
  margin-top:40px;
  flex-wrap:nowrap;
  overflow-x:auto
}
.airline-row img{
  max-width:180px;
  max-height:80px;
  width:auto;
  height:auto;
  filter:grayscale(100%);
  opacity:.9;
  transition:all .3s ease;
  flex-shrink:0
}
.airline-row img:hover{
  filter:grayscale(0);
  opacity:1;
  transform:scale(1.1)
}
.airline-row::-webkit-scrollbar{
  height:6px
}
.airline-row::-webkit-scrollbar-thumb{
  background:#ccc;
  border-radius:10px
}

/* =======================
   POPULAR ROUTES
======================= */
.popular-routes{
  margin-top:70px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px
}
.popular-routes h2,
.popular-routes .popular-desc{
  grid-column:1 / -1
}
.popular-item{
  background:#fff;
  border-radius:14px;
  padding:18px 22px;
  border:1px solid #eee;
  align-self:start
}
.popular-item summary{
  cursor:pointer;
  font-weight:600;
  list-style:none;
  display:flex;
  align-items:center;
  gap:10px;
  position:relative;
  padding-right:30px
}
.popular-item summary::after{
  content:"+";
  position:absolute;
  right:0;
  font-size:20px;
  color:#07C369
}
.popular-item[open] summary::after{
  content:"–"
}
.flag-icon{
  width:22px;
  height:16px;
  border-radius:2px
}
.popular-links{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:12px
}
.popular-links a{
  background:rgba(7,195,105,.08);
  padding:10px 14px;
  border-radius:8px;
  text-decoration:none;
  color:#353333;
  font-weight:500
}
.popular-links a:hover{
  background:#07C369;
  color:#fff
}

/* =========================
   FOOTER FINAL CSS – GREEN THEME
   ========================= */

.footer {
  background-color: #061a12;
  color: #e6f7ef;
  width: 100%;
}

/* CONTAINER */
.footer .container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 20px;
}

/* 4 COLUMN GRID */
.footer-main {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: start;
}

/* COLUMN */
.footer-column {
  min-width: 0;
}

/* LOGO */
.footer-logo {
  display: inline-block;
  font-size: 22px;
  font-weight: 800;
  color: #07C369;
  margin-bottom: 12px;
}

/* TEXT */
.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  color: #c9f2df;
}

/* TITLES */
.footer-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  position: relative;
}

/* TITLE LINE */
.footer-title::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background-color: #07C369;
  margin-top: 6px;
}

/* LINKS */
.footer-column a {
  display: block;
  font-size: 14px;
  color: #b7e9d3;
  text-decoration: none;
  margin-bottom: 8px;
  transition: all 0.25s ease;
}

.footer-column a:hover {
  color: #07C369;
  transform: translateX(4px);
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 20px;
  background-color: rgba(7,195,105,.08);
  font-size: 13px;
  color: #9fe3c2;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
}





/* =======================
   LANGUAGE DROPDOWN
======================= */
.lang-dropdown{
  position:relative
}
.lang-current{
  display:flex;
  align-items:center;
  gap:6px;
  padding:8px 14px;
  border-radius:8px;
  border:none;
  cursor:pointer;
  background:rgba(7,195,105,.1);
  color:#07C369;
  font-size:14px
}
.lang-current:hover{
  background:#07C369;
  color:#fff
}
.lang-menu{
  position:absolute;
  right:0;
  top:110%;
  background:#fff;
  border:1px solid #eee;
  border-radius:10px;
  min-width:160px;
  box-shadow:0 10px 25px rgba(0,0,0,.12);
  display:none;
  z-index:999
}
.lang-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  text-decoration:none;
  color:#353333;
  font-size:14px
}
.lang-item:hover{
  background:rgba(7,195,105,.1)
}

/* HERO BUTTONS - SOLDAN BASLAYAN */
.hero-tabs {
  display: flex;
  gap: 12px;
  margin: 20px 0;
  justify-content: flex-start; /* soldan başlasın */
  flex-wrap: wrap;
}

/* ÜMUMİ BUTTON */
.hero-tab {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  border: none;
}

/* AVIABILETLER - soft rəng */
.hero-tab.soft {
  background: #f0fdf4; /* açıq yaşıl */
  color: #07c369;
}

.hero-tab.soft:hover {
  background: #dcfce7;
}

/* HOTELLER - bright rəng */
.hero-tab.bright {
  background: #22c55e; /* canlı yaşıl */
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-tab.bright:hover {
  background: #16a34a;
}

/* ENDİRİM YAZISI - fərqli stil */
.hero-tab .discount {
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* MOBİL */
@media (max-width:640px) {
  .hero-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-tab {
    width: 100%;
    text-align: center;
  }
}


/* =======================
   RESPONSIVE
======================= */
@media(max-width:768px){
  .header-inner{flex-direction:column;gap:12px}
  .features{grid-template-columns:1fr}
  .hero h1{font-size:26px}
  .footer-top{grid-template-columns:1fr}
  .popular-routes{grid-template-columns:1fr}
}

