.e-form-submit {
    background: #CCCCCC !important;
    color: #666666 !important;
    cursor: not-allowed;
    pointer-events: none;
}
.e-form-submit.enabled {
    background: #FF5100 !important;
    color: white !important;
    cursor: pointer;
    pointer-events: auto;
}
.e-form-submit.enabled:hover {
    background: #0039C8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 57, 200, 0.3);
}
.e-form-submit.enabled:active {
    transform: translateY(0);
}
.e-form-select:disabled {
    background-color: #f5f5f5;
    color: #999999;
    cursor: not-allowed;
}
.anchor-offset {
    display: block;
    position: relative;
    top: -200px;
    visibility: hidden;
}
.inner-nav-link.active::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF5100 0%, #0039C8 100%);
    transition: all 1s linear(.77, 0, .175, 1);
}
 .e-form-container {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 60px;
        }
        .e-form-card {
            border-radius: 30px;
        }
        .e-form-title {
            font-size: 32px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 40px;
            text-align: center;
        }
        .e-form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 24px;
        }
        .e-form-group {
            flex: 1;
        }
        .e-form-group.full-width {
            width: 100%;
        }
        .e-form-label {
            display: block;
            font-weight: 600;
            color: #333333;
            margin-bottom: 8px;
            text-align:left;
            font-size: 09.rem;
                margin-left: 25px;
        }
        .e-form-input,
        .e-form-select,
        .e-form-textarea {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #DDDDDD;
            border-radius: 100px;
            font-size: 1rem;
            color: #333333;
            background: #ffffff;
            transition: all 0.3s ease;
            outline: none;
        }
        .e-form-textarea {
            border-radius: 25px;
            min-height: 120px;
            resize: vertical;
        }
        .e-form-input:focus,
        .e-form-select:focus,
        .e-form-textarea:focus {
            border-color: #FF5100;
            box-shadow: 0 0 0 4px rgba(255, 81, 0, 0.1);
        }
        /* Telefon input özel stillendirme */
        .e-form-phone-container {
            position: relative;
            display: flex;
            align-items: center;
        }
        .e-form-country-select {
            width: 100px;
            padding: 15px 10px;
            border: 2px solid #DDDDDD;
            border-right: none;
            border-radius: 50px 0 0 50px;
            font-size: 16px;
            color: #333333;
            background: #ffffff;
            outline: none;
            font-family: 'Inter', sans-serif;
        }
        .e-form-phone-input {
            flex: 1;
            padding: 16px 20px;
            border: 2px solid #DDDDDD;
            border-left: none;
            border-radius: 0 50px 50px 0;
            font-size: 16px;
            color: #333333;
            background: #ffffff;
            outline: none;
        }
        .e-form-phone-container:focus-within .e-form-country-select,
        .e-form-phone-container:focus-within .e-form-phone-input {
            border-color: #FF5100;
            box-shadow: 0 0 0 4px rgba(255, 81, 0, 0.1);
        }
        .e-form-file-upload {
            position: relative;
            display: block;
            width: 100%;
            padding: 20px;
            border: 2px dashed #DDDDDD;
            border-radius: 25px;
            text-align: center;
            background: #ffffff;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .e-form-file-upload:hover {
            border-color: #FF5100;
            background: rgba(255, 81, 0, 0.05);
        }
        .e-form-file-upload input[type="file"] {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: pointer;
        }
        .e-form-file-text {
            color: #666666;
            font-weight: 500;
        }
        .e-form-file-info {
            font-size: 12px;
            color: #999999;
            margin-top: 8px;
        }
        .e-form-checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 32px;
        }
        .e-form-checkbox {
            width: 20px;
            height: 20px;
            border: 2px solid #DDDDDD;
            border-radius: 50px;
            cursor: pointer;
            flex-shrink: 0;
            margin-top: 2px;
            position: relative;
            background: #ffffff;
            transition: all 0.3s ease;
        }
        .e-form-checkbox:checked {
            background: #FF5100;
            border-color: #FF5100;
        }
        .e-form-checkbox:checked::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 12px;
            font-weight: bold;
        }
        .e-form-checkbox-label {
            color: #333333;
            font-size: 14px;
            line-height: 1.5;
            cursor: pointer;
        }
        .e-form-submit {
            width: auto;
            padding: 18px 32px;
            background: #FF5100;
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: none;
            left: auto;
            right: auto;
        }
        .e-form-submit:hover {
            background: #0039C8;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 57, 200, 0.3);
        }
        .e-form-submit:active {
            transform: translateY(0);
        }
        .e-form-success {
            display: none;
            text-align: center;
            padding: 2rem;
            background: white;
            border: 2px solid rgba(76, 175, 80, 0.3);
            border-radius: 25px;
            color: #2e7d32;
            font-size: 1rem;
            margin-top: 2rem;
        }
        .e-form-success.show {
            display: block;
        }
        /* Responsive */
        @media (max-width: 768px) {
            .e-form-row {
                flex-direction: column;
            }
            .e-form-title {
                font-size: 28px;
            }
            .e-form-phone-container {
                flex-direction: row;
                align-items: stretch;
            }
            .e-form-country-select {
                width: 100px;
                border-radius: 50px 0 0 50px;
                border-right: 1px solid #DDDDDD;
            }
            .e-form-phone-input {
                border-radius: 0 50px 50px 0;
                border-left: 1px solid #DDDDDD;
            }
        }
        @media (max-width: 480px) {
            .e-form-container {
                gap: 40px;
            }
            .e-form-phone-container {
                flex-direction: column;
                gap: 10px;
            }
            .e-form-country-select {
                width: 100%;
                border-radius: 50px;
                border-right: 2px solid #DDDDDD;
            }
            .e-form-phone-input {
                border-radius: 50px;
                border-left: 2px solid #DDDDDD;
            }
        }
