/* ─── RANDEVU SAYFASI STİLLERİ ─── */

/* Page Background */
body {
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
  min-height: 100vh;
}

/* Hero Section */
.page-hero {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-secondary) 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.page-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.academic-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.academic-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Randevu Formu */
.randevu-section {
  background: rgba(255,255,255,0.9);
  padding: 2.5rem;
  margin: 2rem auto;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.section-title {
  font-size: 2.2rem;
  color: var(--clr-primary);
  margin-bottom: 2rem;
  text-align: center;
}

.form-map-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Form Stilleri */
.randevu-form {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.form-group.phone-date {
  margin-bottom: 0.6rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
  color: var(--clr-primary);
}

.form-group.phone-date label {
  margin-bottom: 0.2rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem;
  border: 2px solid #e1e5e9;
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group.phone-date input {
  padding: 0.5rem;
  min-height: 40px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(1,87,155,0.1);
}

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

/* Submit Button */
.randevu-form .btn {
  width: 100%;
  padding: 1.2rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  background: var(--clr-secondary);
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(66,165,245,0.2);
  position: relative;
  overflow: hidden;
}

.randevu-form .btn:hover,
.randevu-form .btn:focus {
  background: var(--clr-primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(66,165,245,0.3);
}

.randevu-form .btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(66,165,245,0.3);
}

/* Input Feedback */
.input-feedback {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #dc3545;
  min-height: 1.2rem;
}

.input-feedback.error {
  color: #dc3545;
}

.input-feedback.success {
  color: #28a745;
}

/* Form Feedback */
.form-feedback {
  margin-top: 0.5rem;
  color: var(--clr-primary);
  text-align: center;
  font-weight: 500;
}

.form-feedback.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 1rem;
  border-radius: var(--radius);
}

.form-feedback.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  padding: 1rem;
  border-radius: var(--radius);
}

/* Map Container */
.map-container {
  background: white;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  width: 100%;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Address ve Info Box */
.map-container address {
  padding: 1.5rem;
  font-style: normal;
  line-height: 1.6;
  margin-top: 0;
}

.map-container address strong {
  color: var(--clr-primary);
}

.info-box {
  background: #e3f2fd;
  border-left: 4px solid #42a5f5;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  border-radius: 8px;
  color: #0d47a1;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(66, 165, 245, 0.07);
}

.info-box strong {
  color: #1e88e5;
  font-weight: 600;
}

.info-box ul {
  margin: 0.5em 0 0 1.2em;
  padding: 0;
}

.info-box li {
  margin-bottom: 0.3em;
}

/* ─── İletişim Seçenekleri ─── */
.contact-options {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-option:hover {
  background: #e9ecef;
  border-color: var(--clr-primary);
}

.contact-option.active {
  background: var(--clr-primary);
  color: white;
  border-color: var(--clr-primary);
}

.option-icon {
  font-size: 1.2rem;
}

/* ─── İletişim Panelleri ─── */
.contact-panel {
  display: none;
}

.contact-panel.active {
  display: block;
}

/* ─── WhatsApp Panel ─── */
.whatsapp-panel {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.whatsapp-header {
  margin-bottom: 2rem;
  text-align: center;
}

.whatsapp-icon-large {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
  color: #25d366;
}

.whatsapp-header h4 {
  color: var(--clr-primary);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.whatsapp-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: #555;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.whatsapp-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1rem;
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: #e9ecef;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.benefit-icon {
  font-size: 1.75rem;
}

.benefit-item span:last-child {
  font-weight: 600;
  color: var(--clr-primary);
  font-size: 0.9rem;
}

.whatsapp-action {
  margin: 2.5rem 0;
  text-align: center;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #25d366;
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  border: 2px solid #25d366;
}

.whatsapp-button:hover {
  background: #128c7e;
  border-color: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button .whatsapp-icon {
  font-size: 1.3rem;
}

.whatsapp-note {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 2rem;
  text-align: left;
}

.whatsapp-note p {
  margin: 0;
  color: #856404;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .academic-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .form-map-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .randevu-form {
    padding: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 0.8rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.5rem;
    min-height: 42px;
  }
  
  .form-group.phone-date {
    margin-bottom: 0.5rem;
  }
  
  .form-group.phone-date input {
    padding: 0.4rem;
    min-height: 38px;
  }
  
  .randevu-form .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    min-height: 45px;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 25px;
  }
  
  .randevu-section {
    margin: 1rem;
    padding: 1.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .contact-options {
    flex-direction: column;
    align-items: center;
  }
  
  .whatsapp-benefits {
    grid-template-columns: 1fr;
  }
  
  .whatsapp-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .whatsapp-panel {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
  
  .whatsapp-icon-large {
    font-size: 3rem;
  }
  
  .whatsapp-header h4 {
    font-size: 1.5rem;
  }
  
  .whatsapp-content p {
    font-size: 1rem;
  }
}

@media (max-width: 700px) {
  .page-hero-content h1 {
    font-size: 2rem;
  }
  
  .page-hero-content .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .academic-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .randevu-section {
    margin: 1rem;
    padding: 1.5rem;
  }
  
  .form-map-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .randevu-form {
    padding: 1.2rem;
  }
  
  .map-container {
    padding: 0;
  }
  
  .form-group {
    margin-bottom: 0.6rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.5rem;
    font-size: 1rem;
  }
  
  .form-group.phone-date {
    margin-bottom: 0.4rem;
  }
  
  .form-group.phone-date input {
    padding: 0.4rem;
    min-height: 36px;
  }
  
  .form-group label {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
  }
  
  .randevu-form .btn {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    min-height: 52px;
    border-radius: 20px;
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 3rem 0;
  }
  
  .page-hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .randevu-form {
    padding: 1rem;
  }
  
  .form-group {
    margin-bottom: 0.6rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.4rem;
    min-height: 38px;
  }
  
  .form-group.phone-date {
    margin-bottom: 0.4rem;
  }
  
  .form-group.phone-date input {
    padding: 0.35rem;
    min-height: 34px;
  }
  
  .randevu-form .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
    min-height: 40px;
  }
}
