/* ===== STYLE.CSS - TAM MODÜLER YAPISI ===== */
/* 📦 ANA TANIMLAR VE DEĞİŞKENLER MODÜLÜ */

/* 🎨 RENK DEĞİŞKENLERİ VE TEMA */
:root {
  /* Ana Renk Paleti */
  --primary: #4361ee;
  --primary-dark: #3a0ca3;
  --secondary: #f72585;
  --secondary-dark: #b5179e;
  --accent: #4cc9f0;
  
  /* Nötr Renkler */
  --light: #f8f9fa;
  --dark: #212529;
  --success: #4bb543;
  
  /* Gradient ve Gölgeler */
  --gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  --card-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  --hover-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* 🔧 TEMEL SAYFA AYARLARI MODÜLÜ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--gradient);
  color: var(--light);
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
  padding: 1.5vh 0.5vw;
}

/* 🏗️ CONTAINER VE LAYOUT MODÜLÜ */
.container {
  width: min(98%, 1200px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 96vh;
  gap: 2vh;
  opacity: 1;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== HEADER BÖLÜMÜ ===== */
/* 🏷️ LOGO VE BAŞLIK MODÜLÜ */

header {
  text-align: center;
  padding: 0.5vh 0;
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1vh;
}

.logo img {
  width: 100px;
  height: 100px;
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

h1 {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.8vh;
  line-height: 1.1;
}

.subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.9;
  max-width: min(90%, 700px);
  margin: 0.8vh auto 0;
  line-height: 1.4;
  text-align: center;
  padding: 0 3vw;
}

.highlight-text {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
}

/* ===== ANA İÇERİK BÖLÜMÜ ===== */
/* 🎪 BÜYÜK BUTONLAR MODÜLÜ */

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 2.5vh;
}

.buttons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  width: min(90%, 800px);
  flex-wrap: wrap;
  height: auto;
  min-height: 35vh;
  position: relative;
}

.main-button {
  flex: 1 1 min(45%, 320px);
  min-width: min(320px, 90%);
  height: 32vh;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
  padding: 2.5vh 1vw;
}

/* Buton Hover Efektleri */
.main-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.main-button:hover::before {
  left: 100%;
}

.main-button:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--hover-shadow);
}

/* Teknisyen Buton Stili */
.technician-button {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

/* Müşteri Buton Stili */
.customer-button {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

/* Buton İçeriği Stilleri */
.button-icon {
  font-size: 2.8rem;
  margin-bottom: 0.1vh;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.25));
  transition: transform 0.3s ease;
}

.main-button:hover .button-icon {
  transform: scale(1.15);
}

.button-text {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.1vh;
  text-align: center;
}

.button-question {
  font-size: 1.3rem;
  opacity: 0.9;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 0.1vh;
  font-weight: 600;
}

/* Adım Listesi Stilleri */
.button-steps {
  text-align: left;
  width: 100%;
  margin-top: -8px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5vh;
  font-size: 1rem;
  line-height: 1.4;
}

.step-number {
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
  margin-right: 1vw;
  flex-shrink: 0;
  margin-top: 0.1vh;
}

.step-text {
  flex: 1;
  font-weight: 500;
}

/* ===== WHATSAPP BUTON MODÜLÜ ===== */
/* 📱 YÜZEN WHATSAPP BUTONU */

.whatsapp-float {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}

.whatsapp-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 8px 0;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
  font-size: 2.2rem;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  margin-bottom: -10px;
}

.whatsapp-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  text-align: center;
  line-height: 1.1;
  margin-top: 0;
  padding: 0 4px;
  word-break: break-word;
}

/* ===== ÖZELLİKLER MODÜLÜ ===== */
/* ✨ ANA SAYFA ÖZELLİK KARTLARI */

.features {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1vw;
  width: min(95%, 800px);
  flex-wrap: wrap;
  margin-top: 0.1vh;
}

