/* ============================================
   WEB DEVELOPMENT SERVICE PAGE - ULTRA PREMIUM
   Premium effects, glassmorphism, animations
   ============================================ */

/* ============================================
   SERVICE PAGE BASE
   ============================================ */
.service-page {
    background: var(--color-bg-deep);
    overflow-x: hidden;
}

.header-transparent {
    background: transparent !important;
    backdrop-filter: none !important;
}

.header-transparent.scrolled {
    background: var(--color-bg-nav) !important;
    backdrop-filter: blur(10px) !important;
}

/* ============================================
   HERO SECTION - PREMIUM GRADIENT
   ============================================ */
.service-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-gradient-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            #0a0a1a 0%,
            #1a0a2e 30%,
            #2d1b4e 50%,
            #ff6b35 80%,
            #f7931e 100%);
    opacity: 0.9;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: floatOrb 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.6) 0%, transparent 70%);
    top: -20%;
    right: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(157, 0, 255, 0.5) 0%, transparent 70%);
    bottom: 10%;
    left: 10%;
    animation-delay: -7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.4) 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation-delay: -14s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    75% {
        transform: translate(-30px, -20px) scale(1.05);
    }
}

.animated-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Text */
.hero-text {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-badge i {
    color: var(--color-orange);
}

.hero-mega-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg,
            #ffd36a 0%,
            #ff8c00 30%,
            #ff6b00 60%,
            #ff4500 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 4s ease-in-out infinite;
}

.text-white {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
}

.hero-description .highlight {
    color: #ffd36a;
    font-weight: 600;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-primary-glow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 50%, #ffd36a 100%);
    background-size: 200% 200%;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 10px 30px rgba(255, 107, 0, 0.4),
        0 0 0 0 rgba(255, 107, 0, 0.4);
    animation: pulseGlow 3s ease-in-out infinite;
}

.btn-primary-glow:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 20px 50px rgba(255, 107, 0, 0.5),
        0 0 40px rgba(255, 107, 0, 0.3);
}

.btn-primary-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary-glow:hover::before {
    left: 100%;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
}

.trust-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px;
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    left: 10%;
    width: 300px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 60%;
    right: 20%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4ade80;
    animation-delay: -2s;
}

.floating-card.card-2 i {
    font-size: 24px;
}

.floating-card.card-3 {
    top: 35%;
    right: 5%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #60a5fa;
    animation-delay: -4s;
}

.floating-card.card-3 i {
    font-size: 24px;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Code Preview */
.code-preview {
    background: #1e1e2e;
    border-radius: 12px;
    overflow: hidden;
}

.code-header {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
}

.code-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27ca40;
}

.code-content {
    padding: 16px;
    font-family: 'Fira Code', monospace;
    font-size: 13px;
    line-height: 1.6;
    color: #cdd6f4;
    margin: 0;
}

.code-tag {
    color: #f38ba8;
}

.code-attr {
    color: #89b4fa;
}

.code-string {
    color: #a6e3a1;
}

.code-comment {
    color: #6c7086;
    font-style: italic;
}

.code-keyword {
    color: #cba6f7;
}

/* Floating Tech Icons */
.floating-icons {
    position: absolute;
    bottom: 10%;
    left: 20%;
    display: flex;
    gap: 15px;
}

.tech-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: floatIcon 4s ease-in-out infinite;
}

.tech-icon:nth-child(2) {
    animation-delay: -1s;
}

.tech-icon:nth-child(3) {
    animation-delay: -2s;
}

.tech-icon:nth-child(4) {
    animation-delay: -3s;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    animation: bounceScroll 2s ease-in-out infinite;
    z-index: 10;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: wheelScroll 2s ease-in-out infinite;
}

@keyframes bounceScroll {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

@keyframes wheelScroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--color-orange);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.section-title {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   WHAT WE BUILD SECTION
   ============================================ */
.section-what-we-build {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-bg-deep) 0%, #0a0a1a 100%);
    position: relative;
}

.services-mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-mega-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 35px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-mega-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-orange), #ffd36a);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-mega-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.service-mega-card:hover::before {
    transform: scaleX(1);
}

.card-icon-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2) 0%, rgba(255, 140, 0, 0.1) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.card-icon-large i {
    font-size: 28px;
    color: var(--color-orange);
}

.card-icon-large.blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-color: rgba(59, 130, 246, 0.2);
}

