/* 
=====================================================
dfsf (Akış AI) UI Standards 2024+
Girne Taxi — Premium Visual Refresh
Font: Plus Jakarta Sans + Inter
=====================================================
*/

/* --- 1. GOOGLE FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;700&display=swap');

/* --- 2. CSS VARIABLES --- */
:root {
  --primary: #ffb703;
  --primary-dark: #e69c00;
  --primary-glow: rgba(255, 183, 3, 0.35);
  --accent: #fb8500;
  --dark: #0d0d0d;
  --dark-2: #161616;
  --dark-3: #1e1e1e;
  --surface: #ffffff;
  --text-muted: #8a8a9a;
  --text-light: #f0f0f0;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.07);
  --shadow-glow: 0 8px 40px rgba(255, 183, 3, 0.3);
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.10);

  --glass-bg: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.14);
  --glass-blur: blur(18px);

  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --transition: all 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --- 3. RESET & BASE --- */
html,
body,
#app-wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: clip !important;
  position: relative;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: #f6f6f8;
  color: var(--dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

#app-wrapper {
  min-height: 100vh;
}

/* Global Gutter Cap for Mobile */
@media (max-width: 991px) {
  .row {
    --bs-gutter-x: 1.5rem !important;
  }
}

/* --- 4. NAVBAR (Light — Sub-pages default) --- */
.main-nav {
  transition: background 0.35s ease, box-shadow 0.35s ease;
  background: #ffffff !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.06);
}

.main-nav .navbar-brand {
  font-family: var(--font-display);
  font-size: 1.55rem !important;
  letter-spacing: -0.4px;
  color: #111 !important;
}

.main-nav .nav-link {
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.02em;
  color: #2a2a2a !important;
  padding: 8px 12px !important;
  position: relative;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
  background: transparent !important;
  text-decoration: none !important;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--primary) !important;
  border-bottom-color: var(--primary);
}

/* Fix toggler color for light navbar */
.main-nav:not(.nav-dark) .navbar-toggler i {
  color: var(--dark) !important;
}

/* --- Dark navbar variant (Hero / index page only) --- */
.nav-dark {
  background: rgba(10, 10, 10, 0.82) !important;
  border-bottom-color: rgba(255, 255, 255, 0.06) !important;
  box-shadow: none !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-dark .navbar-brand {
  color: #ffffff !important;
}

.nav-dark .nav-link {
  color: rgba(255, 255, 255, 0.82) !important;
}

.nav-dark .nav-link:hover,
.nav-dark .nav-link.active {
  color: var(--primary) !important;
  border-bottom-color: var(--primary);
}

/* Fix toggler color for dark navbar */
.nav-dark .navbar-toggler i {
  color: #ffffff !important;
}



/* --- 5. HERO --- */
.hero-wrapper {
  min-height: 100vh;
  background: linear-gradient(160deg, #0d0d0d 0%, #1a1200 60%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Decorative orbs */
.hero-wrapper::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.18) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  pointer-events: none;
}

.hero-wrapper::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 133, 0, 0.12) 0%, transparent 70%);
  bottom: -80px;
  left: -60px;
  pointer-events: none;
}

/* --- 6. TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.4px;
}

.display-hero {
  font-family: var(--font-body);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.gradient-text {
  background: linear-gradient(90deg, #ffb703 0%, #fb8500 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- 7. SECTION LABEL --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: rgba(255, 183, 3, 0.1);
  border: 1px solid rgba(255, 183, 3, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* --- 8. BUTTONS --- */
.btn-primary-gt {
  background: linear-gradient(135deg, #ffb703 0%, #fb8500 100%);
  color: #0d0d0d;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 30px;
  border-radius: 100px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(255, 183, 3, 0.35);
  text-decoration: none;
}

.btn-primary-gt:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 183, 3, 0.50);
  color: #0d0d0d;
}

.btn-outline-gt {
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 28px;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline-gt:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-dark-gt {
  background: transparent;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 28px;
  border-radius: 100px;
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline-dark-gt:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-2px);
}

/* --- 9. FEATURE CARDS (hero dark section) --- */
.feature-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 183, 3, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.2), rgba(251, 133, 0, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
}

/* --- 10. STAT BADGES (hero inline numbers) --- */
.stat-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1rem 0.5rem;
  text-align: center;
}

.stat-badge .stat-num {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffb703, #fb8500);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-badge .stat-label {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-top: 4px;
}

/* --- 11. SERVICE CARDS (light pages) --- */
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
}

.service-card .card-img-top {
  height: 250px !important;
  width: 100% !important;
  object-fit: cover !important;
}

/* --- 12. FIXED ACTION BUTTONS --- */
.fixed-actions {
  position: fixed;
  bottom: 30px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.action-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.action-btn.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1aac52 100%);
}

