/* ============================================
   CURE BATUMI - Contact Page Styles
   Author: Gocha Shevardnadze
   Company: Fix-Dev.com
   ============================================ */

.contact-page {
  background-color: #ffffff;
  min-height: 100vh;
  width: 100%;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../images/contact-bg.png) center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.contact-hero-content {
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    color: #ffffff;
}

.contact-hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-hero-subtitle {
  font-size: 26px;
  line-height: 1.5;
}

/* Contact Section */
.contact-section {
  padding: 100px 50px;
  background: linear-gradient(135deg, #eaf7ff 0%, #bee3f8 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1600px;
  margin: 0 auto;
}

/* Contact Info Card */
.contact-info-card {
  background-color: #5dade2;
  border-radius: 30px;
  padding: 35px 30px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  max-height: 500px;
}

.contact-info-card h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-info-description {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.5;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.contact-text {
  flex: 1;
}

.contact-label {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 5px;
}

.contact-value {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.contact-value a {
  color: #ffffff;
  text-decoration: none;
}

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

.contact-social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-social-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  text-decoration: none;
}

.contact-social-icon:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.contact-social-icon svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.contact-illustration {
  margin-top: 30px;
  opacity: 0.3;
  text-align: center;
}

.contact-illustration img {
  width: 100%;
  max-width: 300px;
}

/* Contact Form Card */
.contact-form-card {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 18px;
  font-weight: 600;
  color: #262626;
}

.form-group input,
.form-group textarea {
  padding: 15px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #5dade2;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0b0b0;
}

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

/* Radio Group */
.radio-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 12px;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.radio-option:hover {
  background-color: #f5f5f5;
}

.radio-option input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s;
}

.radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.2s;
}

.radio-option input[type="radio"]:checked + .radio-custom {
  border-color: #5dade2;
  background-color: #5dade2;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.radio-label {
  font-size: 16px;
  color: #262626;
}

/* Submit Button */
.btn-submit {
  background-color: #5dade2;
  color: #ffffff;
  padding: 18px 40px;
  font-size: 20px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
}

.btn-submit:hover {
  background-color: #4a9dd1;
  transform: translateY(-2px);
}

/* Map Section */
.map-section {
  padding: 100px 50px 0 50px;
  background-color: #ffffff;
}

.map-section-title {
  font-size: 56px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #262626;
}

.map-section-description {
  font-size: 20px;
  text-align: center;
  color: #666;
  margin-bottom: 60px;
}

.map-container {
  max-width: 1600px;
  margin: 0 auto 60px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

.location-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1600px;
  margin: 0 auto;
}

.location-card {
  background-color: #eaf7ff;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.location-card svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  fill: #5dade2;
}

.location-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #262626;
}

.location-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .location-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .contact-section,
  .map-section {
    padding: 80px 30px;
  }

  .contact-hero-title {
    font-size: 56px;
  }

  .contact-hero-subtitle {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    height: 240px;
  }

  .contact-hero-title {
    font-size: 40px;
  }

  .contact-hero-subtitle {
    font-size: 18px;
  }

  .contact-section,
  .map-section {
    padding: 60px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .radio-group {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 30px;
  }

  .map-section-title {
    font-size: 36px;
  }

  .map-container iframe {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .contact-hero-title {
    font-size: 32px;
  }

  .contact-info-card h2 {
    font-size: 28px;
  }

  .map-section-title {
    font-size: 28px;
  }
}