.feature-card {
  flex: 1 1 min(30%, 200px);
  min-width: min(180px, 90%);
  padding: 1vh 1vw;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(76, 201, 240, 0.3);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.5vh;
  color: var(--accent);
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5vh;
}

.feature-desc {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.3;
}

/* ===== SEO ACCORDION MODÜLÜ ===== */
/* 🏢 YAN YANA SEO BÖLÜMLERİ */

.seo-sections {
  max-width: min(95%, 1200px);
  margin: 0.5vh 0.5vh;
  padding: 0 1vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2vw;
}

.seo-accordion {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  margin-bottom: 0.5vh;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.seo-accordion:hover {
  background: rgba(255, 255, 255, 0.03);
}

.accordion-header {
  padding: 1.5vh 2vw;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.04);
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 1vw;
  font-weight: 600;
  flex: 1;
}

.accordion-icon {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--accent);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: 12px;
  flex-shrink: 0;
}

.accordion-content {
  display: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.01);
}

/* ===== SERVİS DETAY GRID MODÜLÜ ===== */
/* 🛠️ SERVİS DETAY KARTLARI */

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 1.5vw;
  padding: 2vh 2vw;
}

.service-detail-card {
  background: rgba(255, 255, 255, 0.02);
  padding: 1.5vh 1.2vw;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.service-detail-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(76, 201, 240, 0.2);
}

.service-detail-icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 0.8vh;
  text-align: center;
}

.service-detail-card h4 {
  font-size: 1rem;
  margin-bottom: 0.6vh;
  color: var(--light);
  text-align: center;
  font-weight: 600;
}

.service-detail-card p {
  opacity: 0.8;
  margin-bottom: 1vh;
  line-height: 1.4;
  font-size: 0.85rem;
  text-align: center;
}

.service-detail-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-detail-card li {
  padding: 0.4vh 0;
  opacity: 0.7;
  font-size: 0.8rem;
  position: relative;
  padding-left: 1.2vw;
}

.service-detail-card li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 0.75rem;
}

/* ===== ŞEHİR GRID MODÜLÜ ===== */
/* 🗺️ ŞEHİR LİSTESİ GRID YAPISI */

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: 1.5vw;
  padding: 2vh 2vw;
}

.city-group {
  background: rgba(255, 255, 255, 0.02);
  padding: 1.2vh 1vw;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.2s ease;
}

.city-group:hover {
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-3px);
}

.city-group h4 {
  color: var(--accent);
  margin-bottom: 0.6vh;
  font-size: 0.95rem;
  font-weight: 600;
}

.city-group p {
  opacity: 0.7;
  font-size: 0.85rem;
  line-height: 1.3;
  margin: 0;
}

/* ===== FORM SİSTEMİ MODÜLÜ ===== */
/* 📝 FORM OVERLAY VE CONTAINER */

.form-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 2vh;
}

.form-container {
  width: min(95%, 700px);
  max-height: min(100vh, 1000px);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 3vh 3vw;
  box-shadow: var(--card-shadow);
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow-y: auto;
}

/* Form Scrollbar Stili */
.form-container::-webkit-scrollbar {
  width: 8px;
}

.form-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.form-container::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

/* ===== FORM BAŞLIK MODÜLÜ ===== */
/* 🏷️ FORM BAŞLIK VE KAPATMA */

.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5vh;
  padding-bottom: 1.5vh;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.form-title {
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.8vw;
}

.close-button {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--light);
  font-size: 1.2rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.close-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* ===== FORM ELEMENT MODÜLÜ ===== */
/* 🔘 INPUT, SELECT, TEXTAREA STİLLERİ */

.form-group {
  margin-bottom: 2vh;
  text-align: left;
}

