/* TFSKD Istanbul V2 - Premium Style */
/* Google Fonts preconnect - Core Web Vitals için */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Roboto+Condensed:wght@400;700&display=swap');

:root {
  --red: #B20211;
  --red-dark: #8a010d;
  --navy: #0a1628;
  --navy-light: #132040;
  --cyan: #00BFFF;
  --cyan-light: #e0f7ff;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #adb5bd;
  --gray-500: #6c757d;
  --gray-600: #495057;
  --gray-700: #343a40;
  --gray-800: #212529;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--gray-50);
  color: var(--gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

html, body {
  margin: 0;
  padding: 0;
}

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

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

/* ===== HEADER ===== */
.main-header {
  background: linear-gradient(135deg, #1a0103 0%, #2d0208 40%, #0a1628 100%);
  color: var(--white);
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

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

.header-top .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  height: 100px;
}

/* Left: Text Area */
.header-text-area {
  justify-self: start;
}

.header-title-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
}

.header-title-text .main-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  line-height: 1.25;
  letter-spacing: 0.6px;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  white-space: nowrap;
}

.header-title-text .sub-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  color: var(--cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-title-text .official-text {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  margin-top: 5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-title-text .official-text::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--red);
}

/* Center: Logo Area */
.header-logo-area {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  height: 100%;
  position: relative;
}

.header-logo-area::before {
  content: '';
  position: absolute;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(178,2,17,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.header-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(178,2,17,0.4)) drop-shadow(0 0 20px rgba(255,255,255,0.15));
  transition: transform 0.3s ease, filter 0.3s ease;
  position: relative;
  z-index: 1;
}

.header-logo:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 4px 16px rgba(178,2,17,0.6)) drop-shadow(0 0 24px rgba(255,255,255,0.2));
}

/* Right: Header Actions (Search & Login) */
.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.header-actions .search-box {
  position: relative;
  width: 240px;
}

.header-actions .search-box input {
  width: 100%;
  padding: 10px 40px 10px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  color: var(--white);
  font-size: 13px;
  outline: none;
  transition: all var(--transition);
}

.header-actions .search-box input::placeholder {
  color: rgba(255,255,255,0.4);
}

.header-actions .search-box input:focus {
  background: rgba(255, 255, 255, 0.13);
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.1);
}

.header-actions .search-box .search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
}

.header-actions .btn-login {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--red), #8a010d);
  color: var(--white);
  border: none;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(178,2,17,0.35);
}

.header-actions .btn-login:hover {
  background: linear-gradient(135deg, #d40214, var(--red));
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(178, 2, 17, 0.5);
}

/* Bottom Nav */
.main-nav {
  background: var(--navy);
  border-top: 2px solid var(--red);
  position: sticky; /* Sticky added here */
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.main-nav .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: block;
  padding: 18px 25px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--cyan);
  transition: width var(--transition);
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
  width: 100%;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 280px;
  box-shadow: var(--shadow-xl);
  border-top: 3px solid var(--cyan);
  z-index: 1000;
}

.nav-links > li:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--gray-800);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.dropdown-menu a:hover {
  background: var(--gray-50);
  color: var(--red);
  padding-left: 25px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Responsive */
@media (max-width: 1024px) {
  .header-top .container {
    grid-template-columns: auto 1fr auto auto;
    gap: 10px;
    height: 70px;
    align-items: center;
  }
  .header-logo-area { justify-self: start; }
  .header-actions { justify-self: end; }
  .header-actions .search-box { width: 180px; }
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--navy);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .main-nav.nav-open {
    display: block !important;
  }
  .hamburger { display: flex; }
  .header-actions .search-box { display: none; }
  .header-actions { display: none; }
  .header-text-area { display: none !important; }
  /* Nav açıkken dikey liste */
  .nav-links { flex-direction: column; }
  .nav-links > li > a {
    padding: 13px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: block;
  }
  .dropdown-menu {
    position: static !important;
    box-shadow: none !important;
    background: rgba(0,0,0,0.2) !important;
    display: none;
  }
  .dropdown-menu.open {
    display: block !important;
  }
  .dropdown-menu a { padding-left: 36px !important; color: rgba(255,255,255,0.75) !important; }
}

