:root{
  --bg: #d8edf3;
  --white: #ffffff;
  --blue: #1e5b8c;
  --blue-dark: #143e61;
  --sea: #2d8fbf;
  --turquoise: #1fb5a9;
  --text: #213244;
  --muted: #5f6f80;
  --red: #2d8fbf;
  --yellow: #2d8fbf;
  --line: rgba(30, 91, 140, 0.12);
  --shadow: 0 16px 36px rgba(18, 54, 87, 0.10);
  --shadow-strong: 0 22px 48px rgba(18, 54, 87, 0.14);
  --radius: 22px;
}

*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body{
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

img{
  max-width: 100%;
  display: block;
}

.container{
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* =========================
   TYPOGRÁFIA
========================= */

h1, h2, h3{
  margin: 0 0 12px;
  line-height: 1.18;
}

h1, h2{
  font-family: "Playfair Display", serif;
}

h1{
  font-size: 48px;
}

h2{
  font-size: 34px;
}

h3{
  font-size: 22px;
}

p{
  margin: 0 0 16px;
}

.center{
  text-align: center;
}

.section-kicker{
  margin: 0 0 8px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-size: 13px;
  font-weight: 700;
}

.section{
  padding: 54px 0;
}

.section-kicker-title{
  color: var(--blue-dark);
  letter-spacing: 1.1px;
  font-weight: 700;
}

.torrevieja-subtitle{
  text-align: center;
  font-size: 22px;
  color: var(--blue-dark);
  margin-top: 6px;
  margin-bottom: 24px;
}

/* =========================
   FEJLÉC
========================= */

.header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(20, 58, 92, 0.06);
}

.header__row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 90px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  flex: 0 0 180px;
}

.brand__logo{
  width: 140px;
  height: auto;
  display: block;
}

.brand__mark{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--red), var(--yellow));
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.brand__text{
  color: var(--blue-dark);
  font-size: 17px;
  font-weight: 700;
}

.nav{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
}

.nav a{
  text-decoration: none;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover{
  background: var(--blue);
  color: var(--white);
}

.nav a.active{
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(30, 91, 140, 0.25);
}

.menu-toggle{
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 14px;
  background: rgba(30, 91, 140, 0.10);
  cursor: pointer;
  padding: 0;
}

.menu-toggle span{
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue-dark);
  margin: 5px auto;
  border-radius: 999px;
}

/* =========================
   MENÜ ALATTI SÁV
========================= */

.service-strip{
  padding: 24px 0 10px;
  text-align: center;
}

.service-strip p{
  display: inline-block;
  margin: 0;
  padding: 12px 22px;
  border-radius: 16px;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(
    90deg,
    var(--blue-dark),
    var(--sea),
    var(--turquoise),
    var(--sea),
    var(--blue-dark)
  );
  box-shadow: var(--shadow);
}

/* =========================
   KÉP + SZÖVEG
========================= */

.intro-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.intro-image{
  display: flex;
}

.intro-image img{
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
  background: var(--white);
}

.intro-text{
  background: rgba(255,255,255,0.92);
  border-radius: 24px;
  padding: 34px 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border: 2px solid transparent;
}

.intro-text::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--red);
}

.intro-text:hover{
  transform: translateY(-5px);
  border-color: var(--red);
  box-shadow:
    0 24px 54px rgba(18, 40, 92, 0.16),
    0 0 24px rgba(45, 79, 255, 0.28);
}

.intro-text h1{
  color: var(--blue-dark);
  margin-bottom: 18px;
}

.intro-text h2{
  color: var(--blue-dark);
  margin-top: 20px;
  font-size: 28px;
}

.intro-text p{
  color: var(--text);
}

.intro-lead{
  font-size: 18px;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.intro-link{
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--blue-dark);
  text-decoration: none;
}

.intro-link:hover{
  text-decoration: underline;
}

/* =========================
   SOPHIE BLOKKON BELÜLI
   3 KIEMELT KÁRTYA
========================= */

.intro-pillars{
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 22px;
}

.pill{
  width: 100%;
  max-width: 340px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow);
}

.pill.red{
  background: var(--red);
  color: var(--white);
}

.pill.yellow{
  background: var(--yellow);
  color: var(--white);
}

