/* ============================================
   SERVICE PAGE SPECIFIC STYLES
   ============================================ */

:root {
    --brand-blue: #0A2438;
    --brand-blue-light: #1A4A6B;
}

/* Service Hero */
.service-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.service-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.service-hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
}

.service-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    flex-wrap: wrap;
}

.service-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.service-breadcrumb a:hover {
    color: var(--white);
}

.service-breadcrumb i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
}

.service-breadcrumb span {
    color: var(--white);
}

.service-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.service-hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}

/* Service Overview */
.service-overview {
    padding: 5rem 0;
    background: var(--dark-surface);
}

@media (max-width: 768px) {
    .service-overview {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .service-overview {
        padding: 2.5rem 0;
    }
}

.service-overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-overview-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.service-overview-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.service-overview-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.service-overview-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-overview-video {
    width: 100%;
    max-height: 500px;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

/* Service Benefits */
.service-benefits {
    padding: 5rem 0;
    background: var(--dark-bg);
}

@media (max-width: 768px) {
    .service-benefits {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .service-benefits {
        padding: 2.5rem 0;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--dark-card);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--brand-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 0 20px rgba(10, 36, 56, 0.5);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Service Examples */
.service-examples {
    padding: 5rem 0;
    background: var(--dark-surface);
}

@media (max-width: 768px) {
    .service-examples {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .service-examples {
        padding: 2.5rem 0;
    }
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.example-card {
    background: var(--dark-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: var(--transition);
}

.example-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
    border-color: var(--neon-blue);
}

.example-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.example-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.example-card:hover .example-image img {
    transform: scale(1.1);
}

.example-content {
    padding: 2rem;
}

.example-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.example-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.example-content ul {
    list-style: none;
}

.example-content ul li {
    color: var(--text-primary);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.example-content ul li i {
    color: var(--neon-green);
}

/* Service Projects */
.service-projects {
    padding: 5rem 0;
    background: var(--dark-bg);
}

@media (max-width: 768px) {
    .service-projects {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .service-projects {
        padding: 2.5rem 0;
    }
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: var(--transition);
}

.project-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
    border-color: var(--neon-blue);
}

.project-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: var(--transition);
}

.project-card:hover .project-image img {
    filter: brightness(1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.project-info p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.project-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--brand-blue);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Service Quote */
.service-quote {
    padding: 6rem 0;
    background: var(--dark-surface);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .service-quote {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .service-quote {
        padding: 2.5rem 0;
    }
}

.service-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.quote-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.quote-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--brand-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    box-shadow: 0 0 30px rgba(10, 36, 56, 0.5);
}

.quote-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.quote-content > p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.btn-whatsapp i {
    font-size: 1.5rem;
}

.quote-note {
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .service-overview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-overview-image {
        order: -1;
    }

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

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .service-hero {
        min-height: 300px;
        padding: 100px 0 60px;
    }

    .service-hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .service-hero-subtitle {
        font-size: 1rem;
    }

    .service-overview-text h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .service-overview-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-top: 0.75rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .benefit-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }

    .examples-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .example-card {
        padding: 1.5rem;
    }

    .example-card h3 {
        font-size: 1.125rem;
    }

    .example-card p {
        font-size: 0.9rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .project-card {
        padding: 1.5rem;
    }

    .quote-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .quote-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .quote-icon {
        width: 90px;
        height: 90px;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .btn-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-hero {
        padding: 80px 0 40px;
        min-height: 250px;
    }

    .service-breadcrumb {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .service-hero-title {
        font-size: 1.75rem;
    }

    .service-hero-subtitle {
        font-size: 0.95rem;
    }

    .service-overview-text h2 {
        font-size: 1.5rem;
    }

    .service-overview-text p {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.875rem;
    }

    .benefit-card,
    .example-card,
    .project-card {
        padding: 1.25rem;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .benefit-card h3 {
        font-size: 1rem;
    }

    .benefit-card p {
        font-size: 0.85rem;
    }

    .example-card h3 {
        font-size: 1rem;
    }

    .example-card p {
        font-size: 0.85rem;
    }

    .quote-content h2 {
        font-size: 1.75rem;
    }

    .quote-content p {
        font-size: 0.95rem;
    }

    .quote-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .btn-whatsapp {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