/* Mobil site adı */
.mobile-site-name {
  display: none;
  color: white;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}
.mobile-site-name small { font-size: 10px; font-weight: 400; opacity: 0.75; display: block; }
@media (max-width: 992px) {
  .mobile-site-name { display: block; }
  .header-logo-area { justify-content: flex-start; gap: 10px; }
}

@media (max-width: 576px) {
  .header-logo { width: 44px !important; height: 44px !important; }
  .header-top .container { height: 60px; }
  .mobile-site-name { font-size: 11px; }
}


/* ===== DUYURU BARI (KAYAN YAZI) ===== */
.announcement-bar {
  background: linear-gradient(135deg, #8a010d, var(--red), #8a010d);
  color: white;
  padding: 8px 0;
  position: relative;
  overflow: hidden;
  z-index: 10;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.announcement-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.announcement-icon {
  font-size: 18px;
  flex-shrink: 0;
  z-index: 2;
  background: inherit;
  padding-right: 10px;
}

.announcement-marquee {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.announcement-text {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  padding-left: 100%;
  animation: marquee 25s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.announcement-marquee:hover .announcement-text {
  animation-play-state: paused;
}

.announcement-btn {
  background: var(--red);
  color: white;
  padding: 4px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.3s;
  flex-shrink: 0;
  z-index: 2;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.3);
}

.announcement-btn:hover {
  background: white;
  color: var(--red);
  transform: scale(1.05);
}


/* ===== İSTATİSTİK KARTLARI ===== */
.stats-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--cyan), var(--red));
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.stat-icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
}

.stat-number {
  font-size: 36px;
  font-weight: bold;
  color: var(--navy);
  margin-bottom: 8px;
  counter-reset: number;
}

