/* ============================================================
   Fındıkoğulları Vidanjör – Premium Yellow/White Theme
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   CSS Variables / Design Tokens
   ============================================================ */
:root {
  --yellow: #F5C518;
  --yellow-dark: #D4A800;
  --yellow-light: #FFF4B8;
  --yellow-bg: #FFFBEA;
  --white: #FFFFFF;
  --black: #0D0D0D;
  --dark: #1A1A2E;
  --navy: #16213E;
  --gray-50: #F8F9FA;
  --gray-100: #F1F3F5;
  --gray-200: #E9ECEF;
  --gray-400: #ADB5BD;
  --gray-600: #6C757D;
  --gray-700: #495057;
  --gray-800: #343A40;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, .10);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, .14);
  --shadow-yellow: 0 8px 30px rgba(245, 197, 24, .35);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: all .28s cubic-bezier(.4, 0, .2, 1);
  --font-main: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*,
*::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(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

input,
textarea,
select {
  font-family: var(--font-body);
}

/* ============================================================
   Typography
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
  line-height: 1.25;
  color: var(--dark);
  font-weight: 700;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .5rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
}

.badge-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--yellow-light);
  color: var(--yellow-dark);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad {
  padding: 90px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: .98rem;
  padding: .85rem 1.9rem;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  box-shadow: var(--shadow-yellow);
}

.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(245, 197, 24, .45);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--yellow);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.4rem;
  font-size: 1.05rem;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-top {
  background: var(--dark);
  padding: .45rem 0;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.header-top-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-top-contact a {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--gray-400);
  font-size: .82rem;
  transition: var(--transition);
}

.header-top-contact a:hover {
  color: var(--yellow);
}

.header-top-contact a i {
  color: var(--yellow);
  font-size: .9rem;
}

.header-top-social {
  display: flex;
  gap: .6rem;
}

.header-top-social a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  color: var(--gray-400);
  font-size: .8rem;
  transition: var(--transition);
}

.header-top-social a:hover {
  background: var(--yellow);
  color: var(--dark);
}

/* Main Navbar */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.navbar-logo-icon {
  width: 48px;
  height: 48px;
  background: var(--yellow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-yellow);
  flex-shrink: 0;
}

.navbar-logo-text {
  line-height: 1.2;
}

.navbar-logo-text strong {
  display: block;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
}

.navbar-logo-text span {
  font-size: .72rem;
  color: var(--gray-600);
  font-family: var(--font-main);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.navbar-nav>li {
  position: relative;
}

.navbar-nav a {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .6rem 1rem;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: .9rem;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--dark);
  background: var(--yellow-light);
}

.navbar-nav a.active {
  color: var(--yellow-dark);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.navbar-nav li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  border-radius: var(--radius-sm);
  font-size: .88rem;
  padding: .6rem .9rem;
}

.dropdown-menu a:hover {
  background: var(--yellow-bg);
  color: var(--yellow-dark);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.navbar-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
}

.navbar-phone i {
  width: 34px;
  height: 34px;
  background: var(--yellow-light);
  color: var(--yellow-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 4px;
  transition: var(--transition);
}

/* Scrolled header */
#header.scrolled .navbar {
  box-shadow: var(--shadow-md);
}

/* ============================================================
   MOBILE NAV
   ============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0, 0, 0, .15);
  transition: right .35s cubic-bezier(.4, 0, .2, 1);
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav.open {
  right: 0;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 1500;
  opacity: 0;
  transition: opacity .3s;
}

.mobile-overlay.open {
  opacity: 1;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-nav-close:hover {
  background: var(--yellow);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: 1rem 0;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-weight: 600;
  color: var(--gray-700);
  transition: var(--transition);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background: var(--yellow-bg);
  color: var(--yellow-dark);
}

.mobile-nav-links .sub-link {
  padding-left: 2.5rem;
  font-weight: 500;
  font-size: .9rem;
}

.mobile-nav-contact {
  border-top: 1px solid var(--gray-200);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.mobile-nav-contact a {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--gray-700);
  font-size: .9rem;
}

.mobile-nav-contact a i {
  width: 36px;
  height: 36px;
  background: var(--yellow-light);
  color: var(--yellow-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   PAGE HERO (inner pages – hakkımızda, hizmetler, galeri…)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  padding: 9rem 0 4.5rem;          /* 9rem = fixed header (≈130px) + breathing room */
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,.025) 0px,
    rgba(255,255,255,.025) 1px,
    transparent 1px,
    transparent 60px
  );
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: .75rem;
}

