/* =========================================================
   VIP Limo Services — Luxury Theme (Black / Gold)
   Replace the entire style.css with this file.
   ========================================================= */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Design Tokens */
:root {
  --bg: #0b0b0b;
  --surface: #111111;
  --surface-2: #151515;
  --border: rgba(255,255,255,0.10);

  --text: #f5f5f5;
  --muted: #bdbdbd;

  --gold: #c9a96e;
  --gold-hover: #e0c48c;

  --danger: #e94560;

  --radius: 10px;
  --shadow: 0 20px 40px rgba(0,0,0,0.60);

  --container: 1200px;
}

/* Base */
html, body {
  height: 100%;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout */
.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

/* Navbar */
.navbar {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: .5px;
}

.logo i {
  color: var(--gold);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 22px;
  align-items: center;
}

.nav-menu a {
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  opacity: .95;
  transition: color .25s ease, opacity .25s ease;
}

.nav-menu a:hover {
  color: var(--gold);
  opacity: 1;
}

/* Hero */
.hero {
  min-height: 90vh;
  background:
    linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.75)),
    url("/static/img/hero-limo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-content {
  width: 100%;
  padding: 0 10px;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.hero-content p {
  margin: 18px auto 0;
  max-width: 780px;
  color: #d0d0d0;
  font-size: 1.15rem;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gold);
  color: #0b0b0b;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.25);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-light {
  background: #ffffff;
  color: #0b0b0b;
  font-weight: 600;
}

.btn-large {
  padding: 15px 40px;
  font-size: 1.1rem;
  width: 100%;
}

/* Section defaults */
.features,
.fleet-preview,
.fleet-section,
.reservation-section,
.admin-section,
.success-section {
  padding: 72px 0;
}

/* Features */
.features {
  background: var(--bg);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(201,169,110,0.35);
}

.feature-card i {
  font-size: 2.6rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.feature-card h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 600;
}

.feature-card p {
  color: var(--muted);
}

/* Fleet Preview */
.fleet-preview h2 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 10px;
  color: var(--text);
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 32px;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.vehicle-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(201,169,110,0.35);
}

.vehicle-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.vehicle-info {
  padding: 18px;
}

.vehicle-info h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 600;
}

.vehicle-specs {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.vehicle-specs span, .spec {
  color: var(--muted);
  font-size: 0.95rem;
}

.vehicle-specs i, .spec i {
  color: var(--gold);
}

.price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  margin: 10px 0 14px;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, rgba(201,169,110,0.18), rgba(255,255,255,0.04));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 72px 0;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.cta p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 1.1rem;
}

/* Page Header (Fleet/About etc.) */
.page-header {
  background:
    linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.72)),
     url("/static/img/about-luxury.png");
  background-size: cover;
  background-position: center;
  padding: 72px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: 2.4rem;
  margin-bottom: 8px;
}