/* =========================
   EGYSÉGES 3 KÁRTYÁS RÉSZEK
========================= */

.unified-card-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.unified-card{
  background: var(--white);
  padding: 28px 22px 24px;
  border-radius: 18px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  position: relative;
  transition: 0.22s ease;
  overflow: hidden;
}

.unified-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
}

.unified-card--red::before{
  background: var(--red);
}

.unified-card--yellow::before{
  background: var(--yellow);
}

.unified-card:hover{
  transform: translateY(-4px);
}

.unified-card--red:hover{
  border-color: var(--red);
  box-shadow:
    0 22px 48px rgba(18, 54, 87, 0.12),
    0 0 0 1px rgba(199,58,50,0.18);
}

.unified-card--yellow:hover{
  border-color: var(--yellow);
  box-shadow:
    0 22px 48px rgba(18, 54, 87, 0.12),
    0 0 0 1px rgba(230,177,31,0.22);
}

.unified-card h3{
  color: var(--blue-dark);
  margin-top: 8px;
  margin-bottom: 10px;
}

.unified-card__icon{
  width: 62px;
  height: 62px;
  margin: 4px auto 16px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 28px;
  background: linear-gradient(145deg, rgba(199,58,50,0.10), rgba(230,177,31,0.18));
  box-shadow: var(--shadow);
}

/* =========================
   GALÉRIA
========================= */

.gallery-section{
  padding-top: 34px;
}

.gallery-folder-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 420px));
  justify-content: center;
  gap: 28px;
  margin-top: 10px;
}

.gallery-folder{
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 22px;
  padding: 34px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: 0.22s ease;
  overflow: hidden;
}

.gallery-folder::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
}

.gallery-folder--red::before{
  background: var(--red);
}

.gallery-folder--yellow::before{
  background: var(--yellow);
}

.gallery-folder--red:hover{
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow:
    0 22px 48px rgba(18, 54, 87, 0.12),
    0 0 0 1px rgba(199,58,50,0.18);
}

.gallery-folder--yellow:hover{
  transform: translateY(-4px);
  border-color: var(--yellow);
  box-shadow:
    0 22px 48px rgba(18, 54, 87, 0.12),
    0 0 0 1px rgba(230,177,31,0.22);
}

.gallery-folder__title{
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 34px;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.gallery-folder__text{
  display: block;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
}

.gallery-panel{
  padding-top: 18px;
}

.gallery-lead{
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: center;
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.gallery-card{
  background: var(--white);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  position: relative;
  transition: 0.22s ease;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
}

.gallery-card:nth-child(3n+1)::before,
.gallery-card:nth-child(3n+3)::before{
  background: var(--red);
}

.gallery-card:nth-child(3n+2)::before{
  background: var(--yellow);
}

.gallery-card:nth-child(3n+1):hover,
.gallery-card:nth-child(3n+3):hover{
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow:
    0 22px 48px rgba(18, 54, 87, 0.12),
    0 0 0 1px rgba(199,58,50,0.18);
}

.gallery-card:nth-child(3n+2):hover{
  transform: translateY(-4px);
  border-color: var(--yellow);
  box-shadow:
    0 22px 48px rgba(18, 54, 87, 0.12),
    0 0 0 1px rgba(230,177,31,0.22);
}

.gallery-card img{
  width: 100%;
  height: 280px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--white);
}

.gallery-open{
  cursor: pointer;
}

/* =========================
   LIGHTBOX
========================= */

.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 35, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  z-index: 3000;
}

.lightbox.open{
  display: flex;
}

.lightbox__img{
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  background: #fff;
}

.lightbox__close{
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-dark);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}

/* =========================
   APARTMAN ALOLDAL
========================= */

.apartman-list-box{
  max-width: 860px;
  margin: 0 auto;
}

.apartman-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.apartman-list li{
  position: relative;
  padding-left: 28px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
}

.apartman-list li::before{
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
}

.apartman-gallery-link{
  margin-top: 26px;
}

.apartman-map{
  margin: 28px auto 10px;
  max-width: 860px;
}

.apartman-map img{
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.apartman-features-box{
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255,255,255,0.92);
  border: 2px solid transparent;
  border-radius: 24px;
  padding: 34px 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.apartman-features-box::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--red);
}

