

/* ===== HERO SECTION ===== */
.a-hero {
    background: linear-gradient(to bottom right, #f5f5ff, #ffffff, #f5f5ff);
    padding: 30px 0;
}

.a-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    height: 60%;
}

/* LEFT TEXT */
.a-hero-text {
    flex: 1;
}

.a-hero-subtitle {
    font-size: 16px;
    color: #555;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.a-hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

.highlight {
    color: #7b014c;
}

.a-hero-desc {
    margin-top: 20px;
    font-size: 18px;
    color: #555;
    max-width: 500px;
}

/* CTA BUTTON */
.a-hero-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #7b014c;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    border: 2px solid #7b014c;
    transition: all 0.3s ease-in-out;
}

.a-hero-btn:hover {
    background: #5a0138;
    border-color: #5a0138;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(123, 1, 76, 0.25);
}

.a-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.a-hero-image img {
    width: 450px;
    height: 450px; /* fixed height for all images */
    object-fit: contain;
    transition: opacity 0.6s ease-in-out;
}


/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .a-hero-container {
        flex-direction: column;
        text-align: center;
    }

    .a-hero-image img {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .a-hero-text h1 {
        font-size: 34px;
    }

    .a-hero-desc {
        font-size: 16px;
    }
}







.contact-section {
  padding: 100px 0;
  background: #ffffff;
}

.contact-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: stretch;
}

/* MAP */
.contact-map {
  flex: 1;
  min-height: 520px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* FORM */
.contact-form {
  flex: 1;
}

.contact-form h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
}

.contact-form h2 span {
  color: #7b014c;
  font-weight: 600;
}

/* FORM ELEMENTS */
.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  width: 100%;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
  display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
  transition: 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #7b014c;
  box-shadow: 0 0 0 3px rgba(123, 1, 76, 0.12);
}

/* BUTTON */
.contact-btn {
  margin-top: 10px;
  padding: 14px 40px;
  background: linear-gradient(90deg, #7b014c, #5a0138);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(123, 1, 76, 0.3);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-map {
    min-height: 350px;
  }

  .form-row {
    flex-direction: column;
  }
}