/* =================================
   STYLE.CSS - ULTRA TEMİZ VERSİYON
   Gereksiz kodlar temizlendi
   ================================= */

/* ROOT VARIABLES */
:root {
  --primary: #0056b3;
  --primary-dark: #003d82;
  --secondary: #ff6b35;
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --white: #ffffff;
  --gray: #6c757d;
  --border: #dee2e6;
}

/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
}

/* =================================
   TOP BAR
   ================================= */
.top-bar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 0.6rem 0;
  font-size: 0.9rem;
}

.top-bar-container {
  max-width: 1670px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.top-bar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.top-bar-link:hover {
  color: var(--white);
  transform: translateX(3px);
}

.top-bar-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.top-bar-social {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s;
}

.top-bar-social:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* =================================
   NAVBAR
   ================================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 50px;
  width: auto;
  border-radius: 4px;
  object-fit: contain;
}

/* DESKTOP MENU */
.desktop-menu {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex: 1;
  justify-content: flex-end;
}

.desktop-menu > a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.8rem 1.2rem;
  transition: all 0.3s;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.desktop-menu > a:hover {
  background: var(--primary);
  color: var(--white);
}

/* DROPDOWN */
.dropdown {
  position: relative;
  display: flex;
}

.dropdown-toggle {
  color: var(--dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.8rem 1.2rem;
  transition: all 0.3s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.dropdown-toggle i {
  font-size: 0.7rem;
  transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle {
  background: var(--primary);
  color: var(--white);
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 1001;
  margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 1.5rem;
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  border-bottom: 1px solid var(--border);
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: var(--primary);
  color: var(--white);
  padding-left: 2rem;
}

.dropdown-menu a i {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

/* HAMBURGER */
.hamburger {
  display: none;
  width: 30px;
  height: 25px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1003;
  background: transparent;
  border: none;
  padding: 0;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
  background: var(--white);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: -11px;
  background: var(--white);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 0;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1002;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.mobile-menu-header h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu-header h3:before {
  content: "☰";
  font-size: 1.6rem;
}

.mobile-close-btn {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.mobile-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 2rem 1.5rem;
  flex: 1;
}

.mobile-menu nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 0.8rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu nav a i {
  width: 26px;
  font-size: 1.3rem;
  text-align: center;
}

.mobile-menu nav a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(8px);
}

.mobile-contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  bottom: 0;
  backdrop-filter: blur(10px);
}

.mobile-contact-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1.1rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: all 0.3s;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.mobile-contact-buttons .whatsapp-btn {
  background: #25d366;
  border-color: #20ba5a;
}

.mobile-contact-buttons .instagram-btn {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: rgba(188, 24, 136, 0.5);
}

.mobile-contact-buttons .phone-btn {
  background: var(--secondary);
  border-color: #ff5722;
}

.mobile-contact-buttons a:hover {
  transform: scale(1.03);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  z-index: 1001;
  backdrop-filter: blur(10px);
}

.menu-overlay.active {
  display: block;
}

/* =================================
   HERO SECTION
   ================================= */
.hero {
  margin-top: 128px;
  height: 85vh;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

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

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.prev-arrow {
  left: 30px;
}

.next-arrow {
  right: 30px;
}

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

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.dot.active {
  background: var(--white);
  width: 40px;
  border-radius: 7px;
}

.hero-content {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  max-width: 600px;
  padding: 0 2rem;
  z-index: 10;
  opacity: 1;
}

.hero-buttons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  /* YENİ: Butonlar her zaman ortada */
  width: 100%;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2rem;
  background: blue;
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
  border: 2px solid transparent;
}

.hero-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-icon-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-icon-btn:hover {
  transform: translateY(-3px) scale(1.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-icon-btn.phone-icon {
  background: linear-gradient(135deg, #f70303 0%, #fc0202 100%);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.hero-icon-btn.phone-icon:hover {
  box-shadow: 0 6px 25px rgba(245, 0, 0, 0.5);
}

.hero-icon-btn.whatsapp-icon {
  background: #25d366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.hero-icon-btn.whatsapp-icon:hover {
  background: #20ba5a;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* =================================
   SECTIONS - GENEL
   ================================= */
.container {
  margin: 0 auto;
  max-width: 1700px;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: #495057;
}

/* =================================
   SERVICES SECTION
   ================================= */
.services-section {
  padding: 6rem 2rem;
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1700px;
  margin: 0 auto;
}

.service-card {
  width: 100%;
  padding: 0;
}

.service-card .wrapper {
  background: url(https://images.unsplash.com/photo-1581092160562-40aa08e78837?w=800) center / cover no-repeat;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.service-card .wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 25px 30px rgba(0, 0, 0, 0.3);
}

.service-card .wrapper:hover .data {
  transform: translateY(0);
}

.service-card .wrapper:hover .service-title-main {
  opacity: 0;
  visibility: hidden;
}

.service-card .header {
  color: var(--white);
  padding: 2em;
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.service-card .service-date {
  width: 100%;
  text-align: center;
}

.service-card .service-title-main {
  font-size: 2rem;
  color: var(--white);
  font-weight: 800;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  margin: 0;
  padding: 1.5rem;
  line-height: 1.2;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.service-card .data {
  position: absolute;
  bottom: 0;
  width: 100%;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  color: var(--white);
}

.service-card .content {
  padding: 2em;
  position: relative;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 86, 179, 0.95) 0%, rgba(0, 61, 130, 0.9) 100%);
  backdrop-filter: blur(10px);
}

.service-card .title {
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 0 1rem 0;
  font-weight: 700;
  line-height: 1.3;
}

.service-card .text {
  height: auto;
  margin: 0 0 1.5rem 0;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  font-size: 1rem;
}

/* SERVICE MODAL */
.service-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.service-modal.active {
  display: flex;
}

.service-modal-content {
  background: var(--white);
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.4s ease;
}

.service-modal-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 8px 8px 0 0;
  position: relative;
}

.service-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.service-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.service-modal-header h2 {
  font-size: 1.8rem;
  margin: 0;
  padding-right: 3rem;
}

.service-modal-body {
  padding: 2rem 1.5rem;
}

.service-modal-body p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* =================================
   PARTNERS SECTION
   ================================= */
.partners-section {
  padding: 6rem 2rem;
  background: var(--white);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
}

.partner-item {
  aspect-ratio: 1;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--white);
  transition: all 0.3s ease;
  cursor: pointer;
}

.partner-item:hover {
  background: var(--light);
  transform: scale(1.05);
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.partner-item img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.partner-item:hover img {
  filter: grayscale(0%);
}

/* =================================
   REFERENCES SECTION
   ================================= */
.references-section {
  padding: 6rem 0;
  background: var(--light);
  overflow: hidden;
}

.references-slider {
  margin-bottom: 2rem;
  overflow: hidden;
  position: relative;
}

.references-slider:last-child {
  margin-bottom: 0;
}

.slider-track {
  display: flex;
  gap: 2rem;
  animation: slideRight 40s linear infinite;
  width: fit-content;
}

.references-slider.reverse .slider-track {
  animation: slideLeft 40s linear infinite;
}

.reference-item {
  flex-shrink: 0;
  width: 300px;
  background: var(--white);
  border-radius: 4px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
}

.reference-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 86, 179, 0.15);
}

.reference-logo-container {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: var(--light);
  border-radius: 4px;
  padding: 1rem;
}

.reference-logo-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.reference-item h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-weight: 700;
  text-align: center;
}

.reference-item p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

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

.slider-track:hover {
  animation-play-state: paused;
}

/* =================================
   ABOUT PREVIEW
   ================================= */
.about-preview {
  padding: 6rem 2rem;
  background: var(--white);
}

.about-preview-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-preview-text h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.about-preview-text p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-stats-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.stat-preview {
  text-align: center;
  padding: 1.5rem;
  background: var(--light);
  border-radius: 4px;
  border-left: 4px solid var(--primary);
}

.stat-preview-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-preview-label {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 600;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  transition: all 0.3s;
}

.read-more-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 86, 179, 0.3);
}

.about-preview-image {
  position: relative;
  height: 500px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =================================
   CONTACT PREVIEW
   ================================= */
.contact-preview {
  padding: 6rem 2rem;
  background: var(--light);
}

.contact-preview-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contact-preview-content h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.contact-preview-content p {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-method {
  background: var(--white);
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.contact-method-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.contact-method h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.contact-method a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-method a:hover {
  text-decoration: underline;
}

.contact-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1.2rem 3rem;
  background: var(--secondary);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.contact-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

/* =================================
   CATEGORY FILTERS (Products)
   ================================= */
.category-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.category-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2rem;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 4px;
  color: var(--gray);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

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

.category-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 5px 20px rgba(0, 86, 179, 0.3);
}

.category-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0 0.5rem;
}

.category-btn.active .category-count {
  background: rgba(255, 255, 255, 0.2);
}

.product-image-container {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.product-image-container .content-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* =================================
   PAGES - GENEL
   ================================= */
.page-container {
  min-height: 120vh;
  padding: 150px 2rem 6rem;
  background: var(--light);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.content-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
}

.content-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 86, 179, 0.15);
}

.content-media {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.content-info {
  padding: 2rem;
}

.content-info h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

.content-info p {
  color: var(--gray);
  line-height: 1.8;
}

/* ABOUT PAGE */
.about-content {
  max-width: 1200px;
  margin: 0 auto;
}

.about-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 4px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.about-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.about-card h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.about-card p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat-item {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--primary);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--gray);
  font-weight: 600;
}

.about-features {
  background: var(--white);
  padding: 3rem;
  border-radius: 4px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.about-features h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 1.2rem;
  background: var(--light);
  border-radius: 4px;
  border-left: 4px solid var(--primary);
}

.feature-item i {
  color: var(--primary);
  font-size: 1.5rem;
}

.feature-item span {
  font-size: 1.05rem;
  color: var(--dark);
  font-weight: 600;
}

/* CONTACT PAGE */
.contact-content {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-info-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.contact-info-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.2rem;
}

.contact-info-card h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-info-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.8rem;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

.contact-note {
  color: var(--gray);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.contact-map-section {
  background: var(--white);
  padding: 3rem;
  border-radius: 4px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
}

.contact-map-section h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.map-container {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 4rem 3rem;
  border-radius: 4px;
  text-align: center;
  color: var(--white);
  box-shadow: 0 10px 40px rgba(0, 86, 179, 0.3);
}

.contact-cta h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.contact-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 1.2rem 3rem;
  background: var(--white);
  color: var(--primary);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* =================================
   MODAL - GENEL
   ================================= */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: 4px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.4s ease;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 1;
}

.modal-close:hover {
  background: var(--primary-dark);
  transform: rotate(90deg);
}

.modal-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem;
}

