/* YenyNet Custom Styles */

/* Language Switcher */
.lang-switcher {
    position: relative !important;
}

.lang-switcher > a.current-lang {
    padding: 5px 15px !important;
    background: linear-gradient(90deg, #1a73e9, #0d47a1) !important;
    border-radius: 4px !important;
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    display: inline-block !important;
}

.lang-switcher .sub-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 130px !important;
    background: #fff !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15) !important;
    border-radius: 8px !important;
    padding: 10px 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(10px) !important;
    transition: all 0.3s ease !important;
    z-index: 9999 !important;
    display: block !important;
}

.lang-switcher:hover .sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.lang-switcher .sub-menu li {
    display: block !important;
    width: 100% !important;
}

.lang-switcher .sub-menu li a {
    padding: 8px 20px !important;
    font-size: 14px !important;
    display: block !important;
    color: #333 !important;
    transition: all 0.2s ease !important;
}

.lang-switcher .sub-menu li a.active {
    background: #f0f0f0 !important;
    color: #1a73e9 !important;
}

.lang-switcher .sub-menu li a:hover {
    background: #1a73e9 !important;
    color: #fff !important;
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-lang-switcher span {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 15px;
}

.mobile-lang-switcher .lang-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mobile-lang-switcher .lang-btn {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(26,115,233,0.2);
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-lang-switcher .lang-btn:hover,
.mobile-lang-switcher .lang-btn.active {
    background: #1a73e9;
    color: #fff;
}

/* Page Header */
.rs-page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.rs-page-header h1 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 15px;
}

.rs-page-header .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
}

.rs-page-header .breadcrumb a {
    color: #1a73e9;
}

/* About Page */
.rs-about-section {
    padding: 100px 0;
}

.rs-about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.rs-about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.rs-mission-vision {
    padding: 80px 0;
    background: #f8f9fa;
}

.rs-mission-box,
.rs-vision-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    height: 100%;
}

.rs-mission-box h3,
.rs-vision-box h3 {
    color: #1a73e9;
    margin-bottom: 15px;
    font-size: 24px;
}

/* Products Page */
.rs-product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.rs-product-card:hover {
    transform: translateY(-10px);
}

.rs-product-card .card-img {
    height: 200px;
    background: linear-gradient(135deg, #1a73e9, #0d47a1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs-product-card .card-img i {
    font-size: 60px;
    color: #fff;
}

.rs-product-card .card-body {
    padding: 30px;
}

.rs-product-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.rs-product-card p {
    color: #666;
    line-height: 1.7;
}

/* Services Page */
.rs-service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.rs-service-card:hover {
    box-shadow: 0 15px 50px rgba(26,115,233,0.15);
}

.rs-service-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a73e9, #0d47a1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.rs-service-card .icon img {
    width: 40px;
    filter: brightness(0) invert(1);
}

.rs-service-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.rs-service-card p {
    color: #666;
    line-height: 1.7;
}

/* Contact Page */
.rs-contact-section {
    padding: 100px 0;
}

.rs-contact-form {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.rs-contact-form .form-group {
    margin-bottom: 25px;
}

.rs-contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a2e;
}

.rs-contact-form input,
.rs-contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.rs-contact-form input:focus,
.rs-contact-form textarea:focus {
    outline: none;
    border-color: #1a73e9;
}

.rs-contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.rs-contact-info {
    padding: 50px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 15px;
    color: #fff;
    height: 100%;
}

.rs-contact-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.rs-contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.rs-contact-info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(26,115,233,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs-contact-info-item .icon i {
    font-size: 20px;
    color: #1a73e9;
}

.rs-contact-info-item a {
    color: #fff;
    font-size: 18px;
}
