/* Language Switcher Dropdown Styles */
.lang-switcher {
    position: relative;
}

.lang-current {
    padding: 0.7rem 1.5rem;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    justify-content: center;
}

.header-transparent.scrolled .lang-current {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.lang-current:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary);
}

.lang-current i {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.lang-switcher.active .lang-current i {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(30, 42, 58, 0.98);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.lang-switcher.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    padding: 1rem 1.5rem;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: 0.95rem;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-option.active {
    background: rgba(0, 212, 255, 0.25);
    color: var(--secondary);
}

.lang-option i {
    color: var(--secondary);
    font-size: 1rem;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .lang-switcher {
        position: fixed;
        top: 15px;
        left: 15px;
        z-index: 1001;
    }

    .lang-current {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .lang-dropdown {
        right: auto;
        left: 0;
    }
}

.page-header {
    min-height: 600px;
    padding: 200px 0 120px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.unsplash.com/photo-1520340356584-f9917d1eea6f?w=1920') center center/cover no-repeat;
    color: var(--white);
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 1rem;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.service-detail {
    padding: 6rem 0;
    background: var(--white);
}

.service-intro {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    text-align: center;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.service-intro h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-intro p {
    font-size: 1.2rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(0, 212, 255, 0.5);
    padding: 2rem;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.8);
}

.feature-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 auto 1.5rem;
    display: block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    border: 3px solid rgba(0, 212, 255, 0.2);
}

.feature-card:hover img {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.5);
    border-color: rgba(0, 212, 255, 0.4);
}

.feature-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1rem;
}

.feature-card i {
    font-size: 3.5rem;
    color: rgba(0, 212, 255, 0.8);
    margin-bottom: 1.5rem;
}

.types-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 4rem 3rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.types-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.type-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 2px solid rgba(0, 212, 255, 0.5);
    padding: 0;
}

.type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.8);
}

.type-card-image {
    width: calc(100% - 2rem);
    height: 240px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    border-radius: 12px;
    margin: 1rem 1rem 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.type-card-image::after {
    display: none;
}

.type-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.type-card:hover .type-card-image img {
    transform: scale(1.15);
}

.type-card-content {
    padding: 1.5rem 2rem 2rem 2rem;
}

.type-card-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.type-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.type-card h3 i {
    color: rgba(0, 212, 255, 0.8);
}

.type-card ul {
    list-style: none;
    padding: 0;
}

.type-card ul li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.type-card ul li i {
    color: rgba(0, 212, 255, 0.8);
    font-size: 0.8rem;
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1200px) {
    .products-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-showcase {
        grid-template-columns: 1fr;
    }
}

.product-card-detailed {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s;
}

.product-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
}

.product-image-large {
    height: 250px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 5rem;
    overflow: hidden;
}

.product-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card-detailed:hover .product-image-large img {
    transform: scale(1.05);
}

.product-image-large i {
    font-size: 5rem;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-subtitle {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.product-model {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 600;
}

.product-model i {
    color: var(--secondary);
}

.product-description h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.product-description ul {
    list-style: none;
    padding: 0;
}

.product-description ul li {
    padding: 0.7rem 0;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid var(--light);
}

.product-description ul li:last-child {
    border-bottom: none;
}

.product-description ul li i {
    color: var(--secondary);
    font-size: 1rem;
    min-width: 20px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn-v2:hover {
    background: linear-gradient(135deg, rgba(220, 180, 110, 1), rgba(200, 140, 80, 1)) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .service-intro,
    .types-section,
    .cta-section {
        padding: 2rem;
    }
}