/* ============================================================
   CONTACT PAGE STYLES - NEW DESIGN
   ============================================================ */

/* ── Base ── */
.contact-page {
  background: #ffffff !important;
  color: #111 !important;
  overflow-x: hidden;
}

body:has(.contact-page) {
  overflow-x: hidden !important;
  max-width: 100vw;
}

/* ── HERO BANNER ── */
.ct__hero-banner {
  position: relative;
  min-height: auto;
  aspect-ratio: 19 / 9;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: visible;
  padding: 160px 60px 0;
  background: #111 !important;
  z-index: 20;
}

.ct__hero-banner-bg {
  position: absolute;
  inset: 0;
  background: url('/banner-4.png') center center / cover no-repeat;
  z-index: 0;
  overflow: hidden;
}

.ct__hero-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.ct__hero-banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: 40px;
  margin-bottom: 0;
  padding-left: 10px;
}

.ct__hero-banner-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888888 !important;
  margin-bottom: 48px;
}

.ct__hero-banner-kicker-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #F6BC0E;
}

.ct__hero-banner-headline {
  font-size: clamp(32px, 4.5vw, 62px);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff !important;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.ct__hero-banner-headline span {
  color: #F6BC0E !important;
  font-style: italic;
  display: block;
}

.ct__hero-banner-desc {
  font-size: clamp(14px, 1.2vw, 16px);
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.75;
  max-width: 540px;
  margin: 0;
}

/* Marquee sits at bottom */
.ct__hero-marquee {
  position: relative;
  bottom: auto;
  left: 0;
  right: 0;
  width: 100vw;
  margin-left: -60px;
  background: #F6BC0E !important;
  padding: 14px 0;
  overflow: hidden;
  z-index: 3;
  margin-top: auto;
  flex-shrink: 0;
}

.ct__hero-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 55s linear infinite;
  color: #000 !important;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ct__hero-marquee-track span {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .ct__hero-banner {
    min-height: unset;
    height: auto;
    padding: 130px 24px 0;
  }
  
  .ct__hero-banner-content {
    padding-top: 20px;
  }
  
  .ct__hero-marquee {
    margin-left: -24px;
  }
  
  .ct__hero-marquee-track {
    animation: marquee-scroll 90s linear infinite !important;
  }
}

/* Tablet only — add breathing room below text before marquee */
@media (min-width: 481px) and (max-width: 768px) {
  .ct__hero-banner-content {
    padding-bottom: 40px !important;
  }
}

@media (max-width: 480px) {
  .ct__hero-banner {
    min-height: unset;
    height: auto;
    padding: 110px 20px 0;
  }
  
  .ct__hero-banner-content {
    padding-top: 10px;
  }
  
  .ct__hero-marquee {
    margin-left: -20px;
    margin-top: 24px;
  }
  
}

@media (max-width: 320px) {
  .ct__hero-banner {
    min-height: unset;
    height: auto;
    padding: 100px 16px 0;
  }

  .ct__hero-banner-content {
    padding-top: 8px;
  }

  .ct__hero-marquee {
    margin-left: -16px;
    margin-top: 20px;
  }
}

/* ── INTRO SECTION ── */
.ct__intro-section {
  background: #ffffff !important;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 100px 60px !important;
  margin-top: 0;
  overflow: hidden !important;
}

.ct__intro-inner {
  max-width: 780px;
  margin: 0 auto;
}

.ct__intro-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F6BC0E !important;
  margin-bottom: 24px;
}

.ct__intro-kicker-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #F6BC0E;
}

.ct__intro-headline {
  font-size: clamp(32px, 4.5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  color: #111 !important;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.ct__intro-headline span {
  color: #F6BC0E !important;
  font-style: italic;
  display: block;
}

.ct__intro-desc {
  font-size: clamp(14px, 1.2vw, 16px);
  color: rgba(17, 18, 20, 0.65) !important;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .ct__intro-section {
    padding: 80px 32px !important;
    border-radius: 0 0 28px 28px;
  }
}

@media (max-width: 767px) {
  .ct__intro-section {
    padding: 60px 24px !important;
    border-radius: 0 0 24px 24px;
  }
}

/* ── MAIN CONTENT SECTION ── */
.ct__main-section {
  background: #F7F7F5 !important;
  position: relative;
  top: 0;
  z-index: 20;
  padding: 100px 60px !important;
  overflow: hidden !important;
}

.ct__main-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ct__grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 64px;
  align-items: start;
}

