/*
Theme Name: EonLab
Author: WEBDOT
Author URI: https://webdot.co.kr
Version: 1.0
*/

:root {
  --header-h: 120px;
}

* {
    letter-spacing: -0.04em;
    font-family: 'Wanted Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: 0.15s;
    word-break: keep-all;
}

.container {
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

main {
  padding-top: var(--header-h);   
  padding-bottom: 170px;
}

header {
  height: var(--header-h);
}
header.scrolled {
  background: rgba(0, 0, 0, 0.70);
  backdrop-filter: blur(5px);
}

.h1 {}
.h2 {}
.h3 {}
.h4 {}
.h5 {font-size: 20px; line-height: 1.4;}
.h6 {}

.subPageTit {
    font-size: 48px;
    font-weight: 700;
}

.btn {
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 100px;
    color: #fff;
    transition: 0.5s;
}
.btn.primary {
    background: linear-gradient(95deg, #00D37A 9.12%, #2094FD 98.58%);
}

.btn.default {
    background: transparent;
    border: 1px solid #fff;
}
.btn.default:hover {
    background: #fff;
    color: #000;
}

.gradient {
  background: linear-gradient(273deg, #2194FF 3.86%, #00D37A 65.29%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Quick Menu Styles */
.quick-menu {
    position: fixed;
    right: 0;
    bottom: 10vh;
    z-index: 15;
    background: #fff;
    border-radius: 20px 0 0 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 16px 4px;
  transition: all 0.2s;
}

.quick-item:not(:last-child) {
  border-bottom: 1px solid #E4E4E7;
}

.quick-icon {
  font-size: 20px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}

.left-count {
  font-size: 24px;
}

.quick-apply {
  background: #22c55e;
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  border: none;
  margin-left: auto;
  cursor: pointer;
  transition: all 0.2s;
}

.quick-apply:hover {
  background: #16a34a;
}

.quick-top {
  justify-content: center;
  text-align: center;
  font-size: 12px;
  padding-top: 12px;
  margin-top: 4px;
}

.quick-top .quick-text {
  font-size: 14px;
}

  @media all and (max-width: 767px){
    :root {
  --header-h: 68px;
  }
    * {
      font-size: 14px;
    }
    .h5 {font-size: 18px;}
    .subPageTit {font-size: 30px; margin-top:12px;}
    
    main {
        padding-bottom: 100px;
    }

    /* Mobile Quick Menu */
    .quick-menu {
      bottom: 0;
      border-radius: 16px 16px 0 0;
      flex-direction: row;
      padding: 0px 16px;
      gap: 20px;
      width: 100%;
    }
    
    .quick-inquiry,
    .quick-top {
      display: none;
    }
    .quick-item {
      border-bottom: none !important;
      width: 100%;
    }
    .quick-item.quick-to {
      flex-direction: row;
      justify-content: space-between;
    }
    
    .quick-to .quick-text {
      font-size: 16px;
      font-weight: 600;
    }
    
    .quick-apply {
      font-size: 14px;
      padding: 12px 24px;
    }
  }

/* Contact Form 7 Custom Styles */
.cf7-custom-form {
  color: white;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #27272A;
}

.form-group label {
  font-size: 18px;
  font-weight: 500;
  color: white;
}

.required {
  color: #ef4444;
}

.form-input,
.form-textarea {
  width: 100%;
  margin-top: 12px;
  background: #18181B;
  border-radius: 8px;
  padding: 16px;
  color: white;
  font-size: 18px;
  transition: all 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #00D37A;
  box-shadow: 0 0 0 2px rgba(0, 211, 122, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #666;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.privacy-section {
  padding-bottom: 50px;
  border-bottom: 1px solid #71717A;
}

.privacy-label {
  font-size: 16px;
  font-weight: 500;
  color: white;
  margin-bottom: 16px;
  display: block;
}

.privacy-checkbox {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.privacy-checkbox label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

span.wpcf7-list-item {margin-left: 0;}
.wpcf7-spinner {display: none !important;}

.privacy-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #00D37A;
}

.privacy-toggle {
  background: transparent;
  border: 1px solid #666;
  color: #666;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.privacy-toggle:hover {
  border-color: #00D37A;
  color: #00D37A;
}

.privacy-content {
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
  margin-top: 16px;
}

.privacy-content p {
  margin-bottom: 8px;
}

.privacy-content strong {
  color: white;
}

.submit-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.submit-btn {
  background: linear-gradient(95deg, #00D37A 9.12%, #2094FD 98.58%);
  color: white;
  border: none;
  padding: 16px 48px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 200px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 211, 122, 0.3);
}

/* Mobile responsiveness */
@media all and (max-width: 767px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-group.full-width {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  
  .privacy-section {
    margin: 24px 0;
    padding: 16px 0;
  }
  
  .privacy-checkbox {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .submit-btn {
    padding: 14px 32px;
    font-size: 14px;
    min-width: 150px;
  }
}