.stat-label {
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== HIZLI ERİŞİM WİDGETİ ===== */
.quick-access-widget .sidebar-box-header {
  background: linear-gradient(135deg, var(--cyan), #0099cc);
  color: white;
}

.quick-access-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 10px;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.quick-link:hover {
  background: var(--cyan-light);
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.quick-link.admin-link {
  background: linear-gradient(135deg, #ffe6e6, #ffcccc);
}

.quick-link.admin-link:hover {
  background: linear-gradient(135deg, var(--red-light), #ffb3b3);
  border-color: var(--red);
}

.quick-icon {
  font-size: 20px;
  margin-bottom: 5px;
  display: block;
}

.quick-text {
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}

/* ===== RESPONSIVE İYİLEŞTİRMELERİ ===== */
@media (max-width: 768px) {
  .announcement-content {
    flex-direction: column;
    gap: 10px;
  }
  
  .announcement-text {
    font-size: 12px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-card {
    padding: 20px 15px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .quick-access-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .quick-access-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: var(--navy);
  margin-bottom: 30px;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.75) 0%, rgba(178, 2, 17, 0.4) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.slide-overlay h2,
.slide-overlay .slide-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.slide-overlay p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  max-width: 600px;
}

.slide-overlay .btn-slider {
  padding: 14px 36px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
}

.slide-overlay .btn-slider:hover {
  background: var(--white);
  color: var(--red);
  transform: scale(1.05);
}

/* Slider controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.slider-btn:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.slider-btn.prev {
  left: 24px;
}

.slider-btn.next {
  right: 24px;
}

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all var(--transition);
}

.slider-dots .dot.active {
  background: var(--white);
  transform: scale(1.2);
}

/* ===== LAYOUT ===== */
.main-content {
  max-width: 1320px;
  margin: 50px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 260px 1fr 300px;
  gap: 24px;
  align-items: start;
}

/* ===== SIDEBAR BOX ===== */
.sidebar-box {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  border: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}

.sidebar-box:hover {
  box-shadow: var(--shadow-md);
}

.sidebar-box-header {
  background: linear-gradient(135deg, var(--cyan) 0%, #0099cc 100%);
  color: var(--white);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.sidebar-box-body {
  padding: 18px;
}

.sidebar-box-body input[type="text"],
.sidebar-box-body input[type="password"] {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition);
  outline: none;
}

.sidebar-box-body input:focus {
  border-color: var(--cyan);
}

.btn-cyan {
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, var(--cyan) 0%, #0099cc 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
}

.btn-cyan:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 191, 255, 0.3);
}

.sidebar-link {
  display: block;
  padding: 10px 18px;
  color: var(--gray-600);
  font-size: 13px;
  border-bottom: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.sidebar-link:hover {
  background: var(--cyan-light);
  color: var(--navy);
  padding-left: 24px;
}

.small-links {
  margin-top: 10px;
  font-size: 12px;
}

.small-links a {
  color: var(--cyan);
  margin-right: 12px;
  font-weight: 500;
}

.small-links a:hover {
  color: var(--red);
}

/* Calendar */
.calendar-widget {
  width: 100%;
}

.calendar-widget table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.calendar-widget th {
  padding: 6px 2px;
  text-align: center;
  color: var(--gray-500);
  font-weight: 600;
  font-size: 11px;
}

.calendar-widget td {
  padding: 5px 2px;
  text-align: center;
  cursor: pointer;
  border-radius: 6px;
  transition: all var(--transition);
  font-size: 12px;
}

.calendar-widget td:hover {
  background: var(--cyan-light);
}

.calendar-widget td.today {
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  border-radius: 6px;
}

.calendar-widget td.empty {
  cursor: default;
}

.calendar-widget td.empty:hover {
  background: none;
}

.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}

.cal-header button {
  background: none;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 4px 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--gray-600);
  transition: all var(--transition);
}

.cal-header button:hover {
  background: var(--cyan-light);
  border-color: var(--cyan);
}

/* ===== AD AREAS ===== */
.ad-banner {
  background: var(--gray-100);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  transition: all var(--transition);
  overflow: hidden;
}

.ad-banner:hover {
  border-color: var(--cyan);
  color: var(--gray-500);
}

.ad-300x250 {
  width: 100%;
  aspect-ratio: 300/250;
}

.ad-300x600 {
  width: 100%;
  aspect-ratio: 300/600;
}

/* ===== NEWS CARDS ===== */
.section-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title::before {
  content: '';
  width: 5px;
  height: 28px;
  background: var(--red);
  border-radius: 3px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--cyan);
}

.news-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card-img {
  transform: scale(1.05);
}

.news-card-img-wrap {
  overflow: hidden;
}

.news-card-body {
  padding: 20px;
}

.news-card-date {
  font-size: 12px;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color var(--transition);
}

.news-card:hover .news-card-body h3 {
  color: var(--red);
}

.news-card-body p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 14px;
}

.btn-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
}

.btn-read:hover {
  background: var(--red);
  transform: translateX(4px);
}

/* ===== RIGHT SIDEBAR ===== */
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}

.partner-logo:hover {
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}

.partner-logo img {
  max-height: 50px;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 13px;
}

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

.stat-item span:first-child {
  color: var(--gray-500);
}

.stat-item span:last-child {
  font-weight: 700;
  color: var(--navy);
}

.weather-widget {
  text-align: center;
  padding: 10px;
}

