/* ================================================
   WEBSITE DESIGN & DEVELOPMENT PAGE CSS
   Prestige Growth Media
   ================================================ */

/* ============================================
   HERO SECTION
   ============================================ */
.web-hero {
    padding: 70px 0 60px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.web-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 44%;
    height: 100%;
    background: linear-gradient(135deg, #fff7f7 0%, #ffeded 100%);
    clip-path: polygon(14% 0%, 100% 0%, 100% 100%, 0% 100%);
    pointer-events: none;
    z-index: 0;
}

.web-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.web-hero-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 18px;
}

.web-hero-title {
    font-size: clamp(32px, 4.4vw, 54px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 22px;
}

.web-hero-title span {
    color: var(--red);
    display: block;
}

.web-hero-desc {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 34px;
    max-width: 500px;
}

.web-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.web-hero-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.web-feat-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
}

.web-feat-item i {
    font-size: 17px;
    color: var(--red);
}

/* Right Side Image */
.web-hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.web-hero-img-wrap {
    width: 100%;
    position: relative;
}

.web-hero-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 15px 35px rgba(0,0,0,0.08));
}

.web-script-badge {
    position: absolute;
    top: -12px;
    left: 40px;
    background: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    font-size: 12px;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #fee2e2;
}

.web-script-badge span {
    color: var(--red);
    font-style: italic;
}


/* ============================================
   ABOUT OUR SERVICES SECTION
   ============================================ */
.web-about-section {
    padding: 90px 0;
    background: #f8f9fa;
}

.web-about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.web-about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0,0,0,0.09);
    background: #fff;
}

.web-about-img img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.web-about-img:hover img {
    transform: scale(1.03);
}

.web-about-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}

.web-about-title {
    font-size: clamp(26px, 3.4vw, 42px);
    font-weight: 900;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 18px;
}

.web-about-title span {
    color: var(--red);
}

.web-about-desc {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 26px;
}

.web-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.web-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
}

.web-check-item i {
    width: 22px;
    height: 22px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    flex-shrink: 0;
}

.web-about-action-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.web-about-stat-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1.5px solid #efefef;
    padding: 14px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.web-stat-icon-red {
    width: 44px;
    height: 44px;
    background: #fff5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 20px;
    flex-shrink: 0;
}

.web-about-stat-box p {
    font-size: 13px;
    font-weight: 800;
    color: var(--black);
    line-height: 1.35;
    margin: 0;
}


/* ============================================
   COMPLETE WEB SOLUTIONS (6 Cards Grid)
   ============================================ */
.web-services-section {
    padding: 90px 0;
    background: #fff;
}

.web-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.web-services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
}

.web-card {
    background: #fff;
    border: 1.5px solid #efefef;
    border-radius: 14px;
    padding: 30px 18px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.web-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.web-card:hover::after {
    transform: scaleX(1);
}

.web-card:hover {
    border-color: transparent;
    box-shadow: 0 10px 35px rgba(0,0,0,0.09);
    transform: translateY(-5px);
}

.web-card-icon {
    width: 60px;
    height: 60px;
    background: #fff5f5;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--red);
    transition: all 0.3s ease;
}

.web-card:hover .web-card-icon {
    background: var(--red);
    color: #fff;
    transform: scale(1.06);
}

.web-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.35;
}

.web-card p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 14px;
}

.web-card-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.web-card:hover .web-card-link {
    gap: 8px;
}


/* ============================================
   OUR PROCESS + CTA BOX
   ============================================ */
.web-process-section {
    padding: 90px 0;
    background: #f8f9fa;
}

.web-process-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
}

.web-process-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
}

.web-process-title {
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 900;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 14px;
}

.web-process-title span {
    color: var(--red);
}

.web-process-desc {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 40px;
}

.web-steps-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.web-step-item {
    flex: 1;
    text-align: center;
}

.web-step-arrow {
    flex: 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 18px;
    color: var(--red);
    font-size: 13px;
}

.web-step-circle {
    width: 52px;
    height: 52px;
    background: #fff;
    border: 2px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 18px;
    color: var(--red);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227,30,36,0.1);
}

.web-step-item:hover .web-step-circle {
    background: var(--red);
    color: #fff;
}

.web-step-num {
    font-size: 12px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 3px;
}

.web-step-item h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
}

/* Dark Box on Right */
.web-dream-box {
    background: #111111;
    border-radius: 20px;
    padding: 44px 36px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.web-dream-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(227,30,36,0.25) 0%, transparent 70%);
    border-radius: 50%;
}

.web-dream-icon {
    width: 58px;
    height: 58px;
    background: rgba(227,30,36,0.15);
    border: 1px solid rgba(227,30,36,0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 26px;
    margin-bottom: 22px;
}

.web-dream-box h3 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 14px;
}

.web-dream-box p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 28px;
}


/* ============================================
   FEATURED WEBSITE PROJECTS (Portfolio)
   ============================================ */
.web-projects-section {
    padding: 90px 0;
    background: #fff;
}

.web-projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.web-projects-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.web-project-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid #efefef;
    transition: all 0.35s ease;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.web-project-card:hover {
    box-shadow: 0 16px 45px rgba(0,0,0,0.12);
    border-color: transparent;
    transform: translateY(-6px);
}

