/* ==========================================================
   contact.css — Plaza Tropical Contact Page
   Supplement to styles.css + about.css (both load before this)
   ========================================================== */

/* ── HERO OVERRIDE (background only — all other styles from about.css) ── */

.about-hero.contact-hero .about-hero-bg {

  background-position: center 30%;
}

.about-hero.contact-heroREAL .about-hero-bgREAL {
  background-image: url('../img/contact.jpg');
  background-position: center 30%;
}

/* ── PAGE BODY ────────────────────────────────────────────── */

.contact-page-body {
  background: var(--cream);
}

/* ── BENTO INFO GRID ──────────────────────────────────────── */

.ct-bento {
  padding: 5.5rem 0 4rem;
  background: var(--cream);
  overflow: hidden;
}

.ct-bento-header {
  text-align: center;
  margin-bottom: 3rem;
}

.ct-bento-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #777;
  margin-top: 0.75rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.ct-bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

/* Info card base */
.ct-info-card {
  border-radius: 22px;
  padding: 2.5rem 2.25rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.ct-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}

/* Card variants */
.ct-info-card--location {
  background: var(--green-dark);
  box-shadow: 0 8px 40px rgba(26,74,46,0.22);
}

.ct-info-card--phone {
  background: var(--orange);
  box-shadow: 0 8px 40px rgba(232,98,10,0.28);
}

.ct-info-card--email {
  background: var(--warm-white);
  border: 1.5px solid rgba(26,74,46,0.1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.ct-info-card--hours {
  background: var(--green-dark);
  box-shadow: 0 8px 40px rgba(26,74,46,0.22);
}

/* Card icon */
.ct-card-icon {
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 1.4rem;
  display: block;
}

.ct-info-card--location .ct-card-icon { color: var(--amber); }
.ct-info-card--phone .ct-card-icon    { color: rgba(255,255,255,0.9); }
.ct-info-card--email .ct-card-icon    { color: var(--orange); }
.ct-info-card--hours .ct-card-icon    { color: var(--amber); }

/* Card label */
.ct-card-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.6rem;
}

.ct-info-card--location .ct-card-label { color: rgba(255,255,255,0.5); }
.ct-info-card--phone .ct-card-label    { color: rgba(255,255,255,0.7); }
.ct-info-card--email .ct-card-label    { color: rgba(26,74,46,0.5); }
.ct-info-card--hours .ct-card-label    { color: rgba(255,255,255,0.5); }

/* Card value */
.ct-card-value {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 0.5rem;
}

.ct-info-card--location .ct-card-value { color: #fff; }
.ct-info-card--phone .ct-card-value    { color: #fff; }
.ct-info-card--email .ct-card-value    { color: var(--green-dark); }
.ct-info-card--hours .ct-card-value    { color: #fff; }

/* Card sub-text */
.ct-card-sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0 0 1.25rem;
}

.ct-info-card--location .ct-card-sub { color: rgba(255,255,255,0.55); }
.ct-info-card--phone .ct-card-sub    { color: rgba(255,255,255,0.72); }
.ct-info-card--email .ct-card-sub    { color: #888; }
.ct-info-card--hours .ct-card-sub    { color: rgba(255,255,255,0.55); }

/* Card action link */
.ct-card-action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1.5px solid;
  padding-bottom: 1px;
  transition: gap 0.22s, opacity 0.22s;
}

.ct-card-action:hover { gap: 0.7rem; opacity: 0.85; }

.ct-info-card--location .ct-card-action {
  color: var(--amber);
  border-color: rgba(245,166,35,0.4);
}
.ct-info-card--phone .ct-card-action {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.4);
}
.ct-info-card--email .ct-card-action {
  color: var(--orange);
  border-color: rgba(232,98,10,0.35);
}

/* ── HOURS SCHEDULE (inside hours card) ──────────────────── */

.ct-schedule {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ct-sched-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}

.ct-sched-row:last-child { border-bottom: none; }

.ct-sched-day {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
}

.ct-sched-time {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.02em;
}

/* Today highlight */
.ct-sched-row.ct-day--today {
  background: rgba(245,166,35,0.1);
  border-radius: 8px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  margin: 0 -0.75rem;
}

.ct-sched-row.ct-day--today .ct-sched-day {
  color: #fff;
  font-weight: 700;
}

.ct-sched-row.ct-day--today .ct-sched-time {
  color: var(--amber);
}

.ct-today-badge {
  display: none;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--amber);
  color: var(--green-dark);
  border-radius: 100px;
  padding: 0.1rem 0.5rem;
  margin-left: 0.5rem;
  vertical-align: middle;
  flex-shrink: 0;
}

.ct-sched-row.ct-day--today .ct-today-badge {
  display: inline;
}

/* ── SOCIAL STRIP ─────────────────────────────────────────── */

.ct-social-strip {
  background: var(--green-dark);
  padding: 3.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ct-social-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(232,98,10,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.ct-social-inner {
  position: relative;
}

.ct-social-script {
  font-family: var(--font-script, 'Satisfy', cursive);
  font-size: 1.5rem;
  color: var(--amber);
  display: block;
  margin-bottom: 0.35rem;
}

.ct-social-tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.75rem;
  display: block;
}

.ct-social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.ct-social-btn {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.13);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 1.4rem;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.22s;
}

.ct-social-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-3px);
}

/* ── MAP SECTION ──────────────────────────────────────────── */

.ct-map-section {
  padding: 0 0 5rem;
  background: var(--cream);
}

.ct-map-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 56px rgba(0,0,0,0.14);
  border: 2px solid rgba(255,255,255,0.8);
}

.ct-map-card iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.ct-map-chip {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--green-dark);
  color: var(--amber);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 100px;
  padding: 0.45rem 1rem 0.45rem 0.75rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  letter-spacing: 0.02em;
}

.ct-map-chip i { font-size: 0.9rem; }

/* ── CONTACT FORM SECTION ─────────────────────────────────── */

.ct-form-section {
  padding: 5.5rem 0 7rem;
  background: var(--cream);
  position: relative;
}

.ct-form-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,74,46,0.12), transparent);
}

.ct-form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.ct-form-sub-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #777;
  margin-top: 0.75rem;
  line-height: 1.65;
}

.ct-form-wrap {
  max-width: 780px;
  margin: 0 auto;
  background: var(--warm-white);
  border-radius: 24px;
  padding: 3.5rem;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.03),
    0 8px 32px rgba(0,0,0,0.07),
    0 28px 72px rgba(0,0,0,0.09);
  border: 1.5px solid rgba(26,74,46,0.06);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */

@media (max-width: 991px) {
  .ct-bento-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .ct-bento { padding: 4rem 0 3rem; }
  .ct-map-section { padding: 0 0 4rem; }
  .ct-form-section { padding: 4rem 0 5.5rem; }
  .ct-form-wrap { padding: 2.5rem 2rem; }
}

@media (max-width: 767px) {
  .ct-bento-grid {
    grid-template-columns: 1fr;
  }

  .ct-info-card { padding: 2rem 1.75rem; }
  .ct-card-icon { font-size: 2rem; margin-bottom: 1rem; }

  .ct-map-card iframe { height: 280px; }

  .ct-form-wrap { padding: 2rem 1.5rem; border-radius: 18px; }
  .ct-form-section { padding: 3.5rem 0 5rem; }
}

@media (max-width: 480px) {
  .ct-bento { padding: 3rem 0 2.5rem; }
  .ct-social-btn { width: 52px; height: 52px; font-size: 1.2rem; }
  .ct-form-wrap { padding: 1.75rem 1.25rem; }
}
