/* Header stilini başa alıyorum ve tekrar eden tanımlamayı kaldırıyorum */
.header {
    padding: 20px 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

/* Logo Stilleri */
.logo-text-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* SVG Logo animasyonları */
.logo-svg {
    width: 100%;
    height: 100%;
}

.envelope-top {
    transform-origin: bottom;
    animation: flapMove 6s infinite ease-in-out;
}

.envelope-body {
    filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.2));
}

.paper {
    animation: paperMove 6s infinite ease-in-out;
}

.signature-line {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawSignature 6s infinite ease-in-out;
    transform-origin: center;
}

.pen {
    animation: movePen 6s infinite ease-in-out;
    transform-origin: center;
}

@keyframes flapMove {
    0%, 10% {
        transform: rotateX(0deg);
    }
    15%, 30% {
        transform: rotateX(-45deg) translateY(-5px);
    }
    75%, 100% {
        transform: rotateX(0deg);
    }
}

@keyframes paperMove {
    0%, 5% {
        transform: translateY(-15px);
        opacity: 0;
    }
    10%, 15% {
        transform: translateY(5px);
        opacity: 1;
    }
    20%, 100% {
        transform: translateY(30px);
        opacity: 1;
    }
}

@keyframes drawSignature {
    0%, 35% {
        stroke-dashoffset: 50;
        opacity: 0;
    }
    40% {
        opacity: 1;
        stroke-dashoffset: 50;
    }
    50%, 100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

@keyframes movePen {
    0%, 35% {
        transform: translate(-15px, 5px) rotate(-30deg) scale(0);
        opacity: 0;
    }
    40% {
        opacity: 1;
        transform: translate(-15px, 5px) rotate(-30deg) scale(1);
    }
    50% {
        transform: translate(5px, 5px) rotate(-30deg) scale(1);
        opacity: 1; 
    }
    60% {
        transform: translate(25px, 5px) rotate(-30deg) scale(1);
        opacity: 1;
    }
    65%, 100% {
        opacity: 0;
        transform: translate(35px, 5px) rotate(-30deg) scale(0);
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    color: #041e42;
    letter-spacing: 1px;
    line-height: 1;
}

.logo-sub {
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    color: #ffcc00;
    letter-spacing: 1px;
    line-height: 1;
    background-color: #041e42;
    padding: 3px 8px;
    border-radius: 3px;
    margin-top: 2px;
    display: inline-block;
}

.fa-spin-pulse {
    animation: spin 1.5s linear infinite;
}

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

@keyframes waveAnimation {
    0% {
        background-position: 0% 0;
        height: 5px;
    }
    25% {
        height: 7px;
    }
    50% {
        background-position: 100% 0;
        height: 5px;
    }
    75% {
        height: 7px;
    }
    100% {
        background-position: 0% 0;
        height: 5px;
    }
}

/* Responsive tasarım */
@media (max-width: 767px) {
    .logo-main {
        font-size: 24px;
    }
    
    .logo-sub {
        font-size: 14px;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
    }
}

.header h1 {
    font-weight: 700;
    font-size: 2.2rem;
    margin: 0;
    color: #041e42;
}

.header p {
    margin-bottom: 0;
    color: #333;
}

/* Tema Bölümü Stilleri */
.theme-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-header h2 {
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
}

.header-line {
    height: 3px;
    width: 80px;
    background-color: #FF5722;
    margin: 0 auto 30px;
    position: relative;
}

.header-line.animate {
    animation: expand 1.5s ease-out;
}

@keyframes expand {
    0% {
        width: 0;
    }
    100% {
        width: 80px;
    }
}

.theme-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #003366;
}

.theme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-top: 4px solid #FFD700;
}

.theme-icon {
    width: 70px;
    height: 70px;
    background: #003366;
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
    font-size: 24px;
}

.theme-card h3 {
    color: #003366;
    font-size: 22px;
    margin: 15px 0;
    font-weight: 600;
}

.theme-card p {
    color: #555;
    margin-bottom: 20px;
}

.theme-list {
    padding-left: 20px;
    color: #555;
}

.theme-list li {
    margin-bottom: 8px;
    position: relative;
}