.modal-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.modal-right {
  display: flex;
  flex-direction: column;
}

.modal-image-container {
  width: 100%;
  height: 400px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.modal-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.modal-info p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 1.05rem;
}

.modal-features h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--primary);
}

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

.features-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

.features-table tbody tr:hover {
  background: var(--light);
}

.features-table tbody tr:last-child {
  border-bottom: none;
}

.feature-icon {
  width: 40px;
  padding: 1rem 0;
  text-align: center;
}

.feature-icon i {
  color: var(--primary);
  font-size: 1.2rem;
}

.feature-text {
  padding: 1rem 0.5rem;
  color: var(--dark);
  font-size: 1rem;
  line-height: 1.6;
}

/* PARTNER & REFERENCE MODAL */
.partner-modal-content,
.reference-modal-content {
  max-width: 700px;
}

.partner-modal-layout,
.reference-modal-layout {
  padding: 3rem;
  text-align: center;
}

.partner-modal-logo,
.reference-modal-logo {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  background: var(--light);
  border-radius: 4px;
  padding: 2rem;
}

.partner-modal-logo img,
.reference-modal-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partner-modal-info h2,
.reference-modal-info h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.partner-modal-info p,
.reference-modal-info p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.8;
}

/* =================================
   ADMIN PANEL
   ================================= */
