:root {
  --primary-cyan: #00a8ec;
  --primary-cyan-hover: #0092cf;
  --primary-cyan-light: #e0f2fe;
  --button-blue: #3b82f6;
  --button-blue-hover: #2563eb;
  --dark-navy-bg: #0c1c2e;
  --text-heading: #081626;
  --text-dark: #2c3e50;
  --text-muted: #5f7082;
  --bg-page: #ffffff;
  --form-card-bg: #d9effc;
  --border-light: #d8edf9;
  
  --font-heading: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 28px;
  font-weight: 400; 
  color: var(--text-dark);
  background-color: var(--bg-page);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* ---------------- Contact Page Wrapper ---------------- */
.contact-page-wrapper {
  width: 100%;
  padding: 24px 24px 0px;
}

.contact-container {
  max-width: 1350px;
  margin: 0 auto;
}

/* ---------------- Common Section Headings ---------------- */
.section-heading-main {
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 48px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 36px;
  letter-spacing: -0.2px;
}

.section-heading-main.text-center {
  text-align: center;
}

.highlight-cyan {
  color: var(--primary-cyan);
}

.about-body-text {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 27px;
  font-weight: 400;
  color: var(--text-muted);
  text-align: justify;
  margin-bottom: 24px;
}


/* ==========================================================================
   1. HERO BANNER SECTION
   ========================================================================== */
.contact-hero-card {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(8, 22, 38, 0.14);
}

.contact-hero-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contact-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.contact-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(0 0 0 / 73%) 0%, rgb(0 0 0 / 26%) 100%);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
}

.contact-hero-title {
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.contact-breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
}

.breadcrumb-link {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link:hover {
  color: var(--primary-cyan);
}

.breadcrumb-separator {
  color: var(--primary-cyan);
  font-weight: 700;
}

.breadcrumb-current {
  color: #ffffff;
  font-weight: 600;
}


/* ==========================================================================
   2. WE'RE HERE TO HELP & FORM SECTION
   ========================================================================== */
.contact-main-section {
  width: 100%;
  background-color: #ffffff;
  padding: 30px 20px 40px 20px;
  border-radius: 28px;
  margin-bottom: 25px;
}

.contact-two-col-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: stretch;
}

/* Left Column */
.contact-text-col {
  display: flex;
  flex-direction: column;
}

.support-badge {
  align-self: flex-start;
  display: inline-block;
  padding: 5px 16px;
  border-radius: 50px;
  background-color: #eaf6fe;
  border: 1px solid #bae1fa;
  color: var(--primary-cyan);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 16px;
}

.contact-heading-main {
  font-family: var(--font-heading);
  font-size: 38px;
  line-height: 48px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.support-lead-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.contact-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: auto;
  padding-top: 14px;
}

.contact-gallery-item {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  height: 180px;
}

.contact-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.contact-gallery-item:hover .contact-gallery-img {
  transform: scale(1.04);
}

/* Right Column - Form Card Matching Left Height */
.contact-form-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-form-card {
  background-color: var(--form-card-bg);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 12px 35px rgba(0, 168, 236, 0.1);
  border: 1px solid rgba(0, 168, 236, 0.18);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  justify-content: space-between;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-label {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-heading);
}

.required-star {
  color: #ef4444;
}

.form-input,
.form-textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: all 0.2s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9ca3af;
  font-size: 13.5px;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary-cyan);
  box-shadow: 0 0 0 3px rgba(0, 168, 236, 0.2);
}

.form-textarea {
  resize: none;
  min-height: 140px;
  flex: 1;
  height: 100%;
}

.form-action {
  margin-top: 6px;
}

.btn-send-message {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--button-blue);
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
}

.btn-send-message:hover {
  background-color: var(--button-blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.45);
}

.btn-send-message:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none !important;
}

/* Form Response Messages */
.form-response-msg {
  display: none;
  padding: 14px 18px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  margin-top: 14px;
}

.form-response-msg.success {
  display: block;
  background-color: #ecfdf5;
  border: 1.5px solid #a7f3d0;
  color: #065f46;
}

.form-response-msg.error {
  display: block;
  background-color: #fef2f2;
  border: 1.5px solid #fecaca;
  color: #991b1b;
}


/* ==========================================================================
   3. CONTACT INFORMATION CARDS
   ========================================================================== */
.contact-info-section {
  width: 100%;
  background-color: #ebf6fe;
  padding: 40px 30px;
  border-radius: 28px;
  margin-bottom: 25px;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.info-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-cyan);
  box-shadow: 0 14px 35px rgba(0, 168, 236, 0.12);
}

.info-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #e0f2fe;
  color: var(--primary-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.info-card:hover .info-icon-badge {
  transform: scale(1.1);
  background-color: var(--primary-cyan);
  color: #ffffff;
}

.info-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}

.info-card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: var(--text-muted);
}

.info-card-desc a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.info-card-desc a:hover {
  color: var(--primary-cyan);
  text-decoration: underline;
}


/* ==========================================================================
   4. GOOGLE MAPS EMBED SECTION
   ========================================================================== */
.contact-map-section {
  width: 100%;
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 28px;
  margin-bottom: 40px;
}

.contact-map-card {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-map-card iframe {
  display: block;
  width: 100%;
}
