﻿@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap'); 

:root {
    --green-dark: #004D34;
    --green-emerald: #0A6B4A;
    --gold-primary: #D4AF37;
    --gold-light: #F7E7B4;
    --sand-bg: #F9F6F0;
    --glass-bg: rgba(255, 255, 255, 0.88);
    --border-gold-glow: linear-gradient(135deg, rgba(212, 175, 55, 0.6), rgba(255, 255, 255, 0.8), rgba(212, 175, 55, 0.3));
    --text-main: #1C2B26;
}

body { 
    font-family: 'Quicksand', sans-serif; 
    background: var(--sand-bg); 
    background-image: 
        radial-gradient(at 10% 20%, rgba(212, 175, 55, 0.08) 0px, transparent 50%),
        radial-gradient(at 90% 80%, rgba(0, 77, 52, 0.06) 0px, transparent 50%);
    color: var(--text-main);
    margin: 0;
    padding: 30px 20px;
}

.cancellation-warning {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin: 30px 0;
    padding: 24px 26px;
    border-radius: 14px;
    background: linear-gradient( 135deg, #fff5f3 0%, #fffafa 55%, #fff2ef 100% );
    border: 1px solid rgba(217, 56, 30, 0.25);
    color: #5f2118;
    box-shadow: 0 10px 28px rgba(217, 56, 30, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}



    .cancellation-warning::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient( 180deg, #D9381E, #FF6B55, #D9381E );
        background-size: 100% 200%;
        animation: dangerLine 3s ease-in-out infinite;
    }




    .cancellation-warning::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        top: -110px;
        right: -80px;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(217, 56, 30, 0.08), transparent 70% );
        pointer-events: none;
    }




.cancellation-icon {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    border-radius: 50%;
    background: #D9381E;
    color: #FFFFFF;
    box-shadow: 0 0 0 6px rgba(217, 56, 30, 0.08), 0 6px 15px rgba(217, 56, 30, 0.20);
    animation: dangerPulse 2.5s ease-in-out infinite;
}


    .cancellation-icon i {
        font-size: 15px;
    }




.cancellation-content {
    position: relative;
    z-index: 2;
    flex: 1;
}




.cancellation-title {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #B52D19;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1.2px;
}


    .cancellation-title::after {
        content: "";
        width: 45px;
        height: 2px;
        margin-left: 12px;
        border-radius: 10px;
        background: linear-gradient( 90deg, #D9381E, transparent );
    }



.cancellation-intro {
    margin: 0 0 15px;
    color: #70453E;
    font-size: 0.87rem;
    line-height: 1.65;
}




.cancellation-item {
    position: relative;
    margin-top: 9px;
    padding: 11px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(217, 56, 30, 0.10);
    color: #593B36;
    font-size: 0.85rem;
    line-height: 1.6;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}


    .cancellation-item:hover {
        transform: translateX(4px);
        background: #FFFFFF;
        border-color: rgba(217, 56, 30, 0.25);
    }



.cancellation-date {
    display: inline-block;
    margin-right: 4px;
    color: #B52D19;
    font-weight: 800;
}


.cancellation-item.important {
    background: rgba(217, 56, 30, 0.075);
    border-color: rgba(217, 56, 30, 0.20);
}


    .cancellation-item.important .cancellation-date,
    .cancellation-item.important strong {
        color: #C52F19;
    }



.cancellation-warning:hover {
    transform: translateY(-2px);
    border-color: rgba(217, 56, 30, 0.40);
    box-shadow: 0 16px 35px rgba(217, 56, 30, 0.11), 0 4px 12px rgba(217, 56, 30, 0.05);
}




@keyframes dangerPulse {

    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(217, 56, 30, 0.08), 0 6px 15px rgba(217, 56, 30, 0.20);
    }

    50% {
        transform: scale(1.06);
        box-shadow: 0 0 0 9px rgba(217, 56, 30, 0.04), 0 8px 20px rgba(217, 56, 30, 0.25);
    }
}


@keyframes dangerLine {

    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 0 100%;
    }

    100% {
        background-position: 0 0;
    }
}



@media (max-width: 576px) {

    .cancellation-warning {
        gap: 14px;
        padding: 20px 17px;
    }

    .cancellation-icon {
        width: 38px;
        height: 38px;
    }

    .cancellation-title {
        font-size: 0.82rem;
    }

    .cancellation-intro,
    .cancellation-item {
        font-size: 0.81rem;
    }
}



