/****************************************** 
*    VARIEN DIGITAL SOLUTIONS
*    http://www.varien.com.tr    
*
*    @Company       : Başarnalar Lastik
*    @Created on    : 12.Mayis.2018
*    @Author        : Ergun C.
*******************************************/

@import "base/normalize.css";

@import "component/form-control.css";
@import "component/buttons.css";
@import "component/grid.css";
@import "component/alert.css";
@import "component/table.css";
@import "component/navtab.css";
@import "component/navbar.css";
@import "component/dropdown.css";
@import "component/breadcrumb.css";
@import "component/modal.css";
@import "component/alert.css";
@import "component/list-group.css";
@import "component/card.css";
@import "component/social.css";
@import "component/icon.css";
@import "component/post.css";
@import "component/image.css";

@import "utilities/align.css";
@import "utilities/background.css";
@import "utilities/display.css";
@import "utilities/embed.css";
@import "utilities/flex.css";
@import "utilities/position.css";
@import "utilities/show.css";
@import "utilities/text.css";
@import "utilities/overlay.css";

@import "layout/fonts.css";
@import "layout/default.css";
@import "layout/heading.css";
@import "layout/header.css";
@import "layout/slider.css";
@import "layout/bread.css";
@import "layout/footer.css";
@import "layout/sidebar.css";

@import "page/index.css";
@import "page/kurumsal.css";
@import "page/hizmetler.css";
@import "page/referans.css";
@import "page/blog.css";
@import "page/iletisim.css";
@import "page/arama.css";

