/* Modern bildirim stili */
.popups {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 280px;
    background-color: #ffffff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    animation: slideIn 0.5s ease-out, pulse 2s infinite;
    border-left: 4px solid var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.popups p {
    margin: 8px 0;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.popups b {
    color: var(--primary-color);
    font-weight: 600;
}

/* Kapatma butonu stili */
.closes {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    font-size: 18px;
    transition: color 0.3s ease;
    background: none;
    border: none;
    padding: 0;
}

.closes:hover {
    color: #333;
}

/* Animasyonlar */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 4px 20px rgba(var(--primary-color-rgb), 0.3);
    }
    100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .popups {
        width: calc(100% - 40px);
        max-width: 320px;
        bottom: 10px;
        right: 10px;
    }
}

.slide-out {
    animation: slideOut 0.5s ease-out forwards;
}

.hidden {
    display: none;
}

/* Modern form tasarımı için CSS */
:root {
    --white: #ffffff;
}

/* Radio input'ları gizle */
input[type="radio"][name="paket"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--white);
    height: auto !important;
    line-height: 1.5 !important;
    min-height: 52px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
    outline: none;
}

.select-container {
    position: relative;
    margin-bottom: 15px;
}

.select-container select,
select.form-control,
select.form-control.input-lg {
    width: 100%;
    padding: 10px 35px 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    appearance: none;
    background-color: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 45px !important;
    line-height: 1.4 !important;
    display: block;
}

.select-container select:focus,
select.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
    outline: none;
}

.select-container select option,
select.form-control option {
    padding: 8px;
    font-size: 14px;
    background: var(--white);
    color: #333;
    min-height: 1.2em;
    line-height: 1.4;
}

