/* ============================================
   WEB DEVELOPMENT SERVICE PAGE STYLES
   ============================================ */

/* Hero Section */
.webDevHeroSection {
    padding: 120px 0 80px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.webDevHeroGrid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.webDevHeroContent {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.heroBadge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: white;
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 50px;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(157, 78, 221, 0.08);
    margin-bottom: 20px;
}

[data-theme="dark"] .heroBadge {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(157, 78, 221, 0.3);
}

.badgeIcon {
    font-size: 20px;
}

.badgeText {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
}

.heroTitle {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 16px;
}

[data-theme="dark"] .heroTitle {
    color: #f1f5f9;
}

.titleGradient {
    background: linear-gradient(135deg, #5C17F3, #9D4EDD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.heroDescription {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin-bottom: 20px;
}

.heroStats {
    display: flex;
    gap: 40px;
    padding: 0;
    margin-bottom: 24px;
}

.heroStat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.statValue {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #5C17F3, #9D4EDD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.statLabel {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.heroActions {
    display: flex;
    gap: 16px;
}

/* Hero Buttons - Same as Home Page */
.btnPrimary, .btnSecondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btnPrimary {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow:
        0 8px 24px rgba(30, 58, 138, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .btnPrimary {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow:
        0 8px 24px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(59, 130, 246, 0.2);
}

.btnPrimary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btnPrimary span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.btnPrimary svg {
    position: relative;
    z-index: 1;
    width: 20px;
    height: 20px;
}

.btnPrimary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 32px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .btnPrimary:hover {
    box-shadow:
        0 12px 32px rgba(59, 130, 246, 0.6),
        inset 0 1px 0 rgba(59, 130, 246, 0.25);
}

.btnPrimary:hover::before {
    opacity: 1;
}

.btnPrimary:hover span,
.btnPrimary:hover svg {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.btnSecondary {
    background: white;
    color: #1e3a8a;
    border: 2px solid rgba(30, 58, 138, 0.2);
}

[data-theme="dark"] .btnSecondary {
    background: rgba(30, 41, 59, 0.8);
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.3);
}

.btnSecondary:hover {
    background: rgba(30, 58, 138, 0.1);
    border-color: #1e3a8a;
}

[data-theme="dark"] .btnSecondary:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.btnSecondary svg {
    width: 20px;
    height: 20px;
}

/* Hero Visual */
.webDevHeroVisual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.heroMockup {
    position: relative;
    width: 100%;
}

.mockupBrowser {
    width: 100%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(157, 78, 221, 0.2);
    border: 1px solid rgba(157, 78, 221, 0.15);
    overflow: hidden;
}

[data-theme="dark"] .mockupBrowser {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
    border-color: rgba(157, 78, 221, 0.3);
}

.browserChrome {
    background: linear-gradient(135deg, #f8f9fa, #f1f3f5);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(157, 78, 221, 0.1);
}

[data-theme="dark"] .browserChrome {
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.9), rgba(30, 41, 59, 0.95));
    border-bottom-color: rgba(157, 78, 221, 0.2);
}

.chromeDots {
    display: flex;
    gap: 6px;
}

.chromeDots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.chromeDots span:nth-child(1) { background: #ef4444; }
.chromeDots span:nth-child(2) { background: #f59e0b; }
.chromeDots span:nth-child(3) { background: #10b981; }

.chromeUrl {
    flex: 1;
    background: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    color: #64748b;
    text-align: center;
    font-weight: 600;
}

[data-theme="dark"] .chromeUrl {
    background: rgba(15, 23, 42, 0.9);
    color: #94a3b8;
}

.browserPreview {
    padding: 32px;
    min-height: 300px;
    background: #f8f9fa;
}

[data-theme="dark"] .browserPreview {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(7, 11, 21, 0.98));
}

.previewGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.previewCard {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(157, 78, 221, 0.15);
    box-shadow: 0 4px 12px rgba(157, 78, 221, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

[data-theme="dark"] .previewCard {
    background: rgba(51, 65, 85, 0.6);
    border-color: rgba(157, 78, 221, 0.25);
}

.previewCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(157, 78, 221, 0.15);
}

.cardIcon {
    font-size: 32px;
    margin-bottom: 12px;
}

.cardLabel {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
}

.mockupFloating {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #9D4EDD, #5C17F3);
    color: white;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(157, 78, 221, 0.4);
    animation: float 3s ease-in-out infinite;
}

.mockupFloating svg {
    width: 16px;
    height: 16px;
}

.float1 {
    top: 20px;
    right: -20px;
}

.float2 {
    bottom: 20px;
    left: -20px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* Service Types Section */
.serviceTypesSection {
    padding: 100px 0;
    background: transparent;
}

[data-theme="dark"] .serviceTypesSection {
    background: transparent;
}

.sectionHeader {
    text-align: center;
    margin-bottom: 60px;
}

.sectionTitle {
    font-size: 42px;
    font-weight: 900;
    color: var(--color-text);
    margin-bottom: 16px;
}

[data-theme="dark"] .sectionTitle {
    color: #f1f5f9;
}

.sectionSubtitle {
    font-size: 18px;
    color: var(--color-text-secondary);
}

.serviceTypesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.serviceTypeCard {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(157, 78, 221, 0.15);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .serviceTypeCard {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(157, 78, 221, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.serviceTypeCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(157, 78, 221, 0.2);
    border-color: #9D4EDD;
}

.serviceTypeCard.featured {
    border-color: #9D4EDD;
    border-width: 3px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.05), rgba(92, 23, 243, 0.03));
}

[data-theme="dark"] .serviceTypeCard.featured {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.15), rgba(92, 23, 243, 0.1));
}

.featuredBadge {
    position: absolute;
    top: -12px;
    right: 24px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #5C17F3, #9D4EDD);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(157, 78, 221, 0.3);
}

.typeIcon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.15), rgba(92, 23, 243, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.typeIcon svg {
    width: 32px;
    height: 32px;
    color: #5C17F3;
}

.typeTitle {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 12px;
}

[data-theme="dark"] .typeTitle {
    color: #f1f5f9;
}

.typeDescription {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.typeFeatures {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex: 1;
}

.typeFeatures li {
    font-size: 14px;
    color: var(--color-text-secondary);
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
}

.typeFeatures li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.typeTech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.techBadge {
    padding: 6px 12px;
    background: rgba(157, 78, 221, 0.1);
    color: #5C17F3;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
}

[data-theme="dark"] .techBadge {
    background: rgba(157, 78, 221, 0.2);
    color: #9D4EDD;
}

/* Service Type Card Button - Same as Home Page */
.typeBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow:
        0 8px 24px rgba(30, 58, 138, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

[data-theme="dark"] .typeBtn {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow:
        0 8px 24px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(59, 130, 246, 0.2);
}

.typeBtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.typeBtn span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.typeBtn svg {
    position: relative;
    z-index: 1;
    width: 20px;
    height: 20px;
}

.typeBtn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 32px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .typeBtn:hover {
    box-shadow:
        0 12px 32px rgba(59, 130, 246, 0.6),
        inset 0 1px 0 rgba(59, 130, 246, 0.25);
}

.typeBtn:hover::before {
    opacity: 1;
}

.typeBtn:hover span,
.typeBtn:hover svg {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Technology Stack Section */
.techStackSection {
    padding: 100px 0;
    background: transparent;
}

[data-theme="dark"] .techStackSection {
    background: transparent;
}

.techStackGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.techCategoryCard {
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.02), rgba(157, 78, 221, 0.04));
    padding: 36px;
    border-radius: 20px;
    border: 2px solid var(--color-border);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(92, 23, 243, 0.08);
}

[data-theme="dark"] .techCategoryCard {
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.06), rgba(157, 78, 221, 0.1));
    border-color: rgba(157, 78, 221, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.techCategoryCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(92, 23, 243, 0.15);
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.05), rgba(157, 78, 221, 0.08));
}

[data-theme="dark"] .techCategoryCard:hover {
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.12), rgba(157, 78, 221, 0.18));
}

.techCategoryHeader {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--color-border);
}