.web-proj-img-box {
    width: 100%;
    height: 170px;
    overflow: hidden;
    position: relative;
    background: #f1f3f5;
}

.web-proj-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}

.web-project-card:hover .web-proj-img-box img {
    transform: scale(1.06);
}

.web-proj-info {
    padding: 18px 18px 20px;
    background: #fff;
}

.web-proj-info h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 4px;
}

.web-proj-info p {
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
}


/* ============================================
   WHY CHOOSE US (More Than Just a Website)
   ============================================ */
.web-why-section {
    padding: 80px 0;
    background: #f8f9fa;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
}

.web-why-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.web-why-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
}

.web-why-title {
    font-size: clamp(26px, 3.4vw, 42px);
    font-weight: 900;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 14px;
}

.web-why-title span {
    color: var(--red);
}

.web-why-desc {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

.web-why-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.web-why-badge-item {
    text-align: center;
    background: #fff;
    padding: 24px 16px;
    border-radius: 14px;
    border: 1.5px solid #efefef;
    transition: all 0.3s ease;
}

.web-why-badge-item:hover {
    border-color: var(--red);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.web-wb-icon {
    width: 54px;
    height: 54px;
    background: #fff5f5;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 22px;
    margin: 0 auto 12px;
    transition: all 0.3s ease;
}

.web-why-badge-item:hover .web-wb-icon {
    background: var(--red);
    color: #fff;
}

.web-why-badge-item span {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.35;
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.web-testimonials-section {
    padding: 90px 0;
    background: #fff;
}

.web-testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.web-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.web-testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 34px 30px;
    border: 1.5px solid #efefef;
    box-shadow: 0 4px 25px rgba(0,0,0,0.04);
    position: relative;
    transition: all 0.3s ease;
}

.web-testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.09);
    border-color: transparent;
    transform: translateY(-5px);
}

.web-quote-mark {
    font-size: 46px;
    line-height: 1;
    color: var(--red);
    opacity: 0.35;
    font-family: Georgia, serif;
    margin-bottom: 12px;
}

.web-testimonial-text {
    font-size: 14.5px;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.web-testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.web-user-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), #ff6b6e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    flex-shrink: 0;
}

.web-user-info h5 {
    font-size: 15px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 2px;
}

.web-user-info span {
    font-size: 12px;
    color: var(--gray);
    display: block;
}

.web-user-stars {
    display: flex;
    gap: 3px;
    margin-top: 5px;
}

.web-user-stars i {
    color: #fbbf24;
    font-size: 12px;
}


/* ============================================
   FAQS
   ============================================ */
.web-faq-section {
    padding: 90px 0;
    background: #f8f9fa;
}

.web-faq-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 70px;
    align-items: start;
}

.web-faq-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
}

.web-faq-title {
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 900;
    color: var(--black);
    margin-bottom: 14px;
    line-height: 1.2;
}

.web-faq-title span {
    color: var(--red);
}

.web-faq-desc {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

.web-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.web-faq-item {
    background: #fff;
    border-radius: 12px;
    border: 1.5px solid #efefef;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.web-faq-item.active {
    border-color: var(--red);
}

.web-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    gap: 12px;
    transition: color 0.3s ease;
    user-select: none;
}

.web-faq-item.active .web-faq-question {
    color: var(--red);
}

.web-faq-icon {
    width: 28px;
    height: 28px;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--gray);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.web-faq-item.active .web-faq-icon {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: rotate(45deg);
}

.web-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.web-faq-answer-inner {
    padding: 0 22px 20px;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
}

.web-faq-item.active .web-faq-answer {
    max-height: 220px;
}


/* ============================================
   CTA SECTION
   ============================================ */
.web-cta-section {
    background: linear-gradient(135deg, var(--red) 0%, #8b0000 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.web-cta-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.web-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.web-cta-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 14px;
}

.web-cta-title {
    font-size: clamp(26px, 3.8vw, 42px);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
}

.web-cta-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
}

.web-cta-graphic {
    position: absolute;
    right: 230px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.1);
    font-size: 130px;
    pointer-events: none;
}


/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */
@media (max-width: 1200px) {
    .web-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .web-projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .web-hero-inner,
    .web-about-inner,
    .web-faq-inner,
    .web-process-inner,
    .web-why-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .web-hero::after {
        display: none;
    }

    .web-hero-title {
        text-align: left;
    }

    .web-why-badges {
        grid-template-columns: repeat(2, 1fr);
    }

    .web-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .web-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .web-cta-graphic {
        display: none;
    }
}

@media (max-width: 768px) {
    .web-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .web-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .web-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .web-steps-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .web-step-item {
        flex: 0 0 calc(50% - 10px);
    }

    .web-step-arrow {
        display: none;
    }
}

@media (max-width: 576px) {
    .web-services-grid {
        grid-template-columns: 1fr;
    }

    .web-projects-grid {
        grid-template-columns: 1fr;
    }

    .web-about-img img {
        height: 280px;
    }

    .web-why-badges {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .web-hero-features {
        gap: 14px;
    }
}
