/* ==========================================================================
   EN İDEAL COFFEE - STİL DOSYASI (STYLE.CSS)
   En İdeal Sürücü Kursları kurumsal kimliği ile birebir uyumlu tasarım sistemi
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Urbanist:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #EC2526;
  --primary-dark: #C81D1E;
  --primary-light: #FF4A4B;
  --primary-rgb: 236, 37, 38;
  --primary-soft: rgba(236, 37, 38, 0.08);

  --dark: #111117;
  --dark-slate: #1A1A22;
  --dark-rgb: 17, 17, 23;
  --dark-card: #20202A;

  --gray-bg: #F7F7F8;
  --gray-light: #ECECEE;
  --gray-border: #E2E2E6;
  --text-main: #111117;
  --text-muted: #676770;
  --white: #FFFFFF;

  --font-heading: 'Urbanist', sans-serif;
  --font-body: 'Manrope', sans-serif;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.12);
  --shadow-primary: 0 10px 25px rgba(236, 37, 38, 0.28);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   GENEL SIFIRLAMA & TEMEL ELEMANLAR
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

button {
  cursor: pointer;
  background: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   TIPOGRAFI & BAŞLIK BİLEŞENLERİ
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 800;
  line-height: 1.25;
}

.sec-title {
  position: relative;
  margin-bottom: 45px;
}

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

.sec-title__tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.sec-title__tagline i {
  font-size: 12px;
}

.sec-title__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.sec-title__title span.highlight {
  color: var(--primary);
  position: relative;
}

.sec-title__text {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 14px auto 0;
}

/* ==========================================================================
   EN İDEAL BUTON STİLLERİ (DRIVSCHOL BUTONLARI)
   ========================================================================== */
.drivschol-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  background-color: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-primary);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.drivschol-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--dark);
  transition: var(--transition);
  z-index: -1;
}

.drivschol-btn:hover {
  color: var(--white);
  box-shadow: 0 10px 25px rgba(17, 17, 23, 0.35);
  transform: translateY(-2px);
}

.drivschol-btn:hover::before {
  width: 100%;
}

.drivschol-btn--black {
  background-color: var(--dark);
  box-shadow: 0 8px 20px rgba(17, 17, 23, 0.25);
}

.drivschol-btn--black::before {
  background-color: var(--primary);
}

.drivschol-btn--outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.drivschol-btn--outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

.drivschol-btn--outline::before {
  display: none;
}

.drivschol-btn--sm {
  padding: 8px 18px;
  font-size: 13px;
}

/* ==========================================================================
   ÜST BİLGİ VE DUYURU ÇUBUĞU (TOP BAR)
   ========================================================================== */
.top-bar {
  background-color: var(--dark);
  color: #B2B2BC;
  font-size: 13px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar__left, .top-bar__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar__item i {
  color: var(--primary);
  font-size: 14px;
}

.top-bar__item a:hover {
  color: var(--white);
}

.top-bar__badge {
  background-color: var(--primary);
  color: var(--white);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   ANA HEADER & NAVBAR (STICKY)
   ========================================================================== */
.main-header {
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.main-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
}

.main-header__logo {
  display: flex;
  align-items: center;
}

.main-header__logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav__link {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  position: relative;
  padding: 8px 0;
}

.main-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.main-nav__link:hover {
  color: var(--primary);
}

.main-nav__link:hover::after,
.main-nav__link.active::after {
  width: 100%;
}

.main-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-lock-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--gray-bg);
  color: var(--dark);
  font-size: 15px;
  transition: var(--transition);
}

.admin-lock-btn:hover {
  background-color: var(--dark);
  color: var(--white);
}

/* ==========================================================================
   HERO BANNER & KAMPÜS VİTRİNİ
   ========================================================================== */
.hero-section {
  position: relative;
  background-color: var(--dark);
  color: var(--white);
  padding: 80px 0 100px;
  overflow: hidden;
  background-image: linear-gradient(135deg, rgba(17, 17, 23, 0.94) 0%, rgba(17, 17, 23, 0.82) 60%, rgba(236, 37, 38, 0.35) 100%), url('../images/hero-banner.jpg?v=2');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to top, var(--white), transparent);
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(236, 37, 38, 0.2);
  border: 1px solid rgba(236, 37, 38, 0.4);
  color: #FF7B7C;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--white);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span.red {
  color: var(--primary);
  text-shadow: 0 4px 20px rgba(236, 37, 38, 0.4);
}

