/* =========================================
   CONTACT PAGE  —  contact.css
   Matches screenshot exactly
   ========================================= */

:root {
  --ct-cyan: #13a0b2;
  --ct-yellow: #f0a500;
  --ct-yellow-d: #d08c00;
  --ct-dark: #1a1a1a;
  --ct-text: #555;
  --ct-border: #d8dde6;
  --ct-bg: #f7f7f7;
  --ct-white: #ffffff;
  --ct-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* =========================================
   1. HERO BANNER
   ========================================= */
/* Hero Section Styles */
.contact-hero-section {
     /* position: relative; */
    /* min-height: 500px; */
    /* background: url(/images/contact/contact-hero-bg.jpg); */
    /* background-size: cover; */
    /* background-position: center; */
    /* background-repeat: no-repeat; */
    /* display: flex;
    align-items: center;
    justify-content: center; */
    padding: 80px 20px;
    margin:0 auto;
    max-width: 1200px;

}
/* Side by side buttons styling for contact page */
.contact-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.contact-buttons .btn {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.contact-buttons .call-button {
  background: #009ab5;
  color: white;
  border: 2px solid #009ab5;
}

.contact-buttons .call-button:hover {
  background: white;
  color: #009ab5;
  text-decoration: none;
}

/* Responsive button layout */
@media (max-width: 768px) {
  .contact-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .contact-buttons .btn {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .contact-buttons {
    gap: 8px;
  }

  .contact-buttons .btn {
    padding: 10px 15px;
    font-size: 14px;
  }
}
/* =========================================
   3. TWO-COLUMN GRID
   ========================================= */
.ct-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr; /* form wider, info narrower */
  gap: 28px;
  align-items: start;
}

/* ── LEFT: Form ── */
.ct-form-col {
  /* no background — sits on white page */
}

/* Alert messages */
.ct-alert {
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.ct-alert-success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.ct-alert-error {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

/* Form fields — full bordered box style, matches screenshot */
.ct-field {
  margin-bottom: 16px;
}

.ct-form input,
.ct-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--ct-border);
  border-radius: 3px;
  background: var(--ct-white);
  font-size: 14px;
  color: var(--ct-dark);
  font-family: inherit;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.25s;
}

.ct-form input::placeholder,
.ct-form textarea::placeholder {
  color: #aaa;
}

.ct-form input:focus,
.ct-form textarea:focus {
  border-color: var(--ct-cyan);
}

.ct-form textarea {
  resize: vertical;
  min-height: 140px;
}

.ct-err {
  display: block;
  color: red;
  font-size: 11px;
  margin-top: 4px;
}

/* Submit button row — centered, yellow button */
.ct-submit-row {
  text-align: center;
  margin-top: 10px;
}

.ct-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ct-yellow);
  color: var(--ct-white);
  border: none;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.2s;
  font-family: inherit;
}

.ct-submit-btn:hover {
  background: var(--ct-yellow-d);
  transform: translateY(-1px);
}

.ct-arrow {
  font-size: 12px;
  line-height: 1;
}

/* ── RIGHT: Info Box ── */
.ct-info-col {
  /* nothing — let the box do the work */
}

.ct-info-box {
  background: #f0f4f7;
  border-radius: 4px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  height: 100%;
  box-sizing: border-box;
}

.ct-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* Circular icon — teal outline style */
.ct-info-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  /* border: 2px solid var(--ct-cyan); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ct-cyan);
}

.ct-info-icon svg {
  width: 18px;
  height: 18px;
}

.ct-info-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ct-info-text strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--ct-dark);
}

.ct-info-text a {
  font-size: 14px;
  color: var(--ct-cyan);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.ct-info-text a:hover {
  color: #1fa8b8;
}

/* =========================================
   4. GOOGLE MAP
   ========================================= */
.ct-map {
  width: 100%;
  line-height: 0;
}

.ct-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* =========================================
   5. BOTTOM TEAL CTA BAR
   ========================================= */
.ct-cta-bar {
  background: var(--ct-cyan);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.ct-cta-text {
  color: #fff;
  font-size: 17px;
  font-style: italic;
  margin: 0;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.ct-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ct-yellow);
  color: var(--ct-white);
  padding: 11px 24px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  white-space: nowrap;
  transition: background 0.25s;
  flex-shrink: 0;
}

.ct-cta-btn:hover {
  background: var(--ct-yellow-d);
  color: var(--ct-white);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 820px) {
  .ct-grid {
    grid-template-columns: 1fr;
  }

  .ct-info-box {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    height: auto;
  }

  .ct-info-item {
    flex: 1 1 200px;
  }
}

@media (max-width: 560px) {
  .ct-hero {
    height: 150px;
  }
  .ct-hero-content h1 {
    font-size: 28px;
  }
  .ct-section {
    padding: 36px 0 40px;
  }
  .ct-heading {
    font-size: 20px;
  }

  .ct-cta-bar {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .ct-cta-text {
    font-size: 15px;
  }

  .ct-map iframe {
    height: 300px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f5f5f5;
  color: #333;
}

/* =========================================
           CONTACT SECTION
           ========================================= */
.ct-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
}

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 768px) {
  .ct-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
           LEFT COLUMN - CONTACT INFO & MAP
           ========================================= */
.ct-info-col h2 {
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.ct-map-box {
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}

.ct-map-box iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.ct-address-section {
  margin-bottom: 20px;
}

.ct-address-section h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.ct-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.ct-info-icon {
  width: 40px;
  height: 40px;
  background: #fdc600;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ct-info-icon svg {
  width: 14px;
  height: 14px;
  fill: #1a1a1a;
}

.ct-info-text {
  font-size: 0.85rem;
  color: #555;
}

.ct-info-text strong {
  color: #1a1a1a;
  font-weight: 600;
}

.ct-info-text a {
  color: #555;
  text-decoration: none;
}

.ct-info-text a:hover {
  color: #009ab5;
}

/* =========================================
           RIGHT COLUMN - FORM
           ========================================= */
.ct-form-col h2 {
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.ct-form-wrapper {
  background: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 25px;
}

.ct-field {
  margin-bottom: 14px;
}

.ct-form input,
.ct-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fff;
  font-size: 13px;
  color: #333;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s;
}

.ct-form input::placeholder,
.ct-form textarea::placeholder {
  color: #999;
}

.ct-form input:focus,
.ct-form textarea:focus {
  border-color: #009ab5;
}

.ct-form textarea {
  resize: vertical;
  min-height: 120px;
}

.ct-err {
  display: block;
  color: #c0392b;
  font-size: 11px;
  margin-top: 4px;
}

/* Alert messages */
.ct-alert {
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.ct-alert-success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.ct-alert-error {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

/* Buttons row */
.ct-buttons-row {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.ct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s;
  flex: 1;
}

.ct-btn-send {
  background: #fff;
  color: #333;
  border: 1px solid #ccc;
}

.ct-btn-send:hover {
  background: #f5f5f5;
}

.ct-btn-send svg {
  width: 14px;
  height: 14px;
  fill: #333;
}

.ct-btn-call {
  background: #009ab5;
  color: #fff;
}

.ct-btn-call:hover {
  background: #fdc600;
}

.ct-btn-call svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}