.categoryIconWrapper {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(92, 23, 243, 0.3);
}

.categoryIconWrapper svg {
    width: 28px;
    height: 28px;
    color: white;
}

.categoryTitle {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text);
    margin: 0;
}

[data-theme="dark"] .categoryTitle {
    color: #f1f5f9;
}

.techItemsGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.techItemBadge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: default;
}

[data-theme="dark"] .techItemBadge {
    background: rgba(51, 65, 85, 0.6);
    border-color: rgba(157, 78, 221, 0.2);
}

.techItemBadge:hover {
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.08), rgba(157, 78, 221, 0.12));
    border-color: var(--color-primary);
    transform: translateX(4px);
}

[data-theme="dark"] .techItemBadge:hover {
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.15), rgba(157, 78, 221, 0.2));
    border-color: var(--color-secondary);
}

.techItemBadge svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.techItemBadge span {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

[data-theme="dark"] .techItemBadge span {
    color: #f1f5f9;
}

/* Process Section */
.processSection {
    padding: 100px 0;
    background: transparent;
}

[data-theme="dark"] .processSection {
    background: transparent;
}

.processTimeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.processStep {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    align-items: start;
}

.stepNumber {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5C17F3, #9D4EDD);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 8px 24px rgba(157, 78, 221, 0.3);
}

.stepContent {
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.02), rgba(157, 78, 221, 0.04));
    padding: 28px 32px;
    border-radius: 16px;
    border: 2px solid var(--color-border);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(92, 23, 243, 0.06);
}