.form-row {
  display: flex;
  gap: 1.2vw;
  margin-bottom: 1.5vh;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.form-row .form-group {
  flex: 1;
  min-width: 0;
  margin-bottom: 0;
}

.form-label {
  display: block;
  margin-bottom: 0.8vh;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--light);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 1.2vh 1.2vw;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  color: var(--light);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.form-select option {
  background: #1a1a2e;
  color: var(--light);
  padding: 1.2vh;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 3px rgba(76, 201, 240, 0.3);
  transform: translateY(-1px);
}

.form-textarea {
  resize: vertical;
  min-height: 12vh;
  max-height: 18vh;
  line-height: 1.5;
}



/* DateTime Input için Webkit (Chrome, Safari) */
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  background: transparent;
  bottom: 0;
  color: transparent;
  cursor: pointer;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}

/* Select Özel Stil */
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234cc9f0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1.2vw center;
  background-size: 14px;
}

.form-input[type="tel"] {
  letter-spacing: 1px;
  font-family: 'Courier New', monospace;
  font-weight: 500;
}

/* ===== SERVİS SEÇİM MODÜLÜ ===== */
/* 🎯 SERVİS GRID VE SEÇİM SİSTEMİ */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(120px, 100%), 1fr));
  gap: 1vw;
  margin-top: 1vh;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5vh 0.8vw;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
  min-height: 80px;
  justify-content: center;
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-item.selected {
  background: rgba(76, 201, 240, 0.25);
  border-color: var(--accent);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(76, 201, 240, 0.3);
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8vh;
  color: var(--accent);
}

.service-name {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

/* Seçili Servis Etiketleri */
.selected-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8vw;
  margin-top: 1.5vh;
  min-height: 4vh;
}

.selected-tag {
  background: rgba(76, 201, 240, 0.4);
  padding: 0.8vh 1.2vw;
  border-radius: 15px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6vw;
  font-weight: 500;
}

.remove-tag {
  background: none;
  border: none;
  color: var(--light);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.remove-tag:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* ===== FORM GÖNDERME MODÜLÜ ===== */
/* 📤 GÖNDER BUTONU VE BAŞARI MESAJI */

.submit-button {
  width: 100%;
  padding: 1.5vh;
  border-radius: 10px;
  border: none;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 2.5vh;
  box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
  letter-spacing: 0.5px;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(67, 97, 238, 0.6);
}

/* Başarı Mesajı Stili */
.success-message {
  display: none;
  text-align: center;
  padding: 3vh;
  background: rgba(75, 181, 67, 0.15);
  border-radius: 10px;
  margin-top: 2.5vh;
  border: 1px solid rgba(75, 181, 67, 0.4);
}

.success-icon {
  font-size: 2.5rem;
  color: var(--success);
  margin-bottom: 1.5vh;
}

.success-message h3 {
  font-size: 1.2rem;
  margin-bottom: 1.2vh;
  font-weight: 600;
}

.success-message p {
  font-size: 1rem;
  line-height: 1.4;
  opacity: 0.9;
}

/* ===== FOOTER MODÜLÜ ===== */
/* 🦶 SAYFA ALT BİLGİSİ */

footer {
  text-align: center;
  padding: 1.5vh 0;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(95%, 1100px);
  margin: 0 auto;
  padding: 0 2vw;
  flex-wrap: wrap;
  gap: 1.2vh;
}

.footer-text {
  opacity: 0.7;
  font-size: 0.85rem;
  text-align: left;
  line-height: 1.4;
  flex: 1 1 min(350px, 100%);
}

.social-media {
  display: flex;
  gap: 1vw;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--light);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
  background: rgba(76, 201, 240, 0.3);
  transform: translateY(-2px);
  border-color: var(--accent);
}

.social-icon i {
  font-size: 1.1rem;
}

/* ===== TIKLAMA ANİMASYONLARI MODÜLÜ ===== */
/* ✨ BUTON TIKLAMA İNDİKATÖRLERİ */

.click-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  pointer-events: none;
  padding: 0;
  margin: 2px 0;
}