.page-hero-title span {
  color: var(--yellow);
}

.page-hero-desc {
  color: rgba(255,255,255,.65);
  max-width: 560px;
  margin: 0 auto 1.75rem;
  font-size: 1rem;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .83rem;
  color: rgba(255,255,255,.45);
}

.breadcrumb a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s;
}

.breadcrumb a:hover {
  color: var(--yellow);
}

.breadcrumb .current {
  color: var(--yellow);
  font-weight: 600;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 8rem 0 3.5rem;
  }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;

  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 130px;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s ease-in-out, transform 10s linear;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 13, 13, 0.85) 0%, rgba(26, 26, 46, 0.7) 60%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 65vw;
  height: 65vw;
  background: radial-gradient(circle, rgba(245, 197, 24, .12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(245, 197, 24, .07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245, 197, 24, .15);
  border: 1px solid rgba(245, 197, 24, .3);
  color: var(--yellow);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .45rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-badge i {
  font-size: .9rem;
}

.hero-title {
  font-family: var(--font-main);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-title span {
  color: var(--yellow);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 2.25rem;
  max-width: 500px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .12);
  padding-right: 2.5rem;
}

.hero-stat:last-child {
  border-right: none;
  padding-right: 0;
}

.hero-stat-num {
  display: block;
  font-family: var(--font-main);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.hero-stat-label {
  display: block;
  font-size: .78rem;
  color: rgba(255, 255, 255, .55);
  margin-top: .2rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  position: relative;
}

.hero-card-icon {
  width: 100px;
  height: 100px;
  background: var(--yellow);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-yellow);
}

.hero-card-title {
  font-family: var(--font-main);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .5rem;
}

.hero-card-desc {
  color: rgba(255, 255, 255, .6);
  font-size: .9rem;
}

.hero-float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: .75rem 1.1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: .82rem;
  color: var(--dark);
  animation: floatBadge 3s ease-in-out infinite;
}

.hero-float-badge i {
  color: var(--yellow);
  font-size: 1.1rem;
}

.hero-badge-1 {
  top: -15px;
  right: -15px;
  animation-delay: .5s;
}

.hero-badge-2 {
  bottom: -15px;
  left: -15px;
  animation-delay: 1s;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255, 255, 255, .4);
  font-size: .75rem;
  font-family: var(--font-main);
  animation: bounce 2s infinite;
}

.hero-scroll span {
  width: 1.5px;
  height: 36px;
  background: rgba(255, 255, 255, .2);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.hero-scroll span::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--yellow);
  animation: scrollLine 1.8s ease infinite;
}

@keyframes scrollLine {
  to {
    top: 100%;
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--gray-200);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}

.service-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-img img {
  transform: scale(1.1);
}

.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(26, 26, 46, 0.4) 100%);
}

.service-card-icon-floated {
  position: absolute;
  bottom: -24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--yellow);
  color: var(--dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-yellow);
  z-index: 2;
  transition: var(--transition);
}

.service-card:hover .service-card-icon-floated {
  transform: rotate(10deg);
}

.service-card-body {
  padding: 2rem 1.5rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-family: var(--font-main);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: .75rem;
  color: var(--dark);
}

.service-desc {
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: .88rem;
  color: var(--dark);
  padding-bottom: .2rem;
  border-bottom: 2px solid var(--yellow);
  width: fit-content;
  transition: var(--transition);
}

