/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff8c00;
    --secondary-color: #ffa500;
    --dark-bg: #0a0a0a;
    --dark-bg-2: #1a1a1a;
    --dark-bg-3: #2d2d2d;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --accent-gradient: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--dark-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navegación */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(255, 140, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.5))
            drop-shadow(0 0 20px rgba(255, 140, 0, 0.3))
            drop-shadow(0 0 30px rgba(255, 140, 0, 0.2));
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.7))
            drop-shadow(0 0 25px rgba(255, 140, 0, 0.5))
            drop-shadow(0 0 35px rgba(255, 140, 0, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)),
                url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1920') center/cover;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(10, 10, 10, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-light);
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Secciones */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

/* Proyectos */
.projects {
    background: var(--dark-bg-2);
}

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

.project-card {
    background: var(--dark-bg-3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 140, 0, 0.1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(255, 140, 0, 0.2);
    border-color: var(--primary-color);
}

.project-image {
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.project-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Servicios */
.services {
    background: var(--dark-bg);
}

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

.service-card {
    background: var(--dark-bg-3);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 140, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(255, 140, 0, 0.2);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--secondary-color);
}

/* Sobre Nosotros */
.about {
    background: var(--dark-bg-2);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.experience-highlight {
    font-size: 2rem;
    color: var(--text-light);
    text-align: center;
    margin: 2rem 0;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.6),
                 0 0 30px rgba(255, 140, 0, 0.4),
                 0 0 40px rgba(255, 140, 0, 0.2);
}

.features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--dark-bg-3);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 140, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.stat-card i {
    font-size: 2.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 1rem 0;
}

.stat-card p {
    color: var(--text-gray);
}

/* Control de Calidad */
.quality-control {
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--dark-bg-3);
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.1);
}

.quality-control h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.quality-intro {
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.quality-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.quality-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--dark-bg-2);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 140, 0, 0.1);
}

.quality-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.2);
}

.quality-item i {
    font-size: 1.8rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.quality-item p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Contacto */
.contact {
    background: var(--dark-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--dark-bg-3);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.info-card i {
    font-size: 2rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.info-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.info-card p {
    color: var(--text-gray);
}

.contact-form {
    background: var(--dark-bg-3);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    background: var(--dark-bg-2);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.2);
}

.contact-form textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark-bg-3);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 140, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-gray);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-bg-2);
    border-radius: 50%;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.social-links a:hover {
    background: var(--accent-gradient);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 140, 0, 0.1);
    color: var(--text-gray);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.form-confirmation {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 1100;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.1rem;
    border-radius: 10px;
    background: rgba(255, 140, 0, 0.95);
    color: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-confirmation.show {
    opacity: 1;
    transform: translateY(0);
}

.form-confirmation.error {
    background: rgba(220, 53, 69, 0.95);
}

.form-confirmation i {
    font-size: 1.1rem;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        background: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1920') center/cover;
    }

    .hero-overlay {
        background: transparent;
    }

    .hero-title {
        font-size: 2.5rem;
        text-shadow: 2px 2px 40px rgba(0, 0, 0, 1),
                     0 0 20px rgba(0, 0, 0, 0.9),
                     3px 3px 10px rgba(0, 0, 0, 0.8);
    }

    .hero-subtitle {
        font-size: 1.1rem;
        text-shadow: 1px 1px 30px rgba(0, 0, 0, 1),
                     0 0 15px rgba(0, 0, 0, 0.9),
                     2px 2px 8px rgba(0, 0, 0, 0.8);
    }

    .btn-primary {
        box-shadow: 0 5px 20px rgba(255, 140, 0, 0.5),
                    0 0 30px rgba(0, 0, 0, 0.8);
    }

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

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .logo img {
        height: 50px;
    }
}

/* Página de Detalles del Proyecto */
.breadcrumb {
    background: var(--dark-bg-3);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
    margin-top: 70px;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumb span {
    color: var(--text-gray);
}

.breadcrumb span:last-child {
    color: var(--text-light);
}

.project-detail {
    background: var(--dark-bg);
    padding: 3rem 0;
    min-height: calc(100vh - 70px);
}

/* Carrusel */
.carousel-section {
    margin-bottom: 4rem;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-height: 500px;
    background: var(--dark-bg-3);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 500px;
    position: relative;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    display: flex;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 140, 0, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-button:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.4);
    border: 2px solid rgba(255, 140, 0, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
    border-color: var(--primary-color);
}

.carousel-dot:hover {
    background: var(--primary-color);
}

/* Información del Proyecto */
.project-info {
    background: var(--dark-bg-2);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.1);
}

.project-header {
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 140, 0, 0.2);
    padding-bottom: 2rem;
}

.project-header h1 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.project-description {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.project-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.details-column h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.details-box {
    background: var(--dark-bg-3);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 140, 0, 0.1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.details-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.1);
}

.details-box h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.details-box p {
    color: var(--text-gray);
    line-height: 1.8;
}

.details-box.highlight {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15) 0%, rgba(255, 165, 0, 0.1) 100%);
    border-color: var(--primary-color);
    text-align: center;
}

.details-box.highlight a {
    margin-top: 1rem;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.features-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Proyectos Relacionados */
.related-projects {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.related-project-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--dark-bg-3);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 140, 0, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-project-link:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.related-project-link img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.related-project-link h4 {
    color: var(--text-light);
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Responsive - Project Detail */
@media (max-width: 768px) {
    .breadcrumb .container {
        font-size: 0.9rem;
    }

    .carousel-container {
        max-height: 300px;
    }

    .carousel-track {
        height: 300px;
    }

    .carousel-slide {
        height: 300px;
    }

    .carousel-button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .carousel-button.prev {
        left: 10px;
    }

    .carousel-button.next {
        right: 10px;
    }

    .project-header h1 {
        font-size: 1.8rem;
    }

    .project-details-grid {
        grid-template-columns: 1fr;
    }

    .project-info {
        padding: 1.5rem;
    }

    .details-box {
        padding: 1.5rem;
    }
}

/* Página de Detalles del Servicio */
.service-detail {
    background: var(--dark-bg);
    padding: 3rem 0;
    min-height: calc(100vh - 70px);
}

.service-info {
    background: var(--dark-bg-2);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.1);
}

.service-header {
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 140, 0, 0.2);
    padding-bottom: 2rem;
    text-align: center;
}

.service-icon-large {
    font-size: 4rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
}

.service-header h1 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.service-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.related-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.related-service-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: var(--dark-bg-3);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 140, 0, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.related-service-link:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.1);
}

.service-link-icon {
    font-size: 2rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.related-service-link h4 {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Responsive - Service Detail */
@media (max-width: 768px) {
    .service-header h1 {
        font-size: 1.8rem;
    }

    .service-icon-large {
        font-size: 3rem;
    }

    .service-details-grid {
        grid-template-columns: 1fr;
    }

    .service-info {
        padding: 1.5rem;
    }

    .related-service-link {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .service-header h1 {
        font-size: 1.5rem;
    }

    .service-icon-large {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .carousel-indicators {
        gap: 0.5rem;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    .related-project-link {
        flex-direction: column;
        text-align: center;
    }

    .related-project-link img {
        width: 100%;
        height: 150px;
    }
}