.click-text {
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(45deg, #FFFF00, #FFEE00, #FFDD00, #FFCC00);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  padding: 0;
  line-height: 1;
  margin-bottom: 1px;
  animation: text-pulse 1.6s infinite ease-in-out, hologram-float 3s infinite ease-in-out;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.click-arrow {
  width: 24px;
  height: 20px;
  animation: bounce 1.8s infinite ease-in-out;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -3px;
}

.click-arrow i {
  font-size: 1.5rem;
  background: linear-gradient(45deg, #FFFF00, #FFEE00, #FFDD00, #FFCC00, #FFFF00);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  padding: 0;
  line-height: 1;
  animation: hologram-float 3s infinite ease-in-out;
  transition: all 0.3s ease;
}

/* Buton Hover Durumunda Animasyonlar */
.main-button:hover .click-text {
  font-weight: 900 !important;
  text-shadow: 
      0 0 10px rgba(255, 255, 0, 0.8),
      0 0 20px rgba(255, 238, 0, 0.6),
      0 0 30px rgba(255, 221, 0, 0.4),
      0 0 40px rgba(255, 204, 0, 0.2) !important;
  transform: scale(1.05) !important;
  letter-spacing: 1px !important;
  background: linear-gradient(45deg, #FFFF00, #FFEE00, #FFDD00, #FFCC00) !important;
  background-size: 400% 400% !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  animation: text-pulse 1.2s infinite ease-in-out, hologram-float 2s infinite ease-in-out !important;
}

.main-button:hover .click-arrow i {
  text-shadow: 
      0 0 15px rgba(255, 255, 0, 0.9),
      0 0 25px rgba(255, 238, 0, 0.7),
      0 0 35px rgba(255, 221, 0, 0.5) !important;
  transform: scale(1.1) !important;
  filter: drop-shadow(0 0 8px rgba(255, 255, 0, 0.6)) !important;
  background: linear-gradient(45deg, #FFFF00, #FFEE00, #FFDD00, #FFCC00, #FFFF00) !important;
  background-size: 400% 400% !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  animation: hologram-float 2s infinite ease-in-out !important;
}

/* Animasyon Keyframes */
@keyframes hologram-float {
  0%, 100% { 
      background-position: 0% 50%;
      transform: translateY(0px) scale(1);
  }
  25% { 
      background-position: 50% 50%;
      transform: translateY(-4px) scale(1.06);
  }
  50% { 
      background-position: 100% 50%;
      transform: translateY(-3px) scale(1.1);
  }
  75% { 
      background-position: 50% 50%;
      transform: translateY(-5px) scale(1.04);
  }
}

@keyframes text-pulse {
  0%, 100% { 
      opacity: 0.9;
      transform: scale(1);
  }
  50% { 
      opacity: 1;
      transform: scale(1.1);
  }
}

@keyframes bounce {
  0%, 100% { 
      transform: translateX(0) rotate(0deg);
  }
  25% { 
      transform: translateX(-5px) rotate(-5deg);
  }
  50% { 
      transform: translateX(5px) rotate(5deg);
  }
  75% { 
      transform: translateX(-3px) rotate(-3deg);
  }
}

/* ===== MOBİL UYUM MODÜLÜ ===== */
/* 📱 RESPONSIVE TASARIM AYARLARI */

@media (max-width: 768px) {
  /* MOBİL FORM OPTİMİZASYONU */
  .form-overlay {
    padding: 1vh;
    align-items: flex-start;
    overflow-y: auto;
  }
  
  .form-container {
    max-height: 90vh;
    margin: 2vh auto;
    overflow-y: auto;
    position: relative;
    padding: 1.5vh 4vw; /* Padding azaltıldı */
  }
  
  .form-header {
    position: sticky;
    top: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10;
    margin-bottom: 1vh; /* Margin azaltıldı */
    padding-bottom: 1vh;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0;
    margin-left: -4vw;
    margin-right: -4vw;
    padding-left: 4vw;
    padding-right: 4vw;
    padding-top: 1.5vh; /* Padding azaltıldı */
    border-radius: 0;
  }
  
  .form-group {
    margin-bottom: 1.5vh; /* Margin azaltıldı */
  }
  
  /* AD SOYAD VE TELEFON YAN YANA */
  .form-row.name-phone-row {
    flex-direction: row;
    gap: 2vw;
    margin-bottom: 1.5vh; /* Margin azaltıldı */
  }
  
  .form-row.name-phone-row .form-group {
    flex: 1;
    min-width: 0;
  }
  
  /* SERVİS GRID - 4'LÜ YAN YANA 2 SATIR */
  .service-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5vw;
    margin-top: 0.5vh; /* Margin azaltıldı */
  }
  
  .service-item {
    min-height: 60px; /* Yükseklik azaltıldı */
    padding: 0.6vh 0.5vw; /* Padding azaltıldı */
  }
  
  .service-icon {
    font-size: 1.2rem; /* Icon küçültüldü */
    margin-bottom: 0.2vh; /* Margin azaltıldı */
  }
  
  .service-name {
    font-size: 0.65rem; /* Font küçültüldü */
    line-height: 1.1;
  }
  
  /* İL, İLÇE, RANDEVU TARİHİ YAN YANA 3'LÜ */
  .form-row.location-row {
    flex-direction: row;
    gap: 1.5vw;
    margin-bottom: 1.5vh; /* Margin azaltıldı */
  }
  
  .form-row.location-row .form-group {
    flex: 1;
    min-width: 0;
  }
  
  .form-input, .form-select, .form-textarea {
    padding: 0.2vh 2.5vw; /* Padding azaltıldı */
    font-size: 16px;
  }
  
  .form-textarea {
    min-height: 8vh; /* Yükseklik azaltıldı */
    max-height: 12vh; /* Yükseklik azaltıldı */
  }
  
  .submit-button {
    padding: 1.2vh; /* Padding azaltıldı */
    font-size: 1rem;
    margin-top: 0.5vh; /* Margin azaltıldı - BUTON DAHA YUKARI */
  }

  .seo-sections {
    grid-template-columns: 1fr 1fr;
    gap: 1.5vw;
  }
  
  body {
    padding: 1vh 0.3vw;
  }
  
  .container {
    gap: 1.5vh;
  }
  
  /* LOGO VE YAZILAR KÜÇÜLTÜLDÜ */
  .logo img {
    width: 70px;
    height: 70px;
  }
  
  h1 {
    font-size: 1.4rem;
    margin-bottom: 0.5vh;
  }
  
  .subtitle {
    font-size: 0.85rem;
    line-height: 1.3;
    padding: 0 2vw;
  }
  
  .highlight-text {
    font-size: 0.9rem;
  }
  
  /* BUTONLAR YAN YANA VE DAHA UZUN */
  .buttons-container {
    flex-direction: row;
    gap: 2vw;
    min-height: 35vh;
    flex-wrap: nowrap;
  }
  
  .main-button {
    height: 32vh;
    padding: 1.5vh 1vw;
    min-width: 50%;
    flex: 1;
  }
  
  .button-icon {
    font-size: 2.2rem;
    margin-bottom: 0.5vh;
  }
  
  .button-text {
    font-size: 1.3rem;
    margin-bottom: 0.5vh;
  }
  
  .button-question {
    font-size: 0.95rem;
    margin-bottom: 0.5vh;
  }
  
  .step {
    font-size: 0.8rem;
    margin-bottom: 0.3vh;
  }
  
  .step-number {
    width: 18px;
    height: 18px;
    font-size: 0.75rem;
    margin-right: 0.8vw;
  }
  
  /* TIKLA ve KAYDOL YAZILARI MOBİL */
  .click-text {
    font-size: 0.9rem; /* MOBİLDE BÜYÜK TIKLA YAZISI */
  }
  
  .click-arrow {
    width: 20px;
    height: 16px;
  }
  
  .click-arrow i {
    font-size: 1.2rem; /* MOBİLDE BÜYÜK OK İŞARETİ */
  }
  
  .whatsapp-float {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    margin: 0;
  }
  
  .whatsapp-button {
    width: 80px;
    height: 80px;
    padding: 6px 0;
  }
  
  .whatsapp-icon {
    font-size: 1.6rem;
    margin-bottom: -8px;
  }
  
  .whatsapp-text {
    font-size: 0.65rem;
    padding: 0 3px;
  }
  
  /* ÖZELLİK KARTLARI YAN YANA */
  .features {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1.5vw;
  }
  
  .feature-card {
    flex: 1;
    min-width: auto;
    padding: 1vh 0.5vw;
  }
  
  .feature-icon {
    font-size: 1.5rem;
  }
  
  .feature-title {
    font-size: 0.9rem;
  }
  
  .feature-desc {
    font-size: 0.75rem;
  }
  
  /* ACCORDIONLAR YAN YANA VE KÜÇÜK */
  .seo-accordion {
    margin-bottom: 0.3vh;
  }
  
  .accordion-header {
    padding: 1vh 1.5vw;
  }
  
  .accordion-header h3 {
    font-size: 0.8rem;
    gap: 0.8vw;
  }
  
  .accordion-icon {
    font-size: 1.1rem;
    width: 20px;
    height: 20px;
    margin-left: 8px;
  }
  
  /* SERVİS DETAY GRID */
  .service-detail-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(140px, 100%), 1fr));
    gap: 1vw;
    padding: 1.2vh 1vw;
  }
  
  .service-detail-card {
    padding: 0.8vh 0.6vw;
  }
  
  .service-detail-icon {
    font-size: 1.3rem;
    margin-bottom: 0.5vh;
  }
  
  .service-detail-card h4 {
    font-size: 0.8rem;
    margin-bottom: 0.4vh;
  }
  
  .service-detail-card p {
    font-size: 0.7rem;
    margin-bottom: 0.6vh;
    line-height: 1.2;
  }
  
  .service-detail-card li {
    font-size: 0.65rem;
    padding: 0.3vh 0;
    padding-left: 1vw;
  }
  
  .service-detail-card li:before {
    font-size: 0.65rem;
  }
  
  /* ŞEHİR GRID */
  .cities-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(130px, 100%), 1fr));
    gap: 1vw;
    padding: 1.2vh 1vw;
  }
  
  .city-group {
    padding: 0.8vh 0.6vw;
  }
  
  .city-group h4 {
    font-size: 0.8rem;
    margin-bottom: 0.4vh;
  }
  
  .city-group p {
    font-size: 0.7rem;
    line-height: 1.2;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.2vh;
  }
  
  .footer-text {
    text-align: center;
    font-size: 0.75rem;
  }
}

