/* Web Design page specific styles */

/* Page background */
body {
    background-color: #E5E5E5;
}

/* Hero (web_design specific; replaces hosting-* classes) */
.web-design-hero {
    position: relative;
    overflow: hidden;
    height: 450px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.web-design-hero-image-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.web-design-hero-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.web-design-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.25));
}

.web-design-hero .container {
    position: relative;
    z-index: 2;
    height: 450px;
    display: flex;
    align-items: flex-end;
}

/* Hero content */
.web-design-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    padding-bottom: 30px;
    text-align: right;
    padding-left: 700px;
}

.web-design-hero-title {
    margin: 0;
    font-size: 32px;
    font-weight: 600;
    color: #4caf50;
    text-align: right;
    white-space: nowrap;
}

/* Sections */
.web-design-section {
    background: #E5E5E5;
    padding-top: 30px;
    padding-bottom: 10px;
}

/* Intro text card */
.web-design-intro-card {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.web-design-intro-card p {
    margin: 0 0 14px 0;
    color: #1b2b33;
    line-height: 1.7;
}

.web-design-intro-card p:last-child {
    margin-bottom: 0;
}

.web-design-section-title {
    color: #0b2a34;
    text-align: center;
    margin: 0 0 18px;
}

/* Hosting packages grid/cards (web_design specific) */
.web-design-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.web-design-card {
    background: #0f2530;
    color: #fff;
    border-radius: 14px;
    padding: 22px 22px 18px 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.web-design-card-title {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.web-design-card-price {
    text-align: center;
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 10px;
}

.web-design-card-price strong {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: 0.2px;
}

.web-design-features {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
    font-size: 13px;
    line-height: 1.45;
    opacity: 0.95;
    text-align: center;
}

.web-design-actions {
    margin-top: auto;
    display: flex;
    justify-content: center;
    padding-top: 14px;
}

.web-design-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.75);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.4px;
    transition: transform 0.15s ease, background 0.15s ease;
}

.web-design-btn:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-1px);
}

.web-design-empty {
    background: #fff;
    border-radius: 12px;
    padding: 22px;
    border: 1px solid rgba(0,0,0,0.06);
    text-align: center;
    color: #6b7280;
}

@media (max-width: 768px) {
    .web-design-intro-card {
        padding: 18px;
        border-radius: 14px;
    }
}

@media (max-width: 1024px) {
    .web-design-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .web-design-grid {
        grid-template-columns: 1fr;
    }
    .web-design-hero-title {
        font-size: 28px;
        white-space: normal;
    }
}