/* ── LEFT SIDE ── */
.ct__info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.ct__info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #ffffff !important;
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: 16px;
  padding: 20px 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.ct__info-card:hover {
  border-color: rgba(246, 188, 14, 0.25) !important;
  box-shadow: 0 4px 12px rgba(246, 188, 14, 0.1);
}

.ct__info-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(246, 188, 14, 0.1) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F6BC0E !important;
  font-size: 1rem;
  flex-shrink: 0;
}

.ct__info-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17, 18, 20, 0.35) !important;
  margin-bottom: 4px;
}

.ct__info-value {
  display: block;
  font-size: 0.98rem;
  font-weight: 600;
  color: #111 !important;
  text-decoration: none;
  transition: color 0.2s;
}

a.ct__info-value:hover {
  color: #F6BC0E !important;
}

/* Social links */
.ct__social-block {
  margin-bottom: 40px;
}

.ct__social-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17, 18, 20, 0.3) !important;
  margin-bottom: 14px;
}

.ct__social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ct__social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: #ffffff !important;
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: 12px;
  color: rgba(17, 18, 20, 0.55) !important;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.ct__social-link i,
.ct__social-link svg {
  font-size: 1rem;
  width: 20px;
  text-align: center;
  color: rgba(17, 18, 20, 0.3) !important;
  transition: color 0.25s;
}

.ct__social-link:hover {
  background: rgba(246, 188, 14, 0.07) !important;
  border-color: rgba(246, 188, 14, 0.25) !important;
  color: #111 !important;
}

.ct__social-link:hover i,
.ct__social-link:hover svg {
  color: #F6BC0E !important;
}

/* FAQ */
.ct__faq-title {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(17, 18, 20, 0.45) !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.ct__faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ct__faq-item {
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff !important;
  border: 1px solid rgba(17, 18, 20, 0.08);
  transition: border-color 0.3s;
}

.ct__faq-item--open {
  border-color: rgba(246, 188, 14, 0.2) !important;
}

.ct__faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: transparent !important;
  border: none;
  color: rgba(17, 18, 20, 0.75) !important;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.ct__faq-q:hover {
  color: #111 !important;
}

.ct__faq-item--open .ct__faq-q {
  color: #F6BC0E !important;
}

.ct__faq-q i {
  font-size: 0.75rem;
  flex-shrink: 0;
  color: rgba(17, 18, 20, 0.3) !important;
}

.ct__faq-item--open .ct__faq-q i {
  color: #F6BC0E !important;
}

.ct__faq-a {
  padding: 0 20px 16px;
}

.ct__faq-a p {
  font-size: 0.85rem;
  color: rgba(17, 18, 20, 0.48) !important;
  line-height: 1.65;
  margin: 0;
}

/* ── RIGHT: FORM CARD ── */
.ct__form-card {
  background: #ffffff !important;
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: 28px;
  padding: 48px;
  position: sticky;
  top: 100px;
  box-shadow: 0 12px 40px rgba(17, 18, 20, 0.06);
}

.ct__form-header {
  margin-bottom: 32px;
}

.ct__form-title {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: #111 !important;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.ct__form-title span {
  color: #F6BC0E !important;
  font-style: italic;
}

.ct__form-sub {
  font-size: 0.9rem;
  color: rgba(17, 18, 20, 0.42) !important;
  line-height: 1.6;
  margin: 0;
}

/* Alert */
.ct__alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 24px;
}

.ct__alert i {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.ct__alert--success {
  background: rgba(52,211,153,0.1) !important;
  border: 1px solid rgba(52,211,153,0.25);
  color: #059669 !important;
}

.ct__alert--error {
  background: rgba(239,68,68,0.1) !important;
  border: 1px solid rgba(239,68,68,0.25);
  color: #dc2626 !important;
}

/* Profile toggle */
.ct__profile-toggle {
  display: flex;
  gap: 12px;
}

.ct__profile-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(17, 18, 20, 0.12);
  background: transparent !important;
  color: rgba(17, 18, 20, 0.5) !important;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.ct__profile-btn:hover {
  border-color: rgba(246, 188, 14, 0.3) !important;
  color: rgba(17, 18, 20, 0.8) !important;
}

.ct__profile-btn--active {
  background: rgba(246, 188, 14, 0.12) !important;
  border-color: #F6BC0E !important;
  color: #F6BC0E !important;
}

/* Form groups */
.ct__form-group {
  margin-bottom: 20px;
}

.ct__form-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 20px;
  min-width: 0;
}

.ct__form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(17, 18, 20, 0.5) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ct__form-label span {
  color: #F6BC0E !important;
}