[data-theme="dark"] .stepContent {
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.06), rgba(157, 78, 221, 0.1));
    border-color: rgba(157, 78, 221, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.stepContent:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 40px rgba(92, 23, 243, 0.15);
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.05), rgba(157, 78, 221, 0.08));
}

[data-theme="dark"] .stepContent:hover {
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.12), rgba(157, 78, 221, 0.18));
}

.stepTitle {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 12px;
}

[data-theme="dark"] .stepTitle {
    color: #f1f5f9;
}

.stepDescription {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.stepDuration {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(157, 78, 221, 0.1);
    color: #5C17F3;
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
}

[data-theme="dark"] .stepDuration {
    background: rgba(157, 78, 221, 0.2);
    color: #9D4EDD;
}

/* CTA Section */
.webDevCTASection {
    padding: 100px 0;
    background: transparent;
}

.ctaContent {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.03), rgba(157, 78, 221, 0.05));
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 80px 60px;
    border: 2px solid var(--color-border);
    box-shadow: 0 20px 60px rgba(92, 23, 243, 0.1);
}

[data-theme="dark"] .ctaContent {
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.08), rgba(157, 78, 221, 0.12));
    border-color: rgba(157, 78, 221, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.ctaTitle {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #5C17F3, #9D4EDD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.ctaDescription {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

.ctaButtons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* CTA Section Buttons - Same as Home Page */
.btnCTAPrimary, .btnCTASecondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btnCTAPrimary {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow:
        0 8px 24px rgba(30, 58, 138, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .btnCTAPrimary {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow:
        0 8px 24px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(59, 130, 246, 0.2);
}

.btnCTAPrimary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btnCTAPrimary span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.btnCTAPrimary svg {
    position: relative;
    z-index: 1;
    width: 20px;
    height: 20px;
}

.btnCTAPrimary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 32px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .btnCTAPrimary:hover {
    box-shadow:
        0 12px 32px rgba(59, 130, 246, 0.6),
        inset 0 1px 0 rgba(59, 130, 246, 0.25);
}

.btnCTAPrimary:hover::before {
    opacity: 1;
}

.btnCTAPrimary:hover span,
.btnCTAPrimary:hover svg {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.btnCTASecondary {
    background: white;
    color: #1e3a8a;
    border: 2px solid rgba(30, 58, 138, 0.2);
}

[data-theme="dark"] .btnCTASecondary {
    background: rgba(30, 41, 59, 0.8);
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.3);
}

.btnCTASecondary:hover {
    background: rgba(30, 58, 138, 0.1);
    border-color: #1e3a8a;
}

[data-theme="dark"] .btnCTASecondary:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.btnCTASecondary svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .webDevHeroGrid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .serviceTypesGrid {
        grid-template-columns: 1fr;
    }

    .techStackGrid {
        grid-template-columns: 1fr;
    }

    .techItemsGrid {
        grid-template-columns: 1fr;
    }

    .heroTitle {
        font-size: 42px;
    }

    .sectionTitle {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .webDevHeroSection {
        padding: 80px 0 60px;
    }

    .heroTitle {
        font-size: 36px;
    }

    .heroStats {
        gap: 24px;
    }

    .statValue {
        font-size: 28px;
    }

    .heroActions {
        flex-direction: column;
    }

    .btnPrimary, .btnSecondary {
        width: 100%;
        justify-content: center;
    }

    .previewGrid {
        grid-template-columns: 1fr;
    }

    .techStackGrid {
        grid-template-columns: 1fr;
    }

    .techCategoryHeader {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .processStep {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }

    .stepNumber {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .ctaButtons {
        flex-direction: column;
    }

    .btnCTAPrimary, .btnCTASecondary {
        width: 100%;
        justify-content: center;
    }
}
