/* ============================================================
   CONTACT.CSS — Royal Technologies
   Stylesheet for contact-us.html
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES (mirrors index.html variables)
   ============================================================ */
:root {
  --pink: #ed2e72;
  --blue: #009fed;
  --dark-blue: #1561ed;
  --navy: #0f153c;
  --deep-navy: #01062a;
  --accent-blue: #218dc2;
  --green: #60d769;
  --bg: #f8faff;
  --white: #ffffff;
  --black: #000000;
  --text-muted: #918f8f;
  --border: #ededed;

  --gradient-brand: linear-gradient(178.81deg, #ed2e72 0%, rgba(237, 46, 114, 0) 100%),
    linear-gradient(to left, #009fed, #009fed);
  --gradient-icon: linear-gradient(230.92deg, rgba(130, 130, 130, 1) 0%, rgba(0, 0, 0, 1) 100%);

  --shadow-card: 0 2px 49.7px rgba(19, 42, 97, 0.11);
  --shadow-soft: 0 4px 44.6px rgba(217, 229, 255, 0.45);
  --shadow-nav: 0 4px 44.6px rgba(217, 229, 255, 0.45);

  --radius-card: 30px;
  --radius-btn: 50px;
  --radius-tag: 20px;

  --pad-x: 80px;
  --max-w: 1440px;

  --font-body: "Space Grotesk", sans-serif;
  --font-bold: "Space Grotesk", sans-serif;
}

/* ============================================================
   2. RESET
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button {
  border: none;
  cursor: pointer;
  background: none;
  font: inherit;
}

input,
textarea,
select {
  border: none;
  outline: none;
  font: inherit;
}

ul,
ol {
  list-style: none;
}

/* ============================================================
   3. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 10px 10px 10px 20px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: opacity .2s, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn:hover {
  opacity: .88;
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.btn__icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn--green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 5px 29.3px rgba(210, 255, 213, 1);
  animation: pulseGlow 3s ease-in-out infinite;
}

.btn--pink {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 5px 29.3px rgba(237, 46, 114, 0.3);
}

.btn--black {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 4px 26.3px rgba(192, 212, 255, 0.35);
}

.btn--red {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 23.9px rgba(37, 14, 77, 0.25);
}

.btn__wa {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ============================================================
   4. NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-nav);
  width: 100%;
  animation: navbarSlideDown 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.navbar__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100px;
  padding: 0 var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 102px;
  height: 39px;
  overflow: hidden;
}

.navbar__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 45px;
}

.navbar__links a {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--black);
  transition: opacity .2s;
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  transition: width 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

.navbar__links a:hover {
  opacity: .6;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: .3s;
}

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  padding: 20px 24px;
  gap: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
  border-top: 1px solid #f0f0f0;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--black);
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
  display: block;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav__cta {
  background: var(--green) !important;
  border-radius: var(--radius-btn) !important;
  padding: 12px 20px !important;
  color: var(--white) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  border-bottom: none !important;
}

/* ============================================================
   5. CONTACT HERO SECTION
   ============================================================ */
.contact-hero {
  background: var(--bg);
  padding: 80px var(--pad-x) 60px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(237, 46, 114, 0.08) 0%, rgba(0, 159, 237, 0.08) 100%);
  pointer-events: none;
}

.contact-hero__label {
  font-size: 18px;
  color: var(--accent-blue);
  font-weight: 400;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.contact-hero__title {
  font-size: 64px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.contact-hero__title span {
  color: var(--pink);
}

.contact-hero__desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 600px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

/* ============================================================
   6. CONTACT INFO CARDS SECTION
   ============================================================ */
.contact-info {
  padding: 60px var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  cursor: default;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 60px rgba(19, 42, 97, 0.16);
}

.info-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--gradient-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12.4px rgba(0, 0, 0, 0.11);
}

.info-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card__title {
  font-weight: 700;
  font-size: 18px;
  color: var(--black);
}

.info-card__value {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.info-card__value a {
  color: var(--accent-blue);
  transition: opacity 0.2s;
}

.info-card__value a:hover {
  opacity: 0.7;
}

/* ============================================================
   7. CONTACT FORM + MAP SECTION
   ============================================================ */
.contact-main {
  padding: 20px var(--pad-x) 80px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.contact-main__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

/* Form card */
.form-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 48px 40px;
  box-shadow: var(--shadow-card);
}

.form-card__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

.form-card__subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

.form-label .req {
  color: var(--pink);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 0 16px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--bg);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.2s ease;
}

.form-input,
.form-select {
  height: 52px;
}

.form-textarea {
  padding: 14px 16px;
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--dark-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(21, 97, 237, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #c0c0c0;
}

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23918f8f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-consent {
  margin: 4px 0 20px;
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.consent-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--dark-blue);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.form-footer-hint {
  font-size: 14px;
  color: var(--text-muted);
  flex: 1;
}

.form-wa-strip {
  margin-top: 24px;
  background: #e4ffe3;
  border-radius: 40px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #2a7a30;
  transition: background 0.2s;
}

.form-wa-strip:hover {
  background: #d0f9ce;
}

.form-wa-strip img {
  width: 32px;
  height: 32px;
}

/* Side panel */
.contact-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Map */
.map-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.map-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 60px rgba(19, 42, 97, 0.14);
}

.map-card__embed {
  width: 100%;
  height: 280px;
  display: block;
  border: none;
}

.map-card__footer {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.map-card__footer svg {
  width: 22px;
  height: 22px;
  stroke: var(--pink);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.map-card__address {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Quick contact card */
.quick-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep-navy) 100%);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quick-card__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.quick-card__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quick-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  transition: background 0.2s;
}

.quick-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.quick-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quick-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quick-item__label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.quick-item__value {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
}

.quick-item__value a {
  color: var(--white);
  transition: opacity 0.2s;
}

.quick-item__value a:hover {
  opacity: 0.75;
}

/* Hours card */
.hours-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hours-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 50px rgba(19, 42, 97, 0.13);
}

.hours-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hours-card__title svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-blue);
  fill: none;
  stroke-width: 1.8;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--bg);
}