.circle_item {pointer-events: none;}
.circle_link {pointer-events: auto;}
.circle_item.current .circle_description {transition-delay: 500ms; opacity: 1;}
.circle_item.current .circle_dot {background-color: #FF5100; outline: 1px solid #FF5100;}
.circle_link:hover .circle_dot {transform: scale(0.7);}
.circle_link:hover .circle_date {opacity: 0.7;}
.no-click {
	pointer-events: none;
}
.can-click {
	pointer-events: auto;
}
/* Target any element with a certain "word" in the class name  */
/* Expand Seciton  */
 .enka-text-section {
            background: #ededed;
            margin-bottom: 25px;
            position: relative;
            overflow: hidden;
            gap: 2rem;
            transition: all 0.3s ease;
        }
        .enka-section-title {
            color: white;
            font-size: 1.3em;
            font-weight: 600;
            margin-bottom: 15px;
        }
        .enka-visible-text {
            font-size: 1.1em;
            color: #5e5d5d;
            margin-bottom: 20px;
        }
        .enka-hidden-text {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, opacity 0.3s ease;
            opacity: 0;
            font-size: 1.1em;
            color: #5e5d5d;
        }
        .enka-hidden-text.expanded {
            max-height: 1000px;
            opacity: 1;
            margin-top: 15px;
            margin-bottom: 20px;
        }
.enka-expand-btn {
    background: #ff5100;
    color: white;
    border: none;
    padding: 10px 13px;
    border-radius: 100px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
        .enka-expand-btn:hover {
            background: #0039C8;
            transform: translateY(-2px);
        }
        .enka-expand-btn:active {
            transform: translateY(0);
        }
        .enka-fade-effect {
            position: relative;
        }
   .enka-fade-effect::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, #ededed);
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
        .enka-fade-effect.expanded::after {
            opacity: 0;
        }
        /* Yumuşak giriş animasyonu */
        .enka-text-section {
            animation: slideInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
 
        html {
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
}
/* Tab Styles */
.tab-inner {
   justify-content: center;
   align-items: center;
   width: 100%;
   height: auto;
   min-height: auto;
   padding-top: 0;
   padding-bottom: 0;
   display: flex;
   position: relative;
}
.tab-content-2 {
   grid-column-gap: 1rem;
   grid-row-gap: 1rem;
   background-color: #0039c8;
   flex-flow: column;
   justify-content: center;
   align-items: center;
   width: 50%;
   min-height: 300px;
   margin-left: auto;
   padding: 2rem;
   display: flex;
   position: relative;
   left: auto;
   right: 0;
}
.tab-content-2.orange {
   background-color: #ff5100;
}
.number-span {
   color: #0039c8;
   font-size: 1.7rem;
   font-weight: 600;
}
.number-span.pn {
   color: #ff5100;
}
.products-tab {
   width: 100%;
   max-width: 1400px;
   position: static;
}
.tab-content-desc {
   color: #fff;
   text-align: center;
   font-size: 1.3rem;
   font-weight: 600;
}
.div-block {
   grid-column-gap: .5rem;
   grid-row-gap: .5rem;
   flex-flow: column;
   justify-content: center;
   align-items: flex-end;
   display: flex;
}
.tabs-content {
   width: 100%;
   position: relative;
   overflow: hidden;
   min-height: 600px;
}
.line {
   background-color: #ff5100;
   width: 0%;
   height: 1px;
   position: absolute;
   bottom: 0;
   left: 0;
   transition: width 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.line.blue {
   background-color: #0039c8;
}
.head-span {
   color: #ff5100;
   font-weight: 700;
}
.head-span.pn {
   color: #0039C9;
   font-weight: 700;
}
.tab-content {
   padding-top: 8rem;
   padding-bottom: 0rem;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   opacity: 0;
   visibility: hidden;
   transform: translateY(30px);
   transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.tab-content.w--tab-active {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
   position: relative;
}
.tab-content-1 {
   grid-column-gap: 1rem;
   grid-row-gap: 1rem;
   background-color: #0039c8;
   flex-flow: column;
   justify-content: center;
   align-items: center;
   width: 80%;
   min-height: 300px;
   margin-left: auto;
   padding: 2rem;
   display: flex;
   position: relative;
   left: auto;
   right: 0;
}
.tab-content-1.orange {
   background-color: #ff5100;
}
.tab-content-sub-text {
   opacity: 1;
   color: #fff;
   font-size: .7rem;
}
.tab-right {
   z-index: 1;
   grid-column-gap: 2rem;
   grid-row-gap: 2rem;
   flex-flow: column;
   width: 50%;
   height: 100%;
   min-height: 100%;
   margin-top: -12%;
   display: flex;
   position: static;
}
.number-block {
   color: #5e5d5d;
   text-align: right;
   background-image: url('/images/back-arrow.svg');
   background-position: 100% 5px;
   background-repeat: no-repeat;
   background-size: auto;
   padding-right: 2rem;
   font-size: 1.2rem;
}
.number-block.pn {
   background-image: url('/images/back-arrow-pn.svg');
   font-weight: 500;
}
.button-2 {
   color: #0039c8;
   background-image: url('/images/arrow-button.svg');
   background-position: 120%;
   background-repeat: no-repeat;
   background-size: 20px;
   border: 1px solid #0039c8;
   border-radius: 100px;
   padding: .5rem 1rem;
   font-size: .9rem;
   text-decoration: none;
   transition: all .2s;
}
.button-2:hover {
   background-position: 94%;
   padding-right: 2.2rem;
}
.button-2.pn {
   color: #ff5100;
   background-image: url('/images/arrow-button-pn.svg');
   border-color: #ff5100;
   font-weight: 500;
}
.tab-content-ico {
   width: 80px;
}
.tab-left {
   z-index: 1;
   grid-column-gap: 2rem;
   grid-row-gap: 2rem;
   flex-flow: column;
   width: 50%;
   height: auto;
   min-height: auto;
   padding-right: 8rem;
   display: flex;
   position: relative;
}
.pert-icon {
   z-index: 10;
   width: 29%;
   min-width: auto;
   max-width: 400px;
   min-height: auto;
   max-height: 400px;
   margin-top: auto;
   margin-bottom: auto;
   position: absolute;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
}
.tabs {
   color: #5e5d5d;
   letter-spacing: -1px;
   background-color: #fff;
   padding-left: 0;
   padding-right: 0;
   font-size: 1.6rem;
   font-weight: 500;
   text-decoration: none;
   cursor: pointer;
   border: none;
   background: none;
   height: 80px;
   position: relative;
   font-weight: 600;
   transition: color 0.3s ease;
}
.tabs.w--current {
   color: #5e5d5d;
   background-color: transparent;
}
.tabs.pn.w--current {
   color: #0039c8;
}
.tabs.pp.w--current {
   color: #ff5100;
}
.tab-left-header {
   color: #5e5d5d;
   letter-spacing: -1px;
   font-size: 2rem;
   font-weight: 600;
}
.bg-circles {
   background-image: radial-gradient(circle, #b6b6b6, #ffffff00 61%);
   width: 50%;
   min-width: auto;
   max-width: 600px;
   max-height: 600px;
   margin-top: 0;
   margin-bottom: 0;
   position: absolute;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
}
.tabs-menu {
   grid-column-gap: 2rem;
   grid-row-gap: 2rem;
   width: 100%;
   display: flex;
}
/* Card Styles */
.button-1 {
   color: #0039c8;
   background-image: url("https://cdn.prod.website-files.com/685d29da81c88fdcd34155c7/68b1a714d230a5540c81849d_search-button.svg");
   background-position: 120%;
   background-repeat: no-repeat;
   background-size: 20px;
   border: 1px solid #0039c8;
   border-radius: 100px;
   padding: .5rem 1rem;
   font-size: .9rem;
   text-decoration: none;
   transition: all .2s;
}
.button-1:hover {
   background-position: 94%;
   padding-right: 2.2rem;
}
.button-1.pn {
   color: #ff5100;
   background-image: url("https://cdn.prod.website-files.com/685d29da81c88fdcd34155c7/68b1a714d230a5540c8184a2_search-button-pn.svg");
   border-color: #ff5100;
   font-weight: 500;
}
.card-wrapper-head {
   border-bottom: 1px #d5d5d5;
   justify-content: space-between;
   align-items: flex-start;
   width: 100%;
   padding-bottom: 0;
   display: flex;
}
.home-card-wrapper {
   grid-column-gap: .5rem;
   grid-row-gap: 2rem;
   background-color: #fff0;
   border-top: 2px solid #ff5100;
   flex-flow: wrap;
   justify-content: space-between;
   align-items: flex-start;
   margin-top: 6rem;
   padding: 2rem 0 0;
   display: flex;
}
.home-card-wrapper.pn {
   border-top-color: #0039c8;
}
.detail-ico {
   justify-content: center;
   align-items: center;
   width: 25px;
   height: 25px;
   display: flex;
}
.product-name {
   color: #ff5100;
   font-size: 1.2rem;
   font-weight: 600;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  min-height: calc(1.25em * 2);
}
.product-name.pn {
   color: #0039c8;
}
.product-no {
   font-size: .8rem;
}
.card-vehicle-image {
   min-width: auto;
  max-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-wrapper {
   grid-column-gap: 0rem;
   grid-row-gap: 0rem;
   color: #4e4c4c;
   background-color: #fff;
   border: 1px solid #fff;
   flex-flow: column;
   width: 24%;
   padding: 1rem;
   text-decoration: none;
   transition: all .2s;
   display: flex;
}
.card-wrapper:hover {
   border-color: #ff5100;
   border-radius: 0;
   transform: translate(0, -10px);
   box-shadow: 0 8px 19px -9px #0003;
}
.card-wrapper.pn:hover {
   border-color: #0039c8;
}
.tooltips-wrapper {
   z-index: 10;
   flex-direction: column;
   justify-content: flex-end;
   align-items: center;
   margin-top: 0;
   display: flex;
   position: absolute;
   inset: auto 0% 40px;
}
.text {
   cursor: default;
   background-color: #fff;
   border-radius: 8px;
   padding-left: 8px;
   padding-right: 8px;
   font-size: 16px;
   font-weight: 500;
   line-height: 36px;
   box-shadow: 0 6px 12px #0000000a, 0 1px 2px #0000001f;
}
.text._2 {
   box-shadow: none;
   color: #4e4c4c;
   text-align: center;
   white-space: normal;
   background-color: #d5d5d5;
   border: 2px solid #fff;
   border-radius: 5px;
   width: 150px;
   padding: .5rem .5rem 1rem;
   font-size: .8rem;
   line-height: 1.3;
}
.detail-btn {
   color: #fff;
   background-color: #ff5100;
   border-radius: 100px;
   justify-content: center;
   align-items: center;
   width: 50px;
   height: 50px;
   display: flex;
   position: absolute;
   inset: auto;
}
.detail-btn.pn {
   background-color: #0039c8;
}
.tooltips {
   color: #fff;
   cursor: pointer;
   background-color: #fff0;
   border: 3px solid #0000;
   border-radius: 100px;
   justify-content: center;
   align-items: center;
   width: 40px;
   min-width: 40px;
   height: 40px;
   min-height: 40px;
   margin: 0;
   padding: 0;
   font-size: .9rem;
   transition: all .2s;
   display: flex;
   position: relative;
}
.tooltips:hover {
   color: #0083d4;
   background-color: #e0e4f100;
   border-color: #fff;
}
.top-tooltip {
   z-index: 1;
   background-color: #fff;
   border-radius: 0 0 2px;
   width: 10px;
   height: 10px;
   margin-top: -5px;
   position: relative;
   transform: rotate(45deg);
   box-shadow: 2px 2px 3px -1px #0000001f;
}
.top-tooltip._2 {
   background-color: #d5d5d5;
   border: 2px solid #fff;
   border-style: none solid solid none;
   border-radius: 0;
   margin-top: -5px;
   margin-bottom: 0;
   box-shadow: -2px -2px 3px -1px #0000000a;
}
.btn-wrapper {
   grid-column-gap: .5rem;
   grid-row-gap: .5rem;
   justify-content: center;
   align-items: flex-start;
   width: 100%;
   display: flex;
   margin-top: auto;
}
.btn-bg {
   z-index: 0;
   background-color: #fff;
   border-radius: 100px;
   position: absolute;
   inset: 0%;
}
.btn-bg.pn {
   background-color: #fff;
}
.ico-btn {
   z-index: 9;
   outline-offset: 3px;
   color: #ff5100;
   background-color: #fff;
   border-radius: 100px;
   outline: 1px solid #d5d5d5;
   justify-content: center;
   align-items: center;
   width: 40px;
   min-width: 40px;
   height: 40px;
   min-height: 40px;
   transition: all 1ms cubic-bezier(.77, 0, .175, 1);
   display: flex;
   position: relative;
}
.ico-btn:hover {
   color: #fff;
   background-color: #5e5d5d;
   outline-color: #ff5100;
}
.ico-btn.pn {
   color: #0039c8;
   background-color: #0039c8;
}
.ico-btn.pn:hover {
   color: #fff;
   outline-color: #0039c8;
}
.btn-embed-ico {
   z-index: 1;
   justify-content: center;
   align-items: center;
   width: 25px;
   height: 25px;
   display: flex;
   position: relative;
}
.card-content-wrapper {
   grid-column-gap: 1rem;
   grid-row-gap: 1rem;
   text-align: center;
   flex-flow: column;
   justify-content: flex-start;
   align-items: center;
   padding: 2rem 1rem 1rem;
   display: flex;
}
.card-image {
   justify-content: center;
   align-items: center;
   width: 100%;
   height: 200px;
   display: flex;
   position: relative;
   overflow: hidden;
}
.card-head {
   text-align: left;
   width: auto;
   margin-bottom: 0;
   font-size: 1.3rem;
   font-weight: 700;
}
.head-span-card {
   color: #ff5100;
}
.head-span-card.pn {
   color: #0039c8;
}
/* Animation Styles */
.animated-element {
   opacity: 0;
   transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.tab-content.w--tab-active .animated-element {
   opacity: 1;
}
.tab-inner.animated-element {
   transform: translateY(100px);
}
.tab-content.w--tab-active .tab-inner.animated-element {
   transform: translateY(0);
}
.tab-left-header.animated-element {
   transform: translateY(60px);
}
.tab-content.w--tab-active .tab-left-header.animated-element {
   transform: translateY(0);
}
.tab-content-1.animated-element {
   transform: translateY(60px);
}
.tab-content.w--tab-active .tab-content-1.animated-element {
   transform: translateY(0);
}
.tab-content-2.animated-element {
   transform: translateY(60px);
}
.tab-content.w--tab-active .tab-content-2.animated-element {
   transform: translateY(0);
}
.number-block.animated-element {
   transform: translateY(40px);
}
.tab-content.w--tab-active .number-block.animated-element {
   transform: translateY(0);
}
.div-block.animated-element {
   transform: translateY(50px);
}
.tab-content.w--tab-active .div-block.animated-element {
   transform: translateY(0);
}
/* Animation Delays */
.tab-content.w--tab-active .animated-element.delay-1 { transition-delay: 0.1s; }
.tab-content.w--tab-active .animated-element.delay-2 { transition-delay: 0.2s; }
.tab-content.w--tab-active .animated-element.delay-3 { transition-delay: 0.3s; }
.tab-content.w--tab-active .animated-element.delay-4 { transition-delay: 0.5s; }
.tab-content.w--tab-active .animated-element.delay-5 { transition-delay: 0.6s; }
/* Background Animations */
.bg-circles {
   animation: circle-pulse 3.9s ease-in-out infinite;
   animation-delay: 1s;
}
.pert-icon {
   animation: icon-pulse 4s ease-in-out infinite;
   animation-delay: 1s;
}
@keyframes circle-pulse {
   0%, 100% {
       transform: translate(-50%, -50%) scale(1);
   }
   50% {
       transform: translate(-50%, -50%) scale(1.05);
   }
}
@keyframes icon-pulse {
   0%, 100% {
       transform: translate(-50%, -50%) scale(1);
   }
   50% {
       transform: translate(-50%, -50%) scale(1.1);
   }
}
/* Responsive Styles */
@media screen and (min-width: 1280px) {
   .drp-menu {
       padding-left: 0;
       padding-right: 0;
       font-size: 1em;
   }
}
@media screen and (max-width: 991px) {
   .drp-menu {
       border-bottom: .5px #fff3;
       width: 100%;
       height: auto;
       display: block;
   }
   .tab-inner {
       grid-column-gap: 2rem;
       grid-row-gap: 2rem;
       flex-flow: row;
   }
   .div-block {
       flex-flow: column;
       justify-content: flex-start;
       align-items: flex-end;
   }
   .tab-content-2, .tab-content-2.orange {
       width: 100%;
   }
   .tab-content {
       padding-top: 2rem;
       padding-bottom: 2rem;
   }
   .tab-content-1 {
       width: 100%;
   }
   .tab-content-1.orange {
       width: 100%;
       margin-left: 0;
       margin-right: auto;
   }
   .tabs.pn, .tabs.pp {
       background-color: #fff0;
   }
   .tab-right {
       width: 50%;
       margin-top: 0%;
       padding-left: 2rem;
       padding-right: 0;
   }
   .number-block.pn {
       text-align: right;
   }
   .tab-left {
       justify-content: flex-start;
       align-items: flex-start;
       width: 50%;
       padding-left: 0;
       padding-right: 2rem;
   }
   .card-wrapper {
       width: 49%;
   }
}
@media screen and (max-width: 767px) {
   .tab-content-2 {
       padding-left: 1rem;
       padding-right: 1rem;
   }
   .tab-content-2.orange {
       padding: 1rem;
   }
   .tab-content-1 {
       padding-left: 1rem;
       padding-right: 1rem;
   }
   .tab-content-1.orange {
       padding: 1rem;
   }
   .number-block, .number-block.pn {
       background-position: 100% 10px;
       background-size: 9px;
       padding-right: 1rem;
   }
   .tab-content-ico {
       width: 50px;
   }
   .tab-left-header {
       font-size: 1.5rem;
   }
}
@media screen and (max-width: 479px) {
   .tab-inner {
       grid-column-gap: 0rem;
       grid-row-gap: 0rem;
       flex-flow: column;
   }
   .div-block {
       justify-content: flex-start;
       align-items: center;
   }
   .tab-content-2 {
       min-height: auto;
   }
   .tab-content-2.orange {
       min-height: auto;
       padding-top: 2rem;
       padding-bottom: 2rem;
   }
   .tab-content-1 {
       min-height: auto;
       padding-bottom: 8rem;
   }
   .tab-content-1.orange {
       min-height: auto;
       padding-top: 2rem;
       padding-bottom: 8rem;
   }
   .tabs.pn, .tabs.pp, .tabs.pp.w--current {
       font-size: 1.3rem;
   }
   .tab-right {
       grid-column-gap: 1rem;
       grid-row-gap: 1rem;
       width: 100%;
       padding-left: 0;
   }
   .number-block {
       text-align: center;
       background-image: none;
       background-repeat: repeat;
       background-size: auto;
       padding-right: 0;
   }
   .number-block.pn {
       text-align: center;
       background-image: none;
       background-position: 0 0;
       background-repeat: repeat;
       background-size: auto;
       padding-right: 0;
   }
   .tab-left {
       width: 100%;
       padding-right: 0;
   }
   .pert-icon {
       width: 128px;
       margin-top: -15%;
   }
   .tab-left-header {
       font-size: 1.3rem;
   }
   .bg-circles {
       background-image: radial-gradient(circle, #b6b6b6, #fff0 61%);
       width: 100%;
       display: none;
   }
   .card-wrapper-head {
       grid-column-gap: 1rem;
       grid-row-gap: 1rem;
       flex-flow: column;
       justify-content: space-between;
       align-items: center;
   }
   .home-card-wrapper {
       grid-row-gap: 1rem;
       padding-top: 1rem;
   }
   .home-card-wrapper.pn {
       grid-row-gap: 1rem;
   }
   .card-wrapper {
       width: 100%;
   }
}
login-container {
    max-width: 500px;
    width: 100%;
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.login-title {
    font-size: 28px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 40px;
    text-align: center;
}
/* Form grupları */
.form-group {
    margin-bottom: 24px;
    position: relative;
}
.form-label {
    display: block;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-align: left;
}
.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #DDDDDD;
    border-radius: 100px;
    font-size: 1rem;
    color: #333333;
    background: #ffffff;
    transition: all 0.3s ease;
    outline: none;
}
.form-input:focus {
    border-color: #FF5100;
    box-shadow: 0 0 0 4px rgba(255, 81, 0, 0.1);
}
/* Şifre alanı ve göz ikonu */
.password-group {
    position: relative;
}
.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}
.password-toggle:hover {
    color: #FF5100;
}
.password-toggle svg {
    width: 20px;
    height: 20px;
}
/* Güvenlik bölümü */
.security-section {
    display: none;
    animation: slideDown 0.3s ease-out;
}
.security-section.show {
    display: block;
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.security-info {
    background: #f8f9fa;
    border-left: 4px solid #FF5100;
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
}
.countdown-display {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: #FF5100;
    font-size: 14px;
}
/* Giriş butonu */
.login-button {
    width: 100%;
    padding: 18px;
    background: #FF5100;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}
.login-button:hover {
    background: #0039C8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 57, 200, 0.3);
}
.login-button:active {
    transform: translateY(0);
}
.login-button:disabled {
    background: #CCCCCC;
    color: #666666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
/* Hata ve başarı mesajları */
.error-message {
    color: #ff0000;
    font-size: 14px;
    margin-top: 8px;
    display: none;
}
.error-message.show {
    display: block;
}
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
    display: none;
}
.success-message.show {
    display: block;
}
/* KAYIT FORMU BUTON DÜZELTMELERİ */
.e-form-submit {
    width: auto;
    padding: 18px 32px;
    background: #CCCCCC !important;
    color: #666666 !important;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: not-allowed;
    transition: all 0.3s ease;
    text-transform: none;
    margin: 0 auto;
    display: block;
    pointer-events: none;
}
.e-form-submit.enabled {
    background: #FF5100 !important;
    color: white !important;
    cursor: pointer;
    pointer-events: auto;
}
.e-form-submit.enabled:hover {
    background: #0039C8 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 57, 200, 0.3);
}
.e-form-submit.enabled:active {
    transform: translateY(0);
}
.e-form-select:disabled {
    background-color: #f5f5f5;
    color: #999999;
    cursor: not-allowed;
}
/* Responsive tasarım */
@media (max-width: 480px) {
    .login-container {
        padding: 30px 20px;
        margin: 20px;
    }
    .login-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .form-input {
        padding: 14px 16px;
    }
    .countdown-display {
        right: 16px;
        font-size: 12px;
    }
}
 .login-container {
            max-width: 500px;
            width: 100%;
            background: white;
            border-radius: 30px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        .login-title {
            font-size: 28px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 40px;
            text-align: center;
        }
        .form-group {
            margin-bottom: 24px;
            position: relative;
        }
        .form-label {
            display: block;
            font-weight: 600;
            color: #333333;
            margin-bottom: 8px;
            font-size: 0.9rem;
            text-align: left;
        }
        .form-input {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #DDDDDD;
            border-radius: 100px;
            font-size: 1rem;
            color: #333333;
            background: #ffffff;
            transition: all 0.3s ease;
            outline: none;
        }
        .form-input:focus {
            border-color: #FF5100;
            box-shadow: 0 0 0 4px rgba(255, 81, 0, 0.1);
        }
        .password-group {
            position: relative;
        }
        .password-toggle {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            color: #666;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.3s ease;
        }
        .password-toggle:hover {
            color: #FF5100;
        }
        .password-toggle svg {
            width: 20px;
            height: 20px;
        }
        .security-section {
            display: none;
            animation: slideDown 0.3s ease-out;
        }
        .security-section.show {
            display: block;
        }
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .security-info {
            background: #f8f9fa;
            border-left: 4px solid #FF5100;
            padding: 12px 16px;
            margin-bottom: 20px;
            border-radius: 8px;
            font-size: 14px;
            color: #666;
        }
        .timer-section {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 20px 0;
        }
        .circular-timer {
            position: relative;
            width: 80px;
            height: 80px;
        }
        .timer-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: conic-gradient(#FF5100 0deg, #DDDDDD 0deg);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: background 0.1s linear;
        }
        .timer-circle::before {
            content: '';
            position: absolute;
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
        }
        .timer-text {
            position: absolute;
            font-size: 14px;
            font-weight: 600;
            color: #FF5100;
            z-index: 1;
        }
        .login-button {
            width: 100%;
            padding: 18px;
            background: #FF5100;
            color: white;
            border: none;
            border-radius: 100px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
        }
        .login-button:hover {
            background: #0039C8;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 57, 200, 0.3);
        }
        .login-button:active {
            transform: translateY(0);
        }
        .login-button:disabled {
            background: #CCCCCC;
            color: #666666;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        .error-message {
            color: #ff0000;
            font-size: 14px;
            margin-top: 8px;
            display: none;
        }
        .error-message.show {
            display: block;
        }
        .success-message {
            background: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 100px;
            margin-top: 20px;
            text-align: center;
            display: none;
        }
        .success-message.show {
            display: block;
        }
        @media (max-width: 480px) {
            .login-container {
                padding: 30px 20px;
                margin: 20px;
            }
            .login-title {
                font-size: 24px;
                margin-bottom: 30px;
            }
            .circular-timer {
                width: 60px;
                height: 60px;
            }
            .timer-circle {
                width: 60px;
                height: 60px;
            }
            .timer-circle::before {
                width: 45px;
                height: 45px;
            }
            .timer-text {
                font-size: 12px;
            }
        }
  
 