/* Hero Section */
.contactHeroSection {
  background-image: url("../Images/contactUS/contactUsSec1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 400px;
  position: relative;
}

.heroOverlay {
    background: linear-gradient(
    135deg,
    rgba(166, 170, 170, 0.85) 0%,
    rgba(120, 122, 122, 0.85) 100%
  );
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroContent {
  text-align: center;
  color: #fff;
}

.heroTitle {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  opacity: 0.95;
}

.heroSubtitle {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.heroSubtitle .highlight {
  color: #00ffcc;
  position: relative;
}

.heroDivider {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #00ffcc 0%, #01989b 100%);
  margin: 0 auto;
  border-radius: 2px;
}

/* Main Contact Wrapper */
.mainContactWrapper {
  padding: 80px 40px;
  background: linear-gradient(135deg, #f8fffe 0%, #f0faf9 100%);
}

/* Contact Info Section */
.contactInfoSection {
  padding: 40px;
}

.infoCard {
  position: sticky;
  top: 100px;
}

.sectionBadge {
  display: inline-block;
  background: linear-gradient(90deg, #01824c 0%, #018b97 100%);
  color: white;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sectionTitle {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(90deg, #01989b 0%, #01845a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.3;
}

.sectionDescription {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Contact Methods Grid */
.contactMethodsGrid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.methodCard {
  background: white;
  padding: 25px;
  border-radius: 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 4px 15px rgba(1, 130, 76, 0.08);
}

.methodCard:hover {
  border-color: #01989b;
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(1, 130, 76, 0.15);
}

.methodIcon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #01989b 0%, #01845a 100%);
  flex-shrink: 0;
  background-size: 28px;
  background-position: center;
  background-repeat: no-repeat;
}

.emailIcon {
  background-image: url("../Images/contactUS/email-8-svgrepo-com.png");
  background-color: #01989b;
}

.phoneIcon {
  background-image: url("../Images/contactUS/call-chat-svgrepo-com.png");
  background-color: #01845a;
}

.locationIcon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
  background-color: #01989b;
}

.methodContent h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.methodContent p {
  font-size: 15px;
  color: #666;
  margin-bottom: 10px;
  line-height: 1.6;
}

.contactLink {
  display: inline-block;
  color: #01989b;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 8px 16px;
  background: #e8f7f7;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contactLink:hover {
  background: #01989b;
  color: white;
  transform: translateY(-2px);
}

/* Social Section */
.socialSection {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid #e0e0e0;
}

.socialTitle {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.socialLinks {
  display: flex;
  gap: 15px;
}

.socialBtn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #01989b 0%, #01845a 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.socialBtn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(1, 130, 76, 0.3);
  color: white;
}

/* Form Section */
.formSection {
  padding: 40px;
}

.formCard {
  background: white;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(1, 152, 155, 0.1);
}

.formHeader {
  margin-bottom: 40px;
  text-align: center;
}

.formTitle {
  font-size: 38px;
  font-weight: 700;
  background: linear-gradient(90deg, #01989b 0%, #01845a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.formSubtitle {
  font-size: 16px;
  color: #666;
}

/* Form Styles */
.modern-form {
  width: 100%;
}

.formGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}

.formGroup {
  display: flex;
  flex-direction: column;
}

.formGroup.fullWidth {
  grid-column: 1 / -1;
}

.formLabel {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.required {
  color: #e74c3c;
}

.formInput {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 16px;
  background: #fafafa;
  transition: all 0.3s ease;
  font-family: inherit;
}

.formInput:focus {
  outline: none;
  border-color: #01989b;
  background: white;
  box-shadow: 0 0 0 4px rgba(1, 152, 155, 0.1);
}

.textareaInput {
  resize: vertical;
  min-height: 120px;
}

.formInput::placeholder {
  color: #999;
}

/* Submit Button */
.submitBtn {
  width: 100%;
  padding: 18px 40px;
  background: linear-gradient(90deg, #01824c 0%, #018b97 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.submitBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(1, 130, 76, 0.3);
}

.submitBtn:active {
  transform: translateY(-1px);
}

/* Form Validation Styles */
.was-validated .formInput:invalid {
  border-color: #e74c3c;
}

.was-validated .formInput:valid {
  border-color: #01989b;
}

/* Google Map Section */
.mapSection {
  padding: 80px 40px;
  background: white;
}

.mapContainer {
  max-width: 1400px;
  margin: 0 auto;
}

.mapHeader {
  text-align: center;
  margin-bottom: 50px;
}

.mapTitle {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(90deg, #01989b 0%, #01845a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.mapSubtitle {
  font-size: 18px;
  color: #666;
}

.mapWrapper {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(1, 130, 76, 0.15);
  border: 3px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #01989b, #01845a) border-box;
}

.mapWrapper iframe {
  display: block;
}

/* Responsive Design */
@media screen and (max-width: 1199px) {
  .heroSubtitle {
    font-size: 42px;
  }

  .sectionTitle {
    font-size: 36px;
  }

  .formTitle {
    font-size: 32px;
  }
}

@media screen and (max-width: 991px) {
  .mainContactWrapper {
    padding: 60px 20px;
  }

  .contactInfoSection,
  .formSection {
    padding: 20px;
  }

  .infoCard {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .formCard {
    padding: 40px 30px;
  }

  .formGrid {
    grid-template-columns: 1fr;
  }

  .mapSection {
    padding: 60px 20px;
  }

  .mapWrapper {
    height: 400px;
  }
}

@media screen and (max-width: 767px) {
  .contactHeroSection {
    height: 300px;
  }

  .heroTitle {
    font-size: 20px;
  }

  .heroSubtitle {
    font-size: 32px;
  }

  .sectionTitle {
    font-size: 28px;
  }

  .formTitle {
    font-size: 26px;
  }

  .mainContactWrapper {
    padding: 40px 15px;
  }

  .formCard {
    padding: 30px 20px;
  }

  .methodCard {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .methodIcon {
    margin-bottom: 10px;
  }

  .socialLinks {
    justify-content: center;
  }

  .submitBtn {
    padding: 16px 30px;
    font-size: 16px;
  }

  .mapSection {
    padding: 40px 15px;
  }

  .mapTitle {
    font-size: 32px;
  }

  .mapWrapper {
    height: 350px;
    border-radius: 16px;
  }
}