.ct__input {
  width: 100%;
  background: rgba(17, 18, 20, 0.04) !important;
  border: 1px solid rgba(17, 18, 20, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  color: #111 !important;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  -webkit-appearance: none;
  appearance: none;
}

.ct__input::placeholder {
  color: rgba(17, 18, 20, 0.22) !important;
}

.ct__input:focus {
  border-color: rgba(246, 188, 14, 0.5) !important;
  background: rgba(246, 188, 14, 0.03) !important;
}

.ct__input--error {
  border-color: rgba(239,68,68,0.5) !important;
}

.ct__input-error {
  color: #dc2626 !important;
  font-size: 0.75rem;
  margin-top: 6px;
  display: block;
}

/* Phone Input Styling */
.ct__phone-input {
  width: 100%;
  position: relative;
  overflow: visible;
}

.ct__phone-input .react-tel-input {
  width: 100%;
  position: relative;
}

.ct__phone-input .ct__phone-input-field {
  width: 100%;
  background: rgba(17, 18, 20, 0.04) !important;
  border: 1px solid rgba(17, 18, 20, 0.1);
  border-radius: 12px;
  padding: 14px 18px 14px 58px;
  color: #111 !important;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  -webkit-appearance: none;
  appearance: none;
  height: 48px;
}

.ct__phone-input .ct__phone-input-field::placeholder {
  color: rgba(17, 18, 20, 0.22) !important;
}

.ct__phone-input .ct__phone-input-field:focus {
  border-color: rgba(246, 188, 14, 0.5) !important;
  background: rgba(246, 188, 14, 0.03) !important;
}

.ct__phone-input.ct__input--error .ct__phone-input-field {
  border-color: rgba(239,68,68,0.5) !important;
}

.ct__phone-input .ct__phone-input-button {
  background: transparent !important;
  border: none;
  border-radius: 12px 0 0 12px;
  padding: 0 12px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 48px;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 1;
  box-shadow: none;
}

.ct__phone-input .ct__phone-input-button:hover,
.ct__phone-input .ct__phone-input-button:focus,
.ct__phone-input .ct__phone-input-button:active {
  background: transparent !important;
  outline: none;
  box-shadow: none;
  border: none;
}

.ct__phone-input .selected-flag:hover,
.ct__phone-input .selected-flag:focus {
  background: transparent !important;
  outline: none;
}

.ct__phone-input .flag-dropdown:hover,
.ct__phone-input .flag-dropdown:focus {
  background: transparent !important;
  outline: none;
}

.ct__phone-input .selected-flag {
  background: transparent !important;
  outline: none;
  border: none;
}

.ct__phone-input .flag-dropdown {
  background: transparent !important;
  border: none;
}

.ct__phone-input .ct__phone-input-button .flag {
  transform: scale(1.2);
}

.ct__phone-input .ct__phone-input-button .arrow {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(17, 18, 20, 0.4);
  margin-right: 6px;
}

.ct__phone-input .ct__phone-input-dropdown {
  background: #ffffff !important;
  border: 1px solid rgba(17, 18, 20, 0.1);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  margin-top: 4px;
  max-height: 220px;
  overflow-y: auto;
  z-index: 9999 !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  width: 300px !important;
}

.ct__phone-input .ct__phone-input-dropdown .search {
  background: rgba(17, 18, 20, 0.04) !important;
  border: 1px solid rgba(17, 18, 20, 0.1) !important;
  border-radius: 8px !important;
  color: #111 !important;
  padding: 8px 12px !important;
  margin: 8px !important;
  width: calc(100% - 16px) !important;
  outline: none !important;
  font-size: 0.88rem !important;
  box-shadow: none !important;
}

.ct__phone-input .ct__phone-input-dropdown .search::placeholder {
  color: rgba(17, 18, 20, 0.3) !important;
}

.ct__phone-input .ct__phone-input-dropdown .country {
  padding: 10px 14px !important;
  color: rgba(17, 18, 20, 0.7) !important;
  display: flex !important;
  align-items: center !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  font-size: 0.88rem !important;
}

.ct__phone-input .ct__phone-input-dropdown .country:hover {
  background: rgba(246, 188, 14, 0.1) !important;
  color: #111 !important;
}

.ct__phone-input .ct__phone-input-dropdown .country.highlight {
  background: rgba(246, 188, 14, 0.15) !important;
  color: #F6BC0E !important;
}

.ct__phone-input .ct__phone-input-dropdown .country .flag {
  margin-right: 10px !important;
}

.ct__phone-input .ct__phone-input-dropdown .country .country-name {
  margin-right: 8px !important;
  color: #111 !important;
}

.ct__phone-input .ct__phone-input-dropdown .country .dial-code {
  color: rgba(17, 18, 20, 0.4) !important;
}

.ct__phone-input .ct__phone-input-dropdown::-webkit-scrollbar {
  width: 6px;
}

.ct__phone-input .ct__phone-input-dropdown::-webkit-scrollbar-track {
  background: rgba(17, 18, 20, 0.05) !important;
  border-radius: 3px;
}

.ct__phone-input .ct__phone-input-dropdown::-webkit-scrollbar-thumb {
  background: rgba(246, 188, 14, 0.3) !important;
  border-radius: 3px;
}

.ct__phone-input .ct__phone-input-dropdown::-webkit-scrollbar-thumb:hover {
  background: rgba(246, 188, 14, 0.5) !important;
}

.ct__textarea {
  resize: vertical;
  min-height: 130px;
}

/* Submit button */
.ct__submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: #000000 !important;
  color: #ffffff !important;
  border: none;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.ct__submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #F6BC0E;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.7s ease, height 0.7s ease;
  z-index: -1;
}