/* ÇOK KÜÇÜK TELEFONLAR - GÜNCELLENMİŞ HALİ */
@media (max-width: 480px) {
  /* MOBİL FORM OPTİMİZASYONU */
  .form-container {
    padding: 1vh 4vw; /* Padding daha da azaltıldı */
    max-height: 85vh;
  }
  
  .form-title {
    font-size: 1.1rem;
  }
  
  /* AD SOYAD VE TELEFON YAN YANA */
  .form-row.name-phone-row {
    gap: 1.5vw;
  }
  
  /* SERVİS GRID - 4'LÜ YAN YANA 2 SATIR */
  .service-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2vw;
  }
  
  .service-item {
    min-height: 50px; /* Yükseklik daha da azaltıldı */
    padding: 0.5vh 0.3vw; /* Padding azaltıldı */
  }
  
  .service-icon {
    font-size: 1rem; /* Icon daha da küçültüldü */
  }
  
  .service-name {
    font-size: 0.6rem; /* Font daha da küçültüldü */
  }
  
  /* İL, İLÇE, RANDEVU TARİHİ YAN YANA 3'LÜ */
  .form-row.location-row {
    gap: 1.2vw;
  }
  
  .form-input, .form-select, .form-textarea {
    padding: 0.2vh 2.5vw; /* Padding azaltıldı */
    font-size: 15px;
  }
  
  .form-textarea {
    min-height: 6vh; /* Yükseklik azaltıldı */
    max-height: 10vh; /* Yükseklik azaltıldı */
  }

  .seo-sections {
    grid-template-columns: 1fr 1fr;
    gap: 1.2vw;
  }
  
  .logo img {
    width: 60px;
    height: 60px;
  }
  
  h1 {
    font-size: 1.2rem;
    margin-bottom: 0.3vh;
  }
  
  .subtitle {
    font-size: 0.75rem;
    line-height: 1.2;
    padding: 0 1vw;
  }
  
  .highlight-text {
    font-size: 0.8rem;
  }
  
  /* BUTONLAR YAN YANA VE DAHA UZUN */
  .buttons-container {
    flex-direction: row;
    gap: 1.5vw;
    min-height: 30vh;
  }
  
  .main-button {
    min-width: 50%;
    height: 32vh;
    padding: 1.2vh 0.8vw;
  }
  
  .button-icon {
    font-size: 1.8rem;
    margin-bottom: 0.3vh;
  }
  
  .button-text {
    font-size: 1.1rem;
    margin-bottom: 0.3vh;
  }
  
  .button-question {
    font-size: 0.85rem;
    margin-bottom: 0.3vh;
  }
  
  .step {
    font-size: 0.7rem;
    margin-bottom: 0.2vh;
  }
  
  .step-number {
    width: 16px;
    height: 16px;
    font-size: 0.7rem;
    margin-right: 0.6vw;
  }
  
  /* TIKLA ve KAYDOL YAZILARI KÜÇÜK TELEFONLAR */
  .click-text {
    font-size: 0.9rem; /* KÜÇÜK TELEFONLARDA BİRAZ KÜÇÜK */
  }
  
  .click-arrow {
    width: 18px;
    height: 14px;
  }
  
  .click-arrow i {
    font-size: 1.1rem; /* KÜÇÜK TELEFONLARDA BİRAZ KÜÇÜK */
  }
  
  .whatsapp-float {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    margin: 0;
  }
  
   .whatsapp-button {
    width: 70px;
    height: 70px;
    padding: 5px 0;
  }
  
  .whatsapp-icon {
    font-size: 1.4rem;
    margin-bottom: -7px;
  }
  
  .whatsapp-text {
    font-size: 0.55rem;
    padding: 0 2px;
  }
  
  /* ÖZELLİK KARTLARI */
  .features {
    gap: 1vw;
  }
  
  .feature-card {
    padding: 0.6vh 0.3vw;
  }
  
  .feature-icon {
    font-size: 1.2rem;
  }
  
  .feature-title {
    font-size: 0.8rem;
  }
  
  .feature-desc {
    font-size: 0.65rem;
  }
  
  /* ACCORDIONLAR YAN YANA VE KÜÇÜK */
  .accordion-header {
    padding: 0.8vh 1.2vw;
  }
  
  .accordion-header h3 {
    font-size: 0.7rem;
    gap: 0.6vw;
  }
  
  .accordion-icon {
    font-size: 1rem;
    width: 18px;
    height: 18px;
    margin-left: 6px;
  }
  
  /* SERVİS DETAY GRID */
  .service-detail-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(120px, 100%), 1fr));
    gap: 0.8vw;
    padding: 1vh 0.8vw;
  }
  
  .service-detail-card {
    padding: 0.6vh 0.4vw;
  }
  
  .service-detail-icon {
    font-size: 1.1rem;
    margin-bottom: 0.3vh;
  }
  
  .service-detail-card h4 {
    font-size: 0.75rem;
    margin-bottom: 0.3vh;
  }
  
  .service-detail-card p {
    font-size: 0.65rem;
    margin-bottom: 0.4vh;
    line-height: 1.1;
  }
  
  .service-detail-card li {
    font-size: 0.6rem;
    padding: 0.2vh 0;
    padding-left: 0.8vw;
  }
  
  .service-detail-card li:before {
    font-size: 0.6rem;
  }
  
  /* ŞEHİR GRID */
  .cities-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(110px, 100%), 1fr));
    gap: 0.8vw;
    padding: 1vh 0.8vw;
  }
  
  .city-group {
    padding: 0.6vh 0.4vw;
  }
  
  .city-group h4 {
    font-size: 0.75rem;
    margin-bottom: 0.3vh;
  }
  
  .city-group p {
    font-size: 0.65rem;
    line-height: 1.1;
  }
  
  .submit-button {
    padding: 1vh; /* Padding azaltıldı */
    font-size: 0.9rem;
    margin-top: 0.2vh; /* Margin azaltıldı - BUTON DAHA YUKARI */
  }
  
  .footer-text {
    font-size: 0.7rem;
  }
}