/* Reservation */
.reservation-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.reservation-form {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-section {
  margin-bottom: 22px;
}

.form-section h3 {
  margin-bottom: 14px;
  color: var(--text);
  border-bottom: 2px solid rgba(201,169,110,0.45);
  padding-bottom: 10px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: var(--surface-2);
  color: var(--text);
  border-radius: 8px;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(201,169,110,0.6);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.price-summary {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: var(--radius);
  margin: 18px 0 22px;
}

.price-summary h3 {
  margin-bottom: 10px;
  color: var(--text);
}

.price-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  color: var(--muted);
}

.price-item.total {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  border-bottom: none;
  margin-top: 6px;
}

/* Success */
.success-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.success-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.success-icon {
  font-size: 4.5rem;
  color: #4CAF50;
  margin-bottom: 10px;
}

.success-card h1 {
  margin-bottom: 10px;
}

.success-message {
  color: var(--muted);
  margin-bottom: 18px;
}

.reservation-details {
  text-align: left;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: var(--radius);
  margin-bottom: 18px;
}

.reservation-details h3 {
  margin-bottom: 10px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-item .label {
  color: var(--muted);
  font-weight: 500;
}

.detail-item .value {
  color: var(--text);
}

.email-notice {
  background: rgba(25,118,210,0.12);
  color: #90caf9;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(144,202,249,0.25);
}

/* Admin Table */
.table-container {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.reservations-table {
  width: 100%;
  border-collapse: collapse;
}

.reservations-table thead {
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

.reservations-table th,
.reservations-table td {
  padding: 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.reservations-table tbody tr:hover {
  background: rgba(255,255,255,0.03);
}

.status {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  border: 1px solid rgba(255,255,255,0.18);
}

.status-paid {
  background: rgba(76,175,80,0.18);
  color: #b9f6ca;
  border-color: rgba(76,175,80,0.35);
}

.status-pending {
  background: rgba(255,152,0,0.16);
  color: #ffe0b2;
  border-color: rgba(255,152,0,0.35);
}

.empty-state {
  text-align: center;
  padding: 64px 20px;
  color: var(--muted);
}

.empty-state i {
  font-size: 3.5rem;
  margin-bottom: 10px;
  color: var(--gold);
}

/* Footer */
.footer {
  background: rgba(0,0,0,0.85);
  border-top: 1px solid var(--border);
  color: var(--text);
  padding: 48px 0 18px;
  margin-top: 72px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-bottom: 22px;
}

.footer-section h3 {
  margin-bottom: 12px;
  color: var(--gold);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section a {
  color: var(--text);
  opacity: .92;
  transition: color .25s ease, opacity .25s ease;
}

.footer-section a:hover {
  color: var(--gold);
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  font-size: 1.4rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    display: none; /* later we can add hamburger */
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .reservations-table {
    font-size: 0.9rem;
  }

  .reservations-table th,
  .reservations-table td {
    padding: 10px;
  }
}
/* ===== ABOUT PAGE ===== */

.about-section {
  padding: 72px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 16px;
  font-size: 2rem;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-image img {
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,.6);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== NEWSLETTER ===== */

.newsletter {
  padding: 64px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.newsletter-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.newsletter-text h2 {
  margin-bottom: 6px;
}

.newsletter-text p {
  color: var(--muted);
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  min-width: 260px;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
}

@media (max-width: 768px) {
  .newsletter-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-form {
    width: 100%;
  }

  .newsletter-form input {
    flex: 1;
    width: 100%;
  }
}
/* ===== NAVBAR LOGO ===== */

.logo-img{
    height:48px;
    width:auto;
    object-fit:contain;
    display:block;
}

.logo{
    display:flex;
    align-items:center;
}

/* ===== BRAND LOGO ===== */

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-img{
    height:48px;
    width:auto;
    object-fit:contain;
}

.logo-text{
    display:flex;
    flex-direction:row;
    align-items:center;
    gap:8px;
}

.logo-title{
    font-size:1.1rem;
    font-weight:600;
    letter-spacing:.5px;
    color:#ffffff;
}

.logo-sub{
    font-size:.75rem;
    color:var(--gold);
    letter-spacing:2px;
    text-transform:uppercase;
}

/* ===== NAVBAR SHRINK ON SCROLL ===== */
.navbar {
  transition: background .25s ease, backdrop-filter .25s ease, box-shadow .25s ease;
}

.navbar .container {
  transition: padding .25s ease;
}

/* Logo image + text transitions */
.logo-img {
  transition: height .25s ease, transform .25s ease;
}

.logo-title,
.logo-sub {
  transition: transform .25s ease, opacity .25s ease;
}

/* Scrolled state */
.navbar.navbar--scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}
.navbar.navbar--scrolled .container {
  padding: 10px 0; /* normalde 16px 0 gibi */
}

.navbar.navbar--scrolled .logo-img {
  height: 38px; /* normal 48px ise */
}

.navbar.navbar--scrolled .logo-title,
.navbar.navbar--scrolled .logo-sub {
  transform: translateY(-1px);
}

/* ===== NAVBAR SHRINK ON SCROLL ===== */
.navbar {
  transition: background .25s ease, backdrop-filter .25s ease, box-shadow .25s ease;
}

.navbar .container {
  transition: padding .25s ease;
}

/* Logo image + text transitions */
.logo-img {
  transition: height .25s ease, transform .25s ease;
}

.logo-title,
.logo-sub {
  transition: transform .25s ease, opacity .25s ease;
}

/* Scrolled state */
.navbar.navbar--scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}

.navbar.navbar--scrolled .container {
  padding: 10px 0;
}

.navbar.navbar--scrolled .logo-img {
  height: 38px;
}

.navbar.navbar--scrolled .logo-title,
.navbar.navbar--scrolled .logo-sub {
  transform: translateY(-1px);
}

/* ===== SHRINK: NAVBAR BUTTON (Book Your Ride) ===== */
.navbar .nav-menu .btn.btn-primary {
  padding: 10px 18px;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: padding .25s ease, font-size .25s ease, transform .25s ease;
}

.navbar.navbar--scrolled a.btn.btn-primary {
  padding: 7px 14px !important;
  font-size: 0.85rem !important;
}

/* ===== NAV ACTIONS ===== */
.navbar .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.nav-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 26px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-login-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-login-link:hover {
  color: var(--gold);
}

.nav-book-btn {
  white-space: nowrap;
}

/* ===== PHONE BUTTON ===== */
.nav-phone-btn {
  width: 42px;
  height: 42px;
  background: #D2B16F;
  border: 1px solid #D2B16F;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
  transform: scale(1);
}

.nav-phone-btn i {
  font-size: 16px;
  line-height: 1;
}

.nav-phone-btn:hover {
  background: #C9A96E;
  border-color: #C9A96E;
  transform: translateY(-1px);
}

/* Scroll olduğunda phone button da küçülsün */
.navbar.navbar--scrolled .nav-phone-btn {
  width: 36px;
  height: 36px;
  transform: scale(0.9);
}

.navbar.navbar--scrolled .nav-phone-btn i {
  font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .nav-phone-btn {
    width: 38px;
    height: 38px;
  }

  .nav-phone-btn i {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .navbar .container {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .nav-actions {
    justify-content: center;
  }

  .nav-phone-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .nav-phone-btn i {
    font-size: 13px;
  }
}

/* ===== ABOUT FEATURES ===== */

.about-features {
    background: #f4f4f4;
    padding: 80px 0;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.about-feature i {
    font-size: 34px;
    color: #c8a96a;
    margin-bottom: 20px;
}

.about-feature h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111;
    font-weight: 600;
}

.about-feature p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-features-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== ABOUT FEATURES ===== */

.about-features {
    background: #f4f4f4;
    padding: 80px 0;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.about-feature i {
    font-size: 34px;
    color: #c8a96a;
    margin-bottom: 20px;
}

.about-feature h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111;
    font-weight: 600;
}

.about-feature p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-features-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== ABOUT FEATURES SECTION ===== */

.about-features {
  background: var(--bg);
  padding: 70px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}

.about-feature {
  background: var(--surface);
  padding: 28px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all .25s ease;
}

.about-feature:hover {
  transform: translateY(-6px);
  border-color: rgba(201,169,110,0.4);
  box-shadow: var(--shadow);
}

.about-feature i {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.about-feature h3 {
  color: var(--text);
  margin-bottom: 10px;
  font-weight: 600;
}

.about-feature p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== CLEAN RESERVATION PAGE ===== */

.reservation-page-clean {
  background: #000000;
  padding: 70px 0 90px;
  min-height: 100vh;
}

.reservation-logo-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto 28px;
}

.reservation-page-logo {
  width: 170px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.reservation-widget-clean {
  max-width: 1100px;
  margin: 0 auto;
  background: transparent;
}

.reservation-widget-embed {
  background: #000000;
  border-radius: 0;
  box-shadow: none;
  padding: 24px;
}

/* Limo Anywhere iframe */
.reservation-widget-embed iframe {
  width: 100%;
  min-height: 1200px;
  border: none;
  background: #fff;
}

/* Eğer widget kendi içeriğini anchor üzerinden render ediyorsa */
.reservation-widget-embed > a[data-ores-widget] {
  display: inline-block;
  margin-bottom: 12px;
  color: #111;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 768px) {
  .reservation-page-clean {
    padding: 40px 0 60px;
  }

  .reservation-page-logo {
    width: 140px;
  }

  .reservation-widget-embed {
    padding: 12px;
  }

  .reservation-widget-embed iframe {
    min-height: 1300px;
  }
}

/* ===== RESERVATION TRUST STRIP ===== */

.reservation-trust-strip {
  padding: 90px 0;
  background:
    linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.72)),
    url("/static/img/reservation-city-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.reservation-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
}

.reservation-trust-item {
  color: #fff;
  padding: 20px;
}

.reservation-trust-item i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.reservation-trust-item h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #fff;
}

.reservation-trust-item p {
  color: #d8d8d8;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}

/* ===== RESERVATION FOOTER INFO ===== */

.reservation-footer-info {
  background: #000;
  padding: 70px 0 50px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.reservation-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
}

.reservation-footer-brand {
  color: #fff;
}

.reservation-footer-logo {
  width: 150px;
  max-width: 100%;
  margin-bottom: 20px;
}

.reservation-footer-brand ul,
.reservation-footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.reservation-footer-brand li,
.reservation-footer-column li {
  color: #cfcfcf;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.reservation-footer-column h4 {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 1rem;
}

.reservation-footer-column a {
  color: #cfcfcf;
  text-decoration: none;
  transition: 0.3s;
}

.reservation-footer-column a:hover {
  color: var(--gold);
}

/* Responsive */
@media (max-width: 992px) {
  .reservation-trust-grid {
    grid-template-columns: 1fr;
  }

  .reservation-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .reservation-footer-grid {
    grid-template-columns: 1fr;
  }

  .reservation-trust-strip {
    padding: 60px 0;
  }
}
.reservation-trust-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  text-align: left;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.reservation-trust-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #d8d8d8;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* ===== SERVICES PAGE ===== */

.services-hero {
  min-height: 42vh;
  background:
    linear-gradient(rgba(0,0,0,.60), rgba(0,0,0,.78)),
    url("/static/img/arka2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.services-hero-content {
  max-width: 820px;
  margin: 0 auto;
}

.services-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 14px;
  color: var(--text);
}

.services-hero-content p {
  color: #d8d8d8;
  font-size: 1.05rem;
}

.services-section {
  padding: 80px 0;
  background: var(--bg);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 90px;
}

.service-row.reverse .service-text {
  order: 2;
}

.service-row.reverse .service-image {
  order: 1;
}

.service-text h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--text);
}

.service-text p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 1rem;
}

.service-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  object-fit: cover;
  min-height: 340px;
}

/* Scroll reveal */
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all 0.9s ease;
}

.reveal-left {
  transform: translateX(-80px);
}

.reveal-right {
  transform: translateX(80px);
}

.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 992px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 60px;
  }

  .service-row.reverse .service-text,
  .service-row.reverse .service-image {
    order: unset;
  }

  .services-hero-content h1 {
    font-size: 2.4rem;
  }
}

/* ===== CONTACT PAGE ===== */

.contact-hero {
  min-height: 40vh;
  background:
    linear-gradient(rgba(0,0,0,.58), rgba(0,0,0,.76)),
    url("/static/img/arka1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.contact-hero-content {
  max-width: 850px;
  margin: 0 auto;
}

.contact-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 14px;
  color: var(--text);
}

.contact-hero-content p {
  color: #d8d8d8;
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-section {
  padding: 80px 0;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card,
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-info-card h2,
.contact-form-card h2 {
  color: var(--text);
  margin-bottom: 14px;
  font-size: 2rem;
}

.contact-info-card p,
.contact-form-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.contact-info-item i {
  color: var(--gold);
  width: 20px;
  text-align: center;
}

.contact-info-item a {
  color: var(--text);
  text-decoration: none;
  transition: color .3s ease;
}

.contact-info-item a:hover {
  color: var(--gold);
}

.contact-brand-image {
  margin-top: 24px;
}

.contact-brand-image img {
  width: 220px;
  max-width: 100%;
  display: block;
}

.contact-form .form-group {
  margin-bottom: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-map {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero-content h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 22px;
  }

  .contact-hero {
    min-height: 32vh;
    padding: 40px 0;
  }

  .contact-hero-content h1 {
    font-size: 2rem;
  }
}

.circle-logo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.contact-brand-image img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  display: block;
  image-rendering: auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

/* ===== QUICKRES HOME SECTION ===== */

.quickres-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #070707 0%, #0b0b0b 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quickres-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center;
}

.quickres-text h2 {
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 14px;
}

.quickres-text p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
}

.quickres-widget {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.28);
  overflow: hidden;
}