.apartman-features-box:hover{
  transform: translateY(-5px);
  border-color: var(--red);
  box-shadow:
    0 24px 54px rgba(18, 40, 92, 0.16),
    0 0 24px rgba(45, 79, 255, 0.28);
}

.apartman-features-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
}

.apartman-features-list li{
  position: relative;
  padding-left: 26px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
}

.apartman-features-list li::before{
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
}

.apartman-cta-box{
  max-width: 760px;
  margin: 28px auto 0;
  text-align: center;
  background: rgba(255,255,255,0.82);
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.apartman-cta-box p{
  margin-bottom: 12px;
}

.apartman-cta-box::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
}

.apartman-cta-box--yellow::before{
  background: var(--yellow);
}

.apartman-cta-box--yellow:hover{
  transform: translateY(-5px);
  border-color: var(--yellow);
  box-shadow:
    0 24px 54px rgba(18, 40, 92, 0.16),
    0 0 24px rgba(230,177,31,0.24);
}

/* =========================
   KAPCSOLAT OLDAL
========================= */

.contact-box{
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  padding: 30px 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-box::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--red);
}

.contact-box:hover{
  transform: translateY(-5px);
  border-color: var(--red);
  box-shadow:
    0 24px 54px rgba(18, 40, 92, 0.16),
    0 0 24px rgba(199,58,50,0.24);
}

.contact-item{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(30, 91, 140, 0.06);
  transition: 0.2s ease;
  min-width: 0;
}

.contact-item:hover{
  transform: translateY(-3px);
  background: rgba(30, 91, 140, 0.10);
}

.contact-icon{
  font-size: 20px;
  color: var(--blue);
}

.contact-item a{
  text-decoration: none;
  color: var(--blue-dark);
  font-weight: 600;
  font-size: 16px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-item a:hover{
  text-decoration: underline;
}

/* =========================
   ÁRAK OLDAL
========================= */

.arak-box{
  max-width: 600px;
  margin: 0 auto;
}

/* =========================
   TRANSZFER OLDAL
========================= */

.transzfer-box{
  max-width: 700px;
  margin: 0 auto;
}

.transzfer-price{
  font-size: 28px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 14px;
}

/* =========================
   GOMBOK
========================= */

.card-link{
  display: inline-block;
  margin-top: 14px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--blue);
  border-radius: 10px;
  text-decoration: none;
  transition: 0.2s ease;
}

.card-link:hover{
  background: var(--blue-dark);
}

/* =========================
   ALOLDAL ALCÍM
========================= */

.subpage-subtitle-section{
  padding: 14px 0 0;
}

.subpage-subtitle-section .torrevieja-subtitle{
  margin-bottom: 0;
}

/* =========================
   SCROLL TOP
========================= */

.scroll-top{
  position: fixed;
  right: 20px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(18,54,87,0.28);
  z-index: 2500;
}

.scroll-top:hover{
  background: var(--blue-dark);
  transform: translateY(-3px);
}

/* =========================
   TÉRKÉP KÉP
========================= */

.location-map{
  max-width: 820px;
  margin: 0 auto;
}

.location-map img{
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-strong);
}

.location-map img:hover{
  transform: scale(1.01);
  transition: 0.3s ease;
}

/* =========================
   LÁBLÉC
========================= */

.footer{
  background: #15304d;
  color: rgba(255,255,255,0.88);
  padding: 24px 0 32px;
}

.footer__row{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}

.footer__row p{
  margin: 0;
  display: inline-flex;
  align-items: center;
}

