/* ====================================
   SERVICE DETAIL PAGE
   Graphic Design - Digisapience
   ==================================== */

:root {
    --primary: #f8be14;
    --primary-dark: #e5a910;
    --primary-light: #fef1cf;
    --primary-rgb: 248, 190, 20;
    
    --gradient-primary: linear-gradient(135deg, #f8be14 0%, #ffd966 50%, #f8be14 100%);
    --gradient-primary-subtle: linear-gradient(135deg, rgba(248, 190, 20, 0.1) 0%, rgba(255, 217, 102, 0.1) 100%);
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;
}

/* ===== HERO SECTION ===== */
.service-detail-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: calc(var(--space-4xl) + 2rem) 0 var(--space-4xl);
    background: #0A0A0A;
}

.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(248, 190, 20, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(248, 190, 20, 0.08) 0%, transparent 50%),
                linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(248, 190, 20, 0.05) 2px, transparent 2px),
        radial-gradient(rgba(248, 190, 20, 0.05) 2px, transparent 2px);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    animation: particleDrift 25s linear infinite;
    opacity: 0.6;
}

@keyframes particleDrift {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-50px) rotate(5deg); }
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
}

.service-detail-content {
    max-width: 650px;
}

@media (max-width: 1200px) {
    .service-detail-content {
        max-width: 100%;
    }
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: rgba(248, 190, 20, 0.1);
    border: 1px solid rgba(248, 190, 20, 0.25);
    border-radius: 60px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease;
}

.service-badge i {
    font-size: 1rem;
}

.service-detail-content h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.1s both;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

@media (max-width: 1400px) {
    .service-detail-content h1 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .service-detail-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .service-detail-content h1 {
        font-size: 2.5rem;
    }
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.service-desc {
    font-size: 1.25rem;
    color: #CCCCCC;
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s both;
    max-width: 550px;
}

@media (max-width: 1200px) {
    .service-desc {
        margin-left: auto;
        margin-right: auto;
    }
}

.service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.3s both;
}

@media (max-width: 1200px) {
    .service-meta {
        justify-content: center;
    }
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999999;
    font-size: 0.9375rem;
}

.meta-item i {
    color: var(--primary);
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.35s both;
    flex-wrap: wrap;
}

@media (max-width: 1200px) {
    .service-price {
        justify-content: center;
    }
}

.price-label {
    font-size: 1rem;
    color: #999999;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .price-value {
        font-size: 2.5rem;
    }
}

.price-note {
    font-size: 0.9375rem;
    color: #666666;
}

.service-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.4s both;
    flex-wrap: wrap;
}