.action-btn.call {
  background: linear-gradient(135deg, #ffb703 0%, #fb8500 100%);
  color: #0d0d0d;
}

.action-btn:hover {
  transform: scale(1.12) rotate(6deg);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

/* --- 13. PAGE HEADER (sub-pages) --- */
.page-hero {
  background: linear-gradient(160deg, #0d0d0d 0%, #1a1200 60%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
  padding: 7rem 0 4rem;
}

.page-hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.15) 0%, transparent 70%);
  top: -150px;
  right: -80px;
  pointer-events: none;
}

/* --- 14. ANIMATIONS --- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -400px 0;
  }

  100% {
    background-position: 400px 0;
  }
}

.animate-fade-in {
  animation: fadeUp 0.75s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- 15. FOOTER --- */
.gt-footer {
  background: linear-gradient(160deg, #0d0d0d 0%, #111111 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.gt-footer .footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.gt-footer a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.25s;
}

.gt-footer a:hover {
  color: var(--primary);
}

.gt-footer .footer-divider {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 2.5rem 0 1.5rem;
}

/* --- 16. MISC UTILITIES --- */
.bg-dark-gt {
  background: var(--dark);
}

.bg-dark-2 {
  background: var(--dark-2);
}

.text-muted-gt {
  color: var(--text-muted) !important;
}

.rounded-gt {
  border-radius: var(--radius-lg) !important;
}

/* Section wrappers */
.section-light {
  background: #f6f6f8;
}

.section-white {
  background: #ffffff;
}

/* Divider line accent */
.divider-accent {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, #ffb703, #fb8500);
  border-radius: 4px;
  margin: 0.75rem 0 1.5rem;
}

/* --- 17. RESPONSIVE TWEAKS --- */
@media (max-width: 767px) {
  .display-hero {
    font-size: 2.2rem;
    letter-spacing: -0.8px;
  }

  .fixed-actions {
    bottom: 20px;
    right: 18px;
  }

  /* Prevent brand overflow */
  .navbar-brand {
    font-size: 1.15rem !important;
    max-width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .navbar-brand img {
    height: 28px !important;
  }

  .stat-badge .stat-num {
    font-size: 1.5rem;
  }

  .stat-badge .stat-label {
    font-size: 0.65rem;
  }
}

/* ================================================================
   18. SLOGAN SECTION
   ================================================================ */
.slogan-section {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1200 50%, #0d0900 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.slogan-section::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,183,3,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.slogan-inner {
  max-width: 720px;
  margin: 0 auto;
}

.slogan-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.slogan-text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 0;
}

.slogan-text em {
  font-style: italic;
  color: var(--primary);
}

.slogan-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ffb703, #fb8500);
  border-radius: 4px;
  margin: 2rem auto;
}

.slogan-sub {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.slogan-sub strong {
  color: rgba(255,255,255,0.85);
}

/* ================================================================
   19. PHOTO SLIDER (Bootstrap Carousel Overrides)
   ================================================================ */
.gt-slider {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gt-slider .carousel-item img {
  height: 520px;
  object-fit: cover;
  width: 100%;
}

.gt-slider .carousel-caption {
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 2rem 1.5rem;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  text-align: left;
}

.gt-slider .carousel-caption h5 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.gt-slider .carousel-caption p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.gt-slider .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  transition: var(--transition);
}

.gt-slider .carousel-indicators .active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

.gt-slider .carousel-control-prev,
.gt-slider .carousel-control-next {
  width: 48px;
  height: 48px;
  background: rgba(255,183,3,0.85);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  margin: 0 1rem;
}

.gt-slider .carousel-control-prev-icon,
.gt-slider .carousel-control-next-icon {
  filter: invert(1) brightness(0);
  width: 18px;
  height: 18px;
}

.gt-slider .carousel-control-prev:hover,
.gt-slider .carousel-control-next:hover {
  background: var(--primary);
}

/* ================================================================
   20. GALLERY PAGE
   ================================================================ */

/* Filter Buttons */
.gt-filter-btn {
  background: transparent;
  border: 1.5px solid rgba(0,0,0,0.12);
  color: #555;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 22px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}

.gt-filter-btn:hover,
.gt-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #0d0d0d;
}

/* Grid style */
.gt-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gt-gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  height: 280px; /* Sabit yükseklik */
}

.gt-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover; /* Aspect ratio koruyarak doldurur */
  border-radius: var(--radius-md);
  transition: transform 0.5s ease;
}

.gt-gallery-item:hover img {
  transform: scale(1.08);
}

.gt-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 60%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gt-gallery-item:hover .gt-gallery-overlay {
  opacity: 1;
}

.gt-gallery-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

@media (max-width: 991px) {
  .gt-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gt-slider .carousel-item img { height: 380px; }
}

@media (max-width: 575px) {
  .gt-gallery-grid { grid-template-columns: 1fr; }
  .gt-slider .carousel-item img { height: 260px; }
  .slogan-text { font-size: 1.6rem; }
}