body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #e8e9eb 0%, #d1d5db 50%, #b8bec9 100%);
    background-image: url('bg.svg');
    background-repeat: no-repeat;
    color: #333;
}

.navbar {
    background: linear-gradient(180deg, #0a0f1a 0%, #1a2332 100%);
    padding: 25px 40px;
    border-bottom: 4px solid #8b0000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
}

.navbar-brand span {
    display: block;
    margin-top: 8px;
    font-size: 22px;
    letter-spacing: 2px;
    color: #ffd700;
}

.call-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, #8b0000, #b22222);
    color: #ffffff;
    padding: 18px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid #8b0000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(139, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    min-width: 280px;
    justify-content: center;
    text-decoration: none;
}

.call-button:hover {
    background: linear-gradient(45deg, #660000, #8b0000);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.6);
}

.header-content {
    text-align: center;
    padding: 60px 30px 40px 30px;
    color: #0a0f1a;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 8px;
    margin: 0;
    border-bottom: 4px solid #8b0000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.header-content h1 {
    font-weight: 900;
    font-size: 4rem;
    color: #0a0f1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
}

.header-content p {
    font-size: 18px;
    margin-top: 10px;
    font-weight: 600;
    color: #1a2332;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.header-content a {
    color: #8b0000;
    font-weight: 700;
    font-size: 14px;
}

.form-section {
    padding: 50px 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    margin: 20px auto;
    max-width: 800px;
    border: 2px solid #8b0000;
    border-top: none;
}

.form-section h2 {
    font-weight: 900;
    margin-bottom: 10px;
    color: rgb(11, 18, 34);
    text-align: center;
    font-size: 29px;
    text-transform: uppercase;
}

.important-note {
    margin-bottom: 10px;
    padding: 9px 5px;
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    border-left: 5px solid #8b0000;
    text-align: center;
}

.important-note p {
    font-size: 12px;
    font-weight: 500;
    color: #0a0f1a;
    margin: 0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    font-weight: 700;
    color: #0a0f1a;
    font-size: 15px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.form-control {
    border: 2px solid #1a2332;
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 500;
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    height: 45px;
}

.form-control:focus {
    border-color: #8b0000;
    box-shadow: 0 0 0 0.2rem rgba(139, 0, 0, 0.25);
    outline: none;
    color: #2c2c2c!important;
}

.btn-custom {
    background: linear-gradient(45deg, #8b0000, #b22222);
    color: white;
    font-weight: 700;
    padding: 18px 30px;
    border: 2px solid #8b0000;
    border-radius: 8px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 18px rgba(139, 0, 0, 0.25);
}

.btn-custom:hover {
    background: linear-gradient(45deg, #660000, #8b0000);
    transform: translateY(-3px);
    color:#fff;
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.5);
}

.phone-input-group {
    display: flex;
    align-items: stretch;
    gap: 15px;
}

.phone-input-group .select2-container {
    width: 100%;
    max-width: 100px;
    margin-right: 0;
}

.phone-input-group .form-control {
    flex: 1;
}

.select2-container--bootstrap-5 .select2-selection {
    border: 2px solid #1a2332;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 500;
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    height: 46px;
    position: relative;
    display: flex;
    align-items: center;
}

.select2-container--bootstrap-5 .select2-selection:focus,
.select2-container--bootstrap-5.select2-container--focus .select2-selection {
    border-color: #8b0000;
    box-shadow: 0 0 0 0.2rem rgba(139, 0, 0, 0.25);
    outline: none;
}

.select2-container--bootstrap-5 .select2-selection__rendered {
    padding: 0;
    line-height: 1.5;
}

.select2-container--bootstrap-5 .select2-selection__arrow {
    height: 100%;
    top: 0;
}

.select2-container--bootstrap-5 .select2-selection__clear {
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #8b0000;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    background: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.select2-container--bootstrap-5 .select2-selection__clear:hover {
    color: #660000;
}

.select2-dropdown {
    border: 2px solid #8b0000;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.select2-results__option {
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 500;
}

.select2-results__option--highlighted[aria-selected] {
    background-color: #8b0000;
    color: white;
}

.radio-group {
    margin-top: 15px;
}

.radio-inline {
    font-weight: 600;
    color: #0a0f1a;
    margin-right: 1.5rem;
}

.radio-inline input[type="radio"] {
    margin-right: 8px;
    transform: scale(1.2);
}

.footer {
    background: linear-gradient(180deg, #0a0f1a 0%, #1a2332 100%);
    color: white;
    padding: 40px 30px 80px 30px;
    text-align: center;
    margin-top: 40px;
    border-top: 4px solid #8b0000;

    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.footer p:first-child {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.footer-text {
    font-size: 1.1rem;
    margin-top: 15px;
    color: #e8e9eb;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.fixed-buttons {
    position: fixed;
    bottom: 0;
    left:0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.fixed-buttons a:only-child {
    width: 100%;
}

.phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 30px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #0cbe54, #22b22d);
    border: 2px solid #002905;
    box-shadow: 0 4px 18px rgba(139, 0, 0, 0.3);
}

.phone:hover {
    background: linear-gradient(45deg, #0cbe54, #22b22d);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
    color: white!important;
    /* text-transform: none; */
}

.fixed-buttons i {
    margin-right: 8px;
    margin-top: 1px;
    font-size: 1em;
}

.alert-success {
    padding: 50px 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    margin: 20px auto;
    max-width: 800px;
    border: 2px solid #8b0000;
    border-top: none;
    text-align: center;
}

.alert-success h2 {
    font-size: 2.5rem;
    color: green;
    margin-bottom: 4px;
    font-weight: 900;
}

.alert-success p {
    line-height:1.1;
    font-size: 1rem;
    margin-bottom: 0;
}

.alert-success a {
    color: #8b0000;
    font-weight: 700;
}

.alert-error {
    padding: 50px 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    margin: 20px auto;
    max-width: 800px;
    border: 2px solid #8b0000;
    border-top: none;
    text-align: center;
}

.alert-error h2 {
    font-size: 2.5rem;
    color: red;
    margin-bottom: 1rem;
}

.alert-error p {
    font-size: 1rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.5rem;
    }

    .form-section {
        padding: 30px 20px;
        margin: 20px 10px;
        width: calc(100% - 20px);
    }

    .phone-input-group {
        flex-direction: row;
        gap: 10px;
        align-items: stretch;
    }

    .phone-input-group .select2-container {
        width: 120px !important;
        min-width: 120px;
    }

    .phone-input-group .form-control {
        flex: 1;
    }

    .navbar {
        padding: 15px 20px;
        gap: 5px;
    }

    .navbar-brand {
        font-size: 20px;
        line-height: 1.3;
    }

    .navbar-brand span {
        font-size: 18px;
        margin-top: 2px;
    }

    .call-button {
        padding: 12px 24px;
        font-size: 14px;
        min-width: 220px;
    }

    .header-content {
        margin: 0 10px;
        padding: 30px 20px 20px 20px;
        width: calc(100% - 20px);
    }

    .header-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .header-content p {
        font-size: 16px;
        line-height: 1.5;
    }

    .footer {
        padding: 30px 20px 80px 20px;
        margin-top: 30px;
    }

    .footer p:first-child {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .footer-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .alert-success,
    .alert-error {
        padding: 30px 20px;
        margin: 20px 10px;
        width: calc(100% - 20px);
    }
}

@media (max-width: 576px) {
    .header-content h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .form-section {
        padding: 25px 15px;
        margin: 15px 5px;
        width: calc(100% - 10px);
    }

    .form-control,
    .select2-container--bootstrap-5 .select2-selection {
        min-height: 40px;
        padding: 10px 12px;
    }

    .phone-input-group {
        gap: 8px;
    }

    .phone-input-group .select2-container {
        width: 100px !important;
        min-width: 100px;
    }

    .navbar {
        padding: 10px 15px;
    }

    .navbar-brand {
        font-size: 16px;
        line-height: 1.2;
    }

    .navbar-brand span {
        font-size: 18px;
        margin-top: 5px;
    }

    .call-button {
        padding: 10px 20px;
        font-size: 13px;
        min-width: 200px;
    }

    .header-content {
        padding: 25px 15px 15px 15px;
        margin: 0 5px;
        width: calc(100% - 10px);
    }

    .header-content p {
        font-size: 14px;
        line-height: 1.4;
    }

    .footer {
        padding: 25px 15px 80px 15px;
        margin-top: 25px;
    }

    .footer p:first-child {
        font-size: 1.6rem;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .footer-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .alert-success,
    .alert-error {
        padding: 25px 15px;
        margin: 15px 5px;
        width: calc(100% - 10px);
    }
}

@media (min-width: 768px) {
    .fixed-buttons {
        display: none !important;
    }
}

/* Tebrik Sayfası Stilleri */
.success-content {
    padding: 2rem 0;
}

.success-icon {
    font-size: 6rem;
    color: #28a745;
    margin-bottom: 2rem;
    text-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}

.success-title {
    font-weight: 900;
    color: #28a745;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.success-message {
    color: #1a2332;
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.success-message p {
    margin-bottom: 1rem;
}

.success-message strong {
    color: #8b0000;
    font-weight: 700;
}

.contact-info {
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
    border-left: 5px solid #8b0000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.contact-info h5 {
    color: #0a0f1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info h5 i {
    color: #8b0000;
    margin-right: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
    color: #1a2332;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-item i {
    margin-right: 15px;
    color: #8b0000;
    width: 25px;
    font-size: 1.3rem;
}

.contact-item span {
    font-weight: 600;
}

.btn-custom {
    background: linear-gradient(45deg, #8b0000, #b22222);
    color: white!important;
    font-weight: 700;
    padding: 18px 40px;
    border: 2px solid #8b0000;
    border-radius: 8px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 18px rgba(139, 0, 0, 0.25);
    text-decoration: none;
    display: inline-block;
}

.btn-custom:hover {
    background: linear-gradient(45deg, #660000, #8b0000);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.5);
    color: white;
    text-decoration: none;
}

.btn-custom i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Mobil Responsive Tebrik Sayfası */
@media (max-width: 768px) {
    .success-icon {
        font-size: 4rem;
        margin-bottom: 1.5rem;
    }

    .success-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .success-message {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .contact-info {
        padding: 2rem 1.5rem;
        margin: 1.5rem 0;
    }

    .contact-info h5 {
        font-size: 1.2rem;
    }

    .contact-item {
        font-size: 1rem;
        margin: 0.8rem 0;
    }

    .btn-custom {
        padding: 15px 30px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .success-icon {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }

    .success-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .success-message {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact-info {
        padding: 1.5rem 1rem;
        margin: 1rem 0;
    }

    .contact-info h5 {
        font-size: 1.1rem;
    }

    .contact-item {
        font-size: 0.95rem;
        margin: 0.6rem 0;
    }

    .btn-custom {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media(max-width: 580px){
    .mobile-none{
        display: none;
    }
}