/* --- RESET & NORMALIZE --- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  font-size:100%;
  font:inherit;
  vertical-align:baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F1EBE0;
  color: #173A50;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  box-shadow: none;
}

/* --- BRAND VARIABLES (FALLBACKS) --- */
:root {
  --color-primary: #173A50;
  --color-secondary: #8DB5C5;
  --color-accent: #F1EBE0;
  --color-electric: #05DFFC;
  --color-pink: #FF238D; /* energetic pop */
  --color-yellow: #FFDA3A;
  --color-dark: #122738;
  --color-shadow: rgba(23, 58, 80, 0.16);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* --- SPACING PATTERNS --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 var(--color-shadow);
  padding: 28px 24px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(20,120,240,0.12), 0 1.5px 24px 0 var(--color-pink);
  transform: translateY(-4px) scale(1.01);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 3px 18px 0 var(--color-shadow);
  margin-top: 32px;
  margin-bottom: 20px;
  border-left: 6px solid var(--color-electric);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  color: #173A50;
  letter-spacing: 1px;
  word-spacing: 1px;
  margin-bottom: 0.5em;
  line-height: 1.13;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
  color: var(--color-electric);
  text-shadow: 0 3px 24px #8db5c510;
}
h2 {
  font-size: 2rem;
  color: var(--color-pink);
}
h3 {
  font-size: 1.5rem;
  color: #173A50;
}
h4 {
  font-size: 1.25rem;
}
p, li {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--color-dark);
  line-height: 1.65;
}
strong {
  font-family: var(--font-display);
  font-weight: 700;
}
.text-section h2 {
  margin-bottom: 10px;
}
.text-section ul {
  margin-left: 18px;
  margin-bottom: 14px;
}
.text-section li {
  margin-bottom: 8px;
}

/* --- NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 8px 24px 0 #173A5012;
  position: sticky;
  top: 0;
  z-index: 30;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-start;
  padding: 18px 5vw 18px 5vw;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  padding: 6px 12px;
  border-radius: 7px;
  transition: background 0.15s, color 0.18s, box-shadow 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-electric);
  color: #fff;
  box-shadow: 0 2px 10px 0 #05DFFC16;
}
.main-nav a.cta-primary {
  background: var(--color-pink);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  border-radius: 12px;
  padding: 10px 22px;
  margin-left: auto;
  box-shadow: 0 4px 18px var(--color-pink);
  transition: background 0.18s, transform 0.12s;
}
.main-nav a.cta-primary:hover, .main-nav a.cta-primary:focus {
  background: #FF5BB0;
  color: #fff;
  transform: scale(1.05);
}
.main-nav img {
  height: 40px;
  width: auto;
  margin-right: 20px;
  padding: 2px 0;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: var(--color-electric);
  color: #173A50;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 24px;
  top: 18px;
  z-index: 50;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-pink);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.25s cubic-bezier(.77,.2,.05,1.0);
  box-shadow: 0 4px 24px 0 #173A5040;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 60px;
  padding-bottom: 24px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: var(--color-pink);
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border: none;
  position: absolute;
  right: 22px;
  top: 16px;
  cursor: pointer;
  z-index: 1010;
  box-shadow: 0 3px 12px #FF238D20;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-electric);
  color: #173A50;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  padding: 40px 24px 0 32px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary);
  padding: 10px 8px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-electric);
  color: #fff;
}

/* --- HERO & PAGE SECTIONS --- */
.hero, .location-hero {
  background: linear-gradient(90deg, #05DFFC 0%, #FF238D 100%);
  color: #fff;
  padding: 60px 0 40px 0;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper, .location-hero .content-wrapper {
  max-width: 600px;
  padding: 25px;
  background: #ffffff11;
  border-radius: 18px;
  gap: 24px;
  box-shadow: 0 4px 24px #FF238D10;
}
.hero h1, .location-hero h1 {
  color: #fff;
  font-size: 2.3rem;
  text-shadow: 0 8px 32px #12273822;
}
.hero p,
.location-hero p {
  color: #F1EBE0;
  font-weight: 500;
}

/* --- FEATURES --- */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 22px;
  justify-content: space-between;
}
.feature {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 14px 0 var(--color-shadow);
  padding: 28px 20px 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 280px;
  margin-bottom: 20px;
  gap: 14px;
  border-left: 4px solid var(--color-electric);
  transition: box-shadow 0.12s, border 0.12s, transform 0.13s;
}
.feature:hover,
.feature:focus {
  border-left: 10px solid var(--color-pink);
  box-shadow: 0 6px 30px 0 #FF238D22;
  transform: scale(1.03);
}
.feature img {
  height: 32px;
  width: 32px;
  margin-bottom: 8px;
}

/* --- SERVICE CARDS & FLEET --- */
.services-grid .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 14px 0 var(--color-shadow);
  padding: 24px 22px;
  flex: 1 1 250px;
  min-width: 230px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.14s, transform 0.13s;
}
.service-card:hover {
  box-shadow: 0 8px 28px 0 #05DFFC35;
  transform: translateY(-5px) scale(1.03);
}
.service-card img {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
}
.service-card h2 {
  color: var(--color-primary);
  font-size: 1.23rem;
  margin-bottom: 8px;
}

