/* 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 {
    padding: 250px 0 150px;
    background: linear-gradient(rgba(10, 30, 66, 0.3), rgba(10, 30, 66, 0.3)),
        url('https://images.unsplash.com/photo-1628177142898-93e36e4e3a50?w=1920') 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 2rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    border: 2px solid rgba(0, 212, 255, 0.3);
    max-width: 100%;
}

.types-section .container {
    max-width: 100%;
    padding: 0;
}

.types-section .types-grid {
    max-width: 100%;
}

.types-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1200px) {
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .types-grid {
        grid-template-columns: 1fr;
    }
}

.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;
    min-width: 0;
    width: 100%;
}

.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 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;
}

.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;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }
}