@media (max-width: 1200px) {
    .service-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .service-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .service-actions a {
        width: 100%;
        justify-content: center;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 60px;
    color: #0A0A0A;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 20px rgba(248, 190, 20, 0.3);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(248, 190, 20, 0.5);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid rgba(248, 190, 20, 0.3);
    border-radius: 60px;
    color: #FFFFFF;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: #0A0A0A;
}

.btn-outline:hover::before {
    width: 100%;
}

.service-trust {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 0.8s ease 0.45s both;
}

@media (max-width: 1200px) {
    .service-trust {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .service-trust {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999999;
    font-size: 0.9375rem;
}

.trust-item i {
    color: var(--primary);
}

/* Hero Visual */
.service-detail-visual {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease 0.2s both;
}

.visual-frame {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.visual-frame:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 40px 80px rgba(248, 190, 20, 0.3);
}

.service-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.visual-frame:hover .service-image {
    transform: scale(1.05);
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(248, 190, 20, 0.3);
    border-radius: 60px;
    color: #FFFFFF;
    font-size: 0.9375rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    color: var(--primary);
    font-size: 1.125rem;
}

.badge-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 0.5s;
}

.badge-3 {
    top: 40%;
    right: -5%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #999999;
    font-size: 0.875rem;
    letter-spacing: 1px;
    animation: bounce 2.5s infinite;
    z-index: 5;
}

.scroll-indicator i {
    color: var(--primary);
    font-size: 1.25rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-7px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== SERVICES LIST SECTION ===== */
.services-list-section {
    padding: var(--space-4xl) 0;
    background: #0F0F0F;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(248, 190, 20, 0.1);
    border: 1px solid rgba(248, 190, 20, 0.2);
    border-radius: 60px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

@media (max-width: 992px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
}

.section-header p {
    font-size: 1.25rem;
    color: #999999;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid-detail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .services-grid-detail {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid-detail {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

.service-detail-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: #1A1A1A;
    border: 1px solid #222222;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(248, 190, 20, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-detail-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(248, 190, 20, 0.15);
}

.service-detail-card:hover::before {
    opacity: 1;
}

.service-detail-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 40px rgba(248, 190, 20, 0.2);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 1rem;
    background: var(--primary);
    border-radius: 50px;
    color: #0A0A0A;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.card-icon-wrapper {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(248, 190, 20, 0.1);
    border: 1px solid rgba(248, 190, 20, 0.2);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-detail-card:hover .card-icon-wrapper {
    background: var(--primary);
    color: #0A0A0A;
    transform: rotate(10deg) scale(1.1);
}

.service-detail-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.card-desc {
    color: #999999;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    flex-grow: 1;
}

.card-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #CCCCCC;
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
}

.card-features li i {
    color: var(--primary);
    font-size: 0.875rem;
}

.card-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.75rem 0;
    margin-top: auto;
}

.card-link i {
    transition: transform 0.3s ease;
}

.card-link:hover {
    gap: 1rem;
}

.card-link:hover i {
    transform: translateX(5px);
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: var(--space-4xl) 0;
    background: #0A0A0A;
    position: relative;
    overflow: hidden;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

.process-step {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #1A1A1A;
    border: 1px solid #222222;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(248, 190, 20, 0.15);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    opacity: 1;
    transform: scale(1.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(248, 190, 20, 0.1);
    border: 1px solid rgba(248, 190, 20, 0.2);
    border-radius: 30px;
    color: var(--primary);
    font-size: 2rem;
    transition: all 0.4s ease;
}

.process-step:hover .step-icon {
    background: var(--primary);
    color: #0A0A0A;
    transform: rotate(10deg);
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.process-step p {
    color: #999999;
    line-height: 1.7;
    font-size: 1rem;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
    padding: var(--space-4xl) 0;
    background: #0F0F0F;
    position: relative;
    overflow: hidden;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-item:hover img {
    transform: scale(1.15);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(248, 190, 20, 0.95) 100%);
    padding: 2.5rem 2rem 2rem;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h4 {
    color: #0A0A0A;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    transform: translateY(20px);
    transition: transform 0.5s ease 0.1s;
}

.portfolio-overlay p {
    color: #0A0A0A;
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    transform: translateY(20px);
    transition: transform 0.5s ease 0.15s;
}

.portfolio-link {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0A0A0A;
    border-radius: 50%;
    color: var(--primary);
    text-decoration: none;
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-delay: 0.1s;
}

.portfolio-item:hover .portfolio-link {
    transform: scale(1);
}

.portfolio-link:hover {
    background: var(--primary);
    color: #0A0A0A;
}

.portfolio-item:hover .portfolio-overlay h4,
.portfolio-item:hover .portfolio-overlay p {
    transform: translateY(0);
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: var(--space-4xl) 0;
    background: #0A0A0A;
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

.feature-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #1A1A1A;
    border: 1px solid #222222;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(248, 190, 20, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(248, 190, 20, 0.1);
    border: 1px solid rgba(248, 190, 20, 0.2);
    border-radius: 30px;
    color: var(--primary);
    font-size: 2rem;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    background: var(--primary);
    color: #0A0A0A;
    transform: rotate(10deg);
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.feature-item p {
    color: #999999;
    line-height: 1.7;
    font-size: 1rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: var(--space-4xl) 0;
    background: #0F0F0F;
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

.testimonial-card {
    padding: 2.5rem;
    background: #1A1A1A;
    border: 1px solid #222222;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(248, 190, 20, 0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 8rem;
    font-family: serif;
    color: var(--primary);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-rating {
    color: var(--primary);
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.testimonial-card p {
    color: #CCCCCC;
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.testimonial-author h4 {
    color: #FFFFFF;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.testimonial-author p {
    color: #999999;
    font-size: 0.875rem;
    margin-bottom: 0;
    font-style: normal;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: var(--space-4xl) 0;
    background: #0A0A0A;
    position: relative;
    overflow: hidden;
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #1A1A1A;
    border: 1px solid #222222;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
    font-size: 1.25rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 1.5rem;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: #999999;
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--space-4xl) 0;
    background: #0F0F0F;
    position: relative;
    overflow: hidden;
}

.cta-card {
    text-align: center;
    padding: 5rem 3rem;
    background: linear-gradient(135deg, rgba(248, 190, 20, 0.1) 0%, rgba(248, 190, 20, 0.05) 100%);
    border: 1px solid rgba(248, 190, 20, 0.2);
    border-radius: 50px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(248, 190, 20, 0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(248, 190, 20, 0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-card h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .cta-card h2 {
        font-size: 2.5rem;
    }
}

.cta-card p {
    color: #CCCCCC;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

@media (max-width: 480px) {
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions a {
        width: 100%;
        justify-content: center;
    }
}

/* ===== UTILITIES ===== */
.text-center {
    text-align: center;
}

.mt-8 {
    margin-top: 4rem;
}

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 1200px) {
    .service-detail-hero {
        padding: 8rem 0 4rem;
        min-height: auto;
    }
    
    .service-detail-grid {
        text-align: center;
    }
    
    .service-desc,
    .service-detail-content {
        max-width: 100%;
    }
    
    .service-meta,
    .service-price,
    .service-actions,
    .service-trust {
        justify-content: center;
    }
    
    .visual-frame {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .floating-badge {
        display: none;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-item {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .service-price {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .price-value {
        font-size: 2.5rem;
    }
    
    .service-meta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .service-trust {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .card-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-detail-card h3 {
        font-size: 1.5rem;
    }
    
    .card-price {
        font-size: 1.75rem;
    }
}

/* ===== ADDITIONS FOR DIGITAL MARKETING PAGE ===== */

/* Stats Section */
.stats-section {
    padding: var(--space-4xl) 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(248, 190, 20, 0.05), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.stat-item-large {
    text-align: center;
    padding: 2rem;
    background: rgba(248, 190, 20, 0.05);
    border: 1px solid rgba(248, 190, 20, 0.1);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.stat-item-large:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(248, 190, 20, 0.15);
}

.stat-item-large .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .stat-item-large .stat-number {
        font-size: 2.5rem;
    }
}

.stat-item-large .stat-label {
    font-size: 1rem;
    color: #999999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Visual Stats for Hero */
.visual-stats {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    gap: 1rem;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(248, 190, 20, 0.3);
    border-radius: 20px;
    padding: 1rem 1.5rem;
    z-index: 3;
}

.visual-stats .visual-stat {
    text-align: center;
    padding: 0 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-stats .visual-stat:last-child {
    border-right: none;
}

.visual-stats .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.visual-stats .stat-label {
    font-size: 0.75rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Feature Items for Marketing */
.feature-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #1A1A1A;
    border: 1px solid #222222;
    border-radius: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(248, 190, 20, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(248, 190, 20, 0.1);
    border: 1px solid rgba(248, 190, 20, 0.2);
    border-radius: 30px;
    color: var(--primary);
    font-size: 2rem;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    background: var(--primary);
    color: #0A0A0A;
    transform: rotate(10deg);
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.feature-item p {
    color: #999999;
    line-height: 1.7;
    font-size: 1rem;
}

/* CTA Trust Badge */
.cta-trust {
    margin-top: 2rem;
    text-align: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(248, 190, 20, 0.1);
    border: 1px solid rgba(248, 190, 20, 0.2);
    border-radius: 60px;
    color: #CCCCCC;
    font-size: 0.9375rem;
}

.trust-badge i {
    color: var(--primary);
    font-size: 1.125rem;
}

/* Responsive Additions */
@media (max-width: 1200px) {
    .visual-stats {
        display: none;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 4rem 0;
    }
    
    .stat-item-large {
        padding: 1.5rem;
    }
    
    .stat-item-large .stat-number {
        font-size: 2rem;
    }
    
    .feature-item {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .trust-badge {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        gap: 1rem;
    }
    
    .feature-item h3 {
        font-size: 1.25rem;
    }
}
/* ===== TECHNOLOGIES SECTION / TOOLS SECTION ===== */
.tools-section {
    padding: var(--space-4xl) 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.tools-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(248, 190, 20, 0.05), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.tools-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(248, 190, 20, 0.03), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Section Header - reuse existing styles or add these if not present */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(248, 190, 20, 0.1);
    border: 1px solid rgba(248, 190, 20, 0.2);
    border-radius: 60px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-tag i {
    font-size: 1rem;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--light);
}

@media (max-width: 992px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }
}

.section-desc {
    font-size: 1.25rem;
    color: var(--gray-400);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-desc {
        font-size: 1.125rem;
    }
}

.text-gradient {
    background: linear-gradient(135deg, #f8be14 0%, #ffd966 50%, #f8be14 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .tools-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-md);
    }
}

@media (max-width: 992px) {
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
}

/* Tool Item Card */
.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg) var(--space-md);
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: 20px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.tool-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(248, 190, 20, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.tool-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(248, 190, 20, 0.15);
}

.tool-item:hover::before {
    opacity: 1;
}

/* Tool Icons */
.tool-item i {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
    transition: all 0.3s ease;
    color: var(--gray-300);
}

.tool-item:hover i {
    color: var(--primary);
    transform: scale(1.1);
}

/* Brand-specific hover colors (optional) */
.tool-item:hover .fa-html5 {
    color: #E44D26;
}

.tool-item:hover .fa-css3-alt {
    color: #264DE4;
}

.tool-item:hover .fa-js {
    color: #F7DF1E;
}

.tool-item:hover .fa-react {
    color: #61DAFB;
}

.tool-item:hover .fa-vuejs {
    color: #4FC08D;
}

.tool-item:hover .fa-angular {
    color: #DD0031;
}

.tool-item:hover .fa-php {
    color: #777BB4;
}

.tool-item:hover .fa-database {
    color: #4479A1;
}

.tool-item:hover .fa-wordpress {
    color: #21759B;
}

.tool-item:hover .fa-shopify {
    color: #96BF48;
}

.tool-item:hover .fa-node {
    color: #339933;
}

.tool-item:hover .fa-python {
    color: #3776AB;
}

.tool-item:hover .fa-leaf {
    color: #47A248;
}

.tool-item:hover .fa-git-alt {
    color: #F05032;
}

/* Tool Name Text */
.tool-item span {
    color: var(--light);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.tool-item:hover span {
    color: var(--primary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .tool-item {
        padding: var(--space-md);
    }
    
    .tool-item i {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .tool-item span {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .tool-item {
        padding: var(--space-sm) var(--space-xs);
    }
    
    .tool-item i {
        font-size: 2rem;
    }
    
    .tool-item span {
        font-size: 0.75rem;
    }
}

/* Animation for items */
.tool-item {
    animation: fadeInUp 0.6s ease backwards;
}

.tool-item:nth-child(1) { animation-delay: 0.1s; }
.tool-item:nth-child(2) { animation-delay: 0.15s; }
.tool-item:nth-child(3) { animation-delay: 0.2s; }
.tool-item:nth-child(4) { animation-delay: 0.25s; }
.tool-item:nth-child(5) { animation-delay: 0.3s; }
.tool-item:nth-child(6) { animation-delay: 0.35s; }
.tool-item:nth-child(7) { animation-delay: 0.4s; }
.tool-item:nth-child(8) { animation-delay: 0.45s; }
.tool-item:nth-child(9) { animation-delay: 0.5s; }
.tool-item:nth-child(10) { animation-delay: 0.55s; }
.tool-item:nth-child(11) { animation-delay: 0.6s; }
.tool-item:nth-child(12) { animation-delay: 0.65s; }
.tool-item:nth-child(13) { animation-delay: 0.7s; }
.tool-item:nth-child(14) { animation-delay: 0.75s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}