/* TELEFON YAN ÇEVRİLMİŞ (LANDSCAPE) */
@media (max-width: 896px) and (max-height: 500px) and (orientation: landscape) {
  .buttons-container {
    min-height: 50vh; /* DAHA YÜKSEK */
    flex-direction: row; /* YAN YANA */
    gap: 15px;
  }
  
  .main-button {
    height: 35.5vh; /* DAHA YÜKSEK */
    min-width: 50%;
    padding: 15px 10px;
  }
}

/* CUSTOM DATETIME WRAPPER */
.datetime-wrapper {
    position: relative;
    display: flex;
    width: 100%;
}

.datetime-trigger {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--accent);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2;
    padding: 0 10px;
    height: 100%;
}

#appointmentDateTimeDisplay {
    padding-right: 50px !important;
    width: 100%;
}

/* TELEFONDA CUSTOM DATETIME DÜZENLEMESİ */
@media (max-width: 768px) {
    .datetime-wrapper {
        min-width: 140px !important;
    }
    
    #appointmentDateTimeDisplay {
        font-size: 14px;
        padding: 10px 12px !important;
    }
    
    .form-row.location-row .form-group:last-child {
        min-width: 150px !important;
        flex: 1.5 !important;
    }
}
/* CUSTOM DATETIME PICKER STYLES */
#customDateTimePicker input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