.admin-panel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--light);
  z-index: 5000;
  overflow-y: auto;
}

.admin-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.admin-header h2 {
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.admin-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  border-bottom: 3px solid var(--border);
  flex-wrap: wrap;
}

.admin-tab {
  padding: 1.2rem 2rem;
  background: none;
  border: none;
  color: var(--gray);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-tab:hover {
  color: var(--primary);
}

.admin-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.admin-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 4px;
  margin-bottom: 3rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.admin-form h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--dark);
  font-weight: 600;
  font-size: 1.05rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 4px;
  font-size: 1rem;
  transition: all 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 0;
}

.btn {
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 86, 179, 0.3);
}

.btn-secondary {
  background: var(--gray);
  color: var(--white);
}

.btn-secondary:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

.btn-danger {
  background: #dc3545;
  color: var(--white);
}

.btn-danger:hover {
  background: #c82333;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(220, 53, 69, 0.3);
}

.admin-list {
  display: grid;
  gap: 1.5rem;
}

.admin-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.admin-item:hover {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.admin-item-info {
  flex: 1;
}

.admin-item-info strong {
  font-size: 1.3rem;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.admin-item-info p {
  color: var(--gray);
  line-height: 1.6;
}

.admin-item-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.admin-category-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.admin-category-title {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--light);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gray);
}

