@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

.cursor-glow {
  position: fixed;
  width: 24px;
  height: 24px;
  pointer-events: none;
  z-index: 50;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(242, 144, 36, 0.2), rgba(134, 62, 10, 0.2));
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-shell:hover {
  transform: scale(1.02);
}

.icon-sm,
.icon-md {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-sm svg {
  width: 1rem;
  height: 1rem;
}

.icon-md svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-input {
  width: 100%;
  border: 2px solid color-mix(in oklab, var(--primary) 20%, transparent);
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(5, 48, 91, 0.08);
}

.contact-select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-textarea {
  min-height: 120px;
  resize: vertical;
}

.toast-message {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: 360px;
  padding: 0.9rem 1rem;
  border-radius: 0.875rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.hidden {
  display: none !important;
}

.site-header-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  flex: 1 1 auto;
  visibility: visible !important;
  opacity: 1 !important;
}

.site-header-nav button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: var(--foreground, #111827) !important;
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(5, 48, 91, 0.12) !important;
  border-radius: 0.75rem !important;
  padding: 0.55rem 1rem !important;
  min-height: 2.5rem !important;
  white-space: nowrap !important;
}

.site-header-nav #language-toggle,
.site-header-nav #language-toggle-mobile {
  background: var(--primary, #05305b) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  min-width: 4.25rem !important;
  min-height: 2.5rem !important;
  padding: 0.5rem 1rem !important;
  border-radius: 0.75rem !important;
  font-weight: 500 !important;
}

.site-header-nav button:hover {
  background: linear-gradient(to right, color-mix(in oklab, var(--secondary, #f29024) 90%, white), color-mix(in oklab, var(--accent, #863e0a) 90%, white)) !important;
  border-color: transparent !important;
  color: #ffffff !important;
}

.site-header-nav #language-toggle:hover,
.site-header-nav #language-toggle-mobile:hover {
  background: color-mix(in oklab, var(--primary, #05305b) 88%, white) !important;
  color: #ffffff !important;
}

.site-mobile-toggle {
  display: none !important;
}

@media (max-width: 767px) {
  .site-header-nav {
    display: none !important;
  }

  .site-mobile-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    min-height: 3rem;
    color: var(--foreground, #111827) !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(5, 48, 91, 0.12) !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
  }

  .site-mobile-menu {
    border-color: rgba(5, 48, 91, 0.1);
  }

  .site-mobile-menu > div {
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.94);
    padding: 0.5rem;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  }

  .site-mobile-menu button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    color: var(--foreground, #111827) !important;
    background: transparent !important;
    border: 1px solid transparent !important;
  }

  .site-mobile-menu button:hover {
    background: linear-gradient(to right, color-mix(in oklab, var(--secondary, #f29024) 90%, white), color-mix(in oklab, var(--accent, #863e0a) 90%, white)) !important;
    border-color: transparent !important;
    color: #ffffff !important;
  }

  .site-mobile-menu #language-toggle-mobile {
    justify-content: center;
    width: 100%;
    background: var(--primary, #05305b) !important;
    color: #ffffff !important;
  }
}

.footer-new {
  --footer-primary: #b8491f;
  --footer-secondary: #831f82;
  --footer-white: #ffffff;
  --footer-gray-300: #d4d4d4;
  --footer-gray-400: #a3a3a3;
  --footer-gray-500: #737373;
  --footer-gray-800: #262626;
  --footer-gray-900: #171717;
  background: var(--footer-gray-900);
  color: var(--footer-gray-300);
  font-family: 'Inter', sans-serif;
}

.footer-new__main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.footer-new__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.footer-new__about {
  max-width: 100%;
}

.footer-new__brand {
  margin: 0 0 1rem;
  color: var(--footer-white);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.footer-new__brand span {
  color: var(--footer-primary);
}

.footer-new__description,
.footer-new__rating {
  color: var(--footer-gray-400);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.footer-new__rating {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.footer-new__star {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--footer-primary);
  flex: 0 0 auto;
}

.footer-new__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.footer-new__logo-card {
  /* background: rgba(255, 255, 255, 0.05); */
  background: linear-gradient(180deg, rgba(15, 59, 104, 0.08), rgba(15, 59, 104, 0.14));
  padding: 12px;
  border-radius: 8px;
  flex: 1 1 0;
  min-width: 100px;
  max-width: 150px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-new__logo-card img {
  width: 80%;
  height: auto;
  object-fit: contain;
}

.footer-new__logo-card--text span {
  color: var(--footer-white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer-new__heading,
.footer-new__subheading {
  color: var(--footer-white);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
  padding-left: 1rem;
  position: relative;
}

.footer-new__subheading {
  text-transform: none;
  letter-spacing: 0;
}

.footer-new__heading::before,
.footer-new__subheading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--footer-primary), var(--footer-secondary));
}

.footer-new__stack {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-new__stack--links {
  gap: 0.625rem;
}

.footer-new__link,
.footer-new__text-link,
.footer-new__bottom-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-new__link:hover,
.footer-new__text-link:hover,
.footer-new__bottom-link:hover {
  color: var(--footer-white);
}

.footer-new__link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.footer-new__link--block {
  align-items: flex-start;
}

.footer-new__icon {
  width: 1rem;
  height: 1rem;
  color: var(--footer-primary);
  flex: 0 0 auto;
  margin-top: 0.125rem;
}

.footer-new__socials {
  margin-top: 1.5rem;
}

.footer-new__social-list {
  display: flex;
  gap: 0.5rem;
}

.footer-new__social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: var(--footer-gray-300);
  transition: background 0.3s ease, color 0.3s ease;
}

.footer-new__social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--footer-white);
}

.footer-new__social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-new__text-link {
  position: relative;
  padding-left: 1rem;
}

.footer-new__text-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: linear-gradient(to bottom, var(--footer-primary), var(--footer-secondary));
}

.footer-new__text-link:hover::before {
  opacity: 1;
}

.footer-new__bottom {
  border-top: 1px solid var(--footer-gray-800);
}

.footer-new__bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  color: var(--footer-gray-500);
}

.footer-new__bottom-link {
  color: var(--footer-white);
}

@media (min-width: 768px) {
  .footer-new__bottom-inner {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .footer-new__grid {
    grid-template-columns: 2fr 1fr 1fr;
    align-items: start;
  }
}

.contact-input {
  background: rgba(255, 255, 255, 0.92);
  color: var(--foreground, #111827);
  font-size: 1rem;
  line-height: 1.4;
}

.contact-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 3.25rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 1rem center;
  background-size: 1rem 1rem;
  background-repeat: no-repeat;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.contact-select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2305305b' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}

.contact-select option {
  background: #ffffff;
  color: #1f2937;
  padding: 0.8rem 0.9rem;
}

.contact-select option:checked,
.contact-select option:hover {
  background: #9c520d;
  color: #ffffff;
}

.contact-select {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  padding-left: 0.9rem;
  padding-right: 3rem;
  font-size: 0.95rem;
}

.contact-select option:hover,
.contact-select option:focus,
.contact-select option:checked {
  background: #9c520d;
  color: #ffffff;
}

.contact-select option,
.contact-select option:hover,
.contact-select option:focus,
.contact-select option:active,
.contact-select option:checked {
  background: #9c520d !important;
  background-color: #9c520d !important;
  color: #ffffff !important;
}

.contact-select option {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #1f2937 !important;
}

.contact-select option:hover,
.contact-select option:focus,
.contact-select option:active {
  background: #9c520d !important;
  background-color: #9c520d !important;
  color: #ffffff !important;
}

.custom-select {
  position: relative;
}

.custom-select-native {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.custom-select-trigger {
  width: 100%;
  min-height: 3.5rem;
  padding: 0.9rem 2.9rem 0.9rem 0.95rem;
  border: 2px solid color-mix(in oklab, var(--primary) 20%, transparent);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: #64748b;
  font: inherit;
  font-size: 0.95rem;
  line-height: 1.4;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.custom-select.has-value .custom-select-trigger {
  color: #111827;
}

.custom-select.is-open .custom-select-trigger,
.custom-select-trigger:focus-visible {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(5, 48, 91, 0.08);
}

.custom-select-icon {
  color: #94a3b8;
  font-size: 0.8rem;
  flex: 0 0 auto;
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  right: 0;
  z-index: 40;
  display: none;
  padding: 0.35rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid rgba(5, 48, 91, 0.12);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.16);
}

.custom-select.is-open .custom-select-menu {
  display: block;
}

.custom-select-option {
  width: 100%;
  border: 0;
  background: transparent;
  color: #1f2937;
  text-align: left;
  font: inherit;
  font-size: 0.95rem;
  line-height: 1.35;
  padding: 0.8rem 0.9rem;
  border-radius: 0.65rem;
  cursor: pointer;
}

.custom-select-option:hover,
.custom-select-option:focus-visible,
.custom-select-option.is-selected {
  outline: none;
  background: #9c520d;
  color: #ffffff;
}

.custom-select-trigger {
  min-height: 3.25rem;
  padding: 0.85rem 2.75rem 0.85rem 0.9rem;
  font-size: 0.9rem;
  line-height: 1.2;
}

.custom-select-label {
  display: block;
  flex: 1 1 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.custom-select-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  margin-left: 0.5rem;
}

#contact .grid.lg\:grid-cols-2.gap-16.items-start {
  align-items: start;
}

#contact .mx-auto.md\:mx-0 > div:first-child {
  background: rgba(255, 255, 255, 0.96) !important;
  border: 1px solid rgba(5, 48, 91, 0.10) !important;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.10) !important;
  border-radius: 1.4rem !important;
  backdrop-filter: none !important;
}

#contact .px-6.pt-6 {
  padding: 1.6rem 1.6rem 0.75rem !important;
}

#contact .px-6.pt-6 h2 {
  margin: 0 0 0.55rem;
  color: #05305b;
  font-size: 1.55rem;
  font-weight: 700;
}

#contact .px-6.pt-6 p {
  margin: 0;
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.6;
}

#contact .px-6.pb-6 {
  padding: 1.35rem 1.6rem 1.6rem !important;
}

#contact-form {
  gap: 1.65rem;
}