/* Theme Color */
@import "theme-color.css";

  /* Floating Action Button */
  .offer-fab {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    box-shadow:
  0 8px 24px rgba(30, 136, 255, 0.45),
  0 0 0 0 rgba(30, 136, 255, 0.4);
    color: #fff;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    display: inline-flex;
    align-items: center;
    border-radius: 10px;
    border: none;
    background: linear-gradient(50deg, rgb(250, 77, 9), rgb(250, 77, 9));
  }
  .bolt-icon{
    width:35px;
    height:35px;
    fill:#fbe32e;
    position: relative;
    top: 6px;
  }
  .yg-cta-sep {
    margin: 0 6px;
    opacity: 0.7;
    font-weight: 400;
  }

  .offer-fab span {
    font-size: 20px;
    font-weight: 500;
  }
  @media (max-width: 415px) {
    .offer-fab span {
      font-size: 16px;
    }
  }
  @media (max-width: 360px) {
    .offer-fab span {
      font-size: 13px;
    }
  }
  .offer-fab:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 18px rgba(250, 77, 9, 0.22);
  }

  .offer-fab:active {
    transform: translateY(0);
  box-shadow:
    0 6px 16px rgba(18, 184, 166, 0.35);
  }

  /* Modal Overlay */
  .offer-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 10000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .offer-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Modal Container */
  .offer-modal-box {
    width: 700px;
    min-height: 600px;
    max-height: 90vh;
    height: auto;
    overflow: hidden;  
    border-radius: 24px;
    background: #f8f8f8;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  }

  .offer-modal.active .offer-modal-box {
    transform: scale(1);
  }

.offer-close {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: #f8f8f8;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
    color: #144b9a;
    font-weight: 900;
  }
  
  .offer-close:hover::before {
    transform: rotate(-90deg);

  }
  
.offer-close::before {
  content: "✕"; 
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: 50% 50%;
  transition: transform 0.2s ease;
}

  /* Tabs */
  .offer-tabs {
    display: flex;
    gap: 0;
    padding: 0;
    background: transparent;
    border-bottom: none;
  }

  .offer-tab {
    flex: 1;
    border: none;
    background: #64676a;
    padding: 18px 24px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    color: #fff;
    transition: all 0.4s ease;
    position: relative;
    font-family: inherit;
  }

  .offer-tab:first-child {
    border-radius: 24px 0 0 0;
  }

  .offer-tab:last-child {
    border-radius: 0 24px 0 0;
  }

  .offer-tab:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #144b9a;
  }

  .offer-tab.active {
    background: linear-gradient(50deg,#144b9a, #04142e);
    color: #ffffff;
  }

  /* Tab Content */
  .offer-content-wrapper {
    overflow-y: auto;
    flex: 1;
  }

  .offer-tab-content {
    display: none;
    padding: 32px;
    animation: offerFadeIn 0.3s ease;
  }

  .offer-tab-content.active {
    display: block;
  }

  @keyframes offerFadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Header */
  .offer-head {
    margin-bottom: 32px;
  }

  .offer-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
  }

  .offer-subtitle {
    color: #64748b;
    font-size: 15px;
    margin: 0;
  }

  /* Form */
  .offer-form {
    display: grid;
    gap: 20px;
  }

  .offer-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .tree-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }

  .offer-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .offer-label {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0;
  }

  .offer-required {
    color: #ef4444;
    margin-left: 2px;
  }

  .offer-input,
  .offer-select,
  .offer-textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    background: #ffffff;
    outline: none;
    transition: all 0.2s ease;
    font-size: 15px;
    font-family: inherit;
    color: #1e293b;
  }

  .offer-input:focus,
  .offer-select:focus,
  .offer-textarea:focus {
    border-color: #144b9a;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
  }

  .offer-textarea {
    min-height: 100px;
    resize: vertical;
  }

  /* Radio Options */
  .offer-radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
  }

  .offer-radio-option {
    position: relative;
  }

  .offer-radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
  }

  .offer-radio-option label {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    color: #475569;
    background: #ffffff;
  }

  .offer-radio-option input[type="radio"]:checked + label {
    border-color: #144b9a;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #144b9a;
  }

  .offer-radio-option label::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    margin-right: 12px;
    transition: all 0.2s ease;
  }

  .offer-radio-option input[type="radio"]:checked + label::before {
    border-color: #144b9a;
    background: #144b9a;
    box-shadow: inset 0 0 0 3px white;
  }

  /* Checkbox Chips */
  .offer-checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(202px, 1fr));
    gap: 12px;
  }

  .offer-checkbox-chip {
    position: relative;
  }

  .offer-checkbox-chip input[type="checkbox"] {
    position: absolute;
    opacity: 0;
  }

  .offer-checkbox-chip label {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    color: #475569;
    background: #ffffff;
    font-size: 14px;
  }

  .offer-checkbox-chip input[type="checkbox"]:checked + label {
    border-color: #144b9a;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #144b9a;
  }

  .offer-checkbox-chip label::before {
    content: '';
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    margin-right: 10px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .offer-checkbox-chip input[type="checkbox"]:checked + label::before {
    border-color: white;
    background: white;
    content: '✓';
    color: #144b9a;
    font-size: 12px;
    font-weight: 700;
  }

  /* Submit Button */
  .offer-btn-submit {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(50deg,#144b9a, #04142e);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 12px;
    font-family: inherit;
  }

  .offer-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
  }

  .offer-btn-submit:active {
    transform: translateY(0);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .offer-tabs {
      flex-direction: column;
    }

    .offer-tab {
      border-radius: 0 !important;
    }

    .offer-tab:first-child {
      border-radius: 24px 24px 0 0 !important;
    }

    .offer-tab-content {
      padding: 24px 16px;
    }

    .offer-form-row {
      grid-template-columns: 1fr;
    }

    .offer-radio-group,
    .offer-checkbox-group {
      grid-template-columns: 1fr;
    }

    .offer-title {
      font-size: 24px;
    }

    .offer-fab {
      left: 16px;
      right: 16px;
      bottom: 16px;
      justify-content: center;
    }
  }
.offer-other label {
  gap: 8px;
}

/* Inline input – başlangıçta gizli */
.offer-other .other-input {
  display: none;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  font-family: inherit;
  color: inherit;
  width: 140px;
  color: #144b9a;
  font-weight: 500;
}

/* Checkbox seçilince input açılır */
.offer-other input[type="checkbox"]:checked + label .other-input {
  display: inline-block;
}

/* Checkbox seçilince “Diğer” yazısı gizlenir */
.offer-other input[type="checkbox"]:checked + label .other-text {
  display: none;
}

/* Placeholder rengi */
.offer-other .other-input::placeholder {
  color: #144b9a;
  font-weight: 500;
}

/* Seçili chip içinde input focus */
.offer-other .other-input:focus {
  outline: none;
}
/* SEO - görünmez başlık */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}