fieldset {
    position: relative;
    margin: 0 0 35px 0;
    padding: 48px 30px 30px 30px;
    border: 1px solid rgba(0, 77, 52, 0.12);
    border-radius: 18px;
    background: linear-gradient( 145deg, rgba(255, 255, 255, 0.98), rgba(249, 246, 240, 0.92) );
    box-shadow: 0 15px 35px rgba(0, 77, 52, 0.06), 0 3px 10px rgba(0, 0, 0, 0.025);
    overflow: hidden;
}


    

    fieldset::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient( 180deg, transparent, var(--gold-primary), #F7E7B4, var(--gold-primary), transparent );
        background-size: 100% 200%;
    }




    fieldset::after {
        content: "";
        position: absolute;
        top: -120px;
        right: -120px;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(212, 175, 55, 0.10) 0%, rgba(212, 175, 55, 0.04) 35%, transparent 70% );
        pointer-events: none;
    }



    fieldset:hover {
        transform: translateY(-3px);
        border-color: rgba(212, 175, 55, 0.30);
        box-shadow: 0 22px 45px rgba(0, 77, 52, 0.08), 0 5px 18px rgba(212, 175, 55, 0.08);
    }

        fieldset:hover::after {
    
        }



legend,
.legend {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    margin-left: 0;
    margin-bottom: 5px;
    padding: 0 20px 12px 0;
    border: none;
    background: transparent;
    color: var(--green-dark);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}




    legend::before,
    .legend::before {
        content: "";
        width: 9px;
        height: 9px;
        flex-shrink: 0;
        border-radius: 50%;
        background: var(--gold-primary);
        box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.10), 0 0 15px rgba(212, 175, 55, 0.45);
        animation: legendPulse 2.5s ease-in-out infinite;
    }




    legend::after,
    .legend::after {
        content: "";
        position: absolute;
        left: 21px;
        bottom: 0;
        width: 45px;
        height: 2px;
        border-radius: 5px;
        background: linear-gradient( 90deg, var(--gold-primary), transparent );
        transform-origin: left;
        animation: legendLine 3s ease-in-out infinite;
    }



@keyframes goldLineFlow {

    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 0% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}


@keyframes legendPulse {

    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.10), 0 0 12px rgba(212, 175, 55, 0.25);
    }

    50% {
        transform: scale(1.18);
        box-shadow: 0 0 0 7px rgba(212, 175, 55, 0.05), 0 0 20px rgba(212, 175, 55, 0.50);
    }
}


@keyframes legendLine {

    0%, 100% {
        width: 35px;
        opacity: 0.6;
    }

    50% {
        width: 70px;
        opacity: 1;
    }
}




input[type="text"],
input[type="email"],
input[type="number"],
input[type="date"],
select,
textarea {
    width: 100%;
    box-sizing: border-box;
    height: 52px;
    padding: 0 18px;
    border: 1px solid rgba(0, 77, 52, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-main);
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    outline: none;
    box-shadow: 0 3px 10px rgba(0, 77, 52, 0.025);
}




    input[type="text"]:hover,
    input[type="email"]:hover,
    input[type="number"]:hover,
    input[type="date"]:hover,
    select:hover,
    textarea:hover {
        border-color: rgba(0, 77, 52, 0.28);
        background: #FFFFFF;
        box-shadow: 0 6px 16px rgba(0, 77, 52, 0.05);
    }




    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="number"]:focus,
    input[type="date"]:focus,
    select:focus,
    textarea:focus {
        border-color: var(--gold-primary);
        background: #FFFFFF;
        transform: translateY(-1px);
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12), 0 8px 22px rgba(0, 77, 52, 0.07);
    }


    input::placeholder,
    textarea::placeholder {
        color: #A2ACA8;
        font-family: 'Quicksand', sans-serif;
        font-size: 0.9rem;
        font-weight: 400;
    }



    input:focus::placeholder,
    textarea:focus::placeholder {
        opacity: 0.35;
        transform: translateX(5px);
    }


textarea {
    min-height: 110px;
    height: auto;
    padding: 16px 18px;
    resize: vertical;
    line-height: 1.6;
}




select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 45px;
    background-image: linear-gradient( 45deg, transparent 50%, var(--green-dark) 50% ), linear-gradient( 135deg, var(--green-dark) 50%, transparent 50% );
    background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}




input[type="date"] {
    cursor: pointer;
}


input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--text-main);
    -webkit-box-shadow: 0 0 0 1000px #FFFFFF inset;
}