#contact-form .space-y-3 {
  display: grid;
  gap: 0.7rem;
}

#contact-form label {
  color: rgba(31, 41, 55, 0.86) !important;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}

.contact-input,
.custom-select-trigger {
  min-height: 3rem;
  border: 2px solid #cbd5e1 !important;
  border-radius: 0.8rem !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

.contact-input {
  padding: 0.8rem 0.95rem !important;
  color: #475569;
}

.contact-input::placeholder,
.contact-textarea::placeholder,
.custom-select-trigger {
  color: #6b7280;
}

.contact-input:focus,
.custom-select.is-open .custom-select-trigger,
.custom-select-trigger:focus-visible {
  border-color: #05305b !important;
  box-shadow: 0 0 0 2px rgba(5, 48, 91, 0.05) !important;
}

.contact-textarea {
  min-height: 3.75rem;
  height: 3.75rem;
  resize: none;
}

#goals.contact-textarea,
#challenges.contact-textarea {
  min-height: 3.9rem;
  height: 3.9rem;
}

.custom-select {
  width: 100%;
}

.custom-select-trigger {
  padding: 0.78rem 2.7rem 0.78rem 0.9rem !important;
  font-size: 0.95rem !important;
  line-height: 1.35 !important;
}

.custom-select-icon {
  color: #9ca3af !important;
}