.fleet-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.aircraft {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 var(--color-shadow);
  flex: 1 1 260px;
  min-width: 230px;
  max-width: 320px;
  padding: 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  border-left: 4px solid var(--color-secondary);
  transition: border 0.13s;
}
.aircraft:hover {
  border-left: 9px solid var(--color-electric);
  box-shadow: 0 4px 20px 0 #05DFFC20;
}
.aircraft img {
  width: 34px;
  height: 34px;
}

.certifications {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.certifications img {
  width: 28px;
  height: 28px;
}
.certifications span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.team-member {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 3px 12px 0 var(--color-shadow);
  padding: 18px 16px;
  flex: 1 1 220px;
  min-width: 170px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  border-top: 3px solid var(--color-pink);
  transition: box-shadow 0.13s;
}
.team-member:hover {
  box-shadow: 0 7px 22px 0 #FF238D1a;
}
.team-member img {
  width: 40px;
  height: 40px;
}
.team-member h3 {
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 2px;
}

/* --- BUTTONS (CTA) --- */
.cta-primary, .cta-secondary {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.14rem;
  padding: 13px 34px;
  border-radius: 40px;
  background: var(--color-electric);
  color: #173A50;
  letter-spacing: 1px;
  box-shadow: 0 3px 14px #05DFFC24;
  border: none;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, transform 0.13s;
  margin-top: 18px;
  margin-bottom: 8px;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-pink);
  color: #fff;
  transform: scale(1.05) rotate(-1.5deg);
  box-shadow: 0 7px 34px #FF238D24;
}
.cta-secondary {
  background: var(--color-pink);
  color: #fff;
  font-weight: 900;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-electric);
  color: #173A50;
}

/* --- FOOTER --- */
footer {
  background: #173A50;
  color: #fff;
  padding: 32px 0 16px;
  font-size: 1.02rem;
  letter-spacing: 0.5px;
  margin-top: auto;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 12px;
}
.footer-content > * {
  min-width: 150px;
}
.footer-content img {
  height: 38px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a {
  color: #8DB5C5;
  text-decoration: underline;
  padding: 2px 0;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-electric);
}
.footer-contact {
  color: var(--color-accent);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  margin-bottom: -2px;
  vertical-align: middle;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
}
.footer-social a {
  background: #fff;
  border-radius: 100%;
  padding: 5px;
  transition: background 0.14s, box-shadow 0.16s;
  display: flex;
  align-items: center;
}
.footer-social a:hover, .footer-social a:focus {
  background: var(--color-electric);
}
.footer-social img {
  width: 26px;
  height: 26px;
}

/* --- FAQ & TESTIMONIALS --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px #05DFFC10;
  padding: 18px 16px;
  margin-bottom: 8px;
}
.faq-item h2 {
  font-size: 1.12rem;
  margin-bottom: 7px;
  color: var(--color-primary);
}
.faq-item p {
  color: var(--color-dark);
}
.testimonial-card {
  color: #173A50;
  background: #ffffff;
  box-shadow: 0 3px 14px 0 #8DB5C522;
}
.testimonial-card p {
  font-size: 1.21rem;
  color: #173A50;
  font-style: italic;
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--color-pink);
}

/* --- LEGAL SECTION --- */
.legal-section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 12px 0 var(--color-shadow);
  padding: 36px 24px;
  margin-bottom: 36px;
}
.legal-section h1 {
  color: var(--color-pink);
}

/* --- CONTACT DETAILS --- */
.contact-details-section .contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 9px 0 12px 0;
}
.contact-details img {
  width: 22px;
  height: 22px;
  margin-right: 9px;
  vertical-align: middle;
}
.contact-details a {
  color: var(--color-pink);
  word-break: break-all;
  padding: 2px 0;
  transition: color 0.15s;
}
.contact-details a:hover, .contact-details a:focus {
  color: var(--color-electric);
}

