/**
 * @file reset.css
 * @description 
 * @author Erdinç Taze
 * @copyright 
 */

/* Offer Section Styles */
.offer-section {
    background-color: #dc2626;
    padding: 40px 0;
    position: relative;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    z-index: -1;
}

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

.offer-subtitle {
    font-size: 14px;
}

.offer-form {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
}

.offer-form .form-label {
    margin-bottom: 5px;
}

.offer-form .form-control {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 15px;
    padding: 10px;
    transition: all 0.3s ease;
}

.offer-form .form-control:focus {
    background: white;
    border-color: #fbbf24;
    box-shadow: 0 0 0 0.2rem rgba(251, 191, 36, 0.25);
    outline: none;
}

/* Validation States */
.offer-form .form-control.is-invalid {
    border: 2px solid #dc2626 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25) !important;
}

.offer-form .form-select.is-invalid {
    border: 2px solid #dc2626 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25) !important;
}

.offer-form .form-control.is-valid {
    border: 2px solid #16a34a !important;
    box-shadow: 0 0 0 0.2rem rgba(22, 163, 74, 0.25) !important;
}

.offer-form .form-select.is-valid {
    border: 2px solid #16a34a !important;
    box-shadow: 0 0 0 0.2rem rgba(22, 163, 74, 0.25) !important;
}

.error-message {
    display: none;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff !important;
    min-height: 16px;
    margin-top: 4px !important;
}

.error-message.show {
    display: block;
}

.error-message.text-success {
    color: #22c55e !important;
}

/* Success Message Styling */
.success-message {
    animation: slideDown 0.5s ease-out;
    border-left: 4px solid #16a34a;
}

.success-message i {
    color: #16a34a;
    font-size: 16px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.offer-form .form-select {
    border: none;
    border-radius: 15px;
    width: 100%;
}

.offer-form .btn-submit {
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    color: #dc2626;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 15px;
    height: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: none;
}

.offer-form .btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.offer-form .btn-submit:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

.offer-form .btn-submit:hover::before {
    left: 0;
}

.offer-form .btn-submit:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(220, 38, 38, 0.3);
}

.offer-form .btn-submit i {
    transition: transform 0.3s ease;
}

.offer-form .btn-submit:hover i {
    transform: translateX(3px);
}

/* Loading state for button */
.offer-form .btn-submit:disabled {
    cursor: not-allowed;
    opacity: 0.7;
    transform: none;
}

.offer-form .btn-submit:disabled:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Select2 Bootstrap Theme Styling */
.select2-container {
    width: 100% !important;
    font-size: 14px;
}
.slick-slider {
    user-select: auto;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
    .offer-section {
        padding: 30px 0;
    }
    
    .offer-title {
        font-size: 20px !important;
        text-align: center;
    }
    
    .offer-subtitle {
        text-align: center;
        margin-bottom: 20px !important;
    }
    
    .offer-form {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .offer-form .row.g-3 {
        gap: 15px !important;
    }
    
    .offer-form [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
        margin-top: 5px;
    }
    
    .offer-title {
        font-size: 18px !important;
    }
    
    .offer-form {
        padding: 25px 20px !important;
    }
    
    .offer-form .btn-submit {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Digicut Counter Section Styles */
.digicut-counter-section {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.digicut-counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
    z-index: 1;
}

.digicut-counter-container {
    position: relative;
    z-index: 2;
}

.digicut-counter-item {
    text-align: center;
    padding: 40px 25px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.digicut-counter-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    transition: width 0.4s ease;
}

.digicut-counter-item:hover::after {
    width: 100%;
}

.digicut-counter-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.08);
}

.digicut-counter-icon {
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.digicut-counter-icon i {
    font-size: 36px;
    color: #dc2626;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.digicut-ripple {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.digicut-counter-item:hover .digicut-counter-icon i {
    transform: scale(1.1);
    color: #ef4444;
}

.digicut-counter-number {
    font-size: 44px;
    font-weight: 700;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: baseline;
}

.digicut-counter-suffix {
    font-size: 34px;
    font-weight: 600;
    margin-left: 5px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.digicut-counter-title {
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Counter Responsive Styles */
@media (max-width: 991px) {
    .digicut-counter-item {
        margin-bottom: 30px;
        padding: 30px 20px;
    }
    
    .digicut-counter-number {
        font-size: 38px;
    }
    
    .digicut-counter-suffix {
        font-size: 30px;
    }
    
    .digicut-counter-icon i {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .digicut-counter-section {
        padding: 60px 0;
    }
    
    .digicut-counter-item {
        padding: 25px 15px;
    }
    
    .digicut-counter-number {
        font-size: 34px;
    }
    
    .digicut-counter-suffix {
        font-size: 26px;
    }
    
    .digicut-counter-title {
        font-size: 14px;
    }
    
    .digicut-counter-icon i {
        font-size: 28px;
    }
}

/* Feature Swipe Indicator Styles */
.swipe-indicator {
    display: none;
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    align-items: center;
    gap: 6px;
    z-index: 10;
    animation: fadeInOut 2s infinite;
}

.swipe-indicator i {
    font-size: 14px;
    animation: swipeAnim 1.5s infinite;
}

@keyframes swipeAnim {
    0% {
        transform: translateX(-3px);
    }
    50% {
        transform: translateX(3px);
    }
    100% {
        transform: translateX(-3px);
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .swipe-indicator {
        display: flex;
    }
}

/* Logo Slider Section Styles */
.digicut-logo-section {
    position: relative;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    padding: 60px 0;
}

.digicut-logo-container {
    position: relative;
}

.digicut-logo-title-wrap {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.digicut-logo-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(220, 38, 38, 0.1) 50%, 
        transparent 100%
    );
}

.digicut-logo-title {
    font-size: 28px;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
    margin: 0;
}

.digicut-logo-item {
    position: relative;
    margin: 15px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        inset 0 2px 4px rgba(255, 255, 255, 0.9);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    isolation: isolate;
}

.digicut-logo-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.5),
        rgba(255, 255, 255, 0.1)
    );
    z-index: 1;
}

.digicut-logo-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(220, 38, 38, 0.03) 50%,
        transparent 100%
    );
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.digicut-logo-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 25px -5px rgba(220, 38, 38, 0.1),
        0 10px 10px -5px rgba(220, 38, 38, 0.04),
        inset 0 2px 4px rgba(255, 255, 255, 0.9);
}