.service-link i {
  font-size: .8rem;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--yellow-dark);
  gap: .8rem;
}

/* Service Detail Page */
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.service-detail-content {
  color: var(--gray-700);
  line-height: 1.9;
}

.service-detail-content h2,
.service-detail-content h3 {
  margin: 2.5rem 0 1rem;
}

.service-detail-content p {
  margin-bottom: 1.25rem;
}

.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.sidebar-widget h4 {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 1rem;
}

.sidebar-services {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.sidebar-services a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1.15rem;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: .9rem;
  color: var(--gray-700);
  transition: var(--transition);
}

.sidebar-services a:hover,
.sidebar-services a.active {
  background: var(--yellow);
  color: var(--dark);
  transform: translateX(5px);
}

.sidebar-cta-widget {
  background: var(--dark);
  color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sidebar-cta-widget::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 150px;
  height: 150px;
  background: rgba(245, 197, 24, 0.1);
  border-radius: 50%;
}

.sidebar-cta-widget h4 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: .75rem;
  border: none;
  padding: 0;
  justify-content: center;
}

.sidebar-cta-widget p {
  color: rgba(255, 255, 255, 0.6);
  font-size: .9rem;
  margin-bottom: 1.5rem;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255, 255, 255, .6);
  font-family: var(--font-main);
}

.about-img-placeholder i {
  font-size: 4rem;
  color: var(--yellow);
}

.about-img-placeholder span {
  font-size: .9rem;
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--yellow);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-yellow);
  text-align: center;
}

.about-badge-float strong {
  display: block;
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.about-badge-float span {
  font-size: .78rem;
  font-family: var(--font-main);
  font-weight: 600;
  color: var(--dark);
  opacity: .7;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-text {
  color: var(--gray-700);
  line-height: 1.85;
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin: .5rem 0;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  color: var(--gray-700);
}

.about-checklist li i {
  width: 24px;
  height: 24px;
  background: var(--yellow-bg);
  color: var(--yellow-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
}

/* ============================================================
   STATS / NUMBERS SECTION
   ============================================================ */
.stats-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 197, 24, .08) 0%, transparent 60%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  width: 54px;
  height: 54px;
  background: rgba(245, 197, 24, .12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--yellow);
  margin: 0 auto 1rem;
}

.stat-num {
  display: block;
  font-family: var(--font-main);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: .35rem;
}

.stat-label {
  font-family: var(--font-main);
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
  font-weight: 500;
}

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.why-card {
  background: var(--yellow-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--yellow-light);
  transition: var(--transition);
  position: relative;
}

.why-card:hover {
  background: var(--yellow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-yellow);
}

.why-card-num {
  font-family: var(--font-main);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(245, 197, 24, .25);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.why-card:hover .why-card-num {
  color: rgba(0, 0, 0, .1);
}

.why-icon {
  font-size: 1.8rem;
  color: var(--yellow-dark);
  margin-bottom: 1rem;
}

.why-card:hover .why-icon {
  color: var(--dark);
}

.why-title {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
}

.why-desc {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.why-card:hover .why-desc {
  color: var(--dark);
  opacity: .75;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--yellow) 0%, #FFA500 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50%;
  padding-bottom: 50%;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-left {
  flex: 1;
  min-width: 260px;
}

.cta-title {
  font-family: var(--font-main);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: .5rem;
}

.cta-desc {
  color: rgba(0, 0, 0, .65);
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--black);
  transform: translateY(-2px);
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
  background: var(--gray-200);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-item-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--dark);
  color: rgba(255, 255, 255, .4);
}

.gallery-item-placeholder i {
  font-size: 2rem;
  color: var(--yellow);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(245, 197, 24, .85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--dark);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--gray-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  margin-top: 3.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--yellow-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--yellow-dark);
  flex-shrink: 0;
}

