/* ===== Contact Hero (50vh) ===== */
.contact-hero-section{
  position: relative;
  height: 50vh;
  min-height: 320px;
  width: 100%;
  display: grid;
  place-items: center;
  color: #fff;
  background-image: url('images/about.png'); /* apni image yahan set karein */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.contact-hero-section-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.65));
}

.contact-hero-section-content{
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1rem;
  max-width: 1000px;
  animation: contact-hero-section-fade .8s ease-out both;
}

.contact-hero-section-eyebrow{
  margin: 0 0 .4rem;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .9;
}

.contact-hero-section-title{
  margin: 0 0 .5rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
}

.contact-hero-section-subtitle{
  margin: 0 auto 1.1rem;
  font-size: clamp(.95rem, 2.2vw, 1.15rem);
  max-width: 70ch;
  opacity: .95;
}

/* Actions */
.contact-hero-section-actions{
  display: inline-flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.contact-hero-section-cta,
.contact-hero-section-ghost{
  display: inline-block;
  padding: .85rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
  backdrop-filter: blur(2px);
}

/* Primary CTA: white on dark */
.contact-hero-section-cta{
  background: #ffffff;
  color: #0b0b0b;
  box-shadow: 0 12px 24px rgba(0,0,0,.25);
}
.contact-hero-section-cta:hover{ transform: translateY(-2px); }

/* Ghost CTAs */
.contact-hero-section-ghost{
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
}
.contact-hero-section-ghost:hover{
  background: rgba(255,255,255,.25);
  transform: translateY(-2px);
}

/* entrance animation */
@keyframes contact-hero-section-fade{
  from{ opacity: 0; transform: translateY(8px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* small screens */
@media (max-width: 480px){
  .contact-hero-section{ min-height: 360px; }
  .contact-hero-section-actions{ gap: .5rem; }
  .contact-hero-section-cta, .contact-hero-section-ghost{ padding: .75rem 1.05rem; }
}

/* /////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* //////////////////////// section 2 //////////////////// */
/* ===== Contact Section 2: Cards ===== */
.contact-section2{
  background: #ffffff;
  color: #0b0b0b;
  padding: clamp(2rem, 4vw, 4rem) 1rem;
  border-top: 1px solid #f2f2f2;
}
.contact-section2-container{ max-width: 1200px; margin: 0 auto; }

/* Head */
.contact-section2-head{ text-align: center; margin-bottom: clamp(1.2rem, 3vw, 2rem); }
.contact-section2-title{
  margin: 0 0 .35rem; font-size: clamp(1.6rem, 3.2vw, 2.2rem); font-weight: 800;
}
.contact-section2-sub{ margin: 0; color: #666; }

/* Grid */
.contact-section2-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.5rem);
}
@media (max-width: 1000px){ .contact-section2-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .contact-section2-grid{ grid-template-columns: 1fr; } }

/* Card */
.contact-section2-card{
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 1.1rem;
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: grid;
  align-content: start;
  gap: .6rem;
}
.contact-section2-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0,0,0,.08);
  border-color: #e5e5e5;
}

/* Icon */
.contact-section2-icon{
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: #0b0b0b; color: #fff;
  font-size: 1.2rem;
}

/* Titles & text */
.contact-section2-name{ margin: 0; font-size: 1.1rem; font-weight: 800; }
.contact-section2-text{ margin: 0; color: #4a4a4a; }

/* Lists */
.contact-section2-list{
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: .4rem;
}
.contact-section2-list a{
  color: #0b0b0b; text-decoration: none; border-bottom: 1px dashed rgba(0,0,0,.15);
}
.contact-section2-list a:hover{ border-bottom-color: rgba(0,0,0,.4); }

.contact-section2-address{ font-style: normal; color: #333; line-height: 1.5; }
.contact-section2-link{
  display: inline-block; margin-top: .35rem; font-weight: 700; text-decoration: none;
  color: #0b0b0b; border-bottom: 1px dashed rgba(0,0,0,.2);
}
.contact-section2-link:hover{ border-bottom-color: rgba(0,0,0,.5); }

/* Hours */
.contact-section2-hours{ list-style: none; padding: 0; margin: 0; display: grid; gap: .25rem; }
.contact-section2-hours strong{ font-weight: 800; }

/* Buttons */
.contact-section2-btn{
  display: inline-block; width: fit-content;
  padding: .8rem 1.1rem; border-radius: 12px;
  background: #0b0b0b; color: #fff; text-decoration: none; font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 12px 24px rgba(0,0,0,.15);
}
.contact-section2-btn:hover{ transform: translateY(-2px); box-shadow: 0 18px 36px rgba(0,0,0,.2); }

.contact-section2-btn--wa{
  background: #25D366; color: #0a0a0a; box-shadow: 0 12px 26px rgba(37,211,102,.35);
}
.contact-section2-btn--wa:hover{ box-shadow: 0 18px 40px rgba(37,211,102,.45); }

/* Small note */
.contact-section2-note{ margin: 0; color: #777; font-size: .9rem; }


/* /////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* //////////////////////// section 3 ///////////////////////// */
/* ===== Contact Section 3: Enquiry Form + Map ===== */
.contact-section3{
  background: #ffffff;
  color: #0b0b0b;
  padding: clamp(2rem, 4vw, 4rem) 1rem;
  border-top: 1px solid #f2f2f2;
}
.contact-section3-container{ max-width: 1200px; margin: 0 auto; }

/* Head */
.contact-section3-head{ text-align: center; margin-bottom: clamp(1.2rem,3vw,2rem); }
.contact-section3-title{
  margin: 0 0 .35rem; font-size: clamp(1.6rem,3.2vw,2.2rem); font-weight: 800;
}
.contact-section3-sub{ margin: 0; color: #666; }

/* Grid */
.contact-section3-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1rem, 2.2vw, 1.5rem);
  align-items: stretch;                 /* same height columns */
}
@media (max-width: 980px){
  .contact-section3-grid{ grid-template-columns: 1fr; }
}

/* Form */
.contact-section3-form{
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
  display: grid;
  gap: .9rem;
}
.contact-section3-row{
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .8rem;
}
@media (max-width: 600px){
  .contact-section3-row{ grid-template-columns: 1fr; }
}
.contact-section3-field{ display: grid; gap: .35rem; }
.contact-section3-field label{ font-weight: 800; font-size: .95rem; }
.contact-section3-field input,
.contact-section3-field select,
.contact-section3-field textarea{
  width: 100%; padding: .9rem 1rem; border-radius: 12px;
  border: 1px solid #e2e2e2; background: #fafafa; color: #0b0b0b;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-section3-field textarea{ resize: vertical; }
.contact-section3-field input:focus,
.contact-section3-field select:focus,
.contact-section3-field textarea:focus{
  outline: none; border-color: #0b0b0b; background: #fff;
  box-shadow: 0 0 0 3px rgba(0,0,0,.08);
}
.contact-section3-error{
  display: none; color: #b00020; font-size: .85rem;
}

/* Actions */
.contact-section3-actions{
  display: flex; flex-wrap: wrap; gap: .6rem;
}
.contact-section3-btn{
  display: inline-block; padding: .9rem 1.2rem; border-radius: 12px;
  background: #0b0b0b; color: #fff; text-decoration: none; font-weight: 800;
  box-shadow: 0 12px 24px rgba(0,0,0,.15);
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-section3-btn:hover{ transform: translateY(-2px); box-shadow: 0 18px 36px rgba(0,0,0,.2); }
.contact-section3-btn--wa{
  background: #25D366; color: #0a0a0a; box-shadow: 0 12px 26px rgba(37,211,102,.35);
}

/* Hint */
.contact-section3-hint{ margin: .2rem 0 0; color: #777; font-size: .9rem; }

/* Map */
.contact-section3-mapwrap{
  position: relative;
  border: 1px solid #ececec;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
  background: #f7f7f7;
  min-height: 100%;                 /* match form height */
  display: grid;
}
.contact-section3-map{
  width: 100%;
  height: 100%;
  min-height: 420px;                /* ensures good height on small screens */
}
.contact-section3-mapbadge{
  position: absolute;
  left: 12px; bottom: 12px;
  background: #0b0b0b; color: #fff;
  padding: .5rem .7rem; border-radius: 10px;
  font-size: .9rem; font-weight: 700;
  border: 1px solid #111;
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
}

/* Accessibility: invalid example (basic) */
.contact-section3-field input:invalid[required],
.contact-section3-field select:invalid[required],
.contact-section3-field textarea:invalid[required]{
  border-color: #b00020;
}