.custom-select-menu {
  border: 1px solid rgba(203, 213, 225, 0.95) !important;
  border-radius: 0.95rem !important;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12) !important;
}

.custom-select-option {
  font-size: 0.95rem !important;
}

#contact-submit {
  min-height: 3.25rem;
  padding: 0.95rem 1.35rem !important;
  border-radius: 0.8rem !important;
  background: linear-gradient(90deg, #f29024 0%, #9c520d 100%) !important;
  box-shadow: none !important;
  font-size: 1rem !important;
  font-weight: 700;
}

#contact-submit:hover {
  filter: brightness(0.98);
}

#contact-submit .icon-sm {
  margin-left: 0.9rem !important;
}

@media (max-width: 768px) {
  #contact .px-6.pt-6,
  #contact .px-6.pb-6 {
    padding-left: 1.1rem !important;
    padding-right: 1.1rem !important;
  }
}

#contact-form .grid.grid-cols-1.md\:grid-cols-2.gap-6.md\:items-end {
  align-items: start !important;
}

#contact-form .grid.grid-cols-1.md\:grid-cols-2.gap-6.md\:items-end > .space-y-3 {
  min-width: 0;
}

#contact-form .grid.grid-cols-1.md\:grid-cols-2.gap-6.md\:items-end .custom-select {
  display: block;
  width: 100%;
}

