/* airplanerental – Private Aircraft & Charter Rental Platform – Israel */
/* Fast, minimal, lead-gen focused */

:root {
  --navy: #0a1628;
  --navy-light: #132238;
  --slate: #1e3a5f;
  --gold: #c9a227;
  --gold-light: #e5c76b;
  --white: #f8f9fa;
  --gray: #94a3b8;
  --gray-dark: #64748b;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1e293b;
  background: var(--white);
}

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--white); letter-spacing: 0.05em; }
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--white); font-size: 0.9rem; font-weight: 500; }
.nav-links a:hover { color: var(--gold-light); }
.btn {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--navy); }
.nav-cta .btn { padding: 0.5rem 1rem; font-size: 0.85rem; }
.nav-links a.btn-primary:hover { color: var(--navy); }

.menu-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--navy);
    padding: 1rem;
    gap: 0;
    display: none;
  }
  .nav-links.active { display: flex; }
  .nav-links li { padding: 0.75rem 0; border-bottom: 1px solid var(--navy-light); }
}

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--slate) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 4rem;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-bg-icon {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(140px, 20vw, 220px);
  height: auto;
  color: var(--gold);
  z-index: 0;
  pointer-events: none;
}
.hero-bg-icon svg { width: 100%; height: auto; }
@media (max-width: 768px) { .hero-bg-icon { display: none; } }
.hero-content { position: relative; z-index: 1; text-align: center; color: var(--white); }
.hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.hero .tagline { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--gold-light); margin-bottom: 1.5rem; font-weight: 500; }
.hero-features { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem 2rem; margin-bottom: 2rem; font-size: 0.95rem; color: rgba(255,255,255,0.9); }
.hero-features span { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-features .icon { color: var(--gold); font-size: 1.1rem; }
.hero .btn-primary { font-size: 1rem; padding: 0.9rem 2rem; }

.trust { padding: 3rem 0; background: var(--white); }
.trust .section-title { text-align: center; color: var(--navy); margin-bottom: 2rem; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; text-align: center; }
.trust-card { padding: 1.5rem; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.06); }
.trust-card .quote { font-size: 1.1rem; color: var(--navy); font-weight: 500; margin-bottom: 0.5rem; }
.trust-card .sub { color: var(--gray-dark); font-size: 0.9rem; }

.section { padding: 3.5rem 0; }
.section-alt { background: #f1f5f9; }
.section-title { color: var(--navy); margin-bottom: 1rem; }
.section-subtitle { color: var(--gray-dark); max-width: 600px; margin: 0 auto 2rem; text-align: center; }

.cta-block {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%);
  color: var(--white);
  border-radius: var(--radius);
  margin: 2rem 0;
}
.cta-block h3 { color: var(--white); margin-bottom: 0.5rem; }
.cta-block p { opacity: 0.9; margin-bottom: 1.25rem; }
.cta-block .btn-primary { background: var(--gold); color: var(--navy); }

.site-footer {
  background: var(--navy);
  color: var(--gray);
  padding: 2.5rem 0 1.5rem;
  margin-top: 3rem;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-grid h4 { color: var(--white); font-size: 1rem; margin-bottom: 0.75rem; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.5rem; }
.footer-grid a { color: var(--gray); }
.footer-grid a:hover { color: var(--gold-light); }
.footer-acquisition { text-align: center; font-size: 0.95rem; color: var(--gray); margin: 0 0 1rem; padding-top: 1rem; border-top: 1px solid var(--navy-light); }
.footer-acquisition a { color: rgba(201, 162, 39, 0.9); text-decoration: underline; text-underline-offset: 2px; }
.footer-acquisition a:hover { color: var(--gold-light); }
.footer-bottom { text-align: center; padding-top: 0; border-top: none; font-size: 0.85rem; }
.form-disclaimer { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid #e2e8f0; font-size: 0.8rem; color: var(--gray-dark); text-align: center; }
.form-group label .optional { font-weight: 400; color: var(--gray-dark); }
.partnership-prose { margin-bottom: 2rem; }
.partnership-form { margin-top: 0; }

.page-hero {
  padding: 6rem 0 3rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%);
  color: var(--white);
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero p { opacity: 0.9; max-width: 560px; margin: 0 auto; }

.quote-form-wrap { max-width: 640px; margin: 0 auto; padding: 2rem; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.4rem; color: var(--navy); }
.form-group label .required { color: #b91c1c; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.quote-form-wrap .btn-primary { width: 100%; padding: 0.9rem; font-size: 1rem; margin-top: 0.5rem; }
.form-success { display: none; padding: 1.5rem; background: #dcfce7; color: #166534; border-radius: var(--radius); margin-top: 1rem; text-align: center; }
.form-success.show { display: block; }

.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { margin-top: 2rem; margin-bottom: 0.75rem; color: var(--navy); }
.prose p { margin-bottom: 1rem; }
.prose ul { margin: 1rem 0; padding-left: 1.5rem; }

.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.06); transition: transform var(--transition), box-shadow var(--transition); }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12); }
.card-image { height: 160px; background: linear-gradient(135deg, var(--slate) 0%, var(--navy-light) 100%); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 3rem; }
.card-body { padding: 1.5rem; }
.card h3 { margin-bottom: 0.5rem; color: var(--navy); }
.card p { color: var(--gray-dark); font-size: 0.95rem; margin-bottom: 1rem; }
.card .btn { font-size: 0.9rem; }

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

.lang-switch { font-size: 0.85rem; font-weight: 500; margin-inline-start: 0.5rem; padding-inline-start: 0.75rem; border-inline-start: 1px solid rgba(255,255,255,0.3); }
.lang-switch a { color: var(--gray); }
.lang-switch a:hover { color: var(--gold-light); }
@media (max-width: 600px) {
    .lang-switch {
        border-inline-start: none;
        margin-inline-start: 0px;
    }
}

html[dir="rtl"] body { text-align: right; font-family: 'Heebo', 'DM Sans', sans-serif; }
html[dir="rtl"] .hero-content { text-align: center; }
html[dir="rtl"] .page-hero { text-align: center; }
html[dir="rtl"] .section-title.text-center { text-align: center; }
html[dir="rtl"] .section-subtitle { text-align: center; }
html[dir="rtl"] .prose { text-align: right; }
html[dir="rtl"] .prose ul { padding-right: 1.5rem; padding-left: 0; }
html[dir="rtl"] .cta-block { text-align: center; }
html[dir="rtl"] .trust-card { text-align: right; }
html[dir="rtl"] .card-body { text-align: right; }
html[dir="rtl"] .form-group input, html[dir="rtl"] .form-group select, html[dir="rtl"] .form-group textarea { text-align: right; }
html[dir="rtl"] .footer-acquisition { text-align: center; }
html[dir="rtl"] .footer-bottom { text-align: center; }
html[dir="rtl"] .form-disclaimer { text-align: center; }
