/* ===========================================
   WEBSITE DEVELOPMENT SERVICE PAGE - PREMIUM CSS
   Siva Designer - ThinkPulse Design System
   Premium Ultra-Modern Aesthetic
   =========================================== */

/* CSS Variables - ThinkPulse Colors */
:root {
    --deep-blue: #0A1F44;
    --electric-blue: #2563EB;
    --cyan-glow: #06B6D4;
    --navy: #1E3A8A;
    --warm-orange: #F59E0B;
    --emerald: #10B981;
    --slate-dark: #0A1F44;
    --slate-text: #64748B;
    --hero-gradient: linear-gradient(135deg, #0A1F44 0%, #1E3A8A 50%, #2563EB 100%);
    --accent-gradient: linear-gradient(90deg, #06B6D4 0%, #2563EB 100%);
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 20px 60px rgba(6, 182, 212, 0.15);
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 4;
}

.wave-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Wave Divider Dark */
.wave-divider-dark {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 4;
}

.wave-divider-dark svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes bgPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
        transform: scale(1);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
        transform: scale(1.1);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes processPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* ===== HERO SECTION ===== */
.service-hero {
    padding: 140px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--hero-gradient);
}

/* Animated Background */
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.15) 0%, transparent 50%);
    animation: bgPulse 10s ease-in-out infinite;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

/* Hero Tag Badge */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--emerald);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Hero Title */
.service-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gradient-text-animated {
    display: block;
    background: linear-gradient(90deg,
            #06B6D4 0%, #2563EB 25%, #06B6D4 50%, #2563EB 75%, #06B6D4 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s linear infinite;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
}

/* Hero Benefits */
.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    stroke: var(--emerald);
    stroke-width: 2;
    fill: none;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    border: none;
}

.btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.btn-primary {
    background: linear-gradient(135deg, #06B6D4, #2563EB);
    color: white;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(6, 182, 212, 0.5);
    color: white;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

/* Trust Indicators */
.hero-trust {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--cyan-glow);
    line-height: 1;
}

.trust-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
}

/* Hero Visual */
.hero-visual-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}

.image-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle,
            rgba(6, 182, 212, 0.3),
            transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

.hero-visual-wrapper img,
.service-hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.6s ease;
}

.hero-visual-wrapper:hover img,
.service-hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg) translateZ(20px);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    color: var(--deep-blue);
    animation: badgeFloat 3s ease-in-out infinite;
    z-index: 10;
}

.badge-1 {
    top: 10%;
    right: -10%;
}

.badge-2 {
    bottom: 15%;
    left: -10%;
    animation-delay: -1.5s;
}

.badge-icon {
    font-size: 1.35rem;
}

/* ===== SERVICE OVERVIEW SECTION ===== */
.service-overview {
    padding: 100px 0;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--deep-blue);
    margin-bottom: 16px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--slate-text);
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.7;
    text-align: center;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 40px 32px;
    border-radius: 24px;
    border: 1px solid rgba(6, 182, 212, 0.1);
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(6, 182, 212, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg,
            rgba(6, 182, 212, 0.15),
            rgba(37, 99, 235, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--accent-gradient);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(10px);
}

.feature-card:hover .feature-icon::before {
    opacity: 0.4;
}

.feature-icon i {
    font-size: 2rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 1rem;
    color: var(--slate-text);
    line-height: 1.7;
    margin: 0;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 100px 0;
    background: white;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

.process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow:
        0 8px 24px rgba(6, 182, 212, 0.3),
        0 0 0 8px rgba(6, 182, 212, 0.1);
    z-index: 2;
    position: relative;
}

.process-number::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    animation: processPulse 2s ease-out infinite;
}

.process-content {
    background: #F8FAFC;
    padding: 32px;
    border-radius: 16px;
    flex-grow: 1;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover .process-content {
    border-left-color: var(--cyan-glow);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.12);
    transform: translateX(8px);
    background: white;
}

.process-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 12px;
}

.process-content p {
    font-size: 1rem;
    color: var(--slate-text);
    line-height: 1.7;
    margin: 0;
}

/* ===== TECH SECTION ===== */
.tech-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #0A1F44 0%, #1E3A8A 50%, #2563EB 100%);
    position: relative;
    overflow: hidden;
}

.tech-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
}

.tech-section .section-title,
.tech-section .section-subtitle {
    color: white;
    position: relative;
    z-index: 1;
}

.tech-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
    margin-top: 40px;
}

.tech-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 28px 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px) scale(1.03);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.tech-item i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 12px rgba(6, 182, 212, 0.3));
    transition: transform 0.4s ease;
    display: block;
}