#customDateTimePicker select option {
    background: #1a1a2e;
    color: white;
}

#customDateTimePicker button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#customDateTimePicker #confirmPicker:hover {
    background: linear-gradient(90deg, #3a0ca3, #4361ee) !important;
}

#customDateTimePicker #cancelPicker:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}

/* MOBİL UYUMLU TASARIM */
@media (max-width: 768px) {
    #customDateTimePicker div {
        max-width: 95% !important;
        padding: 15px !important;
    }
    
    #customDateTimePicker input, 
    #customDateTimePicker select {
        font-size: 16px !important; /* iOS zoom'u önlemek için */
        padding: 12px !important;
    }
    
    #customDateTimePicker button {
        padding: 14px !important;
        font-size: 16px !important;
    }
    
    /* Saat seçici için mobil uyumluluk */
    #customDateTimePicker .time-picker-container {
        flex-direction: column !important;
        gap: 8px !important;
    }
    
    #customDateTimePicker .time-picker-container span {
        display: none !important;
    }
    
    #customDateTimePicker .time-picker-container select {
        width: 100% !important;
    }
}

/* 📱 TELEFON INPUT STYLES */
input[type="tel"] {
    letter-spacing: 1px;
    font-family: 'Courier New', monospace;
    font-weight: 500;
}

/* Geçersiz telefon numarası için */
input[type="tel"]:invalid {
    border-color: #f72585 !important;
    box-shadow: 0 0 0 3px rgba(247, 37, 133, 0.3) !important;
}

/* MOBİL UYUMLU TELEFOR INPUT */
@media (max-width: 768px) {
    input[type="tel"] {
        font-size: 16px !important; /* iOS zoom'u önlemek için */
    }
}
