body { scroll-behavior: smooth; }

.order-hero { 
    padding: 60px 0 40px; 
    background-image: linear-gradient(rgba(1, 103, 255, 0.8), rgba(0, 51, 128, 0.9)), 
                      url('../img/bg-hosting.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: overlay; 
    color: white; 
    text-align: center;
    min-height: 200px; 
}
.order-hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.5rem) !important;
    line-height: 1.2;
    word-wrap: break-word;
}
.order-hero p {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
}

#mainNavbar {
    background-color: transparent !important;
    transition: all 0.4s ease-in-out; 
    padding-top: 20px;
    padding-bottom: 20px;
}
#mainNavbar.scrolled {
    background-color: #EBF3FF !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding-top: 10px;
    padding-bottom: 10px;
}
#mainNavbar.scrolled .navbar-brand,
#mainNavbar.scrolled .nav-link {
    color: #031242 !important;
}
#mainNavbar.scrolled .navbar-toggler {
    border-color: #031242;
}
.navbar-toggler-icon {
    transition: filter 0.3s ease;
}
#mainNavbar.scrolled .navbar-toggler-icon {
    filter: invert(1);
}
#mainNavbar.scrolled .nav-link:hover {
    color: #0d6efd !important;
    transition: 0.3s;
}
#mainNavbar.scrolled .btn-warning {
    background-color: #031242 !important;
    border-color: #031242 !important;
    color: #ffffff !important;
}
#mainNavbar.scrolled .brand-text {
    color: #031242 !important;
}
#mainNavbar.scrolled .logo-main {
    content: url('../img/logo-dark.png');
}
#mainNavbar.scrolled .btn-warning:hover {
    background-color: #0d6efd !important; 
    border-color: #0d6efd !important;
}
@media (max-width: 991.98px) {
    #mainNavbar .container {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important; /* Alt satıra kaymayı kesin engeller */
        align-items: center !important;
        justify-content: space-between !important;
    }
    #mainNavbar .ms-auto {
        margin-left: unset !important; /* Bootstrap'in itme gücünü sıfırla */
        display: flex !important;
        align-items: center;
    }
    .logo-main {
        max-height: 28px !important; /* Logoyu mobilde %20 küçült */
    }
    .nav-link {
        font-size: 13px !important; /* Yazıyı biraz küçült */
        padding: 5px 0 !important;
        white-space: nowrap !important; /* "Ana Sayfa" yazısı iki satıra bölünmesin */
    }
    .order-hero h1 {
        font-size: 1.5rem !important; /* "DOMAIN SATIN AL..." yazısını sığdır */
        letter-spacing: -0.5px;
    }
    .navbar-collapse {
        background: #ffffff;
        margin-top: 15px;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        position: absolute; /* İçeriğin üzerine binmesi için */
        top: 60px;
        width: 100%;
    }
}


.footer-section { 
    background: linear-gradient(rgba(13, 110, 253, 0.1), rgba(0, 30, 80, 0.2)), 
                url('../img/footer-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    background-attachment: fixed; 
    color: white; 
    padding: 100px 0 30px; 
}
.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: 0.3s;
}
.footer-section a:hover {
    color: #ffc107; 
    padding-left: 5px; 
}


.mail-link::after { content: attr(data-user) "@" attr(data-domain); }

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366; 
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 2px 4px 15px rgba(0,0,0,0.3);
    z-index: 10000;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1); 
}
.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

        body { background-color: #f4f7f6; font-family: 'Inter', sans-serif; }
        .main-card { border: none; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); overflow: hidden; }
        .plan-box { border: 2px solid #eee; border-radius: 10px; padding: 15px; cursor: pointer; transition: 0.3s; position: relative; }
        .plan-box:hover { border-color: #0056b3; background: #f8fbff; }
        .plan-box.selected { border-color: #0056b3; background: #eef6ff; border-width: 2px; }
        .plan-box input[type="radio"] { position: absolute; opacity: 0; }
        .price-tag { font-size: 1.1rem; font-weight: 800; color: #0d6efd; }
        .btn-checkout { background: #28a745; color: white; padding: 15px; font-size: 1.2rem; font-weight: bold; border-radius: 8px; width: 100%; border: none; cursor: pointer; }
        .btn-checkout:disabled { background: #6c757d; cursor: not-allowed; opacity: 0.6; }
        #period-container, #billing-cycle-container, #transfer-info { display: none; }
        .text-discount { color: #dc3545; font-weight: bold; }

.plan-box { position: relative; } /* Ensure this is set */
.badge-popular {
    position: absolute;
    top: -12px;
    right: 15px;
    background: #ffc107;
    color: #000;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-transform: uppercase;
}


.plan-section-outer {
    padding-left: 45px !important;
    padding-right: 45px !important;
}
.plan-nav-btn {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.8);
    color: #031242;
    font-size: 1.5rem;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.plan-nav-btn:hover {
    background: #031242;
    color: #fff;
}
.plan-nav-btn.prev { left: 0; border-right: 1px solid #eee; }
.plan-nav-btn.next { right: 0; border-left: 1px solid #eee; }
.custom-plan-scroll {
    gap: 15px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 15px 5px;
}
.custom-plan-scroll::-webkit-scrollbar { display: none; }
.plan-wrapper-item {
    min-width: 280px;
    flex: 0 0 auto;
}
@media (max-width: 768px) {
    .plan-section-outer { padding-left: 10px !important; padding-right: 10px !important; }
    .plan-nav-btn { 
        width: 30px; 
        height: 60px;
        top: 35%;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        border-radius: 4px;
    }
    .plan-wrapper-item { min-width: 85%; }
}


@keyframes text-blink {
    0% { color: #212529; text-shadow: none; } /* Default Bootstrap Dark */
    50% { color: #0d6efd; text-shadow: 0 0 8px rgba(13, 110, 253, 0.5); } /* Blue Blink */
    100% { color: #212529; text-shadow: none; }
}
.step-blink h5 {
    animation: text-blink 1.2s infinite;
    font-weight: bold;
}