.footer a{
  color: #ffd27a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.footer a:hover{
  text-decoration: underline;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1024px){
  .intro-grid{
    grid-template-columns: 1fr;
  }

  .intro-image img{
    max-height: 420px;
    margin: 0 auto;
  }

  .unified-card-grid{
    grid-template-columns: 1fr;
  }

  .gallery-folder-grid{
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-card{
    min-height: 300px;
  }

  .gallery-card img{
    height: 260px;
  }
}

/* =========================
   MOBIL
========================= */

@media (max-width: 768px){
  h1{
    font-size: 36px;
  }

  h2{
    font-size: 28px;
  }

  .header__row{
    min-height: 70px;
    padding: 12px 0;
    flex-wrap: wrap;
  }

  .brand{
    flex: 0 0 130px;
  }

  .brand__logo{
    width: 130px;
  }

  .menu-toggle{
    display: inline-block;
    margin-left: auto;
  }

  .nav{
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 10px;
  }

  .nav.open{
    display: flex;
  }

  .nav a{
    background: rgba(30, 91, 140, 0.08);
    text-align: center;
    border-radius: 12px;
  }

  .service-strip p{
    font-size: 18px;
    padding: 10px 14px;
  }

  .intro-image img{
    max-height: none;
  }

  .intro-text{
    padding: 24px 18px;
  }

  .pill{
    max-width: 290px;
  }

  .wave-decor,
  .section-kicker-title{
    font-size: 24px;
    line-height: 1.25;
  }

  .gallery-grid{
    grid-template-columns: 1fr;
  }

  .gallery-lead{
    font-size: 16px;
  }

  .gallery-folder__title{
    font-size: 30px;
  }

  .gallery-card{
    min-height: 300px;
  }

  .gallery-card img{
    height: 260px;
  }

  .gallery-card:nth-child(odd)::before{
    background: var(--red);
  }

  .gallery-card:nth-child(even)::before{
    background: var(--yellow);
  }

  .gallery-card:nth-child(odd):hover{
    border-color: var(--red);
    box-shadow:
      0 22px 48px rgba(18, 54, 87, 0.12),
      0 0 0 1px rgba(199,58,50,0.18);
  }

  .gallery-card:nth-child(even):hover{
    border-color: var(--yellow);
    box-shadow:
      0 22px 48px rgba(18, 54, 87, 0.12),
      0 0 0 1px rgba(230,177,31,0.22);
  }

  .apartman-features-box{
    padding: 24px 18px;
  }

  .apartman-features-list{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .apartman-features-list li{
    font-size: 16px;
  }

  .apartman-cta-box{
    padding: 20px 16px;
  }
}

/* =========================
   ELHELYEZKEDÉS KÉP KÁRTYÁK
========================= */

.location-gallery{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  align-items: stretch;
}

.location-card{
  background: var(--white);
  border-radius: 20px;
  padding: 12px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: 0.22s ease;
  overflow: hidden;
}

.location-card::before{
  content: "";
  display: block;
  height: 6px;
  background: var(--yellow); /* vagy kék ha már átírtad */
  margin: -12px -12px 12px;
}

.location-card:hover{
  transform: translateY(-4px);
  border-color: var(--yellow);
}

.location-card img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
}

/* MOBIL */
@media (max-width: 768px){
  .location-gallery{
    grid-template-columns: 1fr;
  }

  .location-card img{
    height: 260px;
  }
}

/* =========================
   NYITÓKÉP KÁRTYA
========================= */

.intro-image-card{
  background: var(--white);
  border-radius: 24px;
  padding: 12px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: 0.25s ease;
}

.intro-image-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--red); /* mivel már kék lett a design */
}

.intro-image-card:hover{
  transform: translateY(-5px);
  border-color: var(--blue);
  box-shadow:
    0 24px 54px rgba(18, 40, 92, 0.16),
    0 0 24px rgba(30, 91, 140, 0.25);
}

/* =========================
   REPÜLŐTÁRSASÁG LINK KÁRTYÁK
========================= */

.airline-links{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 24px auto 0;
}

.airline-card{
  display: block;
  padding: 18px 20px;
  border-radius: 16px;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  transition: 0.25s ease;
  box-shadow: var(--shadow);
}

/* Wizz Air */
.airline-card.wizz{
  background: linear-gradient(135deg, #c6007e, #7a0060);
  color: #ffffff;
}

.airline-card.wizz:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(198, 0, 126, 0.35);
}

/* Ryanair */
.airline-card.ryanair{
  background: linear-gradient(135deg, #003087, #ffcc00);
  color: #ffffff;
}

.airline-card.ryanair:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 48, 135, 0.35);
}

/* Google Flights */
.airline-card.google-flights{
  background: linear-gradient(135deg, #1a73e8, #34a853);
  color: #ffffff;
}

.airline-card.google-flights:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(26, 115, 232, 0.35);
}

/* MOBIL */
@media (max-width: 768px){
  .airline-links{
    grid-template-columns: 1fr;
  }
}