.ct__submit-btn:hover:not(:disabled)::before {
  width: 400px;
  height: 400px;
}

.ct__submit-btn:hover:not(:disabled) {
  background: transparent !important;
  color: #000000 !important;
  box-shadow: 0 4px 12px rgba(250, 204, 21, 0.3);
}

.ct__submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.ct__form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(17, 18, 20, 0.25) !important;
  justify-content: center;
  margin: 0;
}

.ct__form-note i {
  color: rgba(246, 188, 14, 0.4) !important;
  font-size: 0.7rem;
}

@media (max-width: 1024px) {
  .ct__grid {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }

  .ct__form-card {
    position: static !important;
  }

  .ct__main-section {
    padding: 80px 32px !important;
  }
}

@media (max-width: 767px) {
  .ct__form-card {
    padding: 32px 24px !important;
  }

  .ct__main-section {
    padding: 40px 20px 28px !important;
    margin-bottom: 0 !important;
    border-radius: 0 0 24px 24px;
  }
}

@media (max-width: 480px) {
  .ct__profile-toggle {
    flex-direction: column !important;
  }

  .ct__main-section {
    padding: 28px 16px 28px !important;
    margin-bottom: 0 !important;
  }

  .ct__grid {
    gap: 20px !important;
  }

  .ct__right {
    margin-bottom: 0 !important;
  }

  .ct__form-card {
    padding: 24px 16px !important;
    border-radius: 20px !important;
    margin-bottom: 0 !important;
  }

  .ct__info-card {
    padding: 14px 16px !important;
    gap: 12px !important;
    border-radius: 12px !important;
  }

  .ct__info-icon {
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px !important;
    font-size: 0.85rem !important;
    flex-shrink: 0 !important;
  }

  .ct__info-label {
    font-size: 0.62rem !important;
    margin-bottom: 2px !important;
  }

  .ct__info-value {
    font-size: 0.85rem !important;
  }

  .ct__info-cards {
    gap: 10px !important;
    margin-bottom: 24px !important;
  }
}

@media (max-width: 320px) {
  .ct__main-section {
    padding: 20px 12px 20px !important;
    margin-bottom: 0 !important;
  }

  .ct__grid {
    gap: 16px !important;
  }

  .ct__form-card {
    padding: 20px 14px !important;
    border-radius: 16px !important;
  }

  .ct__info-card {
    padding: 12px 14px !important;
    gap: 10px !important;
  }

  .ct__info-icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.78rem !important;
  }

  .ct__info-label {
    font-size: 0.6rem !important;
  }

  .ct__info-value {
    font-size: 0.8rem !important;
  }

  .ct__info-cards {
    gap: 8px !important;
    margin-bottom: 20px !important;
  }
}

/* ── VIBES SECTION ── */
.ct__vibes-section {
  background: #ffffff !important;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 80px 60px !important;
  margin-bottom: -60px;
  overflow: hidden !important;
}

.ct__vibes-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.ct__vibe {
  background: #F7F7F5 !important;
  border: 1px solid rgba(17, 18, 20, 0.07);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.ct__vibe:hover {
  border-color: rgba(246, 188, 14, 0.25) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(246, 188, 14, 0.1);
}

.ct__vibe-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(246, 188, 14, 0.1) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F6BC0E !important;
  font-size: 1.1rem;
  margin: 0 auto 14px;
}