.hero-desc {
  font-size: 1.2rem;
  color: #D6D6DF;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 600px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 600px;
}

.hero-stat__num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.hero-stat__label {
  font-size: 13px;
  color: #A3A3AF;
  margin-top: 5px;
}

/* ==========================================================================
   ÇAPRAZ PROMOSYON BANNERI (SÜRÜCÜ KURSU & KAMPÜS KOMBOSU)
   ========================================================================== */
.promo-bar {
  background: linear-gradient(90deg, #EC2526 0%, #111117 100%);
  color: var(--white);
  padding: 24px 0;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 5;
}

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

.promo-bar__content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.promo-bar__icon {
  width: 60px;
  height: 60px;
  background-color: var(--white);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.promo-bar__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.promo-bar__desc {
  font-size: 0.95rem;
  color: #F1F1F5;
  opacity: 0.95;
}

/* ==========================================================================
   İNTERAKTİF DİJİTAL QR MENÜ BÖLÜMÜ
   ========================================================================== */
.menu-section {
  padding: 90px 0;
  background-color: var(--gray-bg);
  position: relative;
}

/* Menü Kontrol Alanı (Arama ve Filtreler) */
.menu-controls {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
  border: 1px solid var(--gray-border);
}

.menu-search-box {
  position: relative;
  margin-bottom: 24px;
}

.menu-search-box i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 18px;
}

.menu-search-input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  background-color: var(--gray-bg);
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
}

.menu-search-input:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(236, 37, 38, 0.1);
}

/* Kategori Butonları */
.menu-categories {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.menu-categories::-webkit-scrollbar {
  height: 4px;
}

.menu-categories::-webkit-scrollbar-thumb {
  background: var(--gray-border);
  border-radius: 4px;
}

.category-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background-color: var(--gray-bg);
  color: var(--dark);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition);
  border: 1px solid transparent;
}

.category-btn i {
  color: var(--primary);
  font-size: 14px;
  transition: var(--transition);
}

.category-btn .badge-count {
  background-color: rgba(17, 17, 23, 0.08);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
}

.category-btn:hover {
  background-color: var(--white);
  border-color: var(--primary);
  color: var(--primary);
}

.category-btn.active {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}

.category-btn.active i {
  color: var(--white);
}

.category-btn.active .badge-count {
  background-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

/* Diyet & Özellik Filtreleri */
.dietary-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
  flex-wrap: wrap;
}

.dietary-tag-btn {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background-color: transparent;
  border: 1px solid var(--gray-border);
  color: var(--text-muted);
  transition: var(--transition);
}

.dietary-tag-btn:hover,
.dietary-tag-btn.active {
  background-color: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* ==========================================================================
   ÜRÜN KARTLARI IZGARASI (MENU GRID)
   ========================================================================== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 26px;
}

.menu-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(236, 37, 38, 0.3);
}

.menu-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.menu-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
}

.menu-card__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.menu-card__badge--red {
  background-color: var(--primary-soft);
  color: var(--primary);
  border: 1px solid rgba(236, 37, 38, 0.2);
}

.menu-card__badge--dark {
  background-color: rgba(17, 17, 23, 0.06);
  color: var(--dark);
}

.menu-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.menu-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 12px;
  color: #7E7E8A;
}

.menu-card__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.menu-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--gray-light);
}

.menu-card__price-box {
  display: flex;
  flex-direction: column;
}

.menu-card__old-price {
  font-size: 12px;
  color: #9D9DA8;
  text-decoration: line-through;
  font-weight: 600;
}

.menu-card__price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.menu-card__price small {
  font-size: 14px;
  font-weight: 700;
  margin-left: 2px;
}

.menu-card__detail-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background-color: var(--gray-bg);
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}

.menu-card__detail-btn:hover {
  background-color: var(--dark);
  color: var(--white);
}

/* Tükendi (Stokta Yok) Durumu */
.menu-card.out-of-stock {
  opacity: 0.65;
  background-color: #FAFAFB;
}

.menu-card.out-of-stock .menu-card__title {
  text-decoration: line-through;
  color: #888894;
}

.out-of-stock-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #33333E;
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   ÖĞRENCİ & KAMPÜS ÇALIŞMA ALANI OLANAKLARI
   ========================================================================== */
