.text-brand-gold span {font-size: 3.5rem;}
#slide-title span.text-brand-gold { font-size: 0.8em !important; }

.hero-gradient {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.85));
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

#modal-splash {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.scroll-container {
    cursor: grab;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.scroll-container:active {
    cursor: grabbing;
}

/* Form Input Styles */
.input-req {
    border: 2px solid #ef4444;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    color: white;
    border-radius: 12px;
    outline: none;
}

.input-req:focus {
    border: 2px solid #C5A059;
    background: rgba(255, 255, 255, 0.1);
}

.input-opt {
    border: 2px solid #C5A059;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    color: white;
    border-radius: 12px;
    outline: none;
}

.input-opt:focus {
    border: 2px solid #fff;
    background: rgba(255, 255, 255, 0.1);
}

.phone-box-custom {
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
    border: 2px solid #ef4444;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.phone-box-custom:focus-within {
    border-color: #C5A059;
}

.flag-box-custom {
    padding: 0 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    color: white;
    font-weight: bold;
}

.preloader-progress {
    position: absolute;
    height: 100%;
    background: #E72222;
    width: 0%;
    animation: load 1.2s forwards;
}

@keyframes load {
    to {
        width: 100%;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(0.98);
    }
}

.frosted-glass {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.slider-dot.active {
    background: #E72222;
    width: 30px;
    border-radius: 10px;
}

.icon-hover-fix:hover i {
    color: white !important;
}

.cookie-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    z-index: 2000;
    display: none;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 12px;
    font-weight: 500;
}

/* Teknik Detaylar Hover Fix */
.group:hover .icon-container {
    background-color: #E72222 !important;
}
.group:hover .icon-container i {
    color: white !important;
}

.tab-btn.active {
    background-color: #E72222;
    color: white;
}


@media (max-width: 768px) {
    body {
        padding-bottom: 64px;
    }

    .cookie-bar {
        bottom: 80px;
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
        gap: 10px;
    }
}