/* Özel select stilleri için webkit düzeltmesi */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .select-container select,
    select.form-control,
    select.form-control.input-lg {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

/* Firefox için özel düzeltme */
@-moz-document url-prefix() {
    .select-container select,
    select.form-control,
    select.form-control.input-lg {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.form-control.input-lg {
    height: auto;
    padding: 15px;
    font-size: 16px;
    line-height: normal;
}

.form_btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: var(--primary-color);
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form_btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Paket seçimi için modern tasarım */
label.product-element {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    z-index: 2;
}

input[type="radio"][name="paket"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    z-index: 3;
}

.form-section {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.package-content {
    padding-left: 40px;
}

/* Radio buton işaretçisi için düzeltilmiş stil */
label.product-element:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 24px;
    height: 24px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 3;
    top: 50%;
    margin-top: -15px;
}

input:checked + label.product-element:before {
    background: var(--primary-color);
    border-color: var(--primary-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

/* Hover efekti düzeltmesi */
label.product-element:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
    z-index: 4;
}

input:checked + label.product-element {
    border-color: var(--primary-color);
    background: rgba(var(--primary-color-rgb), 0.05);
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.1);
    z-index: 4;
}

/* Bildirim stili */
.popups {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 280px;
    background-color: #ffffff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    animation: slideIn 0.5s ease-out, pulse 2s infinite;
    border-left: 4px solid var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.popups b {
    color: var(--primary-color);
    font-weight: 600;
}

/* Package styles */
.package-description {
    color: var(--secondary-color) !important;
}

.price-amount {
    color: var(--primary-color);
}

.form-section-title {
    color: var(--primary-color);
    border-bottom: 2px solid var(--light-color);
}

/* Notification styles */
.notification {
    background: var(--light-color);
    border-left: 4px solid var(--primary-color);
    color: var(--dark-color);
}

.notification.success {
    border-color: var(--primary-color);
}

/* Countdown styles */
.countdown-header {
    color: var(--primary-color);
}

.timer-item {
    background: linear-gradient(145deg, var(--gradient-start), var(--gradient-end));
}

.timer-separator {
    color: var(--primary-color);
}

/* Stock styles */
.stock-count {
    color: var(--primary-color);
}

.stock-icon {
    background: rgba(0, 0, 0, 0.1);
}

/* Select label */
.select-label {
    color: var(--primary-color);
    font-weight: 500;
}

/* Free shipping and shipping cost */
.free-shipping {
    color: var(--primary-color);
    font-weight: 600;
}

.shipping-cost {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Floating label stilleri */
.floating-label {
    position: relative;
    margin-bottom: 20px;
}

.floating-label input,
.floating-label textarea {
    height: auto;
    padding: 15px;
}

.floating-label label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    background: var(--white);
    padding: 0 5px;
    color: #666;
    transition: all 0.2s ease;
    pointer-events: none;
}

.floating-label textarea ~ label {
    top: 20px;
    transform: translateY(0);
}

.floating-label input:focus ~ label,
.floating-label textarea:focus ~ label,
.floating-label input:not(:placeholder-shown) ~ label,
.floating-label textarea:not(:placeholder-shown) ~ label {
    top: 0;
    transform: translateY(-50%) scale(0.9);
    color: var(--primary-color);
}

/* Form bölümleri için stiller */
.form-section {
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-color);
}

.free-shipping {
    color: var(--primary-color);
    font-weight: 600;
}

.shipping-cost {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Paket seçimi için ek stiller */
.package-selection {
    margin-bottom: 20px;
}

.package-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.package-left {
    flex: 1;
}

.package-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.package-description {
    font-size: 14px;
    color: var(--secondary-color) !important;
    margin-bottom: 5px;
}

.package-right {
    text-align: right;
    white-space: nowrap;
}

.price-amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 2px;
}

.shipping-info {
    font-size: 12px;
}

.free-shipping {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    padding: 2px 8px;
    background: rgba(var(--primary-color-rgb), 0.1);
    border-radius: 4px;
}

.shipping-cost {
    color: var(--secondary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .package-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .package-right {
        text-align: left;
        width: 100%;
    }

    .price-amount {
        font-size: 18px;
        display: inline-block;
    
    }

    .shipping-info {
        display: inline-block;
    }
}

/* Submit button için ek stiller */
.submit-button {
    margin-top: 30px;
}

.form_btn {
    position: relative;
    overflow: hidden;
}

.button-text {
    position: relative;
    z-index: 1;
}

.button-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.form_btn:hover .button-icon {
    transform: translateX(5px);
}

/* Select elementleri için ek stiller */
.select-container {
    position: relative;
}

.select-container::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--primary-color);
    pointer-events: none;
}

.select-label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 500;
}

/* Payment method radio buttons */
.payment-method-selection {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.payment-method-option {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
}

.payment-method-option:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(var(--primary-color-rgb), 0.1);
    transform: translateY(-1px);
}

.payment-method-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-method-option::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    margin-right: 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.payment-method-option input[type="radio"]:checked + .payment-method-content {
    /* Seçili durumda content stilleri */
}

.payment-method-option input[type="radio"]:checked ~ * {
    /* Seçili durumda tüm kardeş elementler */
}

.payment-method-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.payment-method-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* Seçili durumda stiller */
.payment-method-option input[type="radio"]:checked + .payment-method-content .payment-method-text {
    color: var(--primary-color);
}

/* JavaScript ile kontrol edilecek seçili durum */
.payment-method-option.selected {
    border-color: var(--primary-color);
    background: rgba(var(--primary-color-rgb), 0.05);
}

.payment-method-option.selected::before {
    background: var(--primary-color);
    border-color: var(--primary-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='3'%3E%3C/circle%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 8px;
}

.payment-method-option.selected .payment-method-text {
    color: var(--primary-color);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .payment-method-selection {
        gap: 10px;
    }
    
    .payment-method-option {
        padding: 12px;
    }
    
    .payment-method-text {
        font-size: 14px;
    }
    
    .payment-method-option::before {
        width: 18px;
        height: 18px;
        margin-right: 10px;
    }
}

/* Mobil optimizasyonları */
@media (max-width: 768px) {
    .package-content {
        gap: 8px;
    }

    .package-title {
        font-size: 16px;
    }

    .package-description {
        font-size: 14px;
    }

    .price-amount {
        font-size: 18px;
    }

    .form-section {
        padding: 15px;
    }
}

/* Modern form container stilleri */
.modern-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 10px 20px;
}

/* Animasyonlar için ek stiller */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-section {
    animation: slideIn 0.5s ease-out forwards;
}

.form-section:nth-child(2) {
    animation-delay: 0.1s;
}

.form-section:nth-child(3) {
    animation-delay: 0.2s;
}

/* Geri sayaç stilleri */
.countdown-container {
    padding: 20px;
    background: var(--light-color);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    border: 1px solid var(--primary-color);
}

.countdown-container a,
.countdown-container a:hover,
.countdown-container a:visited,
.countdown-container a:active {
    text-decoration: none;
    color: inherit;
}

.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.countdown-header {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
    user-select: none;
    width: 100%;
    text-align: center;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    width: 100%;
}

.timer-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    min-width: 80px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    user-select: none;
}