.digicut-logo-item:hover::after {
    opacity: 1;
}

.digicut-logo-item img {
    max-width: 85%;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
    z-index: 3;
    position: relative;
}

.digicut-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.digicut-logo-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: skewX(-25deg);
    animation: shine 3s infinite;
    z-index: 4;
}

@keyframes shine {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        left: 200%;
        opacity: 0;
    }
}

/* Logo Section Responsive */
@media (max-width: 991px) {
    .digicut-logo-section {
        padding: 40px 0;
    }
    
    .digicut-logo-title {
        font-size: 24px;
    }
    
    .digicut-logo-title-wrap {
        margin-bottom: 30px;
    }

    .digicut-logo-item {
        min-height: 120px;
        margin: 10px;
    }
}

@media (max-width: 767px) {
    .digicut-logo-section {
        padding: 30px 0;
    }
    
    .digicut-logo-title {
        font-size: 20px;
    }
    
    .digicut-logo-item {
        min-height: 100px;
        padding: 15px;
        margin: 8px;
    }
    
    .digicut-logo-item img {
        max-height: 50px;
    }
}

.digicut-process-icon {
    position: relative;
    text-align: center;
    width: var(--icon-size, 130px);
    height: var(--icon-size, 130px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 50%;
    margin: 0 auto 30px auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.digicut-process-icon .process-number {
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    background-color: #dc2626;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    border: 3px solid #ffffff;
    z-index: 3;
}

.digicut-process-icon .icon-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    animation: pulseScale 3s ease-in-out infinite;
}

.digicut-process-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(220, 38, 38, 0.15) 20deg,
        rgba(220, 38, 38, 0.15) 120deg,
        transparent 140deg
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderRotate 8s linear infinite;
}

.digicut-process-icon::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        rgba(220, 38, 38, 0.05) 0%,
        transparent 70%
    );
    z-index: -1;
    animation: glowPulse 2s ease-in-out infinite;
}

.digicut-process-icon img {
    width: 50px;
    height: auto;
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.digicut-process-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.digicut-process-icon:hover::before {
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        #dc2626 20deg,
        #dc2626 120deg,
        transparent 140deg
    );
    animation: borderRotate 2s linear infinite;
}

@keyframes borderRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseScale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.8;
        transform: scale(1);
    }
}

@media (max-width: 991px) {
    .digicut-process-icon {
        --icon-size: 100px;
        margin: 0 auto 20px auto;
    }
    
    .digicut-process-icon img {
        width: 40px;
    }
}
@media (max-width: 767px) {
    .article-content img, .article-content iframe, .article-content video {
        width: 100% !important;
        height: auto !important;
    }
}
.image_style_1{
    border-radius: 60% 40% 25% 70% / 50% 60% 40% 50%;
    border: 5px solid #F44336;
    object-fit: cover;
}
.image_style_2{
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(45deg, #ff0000, #fffefd, #e91e1e);
}
.image_style_3{
    border-radius: 50%;
    border: 5px double #F44336;
}
.image_Style_4{
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 15px #F44336, 0 0 25px #F44336;
}
.image_style_5{
    border-radius: 50%;
    border: 6px solid #F44336;
    border-style: dashed;
    animation: wiggle 4s infinite linear;
}
.image_style_6{
    border-radius: 20%;
    border: 4px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.image_style_7{
    border-radius: 50%;
    border: 3px solid #F44336;
    box-shadow: 0 0 15px #F44336, 0 0 30px #F44336, 0 0 45px #F44336;
}
@keyframes wiggle {
    0% { border-radius: 60% 40% 50% 70% / 60% 50% 70% 40%; }
    50% { border-radius: 50% 60% 70% 40% / 40% 70% 50% 60%; }
    100% { border-radius: 60% 40% 50% 70% / 60% 50% 70% 40%; }
}
