/* styles/bize_ulasin.css - Bize Ulaşın Sayfa Stilleri - Sadece Alt Border */

/* Page Header */
.page-header {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../Foto/slidesondaj.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 54, 93, 0.9) 0%,
    rgba(45, 95, 135, 0.8) 100%
  );
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  animation: slideInUp 1s ease-out;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent-color);
}

.breadcrumb i {
  font-size: 0.7rem;
  opacity: 0.6;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, white 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  color: #f3f4f6;
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Contact Form */
.contact-form-container {
  background: white;
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.form-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.form-header h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-header p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary-color);
}

.form-group label i {
  width: 16px;
  color: var(--accent-color);
}

/* Form Input'ları - Sadece Alt Border */
.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem 0.5rem;
  border: none;
  border-bottom: 2px solid var(--border-color);
  border-radius: 0;
  font-size: 1rem;
  background: transparent;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom: 2px solid var(--accent-color);
  background: rgba(245, 158, 11, 0.02);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-bottom: 2px solid #ef4444;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
}

/* Checkbox Groups */
.checkbox-group {
  margin-top: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: white;
  font-size: 0.8rem;
}

.checkbox-text {
  color: var(--text-secondary);
}

.privacy-link {
  color: var(--accent-color);
  text-decoration: underline;
}

.privacy-link:hover {
  color: var(--primary-color);
}

/* Form Actions */
.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.submit-btn,
.reset-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: center;
}

.submit-btn {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.submit-btn:hover {
  background: var(--gradient-accent);
}

.reset-btn {
  background: transparent;
  color: var(--text-secondary);
  border: 2px solid var(--border-color);
}

.reset-btn:hover {
  background: var(--bg-secondary);
  border-color: var(--text-secondary);
}

/* Contact Info */
.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-header h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.info-header p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  gap: 1rem;
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-details h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-info-details p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.contact-info-details a {
  color: var(--text-secondary);
  text-decoration: none;
}

.contact-info-details a:hover {
  color: var(--accent-color);
}

.map-link,
.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.map-link:hover,
.directions-btn:hover {
  color: var(--primary-color);
}

.availability {
  font-size: 0.85rem;
  color: var(--text-secondary);
  opacity: 0.8;
}

/* Social Media */
.contact-social-media {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.contact-social-media h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.contact-social-links a {
  width: 40px;
  height: 40px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
}

.contact-social-links a:hover {
  background: var(--accent-color);
  color: white;
}

/* Quick Contact */
.quick-contact {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.quick-contact h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.quick-buttons {
  display: flex;
  gap: 0.75rem;
}

.quick-btn {
  flex: 1;
  padding: 0.75rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.call-btn {
  background: var(--gradient-primary);
  color: white;
}

.call-btn:hover {
  background: var(--gradient-primary);
}

.whatsapp-btn {
  background: #25d366;
  color: white;
}

.whatsapp-btn:hover {
  background: #22c55e;
}

/* Map Section */
.map-section {
  padding: 4rem 0;
  background: white;
}

.map-header {
  text-align: center;
  margin-bottom: 2rem;
}

.map-header h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.map-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.map-container {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.map-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem;
  border-radius: 0.5rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.map-info h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.map-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background: var(--bg-secondary);
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.faq-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: var(--bg-secondary);
}

.faq-question h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin: 0;
  font-weight: 600;
}

.faq-question i {
  color: var(--accent-color);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 200px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Notifications */
.notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 9999;
  animation: slideInRight 0.3s ease-out;
  max-width: 400px;
}

.notification.success {
  border-left-color: #10b981;
}

.notification.success i {
  color: #10b981;
}

.notification.error {
  border-left-color: #ef4444;
}

.notification.error i {
  color: #ef4444;
}

.notification button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 0.25rem;
  border-radius: 0.25rem;
}

.notification button:hover {
  background: var(--bg-secondary);
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
  .page-title {
    font-size: 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-form-container {
    padding: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .form-actions {
    flex-direction: column;
  }

  .map-overlay {
    position: static;
    margin-top: 1rem;
    background: white;
  }
}

@media (max-width: 768px) {
  .page-header {
    min-height: 30vh;
    padding: 2rem 0;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .contact-section,
  .map-section,
  .faq-section {
    padding: 3rem 0;
  }

  .contact-form-container {
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .form-header h2 {
    font-size: 1.8rem;
  }

  .contact-card {
    padding: 1.2rem;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .quick-buttons {
    flex-direction: column;
  }

  .map-container iframe {
    height: 300px;
  }

  .faq-header h2,
  .map-header h2 {
    font-size: 1.8rem;
  }

  .faq-question {
    padding: 1.2rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.2rem 1.2rem;
  }

  .notification {
    top: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .page-header {
    min-height: 25vh;
  }

  .page-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .contact-form-container {
    padding: 1.2rem;
  }

  .form-header h2 {
    font-size: 1.5rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.8rem 0.5rem;
  }

  .submit-btn,
  .reset-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .contact-info-card {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
  }

  .contact-info-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto;
  }

  .contact-social-links a {
    width: 35px;
    height: 35px;
  }

  .quick-btn {
    padding: 0.6rem;
    font-size: 0.85rem;
  }

  .map-container iframe {
    height: 250px;
  }

  .faq-question {
    padding: 1rem;
  }

  .faq-question h4 {
    font-size: 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1rem 1rem;
  }
}

/* Focus styles for accessibility */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
}

.submit-btn:focus,
.reset-btn:focus,
.quick-btn:focus,
.faq-question:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 1px;
}