.ct__vibe strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #111 !important;
  margin-bottom: 4px;
}

.ct__vibe span {
  display: block;
  font-size: 0.78rem;
  color: rgba(17, 18, 20, 0.38) !important;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .ct__vibes-inner {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .ct__vibes-section {
    padding: 60px 32px !important;
    border-radius: 0 0 28px 28px;
  }
}

@media (max-width: 767px) {
  .ct__vibes-section {
    padding: 48px 24px !important;
    border-radius: 0 0 24px 24px;
    margin-top: 0 !important;
    margin-bottom: -40px;
  }
}

@media (max-width: 480px) {
  .ct__vibes-inner {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .ct__vibes-section {
    margin-top: 0 !important;
    padding: 32px 16px !important;
  }
}

/* ── FOOTER MOBILE OVERRIDES (contact page only) ── */
@media (max-width: 767px) {
  .footer__new-logo-wrap {
    padding: 28px 24px 20px !important;
  }

  .footer__new-logo-img {
    height: clamp(40px, 8vw, 70px) !important;
  }

  .footer__new-row {
    padding: 20px 20px 24px !important;
    gap: 20px !important;
  }

  .footer__new-bottom {
    padding: 14px 20px !important;
  }
}

@media (max-width: 480px) {
  .footer__new-logo-wrap {
    padding: 20px 16px 16px !important;
  }

  .footer__new-row {
    padding: 16px 16px 20px !important;
    gap: 16px !important;
  }
}

/* ── FOOTER QUICK LINKS: block layout for 320px–450px ── */
@media (max-width: 450px) {
  .footer__new-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    align-items: flex-start !important;
  }

  .footer__new-sep {
    display: none !important;
  }

  .footer__new-links a {
    font-size: 14px !important;
    padding: 2px 0 !important;
  }
}

/* ── Phone dropdown global fix — ensure it's never clipped ── */
.react-tel-input .country-list {
  z-index: 9999 !important;
  position: absolute !important;
  background: #ffffff !important;
  border: 1px solid rgba(17, 18, 20, 0.1) !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
  max-height: 190px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  width: 300px !important;
  margin-top: 4px !important;
  padding: 0 !important;
}

/* Search field — sticky at top, NOT overlapping list items */
.react-tel-input .country-list .search {
  position: sticky !important;
  top: 0 !important;
  z-index: 2 !important;
  display: block !important;
  padding: 10px 12px !important;
  margin: 0 !important;
  width: 100% !important;
  border: none !important;
  border-bottom: 1px solid rgba(17, 18, 20, 0.08) !important;
  border-radius: 12px 12px 0 0 !important;
  background: #ffffff !important;
  color: #111 !important;
  font-size: 0.88rem !important;
  outline: none !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

.react-tel-input .country-list .search-emoji {
  display: none !important;
}

.react-tel-input .country-list .country {
  padding: 9px 14px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 0.88rem !important;
  color: rgba(17, 18, 20, 0.75) !important;
  cursor: pointer !important;
  position: relative !important;
  z-index: 1 !important;
}

.react-tel-input .country-list .country:hover,
.react-tel-input .country-list .country.highlight {
  background: rgba(246, 188, 14, 0.1) !important;
  color: #111 !important;
}

.react-tel-input .country-list .country .country-name {
  color: #111 !important;
}

.react-tel-input .country-list .country .dial-code {
  color: rgba(17, 18, 20, 0.4) !important;
}

/* Hide the custom cursor inside phone dropdown */
.react-tel-input .country-list,
.react-tel-input .country-list * {
  cursor: pointer !important;
}

/* Hide site custom cursor inside dropdown */
.react-tel-input .country-list ~ .cursor1,
.react-tel-input .country-list ~ .cursor2 {
  display: none !important;
}

/* Hide custom site cursor when phone dropdown is open */
.react-tel-input .flag-dropdown.open ~ * .cursor1,
.react-tel-input .flag-dropdown.open ~ * .cursor2 {
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Ensure dropdown list items have proper layout — no overlap with search */
.react-tel-input .country-list li.search {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  position: sticky !important;
  top: 0 !important;
  background: #fff !important;
  z-index: 10 !important;
}

.react-tel-input .country-list li.search input {
  width: 100% !important;
  padding: 10px 14px !important;
  border: none !important;
  border-bottom: 1px solid rgba(17,18,20,0.08) !important;
  border-radius: 12px 12px 0 0 !important;
  background: #fff !important;
  font-size: 0.88rem !important;
  color: #111 !important;
  outline: none !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  margin: 0 !important;
}
