/* Website Order Page Styles */

:root {
    --primary-gradient: linear-gradient(135deg, #6e8efb, #a777e3);
    --dark-bg: #0f172a;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-glow: 0 0 10px rgba(110, 142, 251, 0.5);
}

.website-hero {
    padding: 120px 0;
    background: radial-gradient(circle at top right, #1e293b, #0f172a);
    position: relative;
    overflow: hidden;
}

.website-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(110, 142, 251, 0.15), transparent);
    z-index: 1;
}

.bh-text span {
    color: #6e8efb;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
}

.bh-text h2 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bh-text ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.bh-text ul li {
    font-size: 1.2rem;
    color: #94a3b8;
    position: relative;
}

.bh-text ul li i {
    color: #6e8efb;
    margin-right: 10px;
}

/* Service Cards */
.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(110, 142, 251, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card h4 {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    background: #0f172a;
    padding: 100px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item .icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #6e8efb;
}

/* Order Form Area */
.order-form-container {
    background: radial-gradient(circle at bottom left, #1e293b, #0f172a);
    padding: 100px 0;
}

.glass-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    padding: 15px 20px;
    border-radius: 12px;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: #6e8efb !important;
    box-shadow: 0 0 0 4px rgba(110, 142, 251, 0.1);
}

.primary-btn {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.primary-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(110, 142, 251, 0.3);
}

.section-title-website h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 35px;
    text-align: center;

}

.section-title-website p {
    max-width: 100%;
    margin: 35px auto 35px;
    text-align: justify;
}

@media (max-width: 768px) {
    .bh-text h2 {
        font-size: 2.5rem;
    }

    .bh-text ul {
        flex-direction: column;
        gap: 15px;
    }

    .glass-form {
        padding: 30px;
    }
}