:root {
  --brand-accent: #7F1858;         
  --brand-highlight: #FAD26E;      
  --brand-bg-light: #FAFAFA;
  --brand-text-dark: #222;
  --brand-text-muted: #555;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Figtree", "Poppins", sans-serif;
}
body {
  background: #fff;
  color: var(--brand-text-dark);
  line-height: 1.6;
}


.hero {
  position: relative;
  text-align: center;
  color: #fff;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0; left: 0;
  z-index: -2;
  opacity: 0.75;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0.75;
  z-index: -1;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}
.hero-content h1 span {
  color: var(--brand-highlight);
}
.hero-content p {
  color: #ddd;
  max-width: 600px;
  margin: 0 auto;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
}


.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 125px 30px;
  background-color: #fff;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  flex-wrap: wrap;
}

/* Left Column */
.contact-left {
  flex: 1 1 50%;
  color: #000;
}

.contact-left h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-left p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1rem;
  color: #111;
  margin-bottom: 15px;
}

.contact-info i {
  color: #fff;
  background-color: #800000;
  padding: 10px;
  border-radius: 50%;
  font-size: 0.9rem;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Right Column */
.contact-right {
  flex: 1 1 45%;
  background-color: #fae6e6;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form h3 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #000;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 2px #f3e063;
  background-color: #fff;
}

.contact-form button {
  background-color: #f3e063;
  color: #000;
  font-weight: 600;
  border: none;
  padding: 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.form-status {
  text-align: center;
  font-weight: 500;
  margin-top: 10px;
  transition: 0.3s ease;
}


/* Responsive */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .contact-left h2 {
    font-size: 2rem;
  }

  .contact-right {
    width: 100%;
    padding: 30px 20px;
  }
}


.map-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 40px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 30px 125px 30px;
  background: #fff;
  font-family: "Figtree", sans-serif;
  overflow: hidden;
}

.map-section h2 {
  font-size: 48px;
  font-family: "Figtree", "Inter", sans-serif;
  font-weight: 600;
  color: #111;
  text-align: center;
  margin-bottom: 20px;
}


.map-section iframe {
  width: 100%;
  max-width: 1100px;
  height: 450px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.map-section iframe:hover {
  transform: scale(1.01);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .map-section {
    padding: 80px 20px;
  }

  .map-section h2 {
    font-size: 36px;
  }

  .map-section iframe {
    height: 300px;
  }
}


