* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #f8f8f8;
  color: #333333;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-hero {
  padding: 120px 0 80px 0;
  background: url('../imgs/IMG_3138-768x1024.jpeg.jpg') center center/cover no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-family: "Montserrat", Sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.1;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-family: "Montserrat", Sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.6;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.contact-main {
  padding: 100px 0;
  background: #f8f8f8;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.contact-info {
  padding: 20px 0;
}

.contact-info-title {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: linear-gradient(139deg, #000059 0%, #223E70 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(139deg, #000059 0%, #223E70 100%);
  margin: 20px 0 30px 0;
  border-radius: 2px;
}

.contact-description {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 40px;
  text-align: left;
}

.contact-methods {
  display: grid;
  gap: 30px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.method-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  background: linear-gradient(139deg, #000059 0%, #223E70 100%);
  flex-shrink: 0;
}

.method-icon i {
  color: #fff !important;
  font-size: 24px;
}

.method-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  background: linear-gradient(139deg, #000059 0%, #223E70 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.method-content p {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 4px;
}

.method-content span {
  font-size: 14px;
  color: #666666;
}

.contact-form {
  position: relative;
}

.form-container {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(139deg, #000059 0%, #223E70 100%);
}

.form-container h3 {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  background: linear-gradient(139deg, #000059 0%, #223E70 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-form-element {
  display: grid;
  gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px 20px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #333333;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #000059;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 0, 89, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(139deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.submit-btn i {
  font-size: 16px;
  color: #ffffff !important;
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}


.contact-map {
  text-align: center;
  padding: 100px 20px;
  background: #f8f8f8;
}

.contact-map h2 {
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
  letter-spacing: -0.02em;
  background: linear-gradient(139deg, #000059 0%, #223E70 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-map h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(139deg, #000059 0%, #223E70 100%);
  margin: 20px auto 0;
  border-radius: 2px;
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.map-info {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  max-width: 280px;
}

.map-address h4 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-address h4 i {
  color: #000059 !important;
  font-size: 16px;
}

.map-address p {
  font-size: 14px;
  color: #666666;
  margin-bottom: 8px;
  line-height: 1.4;
}

.map-address p:last-of-type {
  margin-bottom: 15px;
  font-weight: 600;
  color: #000059;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(139deg, #000059 0%, #223E70 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.map-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 89, 0.3);
  text-decoration: none;
  color: #ffffff;
}

.map-link i {
  font-size: 12px;
  color: #ffffff !important;
}



@media (max-width: 1024px) {
  .hero-title {
    font-size: 56px;
  }
  
  .contact-content {
    gap: 60px;
  }
  
  .contact-info-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 100px 0 60px 0;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .contact-main {
    padding: 80px 0;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info-title {
    font-size: 36px;
    text-align: center;
  }
  
  .contact-description {
    font-size: 16px;
    text-align: center;
  }
  
  .divider {
    margin: 20px auto 30px auto;
  }
  
  .form-container {
    padding: 40px 30px;
  }
  
  .form-container h3 {
    font-size: 28px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .contact-map {
    padding: 80px 20px;
  }
  
  .contact-map h2 {
    font-size: 36px;
  }
  
  .map-container iframe {
    height: 300px;
  }
  
  .map-info {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 80px 0 40px 0;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .contact-main {
    padding: 60px 0;
  }
  
  .contact-info-title {
    font-size: 32px;
  }
  
  .contact-description {
    font-size: 15px;
  }
  
  .contact-method {
    padding: 20px;
    gap: 15px;
  }
  
  .method-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .method-content h3 {
    font-size: 18px;
  }
  
  .method-content p {
    font-size: 15px;
  }
  
  .method-content span {
    font-size: 13px;
  }
  
  .form-container {
    padding: 30px 20px;
  }
  
  .form-container h3 {
    font-size: 24px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 15px;
  }
  
  .submit-btn {
    padding: 16px 30px;
    font-size: 16px;
  }
  
  .contact-map {
    padding: 60px 15px;
  }
  
  .contact-map h2 {
    font-size: 28px;
  }
  
  .map-container iframe {
    height: 250px;
  }
  
  .map-info {
    padding: 15px;
  }
  
  .map-address h4 {
    font-size: 16px;
  }
  
  .map-address p {
    font-size: 13px;
  }
  
  .map-link {
    padding: 8px 12px;
    font-size: 13px;
  }
}