.empty-state i {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.login-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 6000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.login-modal.active {
  display: flex;
}

.login-box {
  background: var(--white);
  padding: 3rem;
  border-radius: 4px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.login-box h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 2rem;
  text-align: center;
}

/* =================================
   FOOTER
   ================================= */
footer {
  background: #172d4c;
  color: var(--white);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.footer-logo:hover {
  opacity: 0.8;
}

.footer-logo-img {
  width: 60%;
  height: 100%;
  border-radius: 4px;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  transition: all 0.3s;
  font-size: 1rem;
}

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

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.footer-copyright a {
  text-decoration: none;
  color: inherit;
}

.furkatech-logo {
  height: 20px;
  vertical-align: middle;
}

.footer-copyright .furkatech {
  color: #fff;
  font-weight: 700;
}

.footer-copyright .tecnology {
  color: #00fefb;
  font-weight: 700;
}

/* =================================
   ÜCRETSİZ KEŞİF BUTONU
   ================================= */
.free-survey-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, #f84605 0%, #f55f01 100%);
  color: var(--white);
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  white-space: nowrap;
}

.free-survey-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
}

/* =================================
   BAŞVURU FORMU & KAMPANYALAR
   ================================= */
.survey-form-container {
  max-width: 800px;
  margin: 0 auto 4rem;
}

.survey-form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-top: 5px solid var(--primary);
}

.form-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  box-shadow: 0 5px 20px rgba(0, 86, 179, 0.3);
}

.survey-form-card h3 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.form-description {
  text-align: center;
  color: var(--gray);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.survey-form-card .form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.8rem;
  color: var(--dark);
  font-weight: 600;
  font-size: 1rem;
}

.survey-form-card .form-group label i {
  color: var(--primary);
  width: 18px;
}

.survey-form-card input,
.survey-form-card textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s;
  font-family: inherit;
}

.survey-form-card input:focus,
.survey-form-card textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
}

.submit-btn {
  width: 100%;
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
  margin-top: 1rem;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 86, 179, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 86, 179, 0.4);
}

.campaigns-section {
  margin-top: 5rem;
}

.campaigns-grid {
  display: grid;
  gap: 2rem;
}

.campaign-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.campaign-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 86, 179, 0.15);
}

.campaign-card.position-left {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
}

.campaign-card.position-right {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
}

.campaign-card.position-center {
  text-align: center;
}

.campaign-image.size-small {
  width: 300px;
  height: 200px;
}

.campaign-image.size-medium {
  width: 500px;
  height: 350px;
}

.campaign-image.size-large {
  width: 800px;
  height: 500px;
}

.campaign-image.size-full {
  width: 100%;
  height: 400px;
}

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

.campaign-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.campaign-info h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.campaign-info p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.8;
}