.timer-item span {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    display: block;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.timer-label {
    font-size: 12px;
    color: #ffffff;
    opacity: 0.9;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.timer-separator {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 5px;
    animation: pulse 1s infinite;
    opacity: 0.8;
    user-select: none;
}

.countdown-subtitle {
    font-size: 18px;
    color: #ffffff;
    opacity: 0.9;
    font-weight: 500;
    user-select: none;
    width: 100%;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Sipariş butonu stilleri */
.order-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff !important;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: pulse-button 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

@keyframes pulse-button {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .countdown-box {
        padding: 20px 15px;
    }

    .countdown-header {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .countdown-timer {
        gap: 8px;
    }

    .timer-item {
        min-width: 60px;
        padding: 10px;
    }

    .timer-item span {
        font-size: 24px;
    }

    .timer-label {
        font-size: 11px;
        margin-top: 2px;
    }

    .timer-separator {
        font-size: 24px;
        margin: 0 2px;
    }

    .countdown-subtitle {
        font-size: 16px;
        padding-top: 10px;
    }
}

/* Stok göstergesi stilleri */
.stock-info {
    margin-top: 15px;
    width: 100%;
}

.stock-box {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.stock-icon {
    font-size: 24px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.stock-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

.stock-count {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

.stock-bar-container {
    flex-grow: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-left: 15px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stock-bar {
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    width: 15%;
    transition: width 1s ease-in-out;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Link stilleri için genel kural */
a, a:hover, a:visited, a:active {
    text-decoration: none;
    color: inherit;
}

.price-box {
    background: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 8px 18px;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    margin-bottom: 6px;
    min-width: 90px;
    text-align: center;
    transition: box-shadow 0.3s, border-color 0.3s;
}

@media screen and (max-width: 768px){
    .price-box {
        padding: 0px;
        display: flex;
        align-content: center;
        justify-content: center;
        flex-direction: column;
    
    }
    
    .shipping-info{
        text-align: center;
    }
}

.price-box:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.13);
    border-color: var(--secondary-color);
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 2px;
}

.shipping-info {
    font-size: 12px;
    margin-top: 5px;
}

.free-shipping {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    padding: 2px 8px;
    background: rgba(var(--primary-color-rgb), 0.1);
    border-radius: 4px;
    animation: blink 1s infinite;
}

.shipping-cost {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-block;
    padding: 2px 8px;
    background: rgba(var(--secondary-color-rgb), 0.1);
    border-radius: 4px;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.form-header {
    margin-bottom: 5px;
}

.form-header-container {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 5px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.form-header-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent
    );
    animation: shine 3s infinite;
}

.form-header-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.form-header-text {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.form-header-highlight {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 25px;
    border-radius: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: pulse-text 1.5s infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@keyframes pulse-text {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@media (max-width: 768px) {
    .form-header-container {
        padding: 10px;
        margin-bottom: 0;
    }

    .form-header-text {
        font-size: 20px;
    }

    .form-header-highlight {
        font-size: 22px;
        padding: 8px 20px;
    }

    .modern-form-container {
        padding: 5px 10px;
    }

    .row {
        margin-top: 0;
        padding: 5px;
    }

    .package-selection {
        margin-top: 0;
    }

    .form-header {
        margin-bottom: 0;
    }
}

.select-label {
    background: none;
}

.old-price{
    text-decoration: line-through;
    color: #bdc3c7;
}


.package-details {
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
}

.package-content {
    flex-direction: revert;
    align-items:center;
    justify-content: space-between;
    justify-items: left;
}