.contact-card-content strong {
  display: block;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gray-400);
  margin-bottom: .25rem;
}

.contact-card-content span {
  font-size: .95rem;
  color: var(--dark);
  font-weight: 500;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: .85rem;
  color: var(--gray-700);
}

.form-control {
  width: 100%;
  padding: .8rem 1.1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  color: var(--dark);
  background: var(--gray-50);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--yellow);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(245, 197, 24, .12);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.toast {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .8rem;
  min-width: 280px;
  border-left: 4px solid var(--yellow);
  animation: slideInToast .3s ease forwards;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: .92rem;
}

.toast.success {
  border-color: #22C55E;
}

.toast.error {
  border-color: #EF4444;
}

.toast i {
  font-size: 1.15rem;
}

.toast.success i {
  color: #22C55E;
}

.toast.error i {
  color: #EF4444;
}

@keyframes slideInToast {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero-title span {
  color: var(--yellow);
}

.page-hero-desc {
  color: rgba(255, 255, 255, .6);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-main);
  font-size: .85rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .5);
}

.breadcrumb a:hover {
  color: var(--yellow);
}

.breadcrumb span {
  color: rgba(255, 255, 255, .3);
}

.breadcrumb .current {
  color: var(--yellow);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .7);
}

.footer-main {
  padding: 70px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.footer-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.footer-logo-text strong {
  display: block;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
}

.footer-logo-text span {
  font-size: .72rem;
  color: rgba(255, 255, 255, .4);
}

.footer-desc {
  font-size: .88rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .5);
}

.footer-socials {
  display: flex;
  gap: .6rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .55);
  font-size: .9rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--yellow);
  color: var(--dark);
}

.footer-col h4 {
  font-family: var(--font-main);
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid rgba(245, 197, 24, .25);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: rgba(255, 255, 255, .5);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--yellow);
  padding-left: .25rem;
}

.footer-links a i {
  font-size: .7rem;
  color: var(--yellow);
  opacity: .6;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--yellow);
  font-size: .95rem;
  margin-top: .15rem;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: .87rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 1.4rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-inner p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--yellow);
}

/* Whatsapp floating btn */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(37, 211, 102, .4);
  z-index: 900;
  transition: var(--transition);
  animation: waPulse 2.5s infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  background: #20bb5a;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, .4);
  }

  50% {
    box-shadow: 0 8px 35px rgba(37, 211, 102, .7);
  }

  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, .4);
  }
}

/* ============================================================
   MAP
   ============================================================ */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-md);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* stagger delays */
.delay-1 {
  transition-delay: .1s;
}

.delay-2 {
  transition-delay: .2s;
}

.delay-3 {
  transition-delay: .3s;
}

.delay-4 {
  transition-delay: .4s;
}

.delay-5 {
  transition-delay: .5s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, .08);
  }

  .stat-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero {
    min-height: auto;
    padding: 140px 0 80px;
  }

  .hero-visual {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .navbar-nav,
  .navbar-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .header-top {
    display: none;
  }
}

@media (max-width: 600px) {
  .section-pad {
    padding: 60px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 0;
  }

  .hero-stat {
    border-right: 1px solid rgba(255, 255, 255, .12);
    padding-right: 0;
  }

  .hero-stat:nth-child(even),
  .hero-stat:last-child {
    border-right: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }
}

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

@media (max-width: 992px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.service-detail-content h2 {
  font-family: var(--font-main);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin: 1.75rem 0 .75rem;
}

.service-detail-content p {
  color: var(--gray-700);
  line-height: 1.85;
  margin-bottom: .75rem;
}

.service-detail-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1rem;
  padding-left: 0;
}

.service-detail-content li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  color: var(--gray-700);
}

.service-detail-content li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  margin-top: .45rem;
  flex-shrink: 0;
}

.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-widget {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
}

