/* Contact page full-width layout with Greek background */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

.contact-main {
  margin-top: 80px;
}

.contact-section {
  padding: 0;
  min-height: auto;
}

.contact-container {
  width: 100%;
  display: grid;
  grid-template-columns: 35% 65%;
  min-height: calc(100vh - 80px);
}

/* Left side - 35% with centered text on white background */
.contact-left {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.contact-content {
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.contact-left h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #001C33;
}

.contact-left h3 {
  font-size: 1.4rem;
  margin: 30px 0 8px 0;
  color: #001C33;
  font-weight: 600;
}

.contact-left p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

.contact-left a {
  color: #0055A4;
  text-decoration: none;
  font-weight: 600;
}

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

/* Right side - 65% with Greek background and form */
.contact-right {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../assets/food3.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  min-height: calc(100vh - 80px);
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.form-toggle {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  max-width: 500px;
  width: 100%;
}

.toggle-btn {
  flex: 1;
  padding: 15px 20px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.toggle-btn.active {
  background: rgba(255,255,255,0.9);
  color: #001C33;
  border-color: rgba(255,255,255,0.9);
}

.contact-form {
  max-width: 500px;
  width: 100%;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.contact-form.hidden { display: none; }

.hidden { display: none !important; }

.form-alert {
  width: 100%;
  margin: 0 auto 20px auto;
  padding: 15px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  background: rgba(255,255,255,0.95);
  border: 2px solid rgba(255,255,255,0.7);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.form-alert.success {
  color: #0a5;
  background: rgba(200,255,220,0.98);
  border-color: #0a5;
  box-shadow: 0 0 0 3px rgba(0,170,85,0.15);
}

.form-alert.error {
  color: #c0392b;
  background: rgba(255,220,220,0.98);
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field { 
  margin-bottom: 20px; 
}

.form-field label { 
  display: block; 
  margin-bottom: 8px; 
  font-weight: 600;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 15px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  font-size: 1rem;
  background: rgba(255,255,255,0.9);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #0055A4;
  background: rgba(255,255,255,1);
  box-shadow: 0 0 0 3px rgba(0,85,164,0.2);
}

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

.submit-btn {
  background: #0055A4;
  color: #fff;
  border: none;
  padding: 16px 30px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.submit-btn:hover { 
  background: #00AEEF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,85,164,0.4);
}

.hp { 
  position: absolute; 
  left: -5000px; 
  top: auto; 
  width: 1px; 
  height: 1px; 
  overflow: hidden; 
}

@media (max-width: 992px) {
  .contact-container { 
    grid-template-columns: 1fr; 
    min-height: auto;
  }
  
  .contact-left {
    padding: 40px 20px;
    min-height: 60vh;
  }
  
  .contact-right {
    background-attachment: scroll;
    padding: 40px 20px;
    min-height: calc(100vh - 80px);
  }
  
  .contact-left h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-right {
    padding: 30px 15px;
  }
  
  .contact-left {
    padding: 30px 15px;
  }
  
  /* Mobile touch improvements for toggle buttons */
  .toggle-btn {
    min-height: 48px;
    padding: 16px 20px;
    font-size: 16px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
  }
  
  .submit-btn {
    min-height: 48px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 85, 164, 0.2);
  }
}