#contact-form .grid.grid-cols-1.md\:grid-cols-2.gap-6.md\:items-end .custom-select-trigger {
  width: 100%;
  min-height: 3.4rem;
  border-radius: 0.95rem !important;
}

@media (min-width: 768px) {
  #contact-form .grid.grid-cols-1.md\:grid-cols-2.gap-6.md\:items-end {
    column-gap: 1.5rem !important;
  }
}

.custom-select,
.custom-select-trigger {
  box-sizing: border-box;
}

@media (min-width: 768px) {
  #contact-form .grid.grid-cols-1.md\:grid-cols-2.gap-6.md\:items-end {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1.5rem !important;
  }

  #contact-form .grid.grid-cols-1.md\:grid-cols-2.gap-6.md\:items-end > .space-y-3 {
    flex: 1 1 0 !important;
    width: 0 !important;
    min-width: 0 !important;
  }

  #contact-form .grid.grid-cols-1.md\:grid-cols-2.gap-6.md\:items-end .custom-select,
  #contact-form .grid.grid-cols-1.md\:grid-cols-2.gap-6.md\:items-end .custom-select-trigger {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (min-width: 768px) {
  #contact-form .grid.grid-cols-1.md\:grid-cols-2.gap-6.md\:items-end > .space-y-3:first-child {
    padding-right: 0.75rem !important;
  }

  #contact-form .grid.grid-cols-1.md\:grid-cols-2.gap-6.md\:items-end > .space-y-3:last-child {
    padding-left: 0.75rem !important;
  }
}

.contact-select-row {
  align-items: start !important;
}