.quickres-widget iframe {
  width: 100%;
  min-height: 320px;
  border: none;
  background: #fff;
}

/* ===== LOGIN PAGE ===== */

.login-hero {
  min-height: 36vh;
  background:
    linear-gradient(rgba(0,0,0,.60), rgba(0,0,0,.78)),
    url("/static/img/hero-limo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.login-hero-content {
  max-width: 820px;
  margin: 0 auto;
}

.login-hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 14px;
  color: var(--text);
}

.login-hero-content p {
  color: #d8d8d8;
  font-size: 1.05rem;
  line-height: 1.7;
}

.login-widget-section {
  padding: 80px 0;
  background: var(--bg);
}

.login-widget-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.login-widget-header {
  padding: 28px 28px 18px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(
    135deg,
    rgba(201,169,110,0.08),
    rgba(255,255,255,0.02)
  );
}

.login-widget-header h2 {
  color: var(--text);
  margin-bottom: 8px;
  font-size: 2rem;
}

.login-widget-header p {
  color: var(--muted);
}

.login-widget-embed {
  background: #ffffff;
  padding: 24px;
}

.login-widget-embed iframe {
  width: 100%;
  min-height: 420px;
  border: none;
  background: #fff;
}
.navbar .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.nav-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 26px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-login-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-login-link:hover {
  color: var(--gold);
}

