/* ==========================================================================
   AUTHENTICHIRE SOLUTION & SERVICES - CONTACT US STYLESHEET
   Clean External CSS - ZERO Inline & ZERO Internal Styles
   (Excludes Header, Navbar, and Footer as requested)
   ========================================================================== */

/* 1. CSS Theme Variables */
:root {
  --primary-color: #004188;
  --primary-hover: #096eb8;
  --accent-cyan: #2E96C5;
  --accent-red: #ee4343;
  --accent-green: #059669;
  --accent-amber: #d97706;
  --bg-cream: #f6f4ef;
  --bg-cream-alt: #f1ede4;
  --bg-dark: #010c19;
  --text-dark: #191d22;
  --text-muted: #3f4752;
  --border-light: #e5e7eb;
  --border-cream: #e8e4dc;
  --font-body: 'Montserrat', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --font-alt: 'Sora', sans-serif;
}

/* 2. Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-muted);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 3. Containers & Spacing */
.contact-page .container {
  width: min(100% - 40px, 1280px);
  margin: 0 auto;
}

.contact-section {
  padding: 80px 0;
}

.contact-bg-cream {
  background-color: var(--bg-cream);
}

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-4-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.section-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
  background-color: #eef7fc;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-badge-hero {
  color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 15px;
}

.section-badge-white {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-header-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px auto;
}

.section-header-center h3 {
  font-size: 34px;
  margin-top: 8px;
  margin-bottom: 12px;
}

.section-header-center p {
  font-size: 14px;
  color: var(--text-muted);
}

/* 4. Common Buttons */
.contact-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.contact-page .btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
}

.contact-page .btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 65, 136, 0.25);
}

.btn-submit {
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
  background-color: var(--primary-color);
  color: #ffffff;
  margin-top: 10px;
}

.btn-submit:hover {
  background-color: var(--primary-hover);
}

/* 5. Contact Hero Banner */
.contact-hero {
  position: relative;
  background-image: linear-gradient(135deg, rgba(1, 12, 25, 0.84) 0%, rgba(0, 65, 136, 0.62) 55%, rgba(1, 12, 25, 0.84) 100%), url('../images/home-service-pilot.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 90px 0;
  text-align: center;
}

.contact-hero-title {
  font-size: 46px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.contact-hero-subtitle {
  font-size: 18px;
  color: #e2e8f0;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-hero-cta {
  margin-top: 26px;
}

#contactEnquiryForm {
  scroll-margin-top: 24px;
}

/* 6. Contact Info Cards (3 Columns) */
.contact-cards-section {
  padding: 60px 0 30px 0;
  margin-top: -45px;
  position: relative;
  z-index: 10;
}

.contact-info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 65, 136, 0.12);
  border-color: #cbd5e1;
}

.card-icon-bubble {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px auto;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 65, 136, 0.2);
}

.contact-info-card:hover .card-icon-bubble {
  background-color: var(--accent-red);
  transform: scale(1.08);
}

.contact-info-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-family: var(--font-alt);
}

.contact-info-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.card-highlight-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 700;
  margin-top: 8px;
  font-size: 15px;
}

.card-highlight-link:hover {
  color: var(--accent-cyan);
  text-decoration: underline;
}

.card-sub-action {
  margin-top: 12px;
  font-size: 12px;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.whatsapp-link {
  color: var(--accent-green);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.whatsapp-link:hover {
  text-decoration: underline;
}

/* 7. Get in Touch & Interactive Form Section */
.touch-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: stretch;
}

.touch-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border: 5px solid #ffffff;
  min-height: 480px;
  height: 100%;
}

.touch-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.touch-image-frame:hover img {
  transform: scale(1.03);
}

.touch-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 12, 25, 0.2) 0%, rgba(1, 12, 25, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px;
  color: #ffffff;
}

.touch-image-overlay h4 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.touch-image-overlay p {
  color: #e2e8f0;
  font-size: 13px;
  line-height: 1.6;
}

.form-wrapper-dark {
  background: linear-gradient(135deg, #010c19 0%, #06192d 60%, #004188 100%);
  color: #ffffff;
  padding: 40px 36px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.form-wrapper-dark h3 {
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 6px;
}

.form-wrapper-dark p.form-lead {
  font-size: 13px;
  color: #cbd5e1;
  margin-bottom: 22px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: #cbd5e1;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  transition: all 0.3s;
}

.form-control::placeholder {
  color: #94a3b8;
}

.form-control:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.18);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(46, 150, 197, 0.25);
}

.form-control select,
select.form-control {
  background-color: #010c19;
  color: #ffffff;
}

select.form-control option {
  background-color: #010c19;
  color: #ffffff;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 12px;
  color: #94a3b8;
  text-align: center;
}

.form-security-note i {
  color: var(--accent-green);
  font-size: 14px;
}

.form-success-box {
  display: none;
  background: rgba(5, 150, 105, 0.18);
  border: 1px solid var(--accent-green);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  margin-top: 15px;
}

.form-error-box {
  display: none;
  background: rgba(238, 67, 67, 0.12);
  border: 1px solid var(--accent-red);
  border-radius: 12px;
  padding: 18px 22px;
  text-align: left;
  margin-top: 15px;
  color: #ffdada;
  font-size: 13px;
  line-height: 1.7;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-success-box .success-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--accent-green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 12px auto;
}

.form-success-box h4 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 6px;
}

.form-success-box p {
  color: #e2e8f0;
  font-size: 13px;
  line-height: 1.6;
}

.btn-another-message {
  margin-top: 14px;
  padding: 8px 18px;
  font-size: 12px;
}

/* 8. Assurance Pillars (4 Columns) */
.assurance-card {
  background: #ffffff;
  padding: 26px 20px;
  border-radius: 14px;
  border: 1px solid var(--border-cream);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  text-align: left;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.assurance-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.assurance-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #eef7fc;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.assurance-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.assurance-card p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* 9. Interactive Map Container */
.map-section {
  position: relative;
  background-color: #f1ede4;
}

.map-header-bar {
  background-color: #ffffff;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}

.map-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.map-location-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.map-location-title i {
  color: var(--accent-red);
  font-size: 22px;
}

.map-location-title h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.map-location-title p {
  font-size: 13px;
  color: var(--text-muted);
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

.btn-directions:hover {
  background-color: var(--primary-hover);
}

.map-frame-wrapper {
  width: 100%;
  height: 460px;
  overflow: hidden;
}

.map-frame-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* 10. Responsive Breakpoints */
@media (max-width: 992px) {
  .touch-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .grid-3-col {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .grid-4-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-hero-title {
    font-size: 36px;
  }
  .touch-image-frame {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 50px 0;
  }
  .contact-cards-section {
    margin-top: -30px;
  }
  .contact-hero-title {
    font-size: 30px;
  }
  .contact-hero-subtitle {
    font-size: 15px;
  }
  .section-header-center h3 {
    font-size: 26px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .grid-4-col {
    grid-template-columns: 1fr;
  }
  .map-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}