/* Slider Override - Final Version with Mobile Support */

section.vs-hero,
.vs-hero {
    position: relative !important;
    min-height: calc(75vh + 100px) !important;
    max-height: calc(75vh + 100px) !important;
    padding-top: 80px !important;
    overflow: hidden !important;
    background: url('../img/slider/slide-bg.jpg') center center / cover no-repeat #1a1a2e !important;
}

section.vs-hero::before,
.vs-hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, rgba(26,26,46,0.6) 0%, rgba(15,15,30,0.7) 100%) !important;
    z-index: 1 !important;
}

.vs-hero-slider,
.vs-hero .vs-hero-slider {
    position: relative !important;
    z-index: 2 !important;
}

.vs-slide {
    min-height: calc(75vh + 100px - 80px) !important;
    max-height: calc(75vh + 100px - 80px) !important;
}

.vs-slide-inner {
    position: relative !important;
    z-index: 3 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
    align-items: center !important;
    text-align: left !important;
    padding: 30px 60px !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
}

.vs-slide-content {
    text-align: left !important;
}

.vs-brand-logo {
    justify-content: flex-start !important;
}

/* Slider Navigation - Visible */
.vs-slider-nav {
    position: absolute !important;
    bottom: 30px !important;
    right: 60px !important;
    display: flex !important;
    gap: 15px !important;
    z-index: 999 !important;
}

button.vs-nav-prev,
button.vs-nav-next {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 50px !important;
    height: 50px !important;
    background-color: rgba(0,0,0,0.5) !important;
    border: 2px solid rgba(255,255,255,0.5) !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    font-size: 18px !important;
    cursor: pointer !important;
    z-index: 999 !important;
}

button.vs-nav-prev:hover,
button.vs-nav-next:hover {
    background-color: #00e676 !important;
    border-color: #00e676 !important;
    color: #1a1a2e !important;
}

.vs-hero-slider .owl-nav,
.vs-hero-slider .owl-dots {
    display: none !important;
}

/* Slider Images - 100px right offset */
.vs-slide-media {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-left: 100px !important;
}

.vs-media-wrapper {
    position: relative !important;
    width: 620px !important;
    height: 420px !important;
    box-shadow: none !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

.vs-media-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 12px !important;
}

/* Play button */
.vs-play-btn {
    display: flex !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 60px !important;
    height: 60px !important;
    background: rgba(0, 230, 118, 0.9) !important;
    border-radius: 50% !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    font-size: 20px !important;
    transition: all 0.3s ease !important;
    z-index: 10 !important;
}

.vs-play-btn:hover {
    background: #00e676 !important;
    transform: translate(-50%, -50%) scale(1.1) !important;
}

/* ===== SLIDE ANIMATIONS ===== */

.vs-hero-slider .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.1s ease;
}