.nav-book-btn {
  white-space: nowrap;
}

/* mobile */
@media (max-width: 992px) {
  .navbar .container {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .nav-actions {
    justify-content: center;
  }
}

/* ===== LOGIN PAGE REFINED ===== */

.login-page {
  padding: 80px 0;
  background:
    linear-gradient(rgba(0,0,0,.78), rgba(0,0,0,.88)),
    url("/static/img/hero-limo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: calc(100vh - 90px);
}

.login-page-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.login-page-header h1 {
  font-size: 3rem;
  color: var(--text);
  margin-bottom: 14px;
}

.login-page-header p {
  color: #d4d4d4;
  line-height: 1.7;
  font-size: 1.05rem;
}

.login-page-card {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(10,10,10,0.92);
  border: 1px solid rgba(201,169,110,0.18);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
}

.login-page-card-top {
  padding: 30px 30px 20px;
  background: linear-gradient(
    135deg,
    rgba(201,169,110,0.10),
    rgba(255,255,255,0.02)
  );
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.login-page-card-top h2 {
  color: var(--text);
  font-size: 2rem;
  margin-bottom: 8px;
}

.login-page-card-top p {
  color: var(--muted);
  line-height: 1.6;
}

.login-page-widget {
  background: #000000;
  padding: 26px;
}

/* Widget iç alanını biraz daha düzgün göstermek için */
.login-page-widget > div,
.login-page-widget form,
.login-page-widget iframe {
  width: 100%;
}

@media (max-width: 768px) {
  .login-page {
    padding: 50px 0;
  }

  .login-page-header h1 {
    font-size: 2rem;
  }

  .login-page-card-top,
  .login-page-widget {
    padding: 18px;
  }
}

.nav-phone-btn {
  width: 42px;
  height: 42px;
  background: #D2B16F;
  border: 1px solid #D2B16F;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-phone-btn:hover {
  background: #C9A96E;
  border-color: #C9A96E;
  transform: translateY(-1px);
}

/* ===== EVENTS PREVIEW HOME SECTION ===== */

.events-preview {
  padding: 90px 0;
  background:
    linear-gradient(rgba(0,0,0,.58), rgba(0,0,0,.74)),
    url("/static/img/events-kapak.png");
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.events-preview-content {
  max-width: 820px;
  margin: 0 auto;
}

.events-preview-label {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.events-preview-content h2 {
  font-size: 3rem;
  color: var(--text);
  margin-bottom: 16px;
}

.events-preview-content p {
  color: #d6d6d6;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 26px;
}

@media (max-width: 768px) {
  .events-preview {
    padding: 60px 0;
  }

  .events-preview-content h2 {
    font-size: 2rem;
  }
}
.events-hero {
  min-height: 42vh;
  background:
    linear-gradient(rgba(0,0,0,.60), rgba(0,0,0,.78)),
    url("/static/img/eventss.png");
  background-size: cover;
  background-position: center 95%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.nav-phone-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.nav-phone-btn i {
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 1200px) {
  .nav-phone-btn {
    width: 38px;
    height: 38px;
  }

  .nav-phone-btn i {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .nav-phone-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .nav-phone-btn i {
    font-size: 13px;
  }
}