.tech-item:hover i {
    transform: scale(1.1) rotateY(10deg);
}

.tech-item h4 {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 60px auto 0;
}

.pricing-card {
    background: white;
    padding: 48px 40px;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(6, 182, 212, 0.3);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #0A1F44 0%, #1E3A8A 100%);
    transform: scale(1.05);
    border-color: var(--cyan-glow);
    box-shadow:
        0 20px 60px rgba(6, 182, 212, 0.3),
        0 0 0 1px rgba(6, 182, 212, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: white;
    padding: 10px 28px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 16px;
}

.pricing-card.featured h3 {
    color: white;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.pricing-card.featured .pricing-price {
    background: linear-gradient(135deg, #06B6D4, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

.pricing-card>p {
    color: var(--slate-text);
    margin-bottom: 24px;
}

.pricing-card.featured>p {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 32px 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    color: var(--slate-text);
    font-size: 1rem;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--emerald);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pricing-card.featured .pricing-features li i {
    color: var(--cyan-glow);
}

.pricing-card .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
}

.pricing-card.featured .btn-primary {
    background: white;
    color: var(--deep-blue);
}

.pricing-card.featured .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-4px);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(6, 182, 212, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    background: #F8FAFC;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg,
            rgba(6, 182, 212, 0.05),
            rgba(37, 99, 235, 0.05));
}

.faq-question span {
    font-weight: 600;
    color: var(--deep-blue);
    font-size: 1.1rem;
    flex: 1;
    padding-right: 16px;
}

.faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-icon i {
    color: white;
    font-size: 1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 28px 28px;
    background: white;
    color: var(--slate-text);
    line-height: 1.8;
    font-size: 1rem;
}

/* ===== SERVICE CTA SECTION ===== */
.service-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A1F44 0%, #1E3A8A 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 60%);
}

.service-cta .container {
    position: relative;
    z-index: 1;
}

.service-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.service-cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-cta .cta-buttons {
    justify-content: center;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .floating-badge.badge-1 {
        right: 0;
    }

    .floating-badge.badge-2 {
        left: 0;
    }
}

@media (max-width: 992px) {
    .service-hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 60px auto 0;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-12px);
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0 60px;
    }

    .service-hero-content h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .tech-item {
        padding: 28px 20px;
    }

    .tech-item i {
        font-size: 3rem;
    }

    .hero-trust {
        flex-wrap: wrap;
        gap: 24px;
    }

    .trust-item {
        flex: 1 1 45%;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .floating-badge {
        display: none;
    }

    .process-step {
        flex-direction: column;
        gap: 20px;
    }

    .process-timeline::before {
        display: none;
    }

    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin: 0 auto;
    }

    .process-content {
        text-align: center;
    }

    .process-step:hover .process-content {
        transform: none;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question span {
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 0 20px 20px;
    }

    .pricing-card {
        padding: 36px 28px;
    }

    .service-cta {
        padding: 80px 0;
    }

    .service-cta h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .tech-item {
        padding: 24px 16px;
    }

    .tech-item i {
        font-size: 2.5rem;
    }

    .tech-item h4 {
        font-size: 0.95rem;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .trust-item {
        flex: none;
        text-align: center;
    }

    .pricing-price {
        font-size: 2.5rem;
    }
}

/* ===== WEBSITE TYPES SECTION ===== */
.website-types-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

/* ===== WHAT'S INCLUDED SECTION ===== */
.whats-included-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A1F44 0%, #1E3A8A 100%);
    position: relative;
    overflow: hidden;
}

.whats-included-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
}

.whats-included-section .section-title,
.whats-included-section .section-subtitle {
    color: white;
    position: relative;
    z-index: 1;
}

.whats-included-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.included-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 28px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.included-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.2);
}

.included-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.included-icon i {
    font-size: 1.4rem;
    color: white;
}

.included-content h4 {
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.included-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* ===== INDUSTRIES SECTION (Page Override) ===== */
.website-development .industries-section,
body .industries-section {
    background: linear-gradient(135deg, #fffcf9 0%, #fff5f5 100%);
}

/* Responsive - What's Included */
@media (max-width: 1200px) {
    .included-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .website-types-section,
    .whats-included-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .included-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .included-item {
        padding: 20px 16px;
    }

    .included-icon {
        width: 44px;
        height: 44px;
    }

    .included-icon i {
        font-size: 1.2rem;
    }

    .included-content h4 {
        font-size: 1rem;
    }

    .included-content p {
        font-size: 0.85rem;
    }

    .website-types-section,
    .whats-included-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .included-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}