.sidebar-widget h4 {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.sidebar-services {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.sidebar-services a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem .85rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-family: var(--font-main);
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
}

.sidebar-services a:hover,
.sidebar-services a.active {
  background: var(--yellow-bg);
  color: var(--yellow-dark);
}

.sidebar-services a i {
  color: var(--yellow);
}

.sidebar-contact-card {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
}

.sidebar-contact-card h4 {
  color: var(--white);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.sidebar-contact-card p {
  color: rgba(255, 255, 255, .55);
  font-size: .88rem;
  margin-bottom: 1.25rem;
}

.sidebar-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--yellow);
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.2rem;
}

/* ============================================================
   HAKKIMIZDA – FULL PAGE
   ============================================================ */
.team-section {
  background: var(--gray-50);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: var(--yellow-light);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 2rem 0;
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 3;
  text-align: left;
}

.timeline-item:nth-child(even) .timeline-spacer {
  grid-column: 1;
  grid-row: 1;
}

.timeline-item:nth-child(odd) .timeline-content {
  grid-column: 1;
  text-align: right;
}

.timeline-dot {
  width: 40px;
  height: 40px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-size: .8rem;
  font-weight: 800;
  color: var(--dark);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px white, var(--shadow-yellow);
  justify-self: center;
  align-self: center;
}

.timeline-content-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.timeline-year {
  font-family: var(--font-main);
  font-size: .8rem;
  font-weight: 700;
  color: var(--yellow-dark);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .3rem;
}

.timeline-content-card h4 {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .35rem;
}

.timeline-content-card p {
  font-size: .88rem;
  color: var(--gray-600);
}

/* ============================================================
   ADMIN PANEL STYLES (scoped in admin pages)
   ============================================================ */
/* These are separate, see admin/assets/admin.css */

/* ============================================================
   MOBILE NAVIGATION
   ============================================================ */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  z-index: 1000;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--dark);
  margin-bottom: 5px;
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger span:last-child {
  margin-bottom: 0;
}



@media (max-width: 992px) {

  .navbar-nav,
  .navbar-cta {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-sidebar {
    position: static;
  }
}

/* ============================================================
   PUBLIC GALLERY PAGE  (galeri.php)
   ============================================================ */

/* Grid */
.pub-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.1rem;
}

/* Individual item */
.pub-gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pub-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pub-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.pub-gallery-item:hover img {
  transform: scale(1.07);
}

/* Hover overlay */
.pub-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,.85) 0%, rgba(26,26,46,.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  opacity: 0;
  transition: opacity .3s ease;
}

.pub-gallery-item:hover .pub-gallery-overlay {
  opacity: 1;
}

.pub-gallery-overlay i {
  font-size: 2rem;
  color: var(--yellow);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
}

.pub-gallery-overlay span {
  color: rgba(255,255,255,.85);
  font-family: var(--font-main);
  font-size: .82rem;
  font-weight: 600;
  text-align: center;
  padding: 0 .75rem;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.pub-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.93);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.pub-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.pub-lb-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.pub-lb-inner img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  transition: opacity .15s ease;
}

.pub-lb-caption {
  color: rgba(255,255,255,.8);
  font-family: var(--font-main);
  font-size: .9rem;
  text-align: center;
}

.pub-lb-counter {
  color: rgba(255,255,255,.4);
  font-size: .78rem;
  font-family: var(--font-main);
}

/* Close button */
.pub-lb-close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10000;
}

.pub-lb-close:hover {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
}

/* Prev / Next */
.pub-lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10000;
}

.pub-lb-nav:hover {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
}

.pub-lb-prev { left: 1.25rem; }
.pub-lb-next { right: 1.25rem; }

/* Responsive gallery grid */
@media (max-width: 768px) {
  .pub-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
  }

  .pub-lb-nav {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .pub-lb-prev { left: .5rem; }
  .pub-lb-next { right: .5rem; }
}

@media (max-width: 480px) {
  .pub-gallery-grid {
    grid-template-columns: 1fr;
  }
}