/* ====================================
   SERVICES PAGE - DIGISAPIENCE
   Modern Luxury Design with #f8be14 Accent
   File: /css/pages/services.css
   ==================================== */

/* ===== VARIABLES & RESETS ===== */
:root {
    --primary: #f8be14;
    --primary-dark: #e5a910;
    --primary-light: #fef1cf;
    --primary-rgb: 248, 190, 20;
    
    /* Gradients */
    --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%);
    --gradient-dark: linear-gradient(180deg, #0A0A0A 0%, #000000 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.3);
    --shadow-primary: 0 5px 20px rgba(248, 190, 20, 0.3);
    --shadow-primary-strong: 0 10px 30px rgba(248, 190, 20, 0.5);
}

/* ===== HERO SECTION ===== */
.services-hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: calc(var(--space-4xl) + 2rem) 0 var(--space-4xl);
    background: var(--dark);
}

.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-particles {
    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); }
}

.hero-modern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .hero-modern-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
}

.hero-modern-content {
    max-width: 650px;
}

@media (max-width: 1200px) {
    .hero-modern-content {
        max-width: 100%;
    }
}

.hero-tag {
    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;
}

.hero-tag i {
    font-size: 1rem;
}

.hero-modern-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.1s both;
    letter-spacing: -0.02em;
}

@media (max-width: 1400px) {
    .hero-modern-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .hero-modern-title {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-modern-title {
        font-size: 2.5rem;
    }
}

.hero-modern-text {
    font-size: 1.25rem;
    color: #CCCCCC;
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s both;
    max-width: 550px;
}

@media (max-width: 1200px) {
    .hero-modern-text {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.3s both;
}

@media (max-width: 1200px) {
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.875rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

@media (max-width: 1200px) {
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions a {
        width: 100%;
        justify-content: center;
    }
}

/* ===== HERO VISUAL ===== */
.hero-visual {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease 0.2s both;
}

.visual-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(248, 190, 20, 0.2);
    border-radius: 40px;
    padding: 2.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.visual-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: rgba(248, 190, 20, 0.05);
    border: 1px solid rgba(248, 190, 20, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.visual-item:hover {
    background: rgba(248, 190, 20, 0.1);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.visual-item i {
    font-size: 2.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.visual-item:hover i {
    transform: scale(1.1);
}

.visual-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #CCCCCC;
    text-align: center;
}

.visual-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-stat {
    text-align: center;
}

.visual-stat .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.visual-stat .label {
    font-size: 0.75rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.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);
    }
}

/* ===== SHOWCASE HEADER ===== */
.services-showcase {
    padding: 6rem 0;
    background: #0F0F0F;
    position: relative;
    overflow: hidden;
}

.services-showcase::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;
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.showcase-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;
}

.showcase-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
    .showcase-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .showcase-title {
        font-size: 2.5rem;
    }
}

.showcase-desc {
    font-size: 1.25rem;
    color: #999999;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* ===== SERVICE CARDS ===== */
.service-card-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: #1A1A1A;
    border: 1px solid #222222;
    border-radius: 40px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 3rem;
}

@media (max-width: 992px) {
    .service-card-premium {
        grid-template-columns: 1fr;
    }
}

.service-card-premium:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(248, 190, 20, 0.15);
}

.service-card-premium.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 50px rgba(248, 190, 20, 0.2);
}

.card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/12;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card-premium:hover .card-media img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.4rem 1.25rem;
    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;
    box-shadow: 0 5px 15px rgba(248, 190, 20, 0.3);
}

.card-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .card-content {
        padding: 2rem;
    }
}

.card-category {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.card-content h3 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #FFFFFF;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .card-content h3 {
        font-size: 1.75rem;
    }
}