.vs-hero-slider .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.vs-hero-slider .owl-item .vs-brand-logo,
.vs-hero-slider .owl-item .vs-slide-subtitle {
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vs-hero-slider .owl-item .vs-slide-title {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.15s;
}

.vs-hero-slider .owl-item .vs-slide-media {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.2s;
}

.vs-hero-slider .owl-item.active .vs-brand-logo,
.vs-hero-slider .owl-item.active .vs-slide-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.vs-hero-slider .owl-item.active .vs-slide-title {
    opacity: 1;
    transform: translateY(0);
}

.vs-hero-slider .owl-item.active .vs-slide-media {
    opacity: 1;
    transform: translateX(0);
}

/* ===== MOBILE RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1199px) {
    .vs-slide-inner {
        padding: 20px 40px !important;
        gap: 30px !important;
    }
    .vs-media-wrapper {
        width: 500px !important;
        height: 380px !important;
    }
    .vs-slide-media {
        margin-left: 30px !important;
    }
}

/* Small Tablet */
@media (max-width: 991px) {
    section.vs-hero,
    .vs-hero {
        min-height: auto !important;
        max-height: none !important;
        padding-top: 70px !important;
    }
    .vs-slide {
        min-height: auto !important;
        max-height: none !important;
        padding: 40px 0 !important;
    }
    .vs-slide-inner {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        padding: 20px !important;
        gap: 30px !important;
    }
    .vs-slide-content {
        text-align: center !important;
        order: 1 !important;
    }
    .vs-slide-media {
        order: 2 !important;
        margin-left: 0 !important;
    }
    .vs-brand-logo {
        justify-content: center !important;
    }
    .vs-media-wrapper {
        width: 100% !important;
        max-width: 400px !important;
        height: 300px !important;
        margin: 0 auto !important;
    }
    .vs-slider-nav {
        bottom: 20px !important;
        right: 20px !important;
    }
    button.vs-nav-prev,
    button.vs-nav-next {
        width: 45px !important;
        height: 45px !important;
        font-size: 16px !important;
    }
    .vs-slide-title {
        font-size: 2rem !important;
    }
    .vs-slide-subtitle {
        font-size: 1rem !important;
    }
    .vs-brand-v,
    .vs-brand-s {
        font-size: 1.8rem !important;
    }
    .vs-brand-ai {
        font-size: 1.2rem !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    section.vs-hero,
    .vs-hero {
        padding-top: 60px !important;
    }
    .vs-slide {
        padding: 30px 0 !important;
    }
    .vs-slide-inner {
        padding: 15px !important;
        gap: 20px !important;
    }
    .vs-media-wrapper {
        max-width: 320px !important;
        height: 240px !important;
    }
    .vs-play-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 16px !important;
    }
    .vs-slide-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    .vs-slide-subtitle {
        font-size: 0.9rem !important;
    }
    .vs-brand-v,
    .vs-brand-s {
        font-size: 1.5rem !important;
    }
    .vs-brand-ai {
        font-size: 1rem !important;
    }
    .vs-slider-nav {
        bottom: 15px !important;
        right: 15px !important;
        gap: 10px !important;
    }
    button.vs-nav-prev,
    button.vs-nav-next {
        width: 40px !important;
        height: 40px !important;
        font-size: 14px !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .vs-slide-inner {
        padding: 10px !important;
    }
    .vs-media-wrapper {
        max-width: 280px !important;
        height: 200px !important;
    }
    .vs-slide-title {
        font-size: 1.3rem !important;
    }
    .vs-brand-v,
    .vs-brand-s {
        font-size: 1.3rem !important;
    }
}

/* ===== Header Social Icons ===== */
.header-social {
    display: flex;
    gap: 12px;
}

.header-social a {
    width: 38px;
    height: 38px;
    background: #00e676;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    font-size: 16px;
    transition: all 0.3s ease;
}

.header-social a:hover {
    background: #00c853;
    transform: scale(1.1);
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

.mobile-social a {
    width: 45px;
    height: 45px;
    background: #00e676;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    font-size: 18px;
}

/* ===== Social Icons in Services Bar ===== */
.vs-social-icons {
    display: flex;
    gap: 15px;
}

.vs-social-icon {
    width: 45px;
    height: 45px;
    background: #00e676;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    font-size: 18px;
    transition: all 0.3s ease;
}

.vs-social-icon:hover {
    background: #00c853;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 230, 118, 0.4);
}

@media (max-width: 767px) {
    .vs-social-icons {
        justify-content: center;
    }
    .vs-social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ===== Contact Section ===== */
.vs-contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.vs-section-subtitle {
    display: block;
    color: #00e676;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.vs-contact-section .vs-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 50px;
}

.vs-contact-section .vs-section-title span {
    color: #00e676;
}

.vs-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.vs-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.vs-contact-icon {
    width: 55px;
    height: 55px;
    background: #00e676;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    font-size: 20px;
    flex-shrink: 0;
}

.vs-contact-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.vs-contact-text p,
.vs-contact-text a {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.vs-contact-text a:hover {
    color: #00e676;
}

.vs-contact-social {
    margin-top: 40px;
}

.vs-contact-social h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.vs-social-links {
    display: flex;
    gap: 12px;
}

.vs-social-links a {
    width: 45px;
    height: 45px;
    background: #1a1a2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.vs-social-links a:hover {
    background: #00e676;
    color: #1a1a2e;
    transform: translateY(-3px);
}

/* Contact Form */
.vs-contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.vs-contact-form .vs-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.vs-contact-form .vs-form-group {
    margin-bottom: 0;
}

.vs-contact-form input,
.vs-contact-form select,
.vs-contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
    color: #1a1a2e;
}

.vs-contact-form input:focus,
.vs-contact-form select:focus,
.vs-contact-form textarea:focus {
    outline: none;
    border-color: #00e676;
}

.vs-contact-form input::placeholder,
.vs-contact-form textarea::placeholder {
    color: #999;
}

.vs-contact-form select {
    color: #999;
    cursor: pointer;
}

.vs-contact-form textarea {
    resize: vertical;
    min-height: 120px;
    margin-bottom: 20px;
}

.vs-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #00e676;
    color: #1a1a2e;
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vs-submit-btn:hover {
    background: #00c853;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 230, 118, 0.4);
}

/* Footer Styles */
.vs-footer {
    background: #1a1a2e;
    color: #fff;
}

.vs-footer-main {
    padding: 60px 0 40px;
}

.vs-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.vs-footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.vs-footer-logo img {
    max-height: 45px;
}

.vs-footer-about p {
    color: #8a8a9a;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.vs-footer-social {
    display: flex;
    gap: 12px;
}

.vs-footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.vs-footer-social a:hover {
    background: #00e676;
    color: #1a1a2e;
}

.vs-footer-col h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}

.vs-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vs-footer-links li {
    margin-bottom: 12px;
}

.vs-footer-links a {
    color: #8a8a9a;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.vs-footer-links a:hover {
    color: #00e676;
}

.vs-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vs-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #8a8a9a;
    font-size: 0.9rem;
}

.vs-footer-contact i {
    color: #00e676;
    margin-top: 3px;
}

.vs-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
}

.vs-footer-bottom-content {
    text-align: center;
}

.vs-footer-bottom p {
    color: #8a8a9a;
    font-size: 0.85rem;
    margin: 0;
}

/* Contact & Footer Responsive */
@media (max-width: 991px) {
    .vs-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .vs-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .vs-contact-section {
        padding: 60px 0;
    }
    .vs-contact-section .vs-section-title {
        font-size: 1.8rem;
    }
    .vs-contact-form-wrapper {
        padding: 25px;
    }
    .vs-contact-form .vs-form-row {
        grid-template-columns: 1fr;
    }
    .vs-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .vs-footer-social {
        justify-content: center;
    }
    .vs-footer-contact li {
        justify-content: center;
    }
}
/* ===== Contact Section - Dark Theme ===== */
.vs-contact-dark {
    background: #1a1a2e;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.vs-contact-dark::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,230,118,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.vs-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Side */
.vs-contact-left {
    color: #fff;
}

.vs-contact-left .vs-label {
    display: inline-block;
    color: #00e676;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.vs-contact-left h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.vs-contact-left h2 span {
    color: #00e676;
}

.vs-contact-left > p {
    color: #8a8a9a;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.vs-contact-details {
    margin-bottom: 40px;
}

.vs-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.vs-detail-item:hover {
    color: #00e676;
}

.vs-detail-item i {
    width: 45px;
    height: 45px;
    background: rgba(0,230,118,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00e676;
    font-size: 16px;
    flex-shrink: 0;
}

.vs-contact-socials {
    display: flex;
    gap: 15px;
}

.vs-contact-socials a {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.vs-contact-socials a:hover {
    background: #00e676;
    border-color: #00e676;
    color: #1a1a2e;
    transform: translateY(-5px);
}

/* Right Side - Form */
.vs-contact-right {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 50px;
}

.vs-dark-form .vs-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.vs-dark-form input,
.vs-dark-form select,
.vs-dark-form textarea {
    width: 100%;
    padding: 18px 22px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.vs-dark-form input::placeholder,
.vs-dark-form textarea::placeholder {
    color: #666;
}

.vs-dark-form select {
    color: #666;
    cursor: pointer;
}

.vs-dark-form select option {
    background: #1a1a2e;
    color: #fff;
}

.vs-dark-form input:focus,
.vs-dark-form select:focus,
.vs-dark-form textarea:focus {
    outline: none;
    border-color: #00e676;
    background: rgba(0,230,118,0.05);
}

.vs-dark-form textarea {
    min-height: 140px;
    resize: vertical;
    margin-bottom: 25px;
}

.vs-dark-form button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #00e676;
    color: #1a1a2e;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vs-dark-form button:hover {
    background: #00c853;
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0,230,118,0.3);
}

.vs-dark-form button i {
    transition: transform 0.3s ease;
}

.vs-dark-form button:hover i {
    transform: translateX(5px);
}

/* Footer Dark */
.vs-footer-dark {
    background: #12121f;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.vs-footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.vs-footer-brand .logo-text {
    font-size: 1.5rem;
    font-weight: 300;
    color: #fff;
}

.vs-footer-brand .logo-text .highlight {
    font-weight: 700;
    color: #00e676;
}

.vs-footer-brand p {
    color: #666;
    font-size: 0.85rem;
    margin-top: 5px;
}

.vs-footer-nav {
    display: flex;
    gap: 35px;
}

.vs-footer-nav a {
    color: #8a8a9a;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.vs-footer-nav a:hover {
    color: #00e676;
}

.vs-footer-copy p {
    color: #666;
    font-size: 0.85rem;
}

/* Contact Responsive */
@media (max-width: 991px) {
    .vs-contact-dark {
        padding: 70px 0;
    }
    .vs-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .vs-contact-left h2 {
        font-size: 2.2rem;
    }
    .vs-contact-right {
        padding: 35px;
    }
}

@media (max-width: 767px) {
    .vs-contact-dark {
        padding: 50px 0;
    }
    .vs-contact-left h2 {
        font-size: 1.8rem;
    }
    .vs-contact-left > p {
        font-size: 1rem;
    }
    .vs-contact-right {
        padding: 25px;
    }
    .vs-dark-form .vs-input-row {
        grid-template-columns: 1fr;
    }
    .vs-dark-form button {
        width: 100%;
        justify-content: center;
    }
    .vs-footer-content {
        flex-direction: column;
        text-align: center;
    }
    .vs-footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .vs-contact-left h2 {
        font-size: 1.5rem;
    }
    .vs-detail-item {
        font-size: 0.9rem;
    }
    .vs-detail-item i {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}
