/* Left Talep Form - Sol Tarafta Dikey Form Butonu ve Sağdan Açılan Panel */

/* CSS Variables */
:root {
  --ltf-primary: #fac25a;
  --ltf-primary-hover: #f5a623;
  --ltf-body-bg: #0F1B25;
  --ltf-panel-bg: #0F1B25;
  --ltf-input-border: #4A5363;
  --ltf-input-border-hover: #4A5363;
  --ltf-text-primary: #ffffff;
  --ltf-text-secondary: #6C727D;
  --ltf-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sol Buton - Dikey Ortada */
.left-talep-form-trigger {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  width: 50px;
  height: 180px;
  background: linear-gradient(135deg, #fac25a, #f5a623, #ffb84d);
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  z-index: 100;
  transition: transform var(--ltf-transition), box-shadow var(--ltf-transition);
  box-shadow: 2px 0 15px rgba(250, 194, 90, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
  overflow: hidden;
  visibility: visible;
  opacity: 1;
}

/* Parıltı Efekti - Aşağıdan Yukarı Sürekli Akan */
.left-talep-form-trigger::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 200%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0.2) 40%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.2) 60%,
    rgba(255, 255, 255, 0) 80%,
    transparent 100%
  );
  animation: left-talep-form-shine 2.5s linear infinite;
  pointer-events: none;
  z-index: 1;
  will-change: top;
}

@keyframes left-talep-form-shine {
  0% {
    top: -100%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}


.left-talep-form-trigger:hover {
  box-shadow: 2px 0 20px rgba(250, 194, 90, 0.5);
}

.left-talep-form-trigger:hover::before {
  animation-duration: 1.5s; /* Hover'da daha hızlı parıltı */
}

.left-talep-form-trigger.hide {
  transform: translateY(-50%) translateX(-100%);
}

/* Buton İçindeki Dikey Yazı - Aşağıdan Yukarı, Harfler Normal Yönde */
.left-talep-form-trigger-text {
  writing-mode: sideways-lr;
  text-orientation: mixed;
  direction: ltr;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  white-space: nowrap;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  line-height: 1.2;
  display: inline-block;
}

/* Buton İkonu */
.left-talep-form-trigger-icon {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  margin-top: 8px;
}

.left-talep-form-trigger-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Form Paneli - Soldan Açılan */
.left-talep-form-panel {
  position: fixed;
  left: 0;
  top: 0;
  width: 450px;
  height: 100vh;
  background: var(--ltf-panel-bg);
  box-shadow: 4px 0 30px rgba(0, 0, 0, 0.5);
  transform: translateX(-100%);
  transition: transform var(--ltf-transition);
  z-index: 101;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.left-talep-form-panel.active {
  transform: translateX(0);
}

/* Panel Header */
.left-talep-form-header {
  position: relative;
  padding: 30px 30px 20px 30px;
  border-bottom: 1px solid var(--ltf-input-border);
  flex-shrink: 0;
}

.left-talep-form-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--ltf-text-primary);
  margin: 0;
  line-height: 1.3;
}

.left-talep-form-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: var(--ltf-text-secondary);
  margin: 8px 0 0 0;
  line-height: 1.5;
}

/* Close Button */
.left-talep-form-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #6C727D;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 40;
  transition: background 0.35s ease, transform 0.35s ease;
  padding: 0;
  color: white;
}

.left-talep-form-close:hover {
  background: var(--ltf-primary);
  transform: scale(1.05);
}

.left-talep-form-close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
  transition: transform 0.4s ease;
}

.left-talep-form-close:hover svg {
  transform: rotate(-180deg);
}

