/* ===========================================
   CONTACT PAGE STYLES
   Modern Dijital Tasarım
   =========================================== */

/* Animation Classes */
.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-up {
  /* Remove default animation */
}

/* Hero Section */
.hero-contact {
  padding: 150px 0 200px;
  background: var(--gradient-dark);
  position: relative;
  overflow: visible;
}

.hero-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 40%, rgba(0, 217, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(114, 9, 183, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUpInstant 1s ease forwards;
}

@keyframes fadeInUpInstant {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  color: var(--text-secondary);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  color: var(--bg-dark);
  overflow: hidden;
}

.hero-wave svg {
  width: 100%;
  height: 100px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 10;
  animation: fadeInIndicator 1s ease 0.5s forwards;
  opacity: 0;
  pointer-events: none;
  cursor: default;
}

@keyframes fadeInIndicator {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.scroll-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-arrow {
  color: var(--text-accent);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: var(--bg-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-glass);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 20px;
  padding: 50px;
  backdrop-filter: blur(10px);
}

.contact-form-wrapper h2 {
  font-size: 36px;
  margin-bottom: 15px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.form-description {
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 15px 20px;
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 10px;
  background: rgba(10, 14, 39, 0.5);
  color: var(--text-primary);
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--text-accent);
  box-shadow: var(--glow-cyan);
  background: rgba(10, 14, 39, 0.8);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

select {
  cursor: pointer;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}

/* Checkbox */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 14px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--text-accent);
}

/* Submit Button */
.btn-submit {
  padding: 18px 40px;
  background: var(--gradient-primary);
  color: var(--text-primary);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--glow-cyan);
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.5);
}

.btn-submit:active {
  transform: translateY(-1px);
}

.btn-loader {
  display: none;
}

.btn-submit.loading .btn-text {
  display: none;
}

.btn-submit.loading .btn-loader {
  display: block;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Form Message */
.form-message {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 10px;
  display: none;
}

.form-message.show {
  display: block;
}

.form-message.success {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: #00ff88;
}

.form-message.error {
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  color: #ff6b6b;
}

/* Contact Info */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  margin-bottom: 20px;
}

.info-card h2 {
  font-size: 36px;
  margin-bottom: 15px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.info-description {
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: var(--bg-glass);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.info-item:hover {
  transform: translateX(10px);
  border-color: rgba(0, 217, 255, 0.4);
  box-shadow: var(--glow-cyan);
}

.info-item:last-child {
  cursor: default;
}

.info-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.phone-icon {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.2) 0%, rgba(0, 217, 255, 0.1) 100%);
  color: var(--text-accent);
}

.email-icon {
  background: linear-gradient(135deg, rgba(114, 9, 183, 0.2) 0%, rgba(114, 9, 183, 0.1) 100%);
  color: var(--magenta);
}

.whatsapp-icon {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.2) 0%, rgba(37, 211, 102, 0.1) 100%);
  color: #25d366;
}

.address-icon {
  background: linear-gradient(135deg, rgba(181, 23, 158, 0.2) 0%, rgba(181, 23, 158, 0.1) 100%);
  color: var(--magenta);
}

.info-item:hover .info-icon {
  transform: scale(1.1) rotate(5deg);
}

.info-content {
  flex: 1;
}

.info-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-weight: 700;
}

.info-content p {
  color: var(--text-secondary);
  margin-bottom: 5px;
  font-size: 15px;
  line-height: 1.6;
}

.info-label {
  font-size: 12px;
  color: var(--text-accent);
  font-weight: 600;
}

/* Working Hours */
.working-hours {
  background: var(--bg-glass);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 15px;
  padding: 30px;
}

.working-hours h3 {
  font-size: 22px;
  margin-bottom: 25px;
  color: var(--text-primary);
  font-weight: 700;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  background: rgba(0, 217, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(0, 217, 255, 0.1);
}

.hours-item.special {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(114, 9, 183, 0.1) 100%);
  border-color: rgba(0, 217, 255, 0.3);
  box-shadow: var(--glow-cyan);
}

.hours-item .day {
  color: var(--text-primary);
  font-weight: 600;
}

.hours-item .time {
  color: var(--text-accent);
  font-weight: 700;
}

/* Social Connect */
.social-connect {
  background: var(--bg-glass);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 15px;
  padding: 30px;
}

.social-connect h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--text-primary);
  font-weight: 700;
}

.social-connect p {
  color: var(--text-secondary);
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.6;
}

.social-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
}

.social-btn.facebook {
  background: rgba(24, 119, 242, 0.1);
  border: 1px solid rgba(24, 119, 242, 0.3);
}

.social-btn.facebook:hover {
  background: rgba(24, 119, 242, 0.2);
}

.social-btn.instagram {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.1) 0%, rgba(255, 94, 0, 0.1) 100%);
  border: 1px solid rgba(225, 48, 108, 0.3);
}

.social-btn.linkedin {
  background: rgba(0, 119, 181, 0.1);
  border: 1px solid rgba(0, 119, 181, 0.3);
}

.social-btn.twitter {
  background: rgba(29, 161, 242, 0.1);
  border: 1px solid rgba(29, 161, 242, 0.3);
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Map Section */
.map-section {
  padding: 100px 0;
  background: var(--bg-darker);
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 15px;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 50px;
  font-size: 16px;
}

.map-wrapper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 217, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-contact {
    padding-bottom: 150px;
  }
  
  .scroll-indicator {
    bottom: 80px;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .contact-form-wrapper {
    padding: 30px;
  }
  
  .contact-form-wrapper h2 {
    font-size: 28px;
  }
  
  .info-card h2 {
    font-size: 28px;
  }
  
  .social-icons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-contact {
    padding: 120px 0 150px;
  }
  
  .scroll-indicator {
    bottom: 100px;
  }
  
  .hero-content h1 {
    font-size: 28px;
  }
  
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-form-wrapper {
    padding: 20px;
  }
  
  .info-item {
    padding: 20px;
    gap: 15px;
  }
  
  .info-icon {
    width: 50px;
    height: 50px;
  }
}