.card-content p {
    color: #999999;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.card-features span {
    padding: 0.35rem 1rem;
    background: rgba(248, 190, 20, 0.1);
    border: 1px solid rgba(248, 190, 20, 0.2);
    border-radius: 50px;
    color: #CCCCCC;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-features span:hover {
    background: rgba(248, 190, 20, 0.2);
    border-color: var(--primary);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.card-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.card-price small {
    font-size: 0.875rem;
    font-weight: 400;
    color: #666666;
    margin-left: 0.25rem;
}

.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 1.5rem;
    background: rgba(248, 190, 20, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(248, 190, 20, 0.2);
}

.card-link i {
    transition: transform 0.3s ease;
}

.card-link:hover {
    background: var(--primary);
    color: #0A0A0A;
    gap: 1rem;
    border-color: var(--primary);
}

.card-link:hover i {
    transform: translateX(5px);
}

/* ===== SERVICES GRID ===== */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1200px) {
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-modern {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

.services-grid-modern .service-card-premium {
    grid-template-columns: 1fr;
    margin-bottom: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.services-grid-modern .card-media {
    aspect-ratio: 16/9;
}

.services-grid-modern .card-content {
    padding: 2rem;
    flex: 1;
}

.services-grid-modern .card-content h3 {
    font-size: 1.75rem;
}

.services-grid-modern .card-price {
    font-size: 1.5rem;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 6rem 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-card {
    text-align: center;
    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);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-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;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(248, 190, 20, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    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: 2.75rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: #0A0A0A;
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(248, 190, 20, 0.4);
}

.feature-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    font-weight: 700;
}

.feature-card p {
    color: #999999;
    line-height: 1.7;
    font-size: 1.0625rem;
}

/* ===== PORTFOLIO SHOWCASE ===== */
.portfolio-showcase-modern {
    padding: 6rem 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-item:hover .portfolio-overlay h4,
.portfolio-item:hover .portfolio-overlay p {
    transform: translateY(0);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 6rem 0;
    background: #0A0A0A;
    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-modern {
    padding: 2.5rem;
    background: #1A1A1A;
    border: 1px solid #222222;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card-modern:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(248, 190, 20, 0.15);
}

.testimonial-card-modern::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-text {
    color: #CCCCCC;
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 5px 15px rgba(248, 190, 20, 0.3);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: #FFFFFF;
    font-size: 1.25rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.author-info p {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 6rem 0;
    background: #0F0F0F;
    position: relative;
    overflow: hidden;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@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: 4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    opacity: 1;
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    font-weight: 700;
}

.process-step p {
    color: #999999;
    line-height: 1.7;
    font-size: 1.0625rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 6rem 0;
    background: #0A0A0A;
    position: relative;
    overflow: hidden;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item-modern {
    background: #1A1A1A;
    border: 1px solid #222222;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-modern: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-modern.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-modern.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: 6rem 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;
    }
}

/* ===== BUTTONS ===== */
.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%;
}

/* ===== UTILITIES ===== */
.text-center {
    text-align: center;
}

.mt-8 {
    margin-top: 4rem;
}

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 1200px) {
    .services-hero-modern {
        padding: 8rem 0 4rem;
    }
    
    .hero-modern-grid {
        text-align: center;
    }
    
    .hero-modern-text,
    .hero-modern-content {
        max-width: 100%;
    }
    
    .hero-stats,
    .hero-actions {
        justify-content: center;
    }
    
    .visual-card {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .services-hero-modern {
        min-height: auto;
        padding: 6rem 0 3rem;
    }
    
    .hero-modern-title {
        font-size: 3rem;
    }
    
    .showcase-title {
        font-size: 2.5rem;
    }
    
    .service-card-premium {
        border-radius: 30px;
    }
    
    .card-price {
        font-size: 1.75rem;
    }
    
    .cta-card {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-modern-title {
        font-size: 2.25rem;
    }
    
    .hero-modern-text {
        font-size: 1.125rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .visual-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .visual-item {
        padding: 1rem;
    }
    
    .visual-item i {
        font-size: 2rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-content h3 {
        font-size: 1.5rem;
    }
    
    .card-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
    
    .step-number {
        font-size: 3rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .services-hero-modern,
    .services-showcase,
    .features-section,
    .portfolio-showcase-modern,
    .testimonials-section,
    .process-section,
    .faq-section,
    .cta-section {
        padding: 2rem 0;
        background: #FFFFFF;
        color: #000000;
    }
    
    .hero-backdrop,
    .hero-particles,
    .scroll-indicator,
    .card-badge,
    .btn-primary,
    .btn-outline {
        display: none;
    }
    
    .hero-modern-title,
    .showcase-title,
    .card-content h3 {
        color: #000000;
    }
    
    .service-card-premium,
    .feature-card,
    .testimonial-card-modern,
    .process-step,
    .faq-item-modern {
        border: 1px solid #CCCCCC;
        box-shadow: none;
        break-inside: avoid;
    }
}