.hours-row .day {
  color: var(--black);
  font-weight: 500;
}

.hours-row .time {
  color: var(--accent-blue);
  font-weight: 600;
}

.hours-row.closed .time {
  color: var(--text-muted);
}

/* ============================================================
   8. WHY CONTACT SECTION
   ============================================================ */
.why-contact {
  background: var(--white);
  padding: 80px var(--pad-x);
}

.why-contact__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.why-contact__header {
  text-align: center;
  margin-bottom: 48px;
}

.why-contact__label {
  font-size: 18px;
  color: var(--accent-blue);
  font-weight: 400;
  margin-bottom: 8px;
}

.why-contact__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--black);
}

.why-contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--bg);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 2px 20px rgba(19, 42, 97, 0.06);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 48px rgba(19, 42, 97, 0.14);
}

.why-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gradient-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.why-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.8;
}

.why-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
}

.why-card__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   9. CTA SECTION
   ============================================================ */
.contact-cta {
  padding: 80px var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

.contact-cta__card {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2070 50%, var(--deep-navy) 100%);
  border-radius: 40px;
  padding: 70px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.contact-cta__card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 46, 114, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.contact-cta__card::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 159, 237, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.contact-cta__text {
  position: relative;
  z-index: 1;
}

.contact-cta__label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}

.contact-cta__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.contact-cta__title span {
  color: var(--pink);
}

.contact-cta__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 480px;
}

.contact-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* ============================================================
   10. FOOTER
   ============================================================ */

/* ============================================================
   11. SCROLL ANIMATIONS
   ============================================================ */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-revealed {
  opacity: 1 !important;
  transform: none !important;
}

.anim-delay-1 {
  transition-delay: 0.08s !important;
}

.anim-delay-2 {
  transition-delay: 0.16s !important;
}

.anim-delay-3 {
  transition-delay: 0.24s !important;
}

.anim-delay-4 {
  transition-delay: 0.32s !important;
}

/* ============================================================
   12. KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navbarSlideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 5px 29.3px rgba(96, 215, 105, 0.6);
  }

  50% {
    box-shadow: 0 5px 40px rgba(96, 215, 105, 0.95), 0 0 0 6px rgba(96, 215, 105, 0.15);
  }
}

/* ============================================================
   13. RESPONSIVE — TABLET
   ============================================================ */
@media (min-width: 769px) and (max-width: 1100px) {
  :root {
    --pad-x: 40px;
  }

  .navbar__wrap {
    height: 88px;
    padding: 0 40px;
  }

  .navbar__links,
  .navbar__cta {
    display: none !important;
  }

  .navbar__hamburger {
    display: flex !important;
  }

  .mobile-nav {
    top: 88px;
  }

  .contact-hero__title {
    font-size: 48px;
  }

  .contact-info__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-main__grid {
    grid-template-columns: 1fr;
  }

  .contact-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .quick-card {
    grid-column: 1 / -1;
  }

  .why-contact__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-cta__card {
    flex-direction: column;
    text-align: center;
    padding: 50px 40px;
  }

  .contact-cta__desc {
    max-width: 100%;
  }

  .footer__main {
    flex-direction: column;
    gap: 40px;
  }

  .footer__contact-card {
    min-width: 100%;
  }
}

/* ============================================================
   14. RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --pad-x: 20px;
  }

  body {
    overflow-x: hidden;
  }

  .navbar__wrap {
    height: 68px;
    padding: 0 20px;
  }

  .navbar__links,
  .navbar__cta {
    display: none !important;
  }

  .navbar__hamburger {
    display: flex !important;
  }

  .mobile-nav {
    top: 68px;
  }

  .contact-hero {
    padding: 50px 20px 40px;
  }

  .contact-hero__title {
    font-size: 36px;
  }

  .contact-hero__desc {
    font-size: 15px;
  }

  .contact-info {
    padding: 30px 20px;
  }

  .contact-info__grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .info-card {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .info-card__title {
    font-size: 15px;
  }

  .info-card__value {
    font-size: 13px;
  }

  .contact-main {
    padding: 10px 20px 50px;
  }

  .contact-main__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-card {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .form-card__title {
    font-size: 26px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .form-footer .btn {
    justify-content: center;
    width: 100%;
  }

  .contact-side {
    flex-direction: column;
  }

  .why-contact {
    padding: 50px 20px;
  }

  .why-contact__title {
    font-size: 30px;
  }

  .why-contact__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .contact-cta {
    padding: 40px 20px;
  }

  .contact-cta__card {
    flex-direction: column;
    padding: 40px 24px;
    border-radius: 24px;
    text-align: center;
  }

  .contact-cta__title {
    font-size: 28px;
  }

  .contact-cta__desc {
    font-size: 14px;
    max-width: 100%;
  }

  .contact-cta__actions {
    align-items: center;
  }

  .contact-cta__actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .footer__inner {
    padding: 48px 20px;
    gap: 36px;
  }

  .footer__main {
    flex-direction: column;
    gap: 32px;
  }

  .footer__contact-card {
    min-width: unset;
    width: 100%;
  }

  .footer__legal {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .map-card__embed {
    height: 220px;
  }
}