.amenities-section {
  padding: 90px 0;
  background-color: var(--white);
}

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

.amenity-card {
  background-color: var(--gray-bg);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  border: 1px solid var(--gray-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.amenity-card:hover {
  transform: translateY(-5px);
  background-color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.amenity-card__icon {
  width: 64px;
  height: 64px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-primary);
}

.amenity-card__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.amenity-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.wifi-box {
  background-color: var(--white);
  border: 1px dashed var(--primary);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wifi-info {
  font-size: 13px;
}

.wifi-info span {
  display: block;
  font-weight: 700;
  color: var(--dark);
}

.copy-wifi-btn {
  background-color: var(--primary);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.copy-wifi-btn:hover {
  background-color: var(--dark);
}

/* ==========================================================================
   KAMPÜS KONUM & YAKUT ÇARŞISI REHBERİ
   ========================================================================== */
.location-section {
  padding: 90px 0;
  background-color: var(--dark);
  color: var(--white);
  position: relative;
}

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

.location-info h3 {
  color: var(--white);
}

.location-details {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.location-detail-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(236, 37, 38, 0.15);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.location-detail-content h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.location-detail-content p {
  color: #A5A5B3;
  font-size: 14px;
}

.campus-route-box {
  background-color: var(--dark-slate);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.route-step {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.route-step:last-child {
  margin-bottom: 0;
}

.step-num {
  width: 28px;
  height: 28px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
}

.step-text h6 {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 4px;
}

.step-text p {
  color: #9C9CA9;
  font-size: 13px;
}

/* ==========================================================================
   FOOTER (EN İDEAL TASARIM STANDARTLARINDA)
   ========================================================================== */
.main-footer {
  background-color: #0C0C10;
  color: #A3A3B0;
  padding-top: 70px;
  font-size: 14px;
}

.footer-top {
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 40px;
}

.footer-widget__title {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 22px;
  position: relative;
}

.footer-widget__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--primary);
}

.footer-about p {
  margin: 18px 0 24px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}

.footer-social-btn:hover {
  background-color: var(--primary);
  color: var(--white);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-bottom {
  padding: 24px 0;
  background-color: #08080B;
  font-size: 13px;
  text-align: center;
}

.footer-bottom a {
  color: var(--primary);
  font-weight: 700;
}

/* ==========================================================================
   MOBİL SABİT HIZLI EYLEM ÇUBUĞU (PHONE FOOTER - EN İDEAL BİREBİR KOPYASI)
   ========================================================================== */
.phone-footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #111117;
  border-top: 2px solid var(--primary);
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  padding: 8px 0 6px;
}

.phone-footer__item {
  width: 20%;
  float: left;
  text-align: center;
}

.phone-footer__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #B2B2BF;
  font-size: 11px;
  font-weight: 700;
}

.phone-footer__btn i {
  font-size: 20px;
  color: var(--primary);
  transition: var(--transition);
}

.phone-footer__btn:hover i,
.phone-footer__btn.active i {
  transform: translateY(-2px);
  color: var(--white);
}

.phone-footer__btn:hover span {
  color: var(--white);
}

/* ==========================================================================
   DESKTOP WHATSAPP YÜZEN BUTON
   ========================================================================== */
.desktop-whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #25D366;
  color: var(--white);
  padding: 12px 22px 12px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  transition: var(--transition);
}

.desktop-whatsapp-float i {
  font-size: 26px;
}

.desktop-whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.55);
  color: var(--white);
}

/* ==========================================================================
   ÜRÜN DETAY MODALI
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 23, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  padding: 34px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: var(--transition);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-backdrop.active .modal-box {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--gray-bg);
  color: var(--dark);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* ==========================================================================
   BARİSTA ADMİN MODALI (KOLAY YÖNETİCİ PANELİ)
   ========================================================================== */
.admin-modal-box {
  max-width: 780px;
  background-color: #16161D;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-modal-box h3, .admin-modal-box h4 {
  color: var(--white);
}

.admin-login-screen {
  text-align: center;
  padding: 20px 0;
}

.pin-input {
  background-color: #242430;
  color: var(--white);
  border: 2px solid #363646;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-size: 24px;
  letter-spacing: 8px;
  text-align: center;
  max-width: 200px;
  margin: 20px auto;
  display: block;
}

.pin-input:focus {
  border-color: var(--primary);
}

.admin-dashboard {
  display: none;
}

.admin-dashboard.active {
  display: block;
}

.admin-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  border-bottom: 1px solid #2B2B38;
  padding-bottom: 12px;
}