/* Panel Content - Scrollable */
.left-talep-form-content {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.left-talep-form-content::-webkit-scrollbar {
  width: 6px;
}

.left-talep-form-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.left-talep-form-content::-webkit-scrollbar-thumb {
  background: var(--ltf-input-border-hover);
  border-radius: 3px;
}

.left-talep-form-content::-webkit-scrollbar-thumb:hover {
  background: var(--ltf-text-secondary);
}

/* Form */
.left-talep-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Form Field */
.left-talep-form-field {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Form Label */
.left-talep-form-label {
  position: absolute;
  left: 20px;
  top: 0;
  transform: translateY(-50%);
  background: var(--ltf-panel-bg);
  padding: 0 10px;
  color: var(--ltf-primary);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  z-index: 2;
  transition: color 0.3s ease;
  pointer-events: none;
}

/* Input, Textarea, Select */
.left-talep-form-input,
.left-talep-form-textarea,
.left-talep-form-select {
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: 1px solid var(--ltf-input-border);
  border-radius: 8px;
  color: var(--ltf-text-primary);
  font-size: 14px;
  font-weight: 300;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

.left-talep-form-input::placeholder,
.left-talep-form-textarea::placeholder {
  color: #6C727D !important;
  opacity: 0.8 !important;
}

.left-talep-form-input:hover,
.left-talep-form-textarea:hover,
.left-talep-form-select:hover {
  border-color: var(--ltf-input-border-hover);
}

.left-talep-form-input:focus,
.left-talep-form-textarea:focus,
.left-talep-form-select:focus {
  border-color: var(--ltf-primary);
}

.left-talep-form-input:focus + .left-talep-form-label,
.left-talep-form-textarea:focus + .left-talep-form-label,
.left-talep-form-select:focus + .left-talep-form-label {
  color: var(--ltf-primary);
}

/* Textarea */
.left-talep-form-textarea {
  min-height: 100px;
  resize: vertical;
}

/* Select */
.left-talep-form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
  cursor: pointer;
}

.left-talep-form-select option {
  background: var(--ltf-panel-bg);
  color: var(--ltf-text-primary);
  padding: 10px;
}

.left-talep-form-select.has-value {
  color: var(--ltf-text-primary);
}

.left-talep-form-select.has-value + .left-talep-form-label {
  color: var(--ltf-primary);
}

/* Phone Input Wrapper */
.left-talep-form-phone-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.left-talep-form-phone-input {
  width: 100%;
  padding: 16px 20px 16px 95px;
  background: transparent;
  border: 1px solid var(--ltf-input-border);
  border-radius: 8px;
  color: var(--ltf-text-primary);
  font-size: 14px;
  font-weight: 300;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

.left-talep-form-phone-input::placeholder {
  color: #6C727D !important;
  opacity: 0.8 !important;
}

.left-talep-form-phone-wrapper:hover .left-talep-form-phone-input {
  border-color: var(--ltf-input-border-hover);
}

.left-talep-form-phone-wrapper:focus-within .left-talep-form-phone-input {
  border-color: var(--ltf-primary);
}

.left-talep-form-phone-wrapper:focus-within + .left-talep-form-label {
  color: var(--ltf-primary);
}

/* Phone Country Selector */
.left-talep-form-phone-selector {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  border-right: 1px solid var(--ltf-input-border);
}

.left-talep-form-phone-selector:hover {
  opacity: 0.9;
}

.left-talep-form-phone-code {
  color: var(--ltf-text-primary);
  font-size: 14px;
  font-weight: 300;
  white-space: nowrap;
}

.left-talep-form-phone-arrow {
  color: var(--ltf-text-primary);
  font-size: 10px;
  transition: transform 0.3s ease;
  margin-left: 2px;
}

.left-talep-form-phone-wrapper:focus-within .left-talep-form-phone-arrow,
.left-talep-form-country-dropdown.active ~ .left-talep-form-phone-selector .left-talep-form-phone-arrow {
  transform: rotate(180deg);
}

/* Country Dropdown */
.left-talep-form-country-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--ltf-panel-bg);
  border-radius: 8px;
  border: 1px solid var(--ltf-input-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  min-width: 200px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.left-talep-form-country-dropdown.active {
  max-height: 300px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.left-talep-form-country-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--ltf-input-border);
}

.left-talep-form-country-option:last-child {
  border-bottom: none;
}

.left-talep-form-country-option:hover {
  background: rgba(255, 255, 255, 0.05);
}

.left-talep-form-country-flag {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

.left-talep-form-country-name {
  color: var(--ltf-text-primary);
  font-size: 14px;
  font-weight: 300;
  flex: 1;
}

.left-talep-form-country-code {
  color: var(--ltf-text-secondary);
  font-size: 14px;
  font-weight: 300;
}

/* Language Input Wrapper */
.left-talep-form-language-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.left-talep-form-language-selector {
  position: relative;
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px 16px 60px;
  background: transparent;
  border: 1px solid var(--ltf-input-border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  box-sizing: border-box;
}

.left-talep-form-language-selector:hover {
  border-color: var(--ltf-input-border-hover);
}

.left-talep-form-language-wrapper:focus-within .left-talep-form-language-selector {
  border-color: var(--ltf-primary);
}

.left-talep-form-language-wrapper:focus-within + .left-talep-form-label {
  color: var(--ltf-primary);
}

.left-talep-form-language-flag-wrapper {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.left-talep-form-language-flag {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 2px;
}

.left-talep-form-language-input {
  flex: 1;
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  color: var(--ltf-text-primary);
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  font-family: inherit;
}

.left-talep-form-language-input::placeholder {
  color: #6C727D !important;
  opacity: 0.8 !important;
}

.left-talep-form-language-input.has-value {
  color: var(--ltf-text-primary);
}

.left-talep-form-language-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ltf-text-primary);
  font-size: 10px;
  transition: transform 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.left-talep-form-language-wrapper:focus-within .left-talep-form-language-arrow,
.left-talep-form-language-dropdown.active ~ .left-talep-form-language-selector .left-talep-form-language-arrow {
  transform: translateY(-50%) rotate(180deg);
}

/* Language Dropdown */
.left-talep-form-language-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--ltf-panel-bg);
  border-radius: 8px;
  border: 1px solid var(--ltf-input-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  min-width: 200px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.left-talep-form-language-dropdown.active {
  max-height: 300px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.left-talep-form-language-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid var(--ltf-input-border);
}

.left-talep-form-language-option:last-child {
  border-bottom: none;
}

.left-talep-form-language-option:hover {
  background: rgba(255, 255, 255, 0.05);
}

.left-talep-form-language-option .left-talep-form-language-flag {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

.left-talep-form-language-name {
  color: var(--ltf-text-primary);
  font-size: 14px;
  font-weight: 300;
  flex: 1;
}

.left-talep-form-language-input.has-value + .left-talep-form-label,
.left-talep-form-field:has(.left-talep-form-language-input.has-value) .left-talep-form-label {
  color: var(--ltf-primary);
}

/* Checkbox Container */
.left-talep-form-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 5px;
}

.left-talep-form-checkbox-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.left-talep-form-checkbox {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
  margin: 0;
}

.left-talep-form-checkbox-box {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: transparent;
  border: 1px solid var(--ltf-input-border);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.left-talep-form-checkbox:hover ~ .left-talep-form-checkbox-box {
  border-color: var(--ltf-input-border-hover);
}

.left-talep-form-checkbox:checked ~ .left-talep-form-checkbox-box {
  border-color: var(--ltf-primary);
  background: var(--ltf-primary);
}

.left-talep-form-checkbox-box::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 12px;
  height: 12px;
  background: transparent;
  opacity: 0;
  transition: all 0.3s ease;
}

.left-talep-form-checkbox:checked ~ .left-talep-form-checkbox-box::after {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.left-talep-form-checkbox-label {
  color: var(--ltf-text-secondary);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  cursor: pointer;
}

.left-talep-form-checkbox-link {
  color: var(--ltf-primary);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.left-talep-form-checkbox-link:hover {
  color: var(--ltf-primary-hover);
}

/* Submit Button */
.left-talep-form-submit {
  position: relative;
  width: 100%;
  height: 50px;
  padding: 0 30px;
  border: none;
  border-radius: 8px;
  background: var(--ltf-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  margin-top: 10px;
}

.left-talep-form-submit:hover {
  background: var(--ltf-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(250, 194, 90, 0.4);
}

.left-talep-form-submit:active {
  transform: translateY(0);
}

.left-talep-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Submit Button Circle Effect */
.left-talep-form-submit-circle {
  position: absolute;
  width: 0;
  height: 0;
  background: var(--ltf-primary-hover);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  pointer-events: none;
}

.left-talep-form-submit-text {
  position: relative;
  z-index: 2;
}

/* Loading State */
.left-talep-form-submit.loading .left-talep-form-submit-text {
  opacity: 0;
}

.left-talep-form-submit.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: left-talep-form-spin 0.6s linear infinite;
}

@keyframes left-talep-form-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Success/Error Message */
.left-talep-form-message {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 15px;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  display: none;
  animation: left-talep-form-fadeIn 0.3s ease;
}

.left-talep-form-message.show {
  display: block;
}

.left-talep-form-message.success {
  background: rgba(76, 175, 80, 0.15);
  color: #4CAF50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.left-talep-form-message.error {
  background: rgba(244, 67, 54, 0.15);
  color: #f44336;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

@keyframes left-talep-form-fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Error State */
.left-talep-form-field.error .left-talep-form-input,
.left-talep-form-field.error .left-talep-form-textarea,
.left-talep-form-field.error .left-talep-form-select {
  border-color: #f44336;
}

.left-talep-form-field.error .left-talep-form-label {
  color: #f44336;
}

.left-talep-form-error-message {
  color: #f44336;
  font-size: 12px;
  margin-top: 6px;
  display: none;
  animation: left-talep-form-fadeIn 0.3s ease;
}

.left-talep-form-field.error .left-talep-form-error-message {
  display: block;
}

/* Overlay - Arka plan karartma (isteğe bağlı) */
.left-talep-form-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ltf-transition), visibility var(--ltf-transition);
  z-index: 100;
  pointer-events: none;
}

.left-talep-form-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ========================== */
/* RESPONSIVE DESIGN */
/* ========================== */

/* Tablet - 1024px */
@media (max-width: 1024px) {
  .left-talep-form-panel {
    width: 400px;
  }

  .left-talep-form-trigger {
    width: 45px;
    height: 160px;
  }

  .left-talep-form-trigger-text {
    font-size: 14px;
  }
}

/* Mobile - 768px */
/* Mobile-specific intl-tel-input fixes */
@media (max-width: 1024px) {
  /* Form panel overflow fix - allow dropdown to escape */
  .left-talep-form-panel {
    overflow: visible !important;
  }
  
  /* Ensure form content still scrolls */
  .left-talep-form-content {
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }
  
  .iti__country-list {
    position: fixed !important;
    z-index: 100000 !important; /* Higher than form panel z-index: 101 */
    max-width: 90vw !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    max-height: 60vh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
  
  .iti__dropdown-content {
    z-index: 100000 !important; /* Higher than form panel z-index: 101 */
    position: fixed !important;
  }
  
  /* Ensure iti container is also above form */
  .left-talep-form-panel .iti--container {
    z-index: 100000 !important;
  }
}

@media (max-width: 768px) {
  .left-talep-form-panel {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 75vh;
    top: 50%;
    left: 0;
    transform: translateX(-100%) translateY(-50%);
    border-radius: 0;
  }

  .left-talep-form-panel.active {
    transform: translateX(0) translateY(-50%);
  }

  .left-talep-form-header {
    padding: 25px 20px 15px 20px;
  }

  .left-talep-form-title {
    font-size: 20px;
  }

  .left-talep-form-subtitle {
    font-size: 13px;
  }

  .left-talep-form-close {
    top: 25px;
    right: 20px;
    width: 40px;
    height: 40px;
  }

  .left-talep-form-close svg {
    width: 18px;
    height: 18px;
  }

  .left-talep-form-content {
    padding: 20px;
  }

  .left-talep-form {
    gap: 16px;
  }

  .left-talep-form-input,
  .left-talep-form-textarea,
  .left-talep-form-select {
    padding: 14px 16px;
    font-size: 14px;
  }

  .left-talep-form-language-selector {
    min-height: auto;
    height: auto;
    padding: 14px 40px 14px 50px;
  }

  .left-talep-form-language-flag-wrapper {
    left: 16px;
    width: 24px;
    height: 24px;
  }

  .left-talep-form-language-flag {
    width: 24px;
    height: 24px;
  }

  .left-talep-form-label {
    font-size: 12px;
    left: 16px;
  }

  .left-talep-form-submit {
    height: 46px;
    font-size: 14px;
  }

  .left-talep-form-trigger {
    width: 42px;
    height: 150px;
  }

  .left-talep-form-trigger-text {
    font-size: 13px;
    letter-spacing: 1.5px;
  }

  .left-talep-form-trigger-icon {
    width: 20px;
    height: 20px;
    bottom: 12px;
  }

  .left-talep-form-checkbox-label {
    font-size: 12px;
  }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
  .left-talep-form-header {
    padding: 20px 16px 12px 16px;
  }

  .left-talep-form-title {
    font-size: 18px;
  }

  .left-talep-form-content {
    padding: 16px;
  }

  .left-talep-form {
    gap: 14px;
  }

  .left-talep-form-checkbox-wrapper {
    gap: 10px;
  }

  .left-talep-form-checkbox-box {
    width: 22px;
    height: 22px;
  }
}

/* intl-tel-input dropdown scroll fix for Lenis compatibility */
.iti__country-list {
  overflow-y: auto !important;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch !important;
  overscroll-behavior: contain !important;
  scroll-behavior: auto !important;
  /* Prevent Lenis from interfering */
  touch-action: pan-y !important;
  /* Ensure proper scrolling */
  will-change: scroll-position;
}

/* Ensure dropdown is scrollable on all devices */
.iti__country-list[data-scroll-fixed] {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
}

/* intl-tel-input Dark Mode Styling */
.iti__country-list {
  background: var(--ltf-panel-bg) !important;
  border: 1px solid var(--ltf-input-border) !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
  z-index: 99999 !important; /* Very high z-index for mobile compatibility */
  max-height: 300px !important;
  position: fixed !important; /* Use fixed positioning on mobile */
}

.iti__country {
  color: var(--ltf-text-primary) !important;
  background: transparent !important;
  padding: 12px 15px !important;
  border-bottom: 1px solid var(--ltf-input-border) !important;
  transition: all 0.3s ease !important;
}

.iti__country:last-child {
  border-bottom: none !important;
}

.iti__country:hover,
.iti__country.highlight {
  background: rgba(255, 255, 255, 0.05) !important;
  color: var(--ltf-text-primary) !important;
}

.iti__country.iti__active {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--ltf-primary) !important;
}

.iti__country-name {
  color: var(--ltf-text-primary) !important;
  font-size: 14px !important;
  font-weight: 300 !important;
}

.iti__dial-code {
  color: var(--ltf-text-secondary) !important;
  font-size: 14px !important;
  font-weight: 300 !important;
}

.iti__flag {
  border-radius: 2px !important;
}

.iti__preferred {
  border-top: 1px solid var(--ltf-input-border) !important;
  border-bottom: 1px solid var(--ltf-input-border) !important;
}

.iti__preferred .iti__country {
  background: rgba(255, 255, 255, 0.02) !important;
}

.iti__preferred .iti__country:hover {
  background: rgba(255, 255, 255, 0.05) !important;
}

/* Search box inside dropdown */
.iti__search-input {
  background: #0F1B25 !important;
  border: none !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3) !important;
  color: #ffffff !important;
  padding: 12px 15px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  border-radius: 8px 8px 0 0 !important;
}

.iti__search-input::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
  opacity: 1 !important;
}

.iti__search-input:focus {
  outline: none !important;
  border-bottom-color: var(--ltf-primary) !important;
  background: #1f2b35 !important;
}

/* intl-tel-input dropdown content wrapper */
.iti__dropdown-content {
  z-index: 10002 !important;
  border-radius: 3px !important;
  /* background-color removed for dark mode */
}

/* Mobile: Ensure dropdown appears above form panel */
@media (max-width: 1024px) {
  .iti__dropdown-content {
    z-index: 100000 !important;
    position: fixed !important;
  }
}