.theme-list li:before {
    content: "•";
    color: #FFD700;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Instagram Story Tarzı Carousel Stilleri */
.carousel-section {
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: var(--primary-color);
    position: relative;
}

.carousel-content {
    display: flex;
    height: 100%;
    padding: 40px 20px;
    background: linear-gradient(135deg, #041e42 0%, #0a2e5c 100%);
    position: relative;
}

.carousel-promise, .carousel-achievement {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.carousel-promise {
    background-color: rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.carousel-achievement {
    background-color: rgba(255, 204, 0, 0.1);
    margin-left: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.carousel-promise-badge, .carousel-achievement-badge {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.carousel-promise-badge {
    background: linear-gradient(135deg, #041e42 0%, #0a4da8 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.carousel-achievement-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.carousel-promise h3, .carousel-achievement h4 {
    margin-bottom: 15px;
    font-family: 'Roboto Condensed', sans-serif;
    position: relative;
    display: inline-block;
}

.carousel-promise h3 {
    font-size: 28px;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.carousel-achievement h4 {
    font-size: 24px;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.carousel-promise h3:after, .carousel-achievement h4:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
}

.carousel-promise h3:after {
    background-color: #ffcc00;
}

.carousel-achievement h4:after {
    background-color: #28a745;
}

.carousel-promise p, .carousel-achievement p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.carousel-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.carousel-progress-bar {
    height: 100%;
    width: 0;
    background-color: #ffcc00;
    animation: progressAnimation 10s linear infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes progressAnimation {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .carousel-item {
        height: auto;
        min-height: 600px;
    }
    
    .carousel-content {
        flex-direction: column;
        padding: 20px 10px;
    }
    
    .carousel-promise, .carousel-achievement {
        padding: 20px;
        margin: 10px 0;
    }
    
    .carousel-promise {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-right: 0;
    }
    
    .carousel-achievement {
        margin-left: 0;
    }
}

/* Instagram Tarzı Stories Görünümü */
.stories-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none; /* Firefox için scroll bar gizleme */
}

.stories-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari için scroll bar gizleme */
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.story-item:hover {
    transform: scale(1.05);
}

.story-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffde00, #ffb300, #ffde00);
    padding: 3px;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #0f1d56;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 24px;
}

.story-username {
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    font-weight: 500;
}

/* Story Modal */
.story-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    flex-direction: column;
}

.story-progress {
    display: flex;
    gap: 4px;
    padding: 10px;
}

.progress-bar {
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    flex-grow: 1;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0;
    background-color: #ffffff;
    border-radius: 3px;
    transition: width 0.1s linear;
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.story-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.story-name {
    font-weight: 600;
    font-size: 16px;
}

.story-time {
    font-size: 14px;
    opacity: 0.7;
}

.story-close {
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
}

.story-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.story-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.story-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.story-prev, .story-next {
    flex: 1;
    height: 100%;
    z-index: 2;
    cursor: pointer;
}

.story-item-content {
    background-color: #ffffff;
    color: #0f1d56;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    padding: 20px;
    text-align: center;
}

.story-item-content h2 {
    margin-bottom: 15px;
    color: #0f1d56;
}

.story-item-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.story-item-content ul {
    text-align: left;
    margin-left: 20px;
}

.story-item-content ul li {
    margin-bottom: 8px;
}

/* Carousel'i Stories görünümüne çevirme */
.carousel-section.story-mode {
    display: none;
}

.carousel-fullscreen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #041e42;
    z-index: 1000;
    flex-direction: column;
}

.carousel-fullscreen.active {
    display: flex;
}

.carousel-fullscreen-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 24px;
    z-index: 100;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .stories-container {
        padding: 10px 5px;
    }
    
    .story-item {
        width: 70px;
        margin-right: 10px;
    }
    
    .story-avatar {
        width: 60px;
        height: 60px;
    }
}

/* Modern Adım Adım İmza Süreci Stilleri */
.steps-container {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none; /* Firefox için kaydırma çubuğunu gizler */
    -ms-overflow-style: none; /* IE ve Edge için kaydırma çubuğunu gizler */
}

.steps-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari ve Opera için kaydırma çubuğunu gizler */
}

.horizontal-steps {
    display: flex;
    gap: 20px;
    padding: 10px 5px;
    min-width: max-content;
}

.step-card {
    position: relative;
    background: white;
    border-radius: 10px;
    padding: 25px 20px;
    width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #FFCC00;
}

.step-number-horizontal {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #0e376f;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 3px 5px rgba(14, 55, 111, 0.3);
}

.step-icon-horizontal {
    font-size: 1.8rem;
    color: #FFCC00;
    margin-bottom: 15px;
    margin-top: 10px;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.step-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Responsive tasarım - tablet ve altı */
@media (max-width: 992px) {
    .horizontal-steps {
        overflow-x: auto;
        padding: 15px 5px;
        justify-content: flex-start;
    }
    
    .step-card {
        width: 180px;
        flex-shrink: 0;
    }
    
    .step-card h3 {
        font-size: 1rem;
    }
    
    .step-card p {
        font-size: 0.85rem;
    }
}

/* Responsive tasarım - mobil */
@media (max-width: 768px) {
    .header-line {
        width: 60px;
    }
    
    @keyframes expand {
        0% {
            width: 0;
        }
        100% {
            width: 60px;
        }
    }
    
    .step-card {
        width: 160px;
        padding: 20px 15px;
    }
    
    .step-icon-horizontal {
        font-size: 1.5rem;
    }
}

/* PC ve geniş ekranlar için */
@media (min-width: 1200px) {
    .steps-container {
        overflow-x: visible;
    }
    
    .horizontal-steps {
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 30px;
    }
}

.signature-process .header-line {
    background-color: #FFCC00;
}

.signature-process h2 {
    color: #0e376f;
}

/* Modern form stilleri */
.modern-form-card {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 5px solid #0e376f;
    margin-bottom: 40px;
}

.modern-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.modern-form-card .card-header {
    background: linear-gradient(135deg, #0e376f 0%, #185099 100%);
    color: white;
    font-weight: 700;
    border: none;
    padding: 20px;
    font-family: 'Roboto Condensed', sans-serif;
    position: relative;
}

.modern-form-card .card-body {
    padding: 30px;
    background-color: #fff;
}

.modern-form .form-floating {
    margin-bottom: 20px;
    position: relative;
}

.modern-form .form-control {
    border-radius: 10px;
    padding: 15px 20px 15px 45px;
    height: 58px;
    font-size: 16px;
    border: 2px solid #f0f0f0;
    box-shadow: none;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.modern-form .form-control:focus {
    border-color: rgba(14, 55, 111, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(14, 55, 111, 0.15);
    background-color: #fff;
}

.modern-form .form-floating label {
    padding: 15px 20px;
    color: #666;
}

.form-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #0e376f;
    opacity: 0.7;
    z-index: 5;
    transition: all 0.3s ease;
    pointer-events: none;
}

.modern-form .form-control:focus + label + .form-icon {
    color: #0e376f;
    opacity: 1;
    transform: scale(1.1);
}

.phone-group {
    margin-bottom: 20px;
    position: relative;
}

.phone-label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.phone-group .input-group {
    margin-bottom: 5px;
    position: relative;
}

.phone-group .country-code {
    width: auto;
    min-width: 160px;
    border-radius: 10px 0 0 10px;
    border: 2px solid #f0f0f0;
    border-right: none;
    font-weight: 500;
    color: #333;
    background-color: #f9f9f9;
    height: 58px;
    padding-left: 15px;
}

.phone-group .phone-number {
    border-radius: 0 10px 10px 0;
    padding-left: 15px;
}

.phone-icon {
    right: 15px;
    top: 17px;
}

.phone-format-hint {
    color: #666;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.form-check.form-switch {
    margin: 25px 0;
    padding-left: 3em;
}

.form-check-input {
    width: 3em;
    height: 1.5em;
    margin-top: 0.1em;
    cursor: pointer;
    background-color: #e6e6e6;
    border: none;
}

.form-check-input:checked {
    background-color: #0e376f;
    border-color: #0e376f;
}

.form-check-label {
    margin-left: 10px;
    cursor: pointer;
    font-size: 15px;
    color: #555;
}

.confirm-text {
    position: relative;
    transition: all 0.3s ease;
}

.submit-btn {
    background: linear-gradient(135deg, #0e376f 0%, #185099 100%);
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(14, 55, 111, 0.3);
    position: relative;
    overflow: hidden;
    height: 56px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #185099 0%, #0e376f 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(14, 55, 111, 0.4);
}

.btn-text {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-hover-text {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.3s ease;
}

.submit-btn:hover .btn-text {
    transform: translateY(-120%);
    opacity: 0;
}

.submit-btn:hover .btn-hover-text {
    transform: translateY(-50%);
    opacity: 1;
}

.counter {
    background: linear-gradient(135deg, #FFCC00 0%, #FFB100 100%);
    color: #0e376f;
    padding: 25px 20px;
    border-radius: 15px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.counter::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
    z-index: 1;
}

.counter .display-4 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0e376f;
    margin-top: 10px;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.5);
    position: relative;
    z-index: 2;
}

.campaign-logo {
    display: block;
    max-width: 230px;
    padding: 0;
    border-radius: 0;
    margin: 0;
    background-color: transparent;
    transition: transform 0.3s ease;
}

.campaign-logo:hover {
    transform: scale(1.02);
}

.campaign-logo img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 80px;
}

.logo-image {
    width: 250px;
    height: 250px;
    margin-right: 15px;
}

.logo-image img {
    width: 100%;
    height: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1;
    text-align: left;
}

.fener-text {
    font-size: 2.5rem;
    font-weight: 900;
    color: #041e42;
    letter-spacing: -1px;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.1);
}

.campaign-text {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.text-dark-blue {
    color: #041e42;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.1);
}

.text-yellow {
    color: #ffc700;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.2);
}

.campaign-website {
    font-size: 0.9rem;
    color: #041e42;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Modern Language Selector */
.language-selector {
    position: relative;
    z-index: 20;
    margin-top: 0;
    margin-left: auto;
}

.modern-lang-btn {
    display: inline-flex;
    align-items: center;
    background-color: rgba(4, 30, 66, 0.05);
    color: #041e42;
    border-radius: 50px;
    padding: 6px 12px 6px 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    border: 1px solid rgba(4, 30, 66, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.modern-lang-btn:hover {
    background-color: #041e42;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(4, 30, 66, 0.2);
}

.lang-flag {
    font-size: 18px;
    margin-right: 8px;
    line-height: 1;
}

.lang-text {
    font-size: 14px;
    letter-spacing: 0.3px;
}

.lang-switch {
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    font-size: 11px;
    border-radius: 50%;
    background-color: rgba(4, 30, 66, 0.1);
    color: #041e42;
    transition: all 0.3s ease;
}

.modern-lang-btn:hover .lang-switch {
    background-color: #ffcc00;
    color: #041e42;
    transform: translateX(2px);
}

@media (max-width: 991px) {
    .fener-text {
        font-size: 2rem;
    }
    
    .campaign-text {
        font-size: 1.8rem;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 767px) {
    .campaign-logo {
        max-width: 250px;
        margin: 0 auto 15px;
    }
    
    .header h1 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .header p {
        text-align: center;
    }
    
    .fener-text {
        font-size: 1.8rem;
    }
    
    .campaign-text {
        font-size: 1.6rem;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .language-selector {
        margin-top: 15px;
    }
    
    .modern-lang-btn {
        margin: 0 auto;
    }
}

/* Header stilleri */
.header-top {
    background-color: white;
    color: #041e42;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 85px;
}

.header-top .container,
.header-top .row {
    height: 100%;
}

.header-top .row {
    display: flex;
    align-items: center;
}

.header-top::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        90deg, 
        #041e42 0%, 
        #ffcc00 25%, 
        #041e42 50%, 
        #ffcc00 75%, 
        #041e42 100%
    );
    background-size: 200% 100%;
    animation: waveAnimation 4s ease-in-out infinite alternate;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.header-bottom {
    background-color: #0f1d56;
    padding: 15px 0;
}

.header-title h2 {
    color: #001F5B;
    font-weight: 700;
    margin: 0;
}

/* Zarf Kutusu Stili */
.ballot-box {
    position: relative;
    width: 80%;
    height: 80%;
    perspective: 500px;
    border-radius: 50%;
    overflow: hidden;
}

.box-top {
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 30%;
    background-color: #041e42;
    border-radius: 5px 5px 0 0;
    border: 2px solid #041e42;
    z-index: 5;
    transform-origin: bottom;
    animation: open-lid 4s infinite;
}

.box-body {
    position: absolute;
    top: 30%;
    left: 10%;
    width: 80%;
    height: 70%;
    background-color: #041e42;
    border: 2px solid #041e42;
    border-radius: 0 0 5px 5px;
    overflow: hidden;
    z-index: 1;
}

.box-body:before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    width: 90%;
    height: 85%;
    background-color: #0a2e5c;
    border-radius: 0 0 3px 3px;
}

.ballot-paper {
    position: absolute;
    top: -50%;
    left: 20%;
    width: 60%;
    height: 60%;
    background-color: #ffffff;
    border-radius: 3px;
    z-index: 3;
    transform-origin: bottom center;
    animation: insert-paper 4s infinite;
}

.paper-signature {
    position: absolute;
    top: 40%;
    left: 20%;
    width: 60%;
    height: 20%;
    background-color: transparent;
    overflow: hidden;
}

.paper-signature:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffcc00;
    transform-origin: left;
    animation: sign-paper 4s infinite cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Kalem Animasyonu */
.pen {
    position: absolute;
    top: 35%;
    left: 15%;
    width: 10px;
    height: 10px;
    background-color: #041e42;
    transform: rotate(45deg);
    z-index: 4;
    animation: move-pen 4s infinite;
}

.pen:before {
    content: '';
    position: absolute;
    top: -4px;
    left: 2px;
    width: 6px;
    height: 4px;
    background-color: #ffcc00;
    border-radius: 2px 2px 0 0;
}

.pen:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3px 1.5px 0 1.5px;
    border-color: #ffcc00 transparent transparent transparent;
}

@keyframes open-lid {
    0%, 20% {
        transform: rotateX(0deg);
    }
    25%, 35% {
        transform: rotateX(-60deg);
    }
    85%, 100% {
        transform: rotateX(0deg);
    }
}

@keyframes insert-paper {
    0%, 15% {
        top: -50%;
        transform: rotateX(0deg);
    }
    20%, 35% {
        top: 10%;
        transform: rotateX(0deg);
    }
    40%, 50% {
        top: 10%;
        transform: rotateX(0deg);
    }
    55%, 80% {
        top: 25%;
        transform: rotateX(90deg);
    }
    85%, 100% {
        top: 25%;
        opacity: 0;
    }
}

@keyframes sign-paper {
    0%, 20% {
        width: 0;
    }
    25%, 50% {
        width: 100%;
    }
    55%, 100% {
        width: 100%;
    }
}

@keyframes move-pen {
    0%, 20% {
        left: 20%;
        top: 35%;
        opacity: 0;
    }
    21% {
        opacity: 1;
    }
    25%, 50% {
        left: 80%;
        top: 40%;
    }
    51% {
        opacity: 0;
    }
    52%, 100% {
        opacity: 0;
        left: 20%;
    }
}

/* İmza Sayaçları Stilleri */
.signature-stats {
    margin-bottom: 40px;
}

.signature-counters {
    display: flex;
    justify-content: space-between;
}

.counter-box {
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.counter-box.total {
    background-color: #f1f8ff;
    border-left: 4px solid #007bff;
}

.counter-box.verified {
    background-color: #f0fff4;
    border-left: 4px solid #28a745;
}

.counter-box.official {
    background-color: #fff8f1;
    border-left: 4px solid #fd7e14;
}

.counter-icon {
    font-size: 24px;
    margin-right: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-box.total .counter-icon {
    background-color: #e1f0ff;
    color: #007bff;
}

.counter-box.verified .counter-icon {
    background-color: #e1ffe6;
    color: #28a745;
}

.counter-box.official .counter-icon {
    background-color: #fff1e1;
    color: #fd7e14;
}

.counter-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.counter-number {
    font-size: 24px;
    font-weight: 700;
    color: #1e2d56;
}

@media (max-width: 768px) {
    .signature-counters {
        flex-direction: column;
    }
    
    .signature-counters .col-md-4 {
        margin-bottom: 20px;
    }
    
    .counter-box {
        width: 100%;
    }
}

/* Vaat-Sonuç Slider Stilleri - Basitleştirilmiş */
.promise-slider {
    background: linear-gradient(135deg, #041e42 0%, #0a2e5c 100%);
    padding: 70px 0 0 0;
    color: white;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.promise-slider::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.promise-slider-title {
    text-align: center;
    margin-bottom: 40px;
    color: white;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    font-weight: 700;
}

.promise-slider-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #ffcc00;
    margin: 15px auto 0;
    border-radius: 2px;
}

.promise-slider-wrapper {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.promise-slider-container {
    display: flex;
    transition: transform 0.3s ease;
}

.promise-slide {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    padding: 30px;
    flex: 0 0 100%;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.slide-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    font-weight: 800;
    color: rgba(255, 204, 0, 0.15);
    line-height: 1;
}

.promise-badge, .result-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.promise-badge {
    background: linear-gradient(135deg, #ffcc00 0%, #ff9500 100%);
    color: #041e42;
}

.result-badge {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

.promise-title, .result-title {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: white;
    position: relative;
    display: inline-block;
}

.promise-title::after, .result-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    border-radius: 3px;
}

.promise-title::after {
    background-color: #ffcc00;
}

.result-title::after {
    background-color: #dc3545;
}

.promise-desc, .result-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
    position: relative;
}

.divider-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: rgba(220, 53, 69, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc3545;
    font-size: 12px;
}

.slider-arrows {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.arrow-prev, .arrow-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.arrow-prev:hover, .arrow-next:hover {
    background-color: #ffcc00;
    color: #041e42;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    position: relative;
    z-index: 3;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #ffcc00;
    transform: scale(1.3);
}

.swipe-hint {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0.8;
}

.swipe-icon {
    display: flex;
    align-items: center;
    margin-right: 10px;
    font-size: 14px;
    color: #ffcc00;
}

.swipe-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes swipe {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.swipe-icon .fa-arrows-left-right {
    animation: swipe 1.5s infinite;
    margin-left: 5px;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .promise-slider-title {
        font-size: 1.8rem;
    }
    
    .promise-slide {
        padding: 20px;
    }
    
    .slide-number {
        font-size: 30px;
    }
    
    .promise-title, .result-title {
        font-size: 20px;
    }
    
    .arrow-prev, .arrow-next {
        width: 40px;
        height: 40px;
    }
}

/* Footer Stilleri */
.footer {
    background-color: #041e42;
    color: #fff;
    padding: 15px 0;
    position: relative;
    margin-top: 0;
    border-top: none;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
}

.footer::before {
    display: none;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffcc00;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #ffcc00;
    color: #041e42;
    transform: translateY(-2px);
}

.social-icon i {
    font-size: 14px;
}

@media (max-width: 767px) {
    .footer-copyright,
    .footer-social {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
        margin-top: 8px;
    }
}

/* Swiper navigasyon butonları için custom stil */
.custom-swiper-next,
.custom-swiper-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    z-index: 10;
    cursor: pointer;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.custom-swiper-next:hover,
.custom-swiper-prev:hover {
    background: #ffcc00;
    color: #041e42;
}

.custom-swiper-next {
    right: 5px;
}

.custom-swiper-prev {
    left: 5px;
}

@media (min-width: 768px) {
    .custom-swiper-next {
        right: 15px;
    }
    
    .custom-swiper-prev {
        left: 15px;
    }
}

@media (min-width: 992px) {
    .custom-swiper-next {
        right: 30px;
    }
    
    .custom-swiper-prev {
        left: 30px;
    }
}

/* Swiper pagination ayarları */
.swiper-pagination {
    margin: 0 !important;
    padding: 0 0 5px 0 !important;
    position: relative;
    bottom: 0 !important;
}

.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 0 !important;
}

/* Form adımlarına ilişkin stil düzenlemeleri */
.form-step-container {
    display: none;
}

.form-step-container.active {
    display: block;
}

/* Form adım göstergeleri arasındaki geçiş animasyonları */
.step-indicator {
    transition: all 0.3s ease;
}

.step-indicator.active, 
.step-indicator.completed {
    transform: scale(1.1);
}

.step-title {
    transition: all 0.3s ease;
}

.step-title.active, 
.step-title.completed {
    font-weight: 600;
}

/* Başarı profili stilleri */
.success-profile {
    display: none;
    text-align: center;
    padding: 20px 10px;
    margin-top: 10px;
    animation: fadeInUp 0.5s ease-out;
    width: 100%;
}

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

/* Form alert mesajları ve success profile birlikte gösterilmemesi için */
.card-body:not(.with-success) .success-profile,
.card-body.with-success .form-progress,
.card-body.with-success .form-step-container {
    display: none !important;
} 