.card-icon-large.blue i {
    color: #3b82f6;
}

.card-icon-large.purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-color: rgba(139, 92, 246, 0.2);
}

.card-icon-large.purple i {
    color: #8b5cf6;
}

.card-icon-large.green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
    border-color: rgba(34, 197, 94, 0.2);
}

.card-icon-large.green i {
    color: #22c55e;
}

.card-icon-large.cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-color: rgba(6, 182, 212, 0.2);
}

.card-icon-large.cyan i {
    color: #06b6d4;
}

.card-icon-large.orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(249, 115, 22, 0.1) 100%);
    border-color: rgba(249, 115, 22, 0.2);
}

.card-icon-large.orange i {
    color: #f97316;
}

.service-mega-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.service-mega-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-list {
    margin-bottom: 25px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.feature-list li i {
    color: var(--color-orange);
    font-size: 12px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-orange);
    transition: all 0.3s ease;
}

.card-link:hover {
    gap: 12px;
    color: #ffd36a;
}

/* ============================================
   TECH STACK SECTION
   ============================================ */
.section-tech-stack {
    padding: 100px 0;
    background: #0a0a1a;
}

.tech-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tech-category h4 {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tech-icons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.tech-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.4s ease;
}

.tech-chip:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: rgba(255, 107, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
}

.tech-chip i {
    font-size: 20px;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.section-process {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a1a 0%, var(--color-bg-deep) 100%);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 50px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg,
            rgba(255, 107, 0, 0.3),
            rgba(255, 107, 0, 0.8),
            rgba(255, 107, 0, 0.3));
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 18%;
    position: relative;
}

.step-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-orange);
    margin-bottom: 20px;
    background: var(--color-bg-deep);
    padding: 0 10px;
    position: relative;
    z-index: 2;
}

.step-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px 20px;
    transition: all 0.4s ease;
}

.step-content:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 107, 0, 0.3);
    transform: translateY(-10px);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2) 0%, rgba(255, 140, 0, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 24px;
    color: var(--color-orange);
}

.step-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ============================================
   INCLUDED SECTION
   ============================================ */
.section-included {
    padding: 100px 0;
    background: #0a0a1a;
}

.included-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.included-left .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.included-left .section-badge {
    display: inline-flex;
}

.included-left p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: all 0.4s ease;
}

.included-item:hover {
    background: rgba(255, 107, 0, 0.08);
    border-color: rgba(255, 107, 0, 0.2);
    transform: translateX(5px);
}

.included-item i {
    font-size: 22px;
    color: var(--color-orange);
}

.included-item span {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

/* ============================================
   PORTFOLIO PREVIEW SECTION
   ============================================ */
.section-portfolio-preview {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-bg-deep) 0%, #0a0a1a 100%);
}

.portfolio-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.portfolio-item.featured {
    grid-row: span 2;
}

.portfolio-image {
    position: relative;
    height: 100%;
    min-height: 280px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 1;
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.2) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.portfolio-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 107, 0, 0.2);
    color: var(--color-orange);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 10px;
    width: fit-content;
}

.portfolio-overlay h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-link {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-cta {
    text-align: center;
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.btn-outline-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   CTA MEGA SECTION
   ============================================ */
.section-cta-mega {
    padding: 100px 0;
    background: linear-gradient(135deg,
            #0a0a1a 0%,
            #1a0a2e 30%,
            #ff6b35 70%,
            #f7931e 100%);
    position: relative;
    overflow: hidden;
}

.cta-gradient-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-orb-1,
.cta-orb-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 107, 0, 0.4);
    top: -50%;
    right: -10%;
}

.cta-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(157, 0, 255, 0.3);
    bottom: -30%;
    left: -10%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-white-glow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #fff;
    color: #ff6b00;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.btn-white-glow:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        display: none;
    }

    .hero-mega-title {
        font-size: 48px;
    }

    .services-mega-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        flex-wrap: wrap;
        gap: 30px;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        width: 45%;
    }

    .portfolio-showcase {
        grid-template-columns: 1fr 1fr;
    }

    .portfolio-item.featured {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-mega-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 20px;
    }

    .trust-divider {
        width: 100%;
        height: 1px;
    }

    .section-title {
        font-size: 32px;
    }

    .services-mega-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        width: 100%;
    }

    .included-wrapper {
        grid-template-columns: 1fr;
    }

    .portfolio-showcase {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}