/* assets/css/webdesign.css */
:root {
    --wd-dark: #0f172a;
    --wd-darker: #020617;
    --wd-accent: #6366f1;
    --wd-accent-glow: rgba(99, 102, 241, 0.3);
    --wd-glass: rgba(255, 255, 255, 0.05);
    --wd-text: #f8fafc;
}

.wd-landing {
    background-color: var(--wd-darker);
    color: var(--wd-text);
    overflow-x: hidden;
}

/* Hero Section */
.wd-hero {
    padding: 8rem 0 6rem;
    position: relative;
    background: radial-gradient(circle at top right, #1e293b, var(--wd-darker));
}

.wd-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wd-hero .lead {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 600px;
    margin-bottom: 3rem;
}

/* Glass Card */
.wd-glass-card {
    background: var(--wd-glass);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Service Grid */
.wd-services {
    padding: 8rem 0;
}

.wd-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.wd-service-item {
    padding: 2.5rem;
    background: #1e293b;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.wd-service-item:hover {
    transform: translateY(-10px);
    background: #233045;
}

.wd-service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

/* Process Timeline */
.wd-process {
    padding: 8rem 0;
    background: var(--wd-dark);
}

.wd-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

.wd-step-num {
    background: var(--wd-accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 0 20px var(--wd-accent-glow);
}

/* Forms */
.wd-form-group {
    margin-bottom: 1.5rem;
}

.wd-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    color: white;
    outline: none;
}

.wd-input:focus {
    border-color: var(--wd-accent);
}

.wd-btn-glow {
    background: var(--wd-accent);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 30px var(--wd-accent-glow);
    transition: all 0.3s ease;
}

.wd-btn-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px var(--wd-accent-glow);
}

@media (max-width: 768px) {
    .wd-hero h1 {
        font-size: 2.5rem;
    }

    .wd-hero {
        padding: 4rem 0;
    }
}