.admin-tab-btn {
  color: #A3A3B0;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.admin-tab-btn.active {
  background-color: var(--primary);
  color: var(--white);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.admin-table th, .admin-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid #282834;
}

.admin-table th {
  color: #8C8C9A;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
}

.admin-price-input {
  background-color: #262634;
  color: var(--white);
  border: 1px solid #3E3E50;
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  width: 75px;
  font-weight: 700;
  text-align: center;
}

.stock-toggle-btn {
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  transition: var(--transition);
}

.stock-toggle-btn.in-stock {
  background-color: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.stock-toggle-btn.out-stock {
  background-color: rgba(236, 37, 38, 0.15);
  color: #FF5A5B;
  border: 1px solid rgba(236, 37, 38, 0.3);
}

.toast-msg {
  position: fixed;
  top: 30px;
  right: 30px;
  background-color: var(--dark);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2000;
  font-size: 14px;
  font-weight: 600;
  border-left: 4px solid var(--primary);
  transform: translateX(120%);
  transition: var(--transition);
}

.toast-msg.show {
  transform: translateX(0);
}

/* ==========================================================================
   RESPONSIVE (MOBİL & TABLET UYUMU)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.75rem;
  }
  .main-nav {
    display: none;
  }
  .location-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .phone-footer {
    display: block;
  }
  body {
    padding-bottom: 65px;
  }
  .desktop-whatsapp-float {
    bottom: 75px;
    right: 16px;
    padding: 10px 16px;
    font-size: 12px;
  }
  .hero-section {
    padding: 60px 0 80px;
    background-attachment: scroll;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .sec-title__title {
    font-size: 2rem;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   ÖĞRENCİ GİRİŞİ & SADAKAT PORTALI STİLLERİ
   ========================================================================== */
.header-student-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background-color: var(--dark);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.header-student-btn:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.header-student-btn.student-logged-in {
  background-color: #1A3826;
  border-color: #25D366;
  color: #7DFFB3;
}

.student-pill-badge {
  background-color: var(--primary);
  color: var(--white);
  padding: 2px 7px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 800;
}

.student-modal-box {
  max-width: 620px;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

/* Giriş / Kayıt Tab Butonları */
.student-auth-tabs {
  display: flex;
  background-color: var(--gray-bg);
  padding: 4px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.student-auth-tab-btn {
  flex: 1;
  padding: 10px 0;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.student-auth-tab-btn.active {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

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

.student-form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.student-form-input, .student-form-select {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--gray-bg);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--dark);
  transition: var(--transition);
}

.student-form-input:focus, .student-form-select:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(236, 37, 38, 0.1);
}

.quick-demo-section {
  background-color: var(--gray-bg);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 20px;
  border: 1px dashed var(--gray-border);
}

.quick-demo-btns {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.quick-demo-btn {
  padding: 8px 14px;
  background-color: var(--white);
  color: var(--dark);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.quick-demo-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ==========================================================================
   ÖĞRENCİ DİJİTAL KAMPÜS KARTI (DASHBOARD)
   ========================================================================== */
.student-virtual-card {
  background: linear-gradient(135deg, #111117 0%, #1F1F2A 50%, #EC2526 130%);
  border-radius: var(--radius-lg);
  padding: 26px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(17, 17, 23, 0.35);
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.student-virtual-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  background: rgba(236, 37, 38, 0.25);
  border-radius: 50%;
  filter: blur(30px);
}

.student-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.student-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.student-card__badge--kurs {
  background-color: var(--primary);
  color: var(--white);
}

.student-card__badge--kampus {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.student-card__name {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 4px;
}

.student-card__faculty {
  font-size: 12px;
  color: #D2D2DC;
  margin-bottom: 18px;
}

.student-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.student-card__qr-code {
  background-color: var(--white);
  color: var(--dark);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-family: monospace;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Damga Kartı Bölümü */
.student-stamp-card {
  background-color: var(--gray-bg);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--gray-border);
  margin-bottom: 20px;
}

.student-stamp-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.stamp-circles-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.stamp-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px dashed #C8C8D2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #A0A0AC;
  font-size: 14px;
  position: relative;
  transition: var(--transition);
}

.stamp-circle .stamp-num {
  font-size: 9px;
  font-weight: 700;
  margin-top: 1px;
}

.stamp-circle.stamped {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(236, 37, 38, 0.35);
  transform: scale(1.05);
}

.stamp-circle.stamped .stamp-num {
  color: rgba(255, 255, 255, 0.8);
}

.student-coupons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.student-coupon-item {
  background-color: var(--white);
  border: 1px dashed var(--primary);
  border-radius: var(--radius-sm);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.student-coupon-icon {
  width: 36px;
  height: 36px;
  background-color: var(--primary-soft);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

/* ==========================================================================
   CANLI KUPON SİSTEMİ & QR KOD MODALI (EN İDEAL COFFEE)
   ========================================================================== */
.top-bar__coupon-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #FFDD00 0%, #FFA200 100%);
  color: #13131A !important;
  font-weight: 800;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(255, 221, 0, 0.4);
  transition: transform 0.2s;
  cursor: pointer;
  animation: couponPulse 2s infinite ease-in-out;
}

.top-bar__coupon-pill:hover {
  transform: translateY(-1px) scale(1.03);
}

@keyframes couponPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 221, 0, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(255, 221, 0, 0); }
}

.header-coupon-btn {
  background: linear-gradient(135deg, var(--primary) 0%, #9E1213 100%);
  color: #FFF !important;
  border: none;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--primary-shadow);
  transition: var(--transition);
}

.header-coupon-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 37, 38, 0.45);
}

/* Kupon Modalı */
.coupon-modal-box {
  max-width: 480px;
  width: 92%;
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

.coupon-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.coupon-step-header {
  text-align: center;
  margin-bottom: 20px;
}

.coupon-step-header h3 {
  font-size: 1.6rem;
  color: var(--dark);
  font-weight: 800;
  margin-bottom: 6px;
}

.coupon-step-header p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Sürücü Kursu Anketi Alanı */
.driving-survey-box {
  background: #FFF9F9;
  border: 1px solid #FFE3E3;
  border-radius: var(--radius-sm);
  padding: 16px;
  margin: 14px 0;
}

.driving-survey-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.radio-group-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.radio-card-label {
  border: 1px solid #E5E5EB;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: #FFF;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}

.radio-card-label:has(input:checked) {
  border-color: var(--primary);
  background: #FFF2F2;
  color: var(--primary);
  font-weight: 700;
}

/* Bekleme / Pulse Animasyonu */
.waiting-anim-wrap {
  text-align: center;
  padding: 30px 10px;
}

.pulse-coffee-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(236, 37, 38, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 20px;
  position: relative;
  animation: waitingPulse 1.8s infinite ease-in-out;
}

@keyframes waitingPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(236, 37, 38, 0.5); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(236, 37, 38, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(236, 37, 38, 0); }
}

/* Aktif QR Kartı */
.active-qr-card {
  background: #15151E;
  border: 2px solid #28283C;
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  color: #FFF;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  margin-bottom: 16px;
}

.active-qr-holder {
  background: #FFF;
  padding: 14px;
  border-radius: 14px;
  display: inline-block;
  margin: 14px auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.qr-code-text-pill {
  font-family: 'Urbanist', monospace;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  color: #FFDD00;
  background: rgba(255, 221, 0, 0.12);
  border: 1px dashed rgba(255, 221, 0, 0.4);
  padding: 6px 14px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 8px;
}

/* Admin Kupon Tabı Stilleri */
.admin-badge-count {
  background: #FF4A4B;
  color: #FFF;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 6px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.kpi-card {
  background: #222230;
  border: 1px solid #323246;
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
}

.kpi-card__num {
  font-family: 'Urbanist', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #FFF;
}

.kpi-card__label {
  font-size: 11px;
  font-weight: 600;
  color: #9D9DAE;
  margin-top: 4px;
}

.coupon-action-btn-group {
  display: flex;
  gap: 6px;
}

.admin-action-btn {
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s;
}

.admin-action-btn:hover {
  opacity: 0.85;
}

.admin-action-btn--approve {
  background: #10B981;
  color: #FFF;
}

.admin-action-btn--reject {
  background: #EF4444;
  color: #FFF;
}

.admin-action-btn--whatsapp {
  background: #25D366;
  color: #FFF;
}


