:root {
  --bg: #ffffff;
  --cardRadius: 18px;
  --shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  --btn: #e14b4b;
  --btnHover: #cc3f3f;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.85);
  --stroke: rgba(255, 255, 255, 0.18);
  --max: 1900px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  background: var(--bg);
  color: #111;
}

/* Landing Page H1 */
.lp-title{
  font-family: "Open Sans", "Roboto", Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.3;
  text-align: center;
  color: #1C244F;
  letter-spacing: 0.02em;
  margin: 28px auto 34px;
  padding: 0 16px;
  max-width: 960px;
}

.lp-title::after{
  content:"";
  display:block;
  width: 80px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: #E34C4C;
  opacity: .9;
}

@media (max-width: 640px){
  .lp-title{ margin: 20px auto 14px; }
  .lp-title::after{
    width: 86px;
    height: 4px;
    margin-top: 12px;
  }
}

/* Main wrapper */
.wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 4vw 50px;
}

.grid {
  width: 90vw;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3vw;
  align-items: stretch;
}

/* Mobile */
@media (max-width: 860px) {
  .grid { grid-template-columns: 1fr; }
}

.card {
  position: relative;
  border-radius: var(--cardRadius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--text);
  min-height: 340px;
  isolation: isolate;
  outline: none;
}

/* Background image layer */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  z-index: -2;
}

/* Soft overlay gradient */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.28) 0%,
    rgba(0, 0, 0, 0.10) 45%,
    rgba(0, 0, 0, 0.22) 100%
  );
  z-index: -1;
}

/* Set background images */
.card.bodrum::before { background-image: url("../assets/mavi-air-bodrum.jpg"); }
.card.dubai::before  { background-image: url("../assets/mavi-air-dubai.jpg"); }

.inner {
  height: 100%;
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flag {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 40px;
  height: 28px;
  overflow: hidden;
  background: transparent;
}

.flag img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.logo {
  position: absolute;
  top: 10px;
  right: 5px;
  width: 70px;
  height: auto;
  opacity: 0.95;
  display: block;
}

.title {
  margin-top: 50px;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1.05;
}

.subtitle {
  margin-top: 3px;
  text-align: center;
  font-size: 16px;
  color: var(--muted);
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.26);
}

.tagline {
  margin-top: 3px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.26);
}

/* Mobile readability boost (subtitle + tagline) */
@media (max-width: 640px){
  .subtitle{
    font-weight: 600;
    text-shadow: 0 1px 1px rgba(0,0,0,0.55);
  }
  .tagline{
    font-weight: 600;
    text-shadow: 0 1px 1px rgba(0,0,0,0.55);
  }
}


.spacer { flex: 1 1 auto; }

.btn {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: var(--btn);
  color: #fff;
  font-size: 14px;
  padding: 7px 14px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.20);
  border: 1px solid rgba(255, 255, 255, 0.18);
  white-space: nowrap;
}

.btn svg { width: 16px; height: 16px; }
.card:hover .btn { background: var(--btnHover); }

.card:focus-visible {
  box-shadow: 0 0 0 4px rgba(0, 120, 255, 0.22), var(--shadow);
}

/* Desktop card height */
@media (min-width: 861px) {
  .card { height: 70vh; }
}

/* ===== FULL WIDTH FOOTER ===== */
.lp-footer{
  width: 100%;
  background: #2f3237;
  color: #fff;
  padding: 46px 0 22px;
  margin-top:60px;
  position: relative;
}

.lp-footer::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(107,107,107,1);
}

.lp-footer__container{
  width: 80vw;
  max-width: var(--max);
  margin: 0 auto;
}

.lp-footer__grid{
  display: grid;
  grid-template-columns: 1.05fr 1.2fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.lp-footer__logo{
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp-footer__logo img{
  width: 150px;          /* logo büyük ve “full weight” hissi için */
  max-width: 100%;
  height: auto;
  display: block;
  opacity: .95;
}

.lp-footer__kicker{
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .10em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.lp-footer__kicker2{
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .10em;
  text-transform: uppercase;
  margin: 0 0 12px;
}


.lp-footer__heading{
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 14px;
  line-height: 1.35;
}

.lp-footer__line{
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,.85);
}

.lp-footer__line a{
  color: #fff;
  text-decoration: none;
  border-bottom: none;
}

.lp-footer__line a:hover{
  color: #ccc;
}

.lp-footer__divider{
  height: 5px;
  background: rgba(255,255,255,.18);
  margin: 26px 0 12px;
}

.lp-footer__bottom{
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.65);
  padding: 15px 0 25px;
}

/* Responsive footer */
@media (max-width: 980px){
  .lp-footer__grid{
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: center;
  }
  .lp-footer__logo img{
    width: 210px;
  }
}