/* ============================================
   Contact Page — Hero
   ============================================ */
.cnt-hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  color: #fff;
  padding-top: 7rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .cnt-hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
  }
}

.cnt-hero-bg {
  position: absolute;
  inset: 0;
}

.cnt-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.cnt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--background), color-mix(in oklab, var(--background) 85%, transparent), color-mix(in oklab, var(--background) 55%, transparent));
}

.cnt-hero-radial-1,
.cnt-hero-radial-2 {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cnt-hero-radial-1 {
  background: radial-gradient(circle at 75% 25%, rgba(212, 175, 55, 0.18), transparent 55%);
}

.cnt-hero-radial-2 {
  background: radial-gradient(circle at 10% 90%, rgba(212, 175, 55, 0.10), transparent 45%);
}

.cnt-hero .container-prose {
  position: relative;
}

.cnt-hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .cnt-hero-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
  }
}

.cnt-hero-title {
  font-size: 2.25rem;
  line-height: 1.05;
  color: #fff;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .cnt-hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .cnt-hero-title { font-size: 3.75rem; }
}

.cnt-hero-title .highlight {
  color: var(--gold);
}

.cnt-hero-desc {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.625;
}

@media (min-width: 768px) {
  .cnt-hero-desc { font-size: 1.25rem; }
}

.cnt-hero-image {
  position: relative;
  display: none;
}

@media (min-width: 1024px) {
  .cnt-hero-image { display: block; }
}

.cnt-hero-glow {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--gradient-gold);
  opacity: 0.2;
  filter: blur(64px);
  border-radius: 1.5rem;
  pointer-events: none;
}

.cnt-hero-img {
  position: relative;
  border-radius: 1rem;
  box-shadow: var(--shadow-elegant);
  width: 100%;
  max-height: 60vh;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   Contact Grid
   ============================================ */
.cnt-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .cnt-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.cnt-sidebar { grid-column: span 2; }
.cnt-form-wrap { grid-column: span 3; }

@media (max-width: 1023px) {
  .cnt-sidebar,
  .cnt-form-wrap { grid-column: span 1; }
}

/* ============================================
   Contact Card
   ============================================ */
.cnt-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}

.cnt-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.cnt-list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
}

.cnt-list li {
  display: flex;
  gap: 0.75rem;
}

.cnt-list svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
}

.cnt-list a {
  transition: color 0.2s;
}

.cnt-list a:hover {
  color: var(--foreground);
}

/* ============================================
   WhatsApp Card
   ============================================ */
.cnt-whatsapp {
  display: block;
  background: var(--gradient-gold);
  color: var(--navy);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-gold);
  transition: transform 0.2s;
}

.cnt-whatsapp:hover {
  transform: scale(1.02);
}

.cnt-whatsapp svg {
  width: 1.75rem;
  height: 1.75rem;
  margin-bottom: 0.75rem;
}

.cnt-whatsapp h3 {
  font-weight: 700;
  font-size: 1.125rem;
}

.cnt-whatsapp p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.8);
}

/* ============================================
   Consultation Card
   ============================================ */
.cnt-consult {
  background: var(--gradient-navy);
  color: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
}

.cnt-consult h3 {
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
}

.cnt-consult p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================
   Contact Form
   ============================================ */
.cnt-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .cnt-form { padding: 2.5rem; }
}

.cnt-form h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.cnt-form > p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.form-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.25rem;
}

.form-grid .form-select {
  height: auto;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  line-height: 1.4;
  min-height: 2.75rem;
}

@media (min-width: 640px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); }
}

.cnt-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
}

/* ============================================
   intl-tel-input Dark Theme
   ============================================ */
.iti {
  width: 100%;
  position: relative;
}

.iti__country-container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

.iti__selected-country {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-right: none;
  border-radius: 0.375rem 0 0 0.375rem;
  padding: 0 0.5rem 0 0.625rem;
  height: 100%;
  display: flex;
  align-items: center;
  transition: border-color 0.2s;
  cursor: pointer;
  box-sizing: border-box;
}

.iti--allow-dropdown .iti__selected-country:hover {
  background: rgba(255, 255, 255, 0.05);
}

.iti--focus .iti__selected-country {
  border-color: var(--gold);
}

.iti__selected-country-primary {
  color: var(--foreground);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.iti__arrow {
  margin-left: 0.125rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--foreground);
}

.iti__flag {
  border-radius: 1px;
  transform: scale(0.9);
}

.iti__country-list {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-elegant);
  backdrop-filter: blur(8px);
  margin-top: 0.25rem;
}

.iti__search-input {
  background: var(--card);
  color: var(--foreground);
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  margin: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  width: calc(100% - 1rem);
  box-sizing: border-box;
}

.iti__search-input::placeholder {
  color: var(--muted-foreground);
}

.iti__search-input:focus {
  outline: none;
  border-color: var(--gold);
}

.iti__country {
  color: var(--foreground);
  font-size: 0.8125rem;
  padding: 0.5rem 0.75rem;
}

.iti__country:hover {
  background: var(--muted);
}

.iti__country.iti__highlight {
  background: var(--muted);
}

.iti__country-name {
  color: var(--foreground);
}

.iti__dial-code {
  color: var(--muted-foreground);
}

.iti__divider {
  border-bottom: 1px solid var(--border);
}

.iti input.form-input,
.iti input#phone {
  border-radius: 0.375rem;
  border: 2px solid rgba(255, 255, 255, 0.25);
  margin-top: 0;
  padding: 0.625rem 0.75rem 0.625rem 5.2rem;
  height: auto;
  box-sizing: border-box;
  width: 100%;
}

.iti input.form-input:focus,
.iti input#phone:focus {
  border-color: var(--gold);
  outline: none;
}

/* ============================================
   Success Message
   ============================================ */
.cnt-success {
  text-align: center;
  padding: 2.5rem 1rem;
}

.cnt-success-icon {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 9999px;
  background: var(--gradient-gold);
  color: var(--navy);
}

.cnt-success h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.cnt-success p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}