/* =================================
   BAŞVURULAR - ADMIN
   ================================= */
.applications-filter {
  background: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.filter-group select {
  padding: 0.6rem 1rem;
  border: 2px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
}

.applications-count {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  color: var(--gray);
}

.applications-count i {
  color: var(--primary);
  font-size: 1.3rem;
}

.application-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  border-left: 5px solid var(--primary);
}

.application-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--light);
  flex-wrap: wrap;
  gap: 1rem;
}

.application-name {
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.application-date {
  color: var(--gray);
  font-size: 0.9rem;
}

.application-status {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.status-new {
  background: #fff3cd;
  color: #856404;
}

.status-contacted {
  background: #d1ecf1;
  color: #0c5460;
}

.status-completed {
  background: #d4edda;
  color: #155724;
}

.application-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.detail-item i {
  color: var(--primary);
  font-size: 1.1rem;
  width: 20px;
  margin-top: 3px;
}

.detail-item strong {
  display: block;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.detail-item span {
  color: var(--gray);
  line-height: 1.6;
}

.application-message {
  background: var(--light);
  padding: 1.2rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.application-message strong {
  display: block;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.application-message p {
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

.application-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* =================================
   BAŞKENTGAZ YETKİ
   ================================= */
.baskent-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 3.5rem;
  padding: 0.4rem 1rem;
  transition: all 0.3s ease;
}

.baskent-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-3px);
}

.baskent-logo {
  width: 130px;
  object-fit: contain;
  background: var(--white);
  padding: 3px;
}

.yetki-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.yetki-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.yetki-no {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFD700;
  letter-spacing: 1.5px;
  font-family: 'Courier New', monospace;
}

/* =================================
   PARTNER LOGO FULL (Partners Page)
   ================================= */
.partner-logo-full {
  height: 200px;
  padding: 2rem;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo-full img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* =================================
   ANIMATIONS
   ================================= */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =================================
   UTILITY CLASSES
   ================================= */
.hidden {
  display: none !important;
}

/* =================================
   RESPONSIVE - DESKTOP
   ================================= */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-card .service-title-main {
    font-size: 1.8rem;
  }

  .service-card .wrapper,
  .service-card .header {
    min-height: 380px;
  }
}

@media (max-width: 1024px) {
  .desktop-menu {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .hero {
    margin-top: 108px;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-preview-content {
    grid-template-columns: 1fr;
  }
  
  .about-preview-image {
    height: 400px;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .modal-layout {
    grid-template-columns: 1fr;
  }
}

/* =================================
   MOBİL KEŞİF BUTONU
   ================================= */
.mobile-survey-btn {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 0.6rem 1rem;
  background: linear-gradient(135deg, #f84605 0%, #f55f01 100%);
  color: var(--white);
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.75rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
  white-space: nowrap;
}

.mobile-survey-btn i {
  font-size: 0.9rem;
}

.mobile-survey-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
}

.mobile-survey-btn:active {
  transform: translateY(0);
}

/* =================================
   MOBİL YETKİ BADGE (Gizli - Mobilde Görünür)
   ================================= */
.mobile-authorization-badge {
  display: none;
  background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
  padding: 1.5rem 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.mobile-auth-container {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.mobile-auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.mobile-auth-logo img {
  width: 100%;
  max-width: 120px;
  height: auto;
  object-fit: contain;
}

.mobile-auth-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  justify-content: center;
}

.mobile-auth-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mobile-auth-number {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFD700;
  letter-spacing: 1.5px;
  font-family: 'Courier New', monospace;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.mobile-auth-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 215, 0, 0.2);
  border-radius: 50%;
  border: 3px solid #FFD700;
}

.mobile-auth-icon i {
  font-size: 1.5rem;
  color: #FFD700;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* ==========================================
   PARTNER WEBSITE BUTTON STYLES
   ========================================== */

.partner-website-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.partner-website-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
  background: linear-gradient(135deg, #003d82 0%, #002a5c 100%);
}

.partner-website-btn i {
  font-size: 1rem;
}

/* Partner Modal Info düzenlemesi */
.partner-modal-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}