.weather-widget .temp {
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.weather-widget .city {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 4px;
}

.weather-icon {
  font-size: 40px;
  margin-bottom: 8px;
}

/* ===== NEW OFFICIAL FOOTER ===== */
.official-footer {
  background: #0f172a;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  position: relative;
  z-index: 10;
}

.footer-top-line {
  height: 4px;
  background: #B20211;
  width: 100%;
}

.footer-main-content {
  padding: 60px 0 40px;
}

.footer-main-content .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

/* About Section */
.footer-brand-area {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-mini-logo {
  height: 55px;
  width: auto;
}

.footer-brand-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.footer-brand-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icon-btn {
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon-btn:hover {
  background: #B20211;
  border-color: #B20211;
  transform: translateY(-3px);
}

/* Links Section */
.footer-heading {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-nav-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-nav-list a:hover {
  color: #B20211;
  padding-left: 5px;
}

/* Contact Section */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.f-icon {
  color: #B20211;
  font-size: 16px;
}

.footer-tff-partner {
  margin-top: auto;
}

.tff-official-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.tff-official-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #B20211;
}

.tff-official-link img {
  height: 35px;
  width: auto;
}

/* Bottom Bar */
.footer-bottom-bar {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-bar .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.designer-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.designer-text a {
  color: #B20211;
  font-weight: 700;
  text-decoration: none;
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-row {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-row {
    grid-template-columns: 1fr;
  }
  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}


/* ===== INNER PAGES ===== */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 20px;
  text-align: center;
  color: var(--white);
}

.page-banner h1 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-banner p {
  font-size: 16px;
  opacity: 0.8;
}

.page-content {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.page-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--gray-600);
}

/* Team cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.team-card-body {
  padding: 20px;
}

.team-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-card-body p {
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
}

/* Gallery */
.gallery-grid {
  columns: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.gallery-item img {
  width: 100%;
  display: block;
}

/* Documents */
.doc-list {
  list-style: none;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.doc-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: var(--cyan);
}

.doc-icon {
  font-size: 28px;
  color: var(--red);
  flex-shrink: 0;
}

.doc-info {
  flex: 1;
  min-width: 0;
}

.doc-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.doc-info p {
  font-size: 13px;
  color: var(--gray-500);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 191, 255, 0.1);
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.btn-submit {
  padding: 14px 40px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.contact-info-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-info-item .icon {
  font-size: 22px;
  color: var(--cyan);
  margin-top: 2px;
}

.contact-info-item p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
}

.contact-info-item strong {
  color: var(--navy);
  display: block;
  margin-bottom: 2px;
}

.map-placeholder {
  width: 100%;
  height: 300px;
  background: var(--gray-200);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 16px;
  margin-top: 30px;
}

/* Duyuru sidebar */
.duyuru-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}

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

.duyuru-item a {
  font-size: 13px;
  color: var(--gray-700);
  font-weight: 500;
  transition: color var(--transition);
}

.duyuru-item a:hover {
  color: var(--red);
}

.duyuru-item .duyuru-date {
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .main-content {
    grid-template-columns: 1fr;
  }

  .left-sidebar,
  .right-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .sidebar-box {
    margin-bottom: 0;
  }

  .ad-banner {
    margin-bottom: 0;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    box-shadow: var(--shadow-xl);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links>li>a {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    border-top: none;
    background: var(--navy-light);
    display: none;
  }

  .dropdown-menu.open {
    display: block !important;
  }

  .dropdown-menu a {
    color: rgba(255, 255, 255, 0.7);
    border-bottom-color: rgba(255, 255, 255, 0.05);
  }

  .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
  }

  .hero-slider {
    height: 350px;
  }

  .slide-overlay h2 {
    font-size: 28px;
  }

  .slide-overlay p {
    font-size: 14px;
  }

  .search-box {
    width: 200px;
  }

  .header-brand-text h1 {
    font-size: 12px;
  }

  .left-sidebar,
  .right-sidebar {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    columns: 2;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .header-brand-text {
    display: none;
  }

  .search-box {
    width: 160px;
  }

  .search-box input {
    padding: 10px 14px 10px 40px;
    font-size: 13px;
  }

  .hero-slider {
    height: 280px;
  }

  .slide-overlay h2 {
    font-size: 22px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .gallery-grid {
    columns: 1;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PREMIUM DESIGN STYLES ===== */

/* Premium Sidebar Styles */
.sidebar-premium {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.sidebar-header-premium {
  background: linear-gradient(135deg, var(--navy), #1a365d);
  color: white;
  padding: 20px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar-header-premium i {
  font-size: 18px;
  opacity: 0.9;
}

.sidebar-body-premium {
  padding: 25px;
}

/* Premium Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.stat-item {
  background: white;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

/* Premium News Section */
.news-section-premium {
  margin-bottom: 50px;
}

.section-header-premium {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid #f1f3f5;
}

.section-title-premium {
  display: flex;
  align-items: center;
  gap: 20px;
}

.section-icon-premium {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--cyan), #0099cc);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

.section-title-premium h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
}

.section-title-premium p {
  margin: 5px 0 0 0;
  color: #666;
  font-size: 14px;
}

.view-all-premium {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
  padding: 12px 20px;
  border: 2px solid var(--cyan);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.view-all-premium:hover {
  background: var(--cyan);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 191, 255, 0.3);
}

/* Premium News Grid */
.news-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.news-card-premium {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.news-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.news-card-premium.featured {
  grid-column: span 2;
}

.news-image-premium {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.news-image-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card-premium:hover .news-image-premium img {
  transform: scale(1.05);
}

.news-category-premium {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--red);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-overlay-premium {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.news-card-premium:hover .news-overlay-premium {
  opacity: 1;
}

.news-read-btn {
  background: white;
  color: var(--navy);
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.news-read-btn:hover {
  background: var(--cyan);
  color: white;
  transform: scale(1.05);
}

.news-content-premium {
  padding: 25px;
}

.news-content-premium h3 {
  margin: 0 0 15px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.news-content-premium h3 a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-content-premium h3 a:hover {
  color: var(--cyan);
}

.news-content-premium p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.news-meta-premium {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #f1f3f5;
}

.news-author {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
}

.news-stats {
  display: flex;
  gap: 15px;
  font-size: 12px;
  color: #999;
}

/* Premium Announcements */
.announcements-section-premium {
  margin-bottom: 50px;
}

.announcements-list-premium {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.announcement-item-premium {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.announcement-item-premium:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.announcement-item-premium.priority {
  border-left-color: var(--red);
  background: linear-gradient(135deg, #fff5f5, white);
}

.announcement-indicator {
  flex-shrink: 0;
}

.priority-badge,
.normal-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}

.priority-badge {
  background: linear-gradient(135deg, var(--red), #dc2626);
}

.normal-badge {
  background: linear-gradient(135deg, var(--cyan), #0099cc);
}

.announcement-content-premium h4 {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 700;
}

.announcement-content-premium h4 a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.3s ease;
}

.announcement-content-premium h4 a:hover {
  color: var(--red);
}

.announcement-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #f1f3f5;
}

.read-more {
  color: var(--cyan);
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--red);
  transform: translateX(3px);
}

/* Premium Events */
.events-section-premium {
  margin-bottom: 50px;
}

.events-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.event-card-premium {
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.event-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.event-date-premium {
  background: linear-gradient(135deg, var(--navy), #1a365d);
  color: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  min-width: 80px;
  flex-shrink: 0;
}

.event-day {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.event-month {
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 5px;
  opacity: 0.8;
}

.event-year {
  font-size: 10px;
  opacity: 0.6;
  margin-top: 2px;
}

.event-info-premium h4 {
  margin: 0 0 15px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.event-details {
  margin-bottom: 20px;
}

.event-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #666;
  font-size: 14px;
}

.event-actions {
  display: flex;
  gap: 10px;
}

.event-btn-primary,
.event-btn-secondary {
  padding: 8px 15px;
  border: none;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.event-btn-primary {
  background: linear-gradient(135deg, var(--cyan), #0099cc);
  color: white;
}

.event-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
}

.event-btn-secondary {
  background: #f8f9fa;
  color: #666;
  border: 1px solid #e9ecef;
}

.event-btn-secondary:hover {
  background: #e9ecef;
}

/* Premium Right Sidebar */
.right-sidebar-premium {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.partner-link-premium {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f1f3f5;
  transition: all 0.3s ease;
}

.partner-link-premium:hover {
  transform: translateX(5px);
  color: var(--cyan);
}

.partner-link-premium:last-child {
  border-bottom: none;
}

.partner-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--cyan), #0099cc);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}

.partner-info h5 {
  margin: 0 0 5px 0;
  font-size: 14px;
  font-weight: 700;
}

.partner-info p {
  margin: 0;
  font-size: 12px;
  color: #666;
}

.partner-arrow {
  margin-left: auto;
  color: #ccc;
  transition: all 0.3s ease;
}

.partner-link-premium:hover .partner-arrow {
  color: var(--cyan);
  transform: translateX(3px);
}

/* Premium Weather Widget */
.weather-widget-premium {
  text-align: center;
}

.weather-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.weather-icon-premium {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd54f, #ffb300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.weather-temp {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
}

.weather-city {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #666;
  font-size: 14px;
}

.weather-desc {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 15px;
}

.weather-details {
  display: flex;
  justify-content: space-around;
  gap: 10px;
}

.weather-detail {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #666;
}

/* Premium Stats List */
.stats-list-premium {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.stat-item-premium {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stat-item-premium:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.stat-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.stat-info {
  flex: 1;
}

.stat-info .stat-number {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2px;
}

.stat-info .stat-label {
  font-size: 12px;
  color: #666;
  margin: 0;
}

/* Empty State */
.empty-state-premium {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 20px;
  color: #666;
}

.empty-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e9ecef, #dee2e6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
  color: #adb5bd;
}

.empty-state-premium h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: 700;
}

.empty-state-premium p {
  margin: 0;
  font-size: 14px;
}

/* Center Content Premium */
.center-content-premium {
  padding: 0 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .news-grid-premium {
    grid-template-columns: 1fr;
  }

  .news-card-premium.featured {
    grid-column: span 1;
  }

  .events-grid-premium {
    grid-template-columns: 1fr;
  }

  .section-header-premium {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .center-content-premium {
    padding: 0 15px;
  }

  .event-card-premium {
    flex-direction: column;
    text-align: center;
  }

  .event-date-premium {
    align-self: center;
  }
}

/* Helper function for category colors - moved to PHP file */
/* ===== PREMIUM FOOTER STYLES ===== */

.footer-premium {
  background: linear-gradient(135deg, var(--navy) 0%, #1a365d 50%, #2d3748 100%);
  color: white;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  color: #f8f9fa;
  transform: translateY(-1px);
}

.footer-wave svg {
  width: 100%;
  height: 100%;
}

.footer-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.footer-main-premium {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col-premium h4 {
  color: white;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-bottom: 15px;
}

.footer-col-premium h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, var(--cyan), var(--red));
  border-radius: 2px;
}

/* Footer Brand */
.footer-brand {
  padding-right: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.footer-logo-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--cyan), var(--red));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.footer-logo-text h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: white;
}

.footer-logo-text p {
  margin: 5px 0 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-description {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

/* Footer Social Premium */
.footer-social-premium {
  display: flex;
  gap: 15px;
}

.social-btn {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.social-btn:hover::before {
  left: 100%;
}

.social-btn.facebook {
  background: linear-gradient(135deg, #3b5998, #2d4373);
}

.social-btn.twitter {
  background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social-btn.instagram {
  background: linear-gradient(135deg, #e4405f, #c13584);
}

.social-btn.youtube {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Footer Links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.footer-links a:hover {
  color: var(--cyan);
  transform: translateX(5px);
}

.footer-links a i {
  font-size: 10px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-links a:hover i {
  opacity: 1;
  transform: translateX(3px);
}

/* Footer Contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--cyan), #0099cc);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}

.contact-info strong {
  display: block;
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-info p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

/* Footer Bottom Premium */
.footer-bottom-premium {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links-bottom {
  display: flex;
  gap: 25px;
}

.footer-links-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links-bottom a:hover {
  color: var(--cyan);
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-main-premium {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: span 2;
    padding-right: 0;
  }
}

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

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links-bottom {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-logo {
    justify-content: center;
    text-align: center;
  }

  .footer-social-premium {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding-top: 60px;
  }

  .footer-wave {
    height: 40px;
  }

  .footer-social-premium {
    gap: 10px;
  }

  .social-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* ===== 
HERO ENHANCED STYLES ===== */
.hero-enhanced {
  background: linear-gradient(135deg, var(--navy) 0%, var(--red) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(-100px) rotate(360deg);
  }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hero-stat:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.hero-stat-number {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--cyan);
}

.hero-stat-label {
  font-size: 14px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Main Content Layout */
.main-content {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 300px 1fr 300px;
  gap: 30px;
  align-items: start;
}

/* Responsive */
@media (max-width: 1024px) {
  .main-content {
    grid-template-columns: 250px 1fr 250px;
    gap: 20px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .main-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .hero-stat {
    padding: 20px 15px;
  }

  .hero-stat-number {
    font-size: 24px;
  }
}

/* =====
 UPDATED SIDEBAR STYLES ===== */
.login-widget {
  border: 2px solid var(--cyan) !important;
  box-shadow: 0 4px 15px rgba(0, 191, 255, 0.1) !important;
}

.login-header {
  background: linear-gradient(135deg, var(--cyan) 0%, #0099cc 100%) !important;
}

.menu-header,
.sitemap-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%) !important;
}

.partners-header,
.weather-header {
  background: linear-gradient(135deg, var(--cyan) 0%, #0099cc 100%) !important;
}

.btn-login-primary {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--cyan) 0%, #0099cc 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
  margin-bottom: 15px;
}

.btn-login-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 191, 255, 0.3);
}

.login-widget input[type="text"],
.login-widget input[type="password"],
.login-widget input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
  outline: none;
  display: block;
  box-sizing: border-box;
}

.login-widget input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.1);
}

.login-links {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
}

.login-links a {
  font-size: 12px;
  color: var(--cyan);
  text-decoration: none;
  font-weight: 500;
}

.login-links a:hover {
  color: var(--red);
}

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

.partner-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}

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

.partner-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

/* ===== ADDITIONAL SIDEBAR HEADERS ===== */
.calendar-header,
.announcements-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%) !important;
  color: var(--white);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.stats-header {
  background: linear-gradient(135deg, var(--cyan) 0%, #0099cc 100%) !important;
  color: var(--white);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Calendar Styles */
.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}

.cal-header button {
  background: none;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 4px 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--gray-600);
  transition: all var(--transition);
}

.cal-header button:hover {
  background: var(--cyan-light);
  border-color: var(--cyan);
}

/* Duyuru Styles */
.duyuru-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}

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

.duyuru-item a {
  font-size: 13px;
  color: var(--gray-700);
  font-weight: 500;
  transition: color var(--transition);
  text-decoration: none;
  display: block;
  margin-bottom: 3px;
}

.duyuru-item a:hover {
  color: var(--red);
}

.duyuru-date {
  font-size: 11px;
  color: var(--gray-400);
}

/* Stats Styles */
.stat-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 13px;
}

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

.stat-item span:first-child {
  color: var(--gray-500);
}

.stat-item span:last-child {
  font-weight: 700;
  color: var(--navy);
}/* =====
 SNRSOFT CREDIT STYLES ===== */
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.footer-credit {
  display: flex;
  align-items: center;
}

.snr-credit-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--red) 0%, #dc2626 100%);
  padding: 8px 16px;
  border-radius: 25px;
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(178, 2, 17, 0.3);
}

.snr-credit-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(178, 2, 17, 0.4);
  border-color: rgba(255,255,255,0.4);
}

.snr-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  padding: 2px;
}

.snr-favicon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.snr-text {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: white;
  font-weight: 500;
}

.credit-line1, .credit-line2 {
  color: rgba(255,255,255,0.9);
}

.credit-brand {
  color: white;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
}

.credit-brand:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.05);
}

.snr-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  color: white;
  font-size: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .snr-credit-box {
    padding: 6px 12px;
    gap: 8px;
  }
  
  .snr-text {
    font-size: 11px;
    gap: 3px;
  }
}/* ==
=== UPDATED FOOTER CREDIT STYLES ===== */
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.footer-credit {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.credit-text {
  color: rgba(255,255,255,0.7);
}

.snr-link {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 2px 4px;
  border-radius: 3px;
}

.snr-link:hover {
  color: var(--white);
  background: var(--red);
  transform: scale(1.05);
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* ===== FOOTER TEMEL STILLER ===== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  margin-top: 40px;
}

footer .footer-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 50px 20px 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

footer .footer-col h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 10px;
  position: relative;
}

footer .footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

footer .footer-col p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.7);
}

footer .footer-col a {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s;
}

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

footer .footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

footer .footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  padding: 0;
  transition: all 0.3s;
}

footer .footer-social a:hover {
  background: var(--red);
  transform: translateY(-3px);
  padding-left: 0;
}

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

footer .footer-bottom-content {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

footer .footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

footer .footer-copyright a {
  color: var(--cyan);
  text-decoration: none;
  display: inline;
  padding: 0;
}

footer .footer-credit {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

footer .snr-link {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

footer .snr-link:hover {
  color: white;
}

@media (max-width: 768px) {
  footer .footer-main {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 30px 16px !important;
  }

  footer .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}