.contact-select-col {
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-select-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    column-gap: 1.5rem !important;
    row-gap: 1.5rem !important;
  }

  .contact-select-row .contact-select-col {
    padding: 0 !important;
    margin: 0 !important;
  }

  .contact-select-row .custom-select,
  .contact-select-row .custom-select-trigger,
  .contact-select-row .contact-select-col > select {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (min-width: 768px) {
  .contact-select-row .contact-select-col:first-child .custom-select-trigger {
    margin-right: 0.75rem !important;
  }

  .contact-select-row .contact-select-col:last-child .custom-select-trigger {
    margin-left: 0.75rem !important;
  }
}

@media (min-width: 768px) {
  .contact-select-row .contact-select-col:first-child .custom-select-trigger {
    width: calc(100% - 0.75rem) !important;
    margin-right: auto !important;
    margin-left: 0 !important;
  }

  .contact-select-row .contact-select-col:last-child .custom-select-trigger {
    width: calc(100% - 0.75rem) !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }
}

@media (min-width: 768px) {
  .contact-select-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 1.5rem !important;
  }

  .contact-select-row .contact-select-col {
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .contact-select-row .contact-select-col .contact-select {
    width: 100% !important;
    display: block !important;
    position: static !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
}

.contact-select-row .custom-select {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.contact-select-row .custom-select-paired {
  display: block !important;
}

.contact-select-row .custom-select .custom-select-native {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  pointer-events: none !important;
  display: block !important;
}

.contact-select-row .custom-select .custom-select-trigger {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

@media (min-width: 768px) {
  .contact-select-row .contact-select-col {
    min-width: 0 !important;
  }

  .contact-select-row .contact-select-col .custom-select-paired {
    display: block !important;
    width: calc(100% - 12px) !important;
    max-width: calc(100% - 12px) !important;
  }

  .contact-select-row .contact-select-col:first-child .custom-select-paired {
    margin-right: auto !important;
    margin-left: 0 !important;
  }

  .contact-select-row .contact-select-col:last-child .custom-select-paired {
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  .contact-select-row .contact-select-col .custom-select-paired .custom-select-trigger {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .contact-select-row .contact-select-col .custom-select-paired .custom-select-native {
    position: absolute !important;
    inset: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

@media (min-width: 768px) {
  .contact-select-row .contact-select-col:first-child .custom-select-paired .custom-select-trigger {
    width: calc(100% - 12px) !important;
    max-width: calc(100% - 12px) !important;
    margin-right: auto !important;
    margin-left: 0 !important;
  }

  .contact-select-row .contact-select-col:last-child .custom-select-paired .custom-select-trigger {
    width: calc(100% - 12px) !important;
    max-width: calc(100% - 12px) !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }
}

.contact-select-row {
  display: flex !important;
  flex-wrap: wrap;
  gap: 24px !important;
  align-items: flex-start !important;
}

.contact-select-row .contact-select-col {
  flex: 1 1 0;
  min-width: 0 !important;
  width: calc(50% - 12px) !important;
  max-width: calc(50% - 12px) !important;
}

.paired-select-host {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.paired-select-native {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.paired-select-trigger {
  width: 100% !important;
  min-height: 3.4rem;
  padding: 0.78rem 2.7rem 0.78rem 0.9rem;
  border: 2px solid #cbd5e1 !important;
  border-radius: 0.95rem !important;
  background: #ffffff !important;
  color: #6b7280;
  font: inherit;
  font-size: 0.95rem;
  line-height: 1.35;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  box-sizing: border-box;
  box-shadow: none !important;
}

.paired-select-host.has-value .paired-select-trigger {
  color: #111827;
}

.paired-select-host.is-open .paired-select-trigger,
.paired-select-trigger:focus-visible {
  outline: none;
  border-color: #05305b !important;
  box-shadow: 0 0 0 2px rgba(5, 48, 91, 0.05) !important;
}

.paired-select-icon {
  color: #9ca3af;
  font-size: 0.8rem;
  flex: 0 0 auto;
}

.paired-select-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  right: 0;
  z-index: 60;
  display: none;
  padding: 0.35rem;
  border-radius: 0.95rem;
  background: #ffffff;
  border: 1px solid rgba(203, 213, 225, 0.95);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}

.paired-select-host.is-open .paired-select-menu {
  display: block;
}

.paired-select-option {
  width: 100%;
  border: 0;
  background: transparent;
  color: #1f2937;
  text-align: left;
  font: inherit;
  font-size: 0.95rem;
  line-height: 1.35;
  padding: 0.8rem 0.9rem;
  border-radius: 0.65rem;
  cursor: pointer;
}

.paired-select-option:hover,
.paired-select-option:focus-visible,
.paired-select-option.is-selected {
  outline: none;
  background: #9c520d;
  color: #ffffff;
}

@media (max-width: 767px) {
  .contact-select-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }

  .contact-select-row .contact-select-col {
    flex: 1 1 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .contact-select-row .contact-select-col > .paired-select-host,
  .contact-select-row .contact-select-col > .custom-select,
  .contact-select-row .contact-select-col > select.contact-select,
  .contact-select-row .contact-select-col .paired-select-trigger,
  .contact-select-row .contact-select-col .custom-select-trigger {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
}

.contact-select-row .contact-select-col > select.contact-select.paired-select-native {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  pointer-events: none !important;
  display: block !important;
}

.contact-select-row .contact-select-col > .paired-select-host {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
}

.paired-select-host > select.contact-select.paired-select-native {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  display: block !important;
  margin: 0 !important;
}

.paired-select-host {
  min-height: 3rem !important;
}

.paired-select-trigger {
  min-height: 3rem !important;
  height: 3rem !important;
  padding: 0.8rem 2.7rem 0.8rem 0.95rem !important;
  line-height: 1.2 !important;
  border-radius: 0.8rem !important;
}

.paired-select-label {
  display: block;
  flex: 1 1 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .contact-select-row .contact-select-col > label {
    display: block;
    width: calc(100% - 12px) !important;
    max-width: calc(100% - 12px) !important;
  }

  .contact-select-row .contact-select-col:first-child > label {
    margin-right: auto !important;
    margin-left: 0 !important;
  }

  .contact-select-row .contact-select-col:last-child > label {
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  .contact-select-row .contact-select-col:first-child > .paired-select-host {
    width: calc(100% - 12px) !important;
    max-width: calc(100% - 12px) !important;
    margin-right: auto !important;
    margin-left: 0 !important;
  }

  .contact-select-row .contact-select-col:last-child > .paired-select-host {
    width: calc(100% - 12px) !important;
    max-width: calc(100% - 12px) !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 1300px) {
  #contact-form .contact-select-row.grid.grid-cols-1.md\:grid-cols-2.gap-6.md\:items-end {
    gap: 1.5rem !important;
  }

  #contact-form .contact-select-row.grid.grid-cols-1.md\:grid-cols-2.gap-6.md\:items-end > .space-y-3,
  #contact-form .contact-select-row.grid.grid-cols-1.md\:grid-cols-2.gap-6.md\:items-end > .space-y-3:first-child,
  #contact-form .contact-select-row.grid.grid-cols-1.md\:grid-cols-2.gap-6.md\:items-end > .space-y-3:last-child {
    width: 100% !important;
    min-width: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  .contact-select-row {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 1.5rem !important;
  }

  .contact-select-row .contact-select-col {
    flex: 1 1 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .contact-select-row .contact-select-col > label,
  .contact-select-row .contact-select-col > .paired-select-host,
  .contact-select-row .contact-select-col > .custom-select,
  .contact-select-row .contact-select-col > select.contact-select,
  .contact-select-row .contact-select-col .paired-select-trigger,
  .contact-select-row .contact-select-col .custom-select-trigger {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .contact-select-row .contact-select-col:first-child > label,
  .contact-select-row .contact-select-col:last-child > label,
  .contact-select-row .contact-select-col:first-child > .paired-select-host,
  .contact-select-row .contact-select-col:last-child > .paired-select-host,
  .contact-select-row .contact-select-col:first-child .custom-select-paired,
  .contact-select-row .contact-select-col:last-child .custom-select-paired,
  .contact-select-row .contact-select-col:first-child .custom-select-paired .custom-select-trigger,
  .contact-select-row .contact-select-col:last-child .custom-select-paired .custom-select-trigger {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}


#contact-form .space-y-3 {
  gap: 0.55rem !important;
}

#contact-form label {
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
}

#contact-form .contact-input,
#contact-form .contact-select,
#contact-form .paired-select-trigger {
  min-height: 2.55rem !important;
  height: 2.55rem !important;
  padding: 0.68rem 0.9rem !important;
  font-size: 0.9rem !important;
  line-height: 1.2 !important;
  border-radius: 0.72rem !important;
}

#contact-form .contact-input::placeholder,
#contact-form .paired-select-trigger,
#contact-form .paired-select-label {
  font-size: 0.9rem !important;
}

#contact-form .paired-select-host.has-value .paired-select-trigger,
#contact-form .custom-select.has-value .custom-select-trigger {
  color: #475569 !important;
  font-weight: 400 !important;
}

/* Keep the paired dropdown row stable regardless of selected value. */
#contact-form .contact-select-row {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1.5rem !important;
  align-items: start !important;
}

#contact-form .contact-select-row > .contact-select-col {
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  flex: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

#contact-form .contact-select-row > .contact-select-col > label,
#contact-form .contact-select-row > .contact-select-col > .paired-select-host,
#contact-form .contact-select-row > .contact-select-col > .custom-select,
#contact-form .contact-select-row > .contact-select-col > select.contact-select,
#contact-form .contact-select-row > .contact-select-col .paired-select-trigger,
#contact-form .contact-select-row > .contact-select-col .custom-select-trigger {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

@media (max-width: 1300px) {
  #contact-form .contact-select-row {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

#contact-form .contact-textarea {
  min-height: 3.65rem !important;
  height: 3.65rem !important;
  padding-top: 0.82rem !important;
  padding-bottom: 0.82rem !important;
}

#contact-form #goals.contact-textarea,
#contact-form #challenges.contact-textarea {
  min-height: 3.65rem !important;
  height: 3.65rem !important;
}

#contact-form .paired-select-icon {
  font-size: 0.72rem !important;
}

#contact-form #contact-submit {
  min-height: 3.2rem !important;
  font-size: 0.98rem !important;
}

.footer-new__contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.footer-new__contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1rem 1rem 1.1rem;
  min-width: 0;
}

.footer-new__contact-card .footer-new__subheading {
  margin-bottom: 0.85rem;
  font-size: 1rem;
  line-height: 1.45;
}

.footer-new__contact-card .footer-new__link {
  align-items: flex-start;
}

.footer-new__contact-card .footer-new__link span:last-child {
  line-height: 1.45;
}

.footer-new__contact-card a[href^="tel:"] span:last-child {
  white-space: nowrap;
}

.footer-new__contact-card a[href^="mailto:"] span:last-child {
  overflow-wrap: anywhere;
}

.footer-new__socials--compact {
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .footer-new__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(540px, 1.6fr) minmax(240px, 1fr);
    align-items: start;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .footer-new__contact-grid {
    grid-template-columns: 1fr;
  }
}


/* Footer redesign */
.footer-new {
  --footer-primary: #f29024;
  --footer-secondary: #0f3b68;
  --footer-accent-soft: #fff4e8;
  --footer-surface: #fffdf9;
  --footer-surface-strong: #ffffff;
  --footer-border: rgba(15, 59, 104, 0.12);
  --footer-text: #16324a;
  --footer-muted: #5f7285;
  --footer-shadow: 0 28px 60px rgba(15, 59, 104, 0.12);
  position: relative;
  margin-top: 5rem;
  background:
    radial-gradient(circle at top left, rgba(242, 144, 36, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(15, 59, 104, 0.12), transparent 26%),
    linear-gradient(180deg, #fffaf3 0%, #fffdf9 100%);
  color: var(--footer-text);
  font-family: inherit;
  overflow: hidden;
}

.footer-new::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #f29024 0%, #b35c12 32%, #0f3b68 100%);
}

.footer-new__main {
  max-width: 1380px;
  padding: 4.75rem 1.5rem 3rem;
  position: relative;
  z-index: 1;
}

.footer-new__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-new__about,
.footer-new__contact-grid,
.footer-new__stack--links {
  min-width: 0;
}

.footer-new__about {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 59, 104, 0.08);
  border-radius: 1.6rem;
  box-shadow: var(--footer-shadow);
  padding: 1.6rem;
  backdrop-filter: blur(14px);
}

.footer-new__brand {
  margin-bottom: 1rem;
  color: var(--footer-secondary);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.8rem, 2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
}

.footer-new__brand span {
  color: var(--footer-primary);
}

.footer-new__description,
.footer-new__rating {
  color: var(--footer-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.footer-new__rating {
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(242, 144, 36, 0.12), rgba(15, 59, 104, 0.06));
  border: 1px solid rgba(242, 144, 36, 0.18);
}

.footer-new__star {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  color: var(--footer-primary);
}

.footer-new__logos {
  justify-content: flex-start;
  gap: 0.85rem;
}

.footer-new__logo-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 59, 104, 0.08);
  border-radius: 1rem;
  min-width: 96px;
  min-height: 84px;
  box-shadow: 0 12px 24px rgba(15, 59, 104, 0.08);
}

.footer-new__heading,
.footer-new__subheading {
  color: var(--footer-secondary);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding-left: 1rem;
}

.footer-new__subheading {
  font-size: 0.98rem;
  letter-spacing: 0;
}

.footer-new__heading::before,
.footer-new__subheading::before {
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--footer-primary), #b55e12);
}

.footer-new__contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.footer-new__contact-card,
.footer-new__stack--links {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--footer-border);
  border-radius: 1.4rem;
  box-shadow: 0 18px 36px rgba(15, 59, 104, 0.08);
  backdrop-filter: blur(12px);
}

.footer-new__contact-card {
  padding: 1.2rem 1.15rem 1.15rem;
}

.footer-new__stack {
  gap: 0.9rem;
}

.footer-new__link,
.footer-new__text-link,
.footer-new__bottom-link {
  color: var(--footer-text);
}

.footer-new__link {
  gap: 0.8rem;
  padding: 0.2rem 0;
}

.footer-new__link span:last-child {
  line-height: 1.55;
}

.footer-new__link:hover,
.footer-new__text-link:hover,
.footer-new__bottom-link:hover {
  color: var(--footer-secondary);
}

.footer-new__icon {
  color: var(--footer-primary);
}

.footer-new__socials {
  margin-top: 1.2rem;
}

.footer-new__social-list {
  gap: 0.65rem;
}

.footer-new__social-link {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.95rem;
  background: linear-gradient(180deg, rgba(15, 59, 104, 0.08), rgba(15, 59, 104, 0.14));
  color: var(--footer-secondary);
  border: 1px solid rgba(15, 59, 104, 0.08);
}

.footer-new__social-link:hover {
  background: linear-gradient(135deg, var(--footer-primary), #c96914);
  color: #ffffff;
}

.footer-new__stack--links {
  padding: 1.2rem 1.15rem;
  gap: 0.85rem;
}

.footer-new__text-link {
  padding: 0.2rem 0 0.2rem 1rem;
  line-height: 1.45;
}

.footer-new__text-link::before {
  width: 3px;
  border-radius: 999px;
  opacity: 0.22;
  background: linear-gradient(180deg, var(--footer-primary), #b55e12);
}

.footer-new__text-link:hover::before {
  opacity: 1;
}

.footer-new__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(15, 59, 104, 0.1);
  background: rgba(255, 255, 255, 0.55);
}

.footer-new__bottom-inner {
  max-width: 1380px;
  padding: 1.35rem 1.5rem 1.75rem;
  color: var(--footer-muted);
}

.footer-new__bottom-link {
  color: var(--footer-secondary);
  font-weight: 600;
}

@media (min-width: 900px) {
  .footer-new__contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .footer-new__grid {
    grid-template-columns: minmax(320px, 1.15fr) minmax(520px, 1.5fr) minmax(260px, 0.95fr);
    gap: 1.75rem;
    align-items: start;
  }
}

@media (max-width: 767px) {
  .footer-new {
    margin-top: 3.5rem;
  }

  .footer-new__main {
    padding: 4rem 1rem 2.5rem;
  }

  .footer-new__about,
  .footer-new__contact-card,
  .footer-new__stack--links {
    border-radius: 1.2rem;
  }
}