input:disabled,
select:disabled,
textarea:disabled {
    background: #F3F4F2;
    color: #9AA39F;
    cursor: not-allowed;
    box-shadow: none;
}




fieldset input,
fieldset select,
fieldset textarea {
}


@keyframes inputAppear {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.AlseinTable { 
    width: 100%; 
    border-collapse: separate; 
    border-spacing: 12px 12px; 
} 

.AlseinTable td:nth-child(3n+1) { 
    color: #D9381E; 
    width: 20px; 
    text-align: center; 
    font-weight: 700;
    font-size: 1.1rem;
} 

.AlseinTable td:nth-child(3n+2) { 
    padding: 14px 22px; 
    color: #FFFFFF; 
    border-radius: 12px; 
    width: 160px; 
    text-align: center; 
    font-weight: 600; 
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-emerald) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 
        0 6px 18px rgba(0, 77, 52, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
} 

.AlseinTable td:nth-child(3n+2)::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 60%;
    height: 200%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        rgba(247, 231, 180, 0.5), 
        transparent
    );
    transform: rotate(25deg);
    transition: all 0.75s ease-in-out;
}

.AlseinTable td:nth-child(3n+2):hover::before {
    left: 150%;
}




.btn-x {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    height: 56px;
    margin: 25px auto 10px;
    padding: 0 28px;
    border: 1px solid rgba(212, 175, 55, 0.65);
    border-radius: 12px;
    background: linear-gradient( 135deg, #004D34 0%, #086B4A 55%, #0A7652 100% );
    color: #FFFFFF;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 77, 52, 0.20), 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}



    .btn-x::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 70%;
        height: 100%;
        background: linear-gradient( 100deg, transparent, rgba(255, 255, 255, 0.12), rgba(247, 231, 180, 0.55), rgba(255, 255, 255, 0.12), transparent );
        transform: skewX(-20deg);
        transition: left 0.7s ease;
    }


   

    .btn-x::after {
        content: "";
        position: absolute;
        top: 0;
        left: 15%;
        width: 70%;
        height: 1px;
        background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.8), transparent );
        opacity: 0.7;
    }


    .btn-x i {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 26px;
        height: 26px;
        border: 1px solid rgba(247, 231, 180, 0.45);
        border-radius: 50%;
        color: #F7E7B4;
        font-size: 0.75rem;
        transition: transform 0.4s ease, background 0.4s ease;
    }




    .btn-x span {
        position: relative;
        z-index: 2;
    }


  

    .btn-x:hover {
        color: #FFFFFF;
        text-decoration: none;
        transform: translateY(-3px);
        border-color: #D4AF37;
        box-shadow: 0 14px 30px rgba(0, 77, 52, 0.25), 0 5px 15px rgba(212, 175, 55, 0.12);
    }


        .btn-x:hover::before {
            left: 150%;
        }


        .btn-x:hover i {
            transform: rotate(90deg);
            background: rgba(212, 175, 55, 0.15);
        }



    .btn-x:active {
        transform: translateY(0) scale(0.98);
        box-shadow: 0 5px 12px rgba(0, 77, 52, 0.18);
    }



.btn-x {
    animation: buttonFloat 3.5s ease-in-out infinite;
}


@keyframes buttonFloat {

    0%, 100% {
        box-shadow: 0 8px 20px rgba(0, 77, 52, 0.20), 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    50% {
        box-shadow: 0 11px 25px rgba(0, 77, 52, 0.25), 0 3px 10px rgba(212, 175, 55, 0.08);
    }
}









/* Hover Sırasında Altın İpek Dokuya Geçiş */
.AlseinTable td:nth-child(3n+2):hover {
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, #C6A152 0%, #E5C378 100%);
    color: var(--green-dark);
    border-color: #FFFFFF;
    box-shadow: 
        0 12px 28px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.AlseinTable td:nth-child(3n+2):active {
    transform: translateY(0) scale(0.98);
}

/* Yüklenme İkonu (Görseldeki İpek Doku Temalı Dönme) */
.LoadingIcon { 
    display: none; 
    width: 48px; 
    margin: 20px auto;
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.5));
    animation: goldSpin 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
} 

@keyframes goldSpin {
    0% { transform: rotate(0deg) scale(0.95); opacity: 0.8; }
    50% { transform: rotate(180deg) scale(1.1); opacity: 1; }
    100% { transform: rotate(360deg) scale(0.95); opacity: 0.8; }
}