.contact-info-snippet {
  margin-top: 8px;
  padding: 12px 0 0 0;
  font-size: 1.08rem;
  color: var(--color-secondary);
}
.opening-hours ul {
  margin-top: 10px;
  margin-bottom: 7px;
}
.opening-hours li {
  font-size: 1.1rem;
}

/* --- GRID ALIGNMENT REQUIREMENTS (FLEXBOX ONLY) --- */
/* Features and service/fleet containers */
.features .feature-grid,
.fleet-list,
.services-grid .content-wrapper,
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  z-index: 1200;
  background: #fff;
  color: #173A50;
  box-shadow: 0 -3px 18px #173A5035;
  padding: 22px 14px 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
  animation: slideUpBanner 0.38s 0s cubic-bezier(.74,1,0,1) 1;
}
@keyframes slideUpBanner {
  from { transform: translateY(200px); opacity: 0.3; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  max-width: 650px;
  font-size: 1.04rem;
  color: #173A50;
}
.cookie-banner .cookie-btn-row {
  display: flex;
  flex-direction: row;
  gap: 17px;
  margin-top: 6px;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  background: var(--color-electric);
  color: #173A50;
  border-radius: 22px;
  padding: 8px 22px;
  border: none;
  box-shadow: 0 2px 8px #05DFFC16;
  cursor: pointer;
  margin-left: 0;
  margin-right: 0;
  transition: background 0.14s, color 0.13s, transform 0.12s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-pink);
  color: #fff;
  transform: scale(1.06);
}
.cookie-banner button.cookie-settings {
  background: var(--color-pink);
  color: #fff;
  margin-right: 0;
}
.cookie-banner button.cookie-settings:hover {
  background: var(--color-electric);
  color: #173A50;
}

/* --- COOKIE MODAL --- */
.cookie-modal-backdrop {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(23,58,80,0.62);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.18s;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 34px #05DFFC32;
  padding: 34px 22px 26px 22px;
  max-width: 400px;
  min-width: 275px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  animation: popInModal 0.23s cubic-bezier(0.5,2,0.7,0.92);
}
@keyframes popInModal {
  from { transform: scale(0.8); opacity: 0.1; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  color: var(--color-pink);
  font-size: 1.28rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.cookie-modal label {
  font-size: 1.09rem;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 6px;
}
.cookie-modal input[type=checkbox] {
  accent-color: var(--color-electric);
  width: 18px;
  height: 18px;
}
.cookie-category-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  margin-bottom: 7px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  width: 100%;
  justify-content: flex-end;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: var(--color-pink);
  font-size: 1.8rem;
  cursor: pointer;
}
.cookie-modal .cookie-close:hover {
  color: var(--color-electric);
}

/* --- THANK YOU SECTION --- */
.thank-you-section .content-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}
.thank-you-section h1 {
  color: var(--color-electric);
}

/* --- UTILITY & HELPER CLASSES --- */
.mt-4 { margin-top: 24px; }
.mb-4 { margin-bottom: 24px; }
.text-center { text-align: center; }

/* --- RESPONSIVE DESIGN (MOBILE-FIRST) --- */
@media (max-width: 1080px) {
  .main-nav { gap: 13px; }
  .footer-content { gap: 24px; }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 8px;
    flex-wrap: wrap;
    padding: 16px 3vw 16px 3vw;
  }
  .footer-content {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 0 10px;
  }
  .footer-nav { flex-direction: row; gap: 16px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .section, .hero, .location-hero, .legal-section {
    padding: 24px 6px;
  }
  .features .feature-grid, .fleet-list, .services-grid .content-wrapper, .team-list,
  .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 19px;
  }
  .about-team .content-wrapper, .why-choose-us .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .hero .content-wrapper, .location-hero .content-wrapper {
    max-width: 98vw;
    padding: 16px 7px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.09rem; }
  p, li { font-size: 1rem; }
  .footer-content {
    padding: 0 7px;
  }
  .hero, .location-hero { min-height: 200px; }
  .cta-primary, .cta-secondary { font-size: 1rem; padding: 10px 15px; }
}
/* --- LAYOUTS: FLEX ONLY, NEVER GRID --- */
/* (NO CSS GRID PROPERTIES USED ANYWHERE) */
