/* ===================================
   VideoSanat - Tam Yeni Tasarim
   videosanat.com benzeri
   =================================== */

/* Reset & Variables */
:root {
    --vs-dark: #1a1a2e;
    --vs-darker: #16162a;
    --vs-black: #0f0f1a;
    --vs-white: #ffffff;
    --vs-gray: #8a8a9a;
    --vs-light: #f5f5f7;
    --vs-green: #00e676;
    --vs-green-hover: #00c853;
    --vs-gradient: linear-gradient(135deg, #00e676 0%, #69f0ae 50%, #b388ff 100%);
    --vs-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--vs-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--vs-dark);
    background: var(--vs-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ===================================
   Preloader
   =================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--vs-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--vs-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===================================
   Header
   =================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    background: transparent;
}

#header.scrolled {
    background: var(--vs-dark);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

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

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--vs-white);
}

.logo-text .highlight {
    font-weight: 700;
    color: var(--vs-green);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: var(--vs-white);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--vs-green);
    transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--vs-white);
    font-size: 0.85rem;
}

.lang-switch a {
    color: var(--vs-gray);
}

.lang-switch a.active {
    color: var(--vs-white);
}

.btn-primary {
    background: var(--vs-green);
    color: var(--vs-dark);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background: var(--vs-green-hover);
    transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--vs-white);
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--vs-dark);
    z-index: 999;
    transition: left 0.3s ease;
    padding-top: 80px;
}

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

.mobile-nav {
    list-style: none;
    padding: 20px;
}

.mobile-nav li {
    margin-bottom: 20px;
}

.mobile-nav a {
    color: var(--vs-white);
    font-size: 1.2rem;
}

/* ===================================
   Hero Section
   =================================== */
.vs-hero-OLD {
    background: var(--vs-dark);
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.vs-slide {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.vs-slide-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.vs-slide-content {
    color: var(--vs-white);
}

.vs-brand-logo {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.vs-brand-v {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--vs-white);
}

.vs-brand-s {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vs-green);
}

.vs-brand-ai {
    font-size: 1.8rem;
    font-weight: 800;
    margin-left: 10px;
    background: var(--vs-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vs-slide-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
}

.vs-slide-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--vs-white);
}

.vs-slide-media {
    position: relative;
}

.vs-media-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.vs-media-wrapper img {
    width: 100%;
    display: block;
}

.vs-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0,230,118,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vs-white);
    font-size: 28px;
    transition: all 0.3s ease;
}

.vs-play-btn:hover {
    background: var(--vs-green);
    transform: translate(-50%, -50%) scale(1.1);
}

.vs-slider-nav {
    position: absolute;
    bottom: 50px;
    right: 60px;
    display: flex;
    gap: 10px;
}

.vs-nav-prev,
.vs-nav-next {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 5px;
    color: var(--vs-white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.vs-nav-prev:hover,
.vs-nav-next:hover {
    background: var(--vs-green);
    border-color: var(--vs-green);
    color: var(--vs-dark);
}

/* ===================================
   Services Bar
   =================================== */
.vs-services-bar {
    background: var(--vs-white);
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.vs-services-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vs-services-icons {
    display: flex;
    gap: 50px;
}

.vs-service-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--vs-gray);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.vs-service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--vs-gray);
    transition: all 0.3s ease;
}

.vs-service-icon:hover,
.vs-service-icon.active {
    color: var(--vs-green);
}

.vs-service-icon:hover svg,
.vs-service-icon.active svg {
    stroke: var(--vs-green);
}

.vs-services-cta {
    display: flex;
    align-items: center;
    gap: 25px;
}

.vs-cta-btn {
    background: var(--vs-green);
    color: var(--vs-dark);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
}

.vs-cta-btn:hover {
    background: var(--vs-green-hover);
}

.vs-cta-text {
    font-size: 0.9rem;
    color: var(--vs-dark);
    max-width: 280px;
    line-height: 1.4;
}

/* ===================================
   Section Common
   =================================== */
.vs-section {
    padding: 80px 0;
}

.vs-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.vs-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vs-dark);
    margin-bottom: 15px;
}

.vs-section-desc {
    font-size: 1.1rem;
    color: var(--vs-gray);
}

/* ===================================
   Services Section
   =================================== */
.vs-services {
    background: var(--vs-light);
}

.vs-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.vs-service-card {
    background: var(--vs-white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vs-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.vs-service-img {
    height: 180px;
    overflow: hidden;
}

.vs-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vs-service-card:hover .vs-service-img img {
    transform: scale(1.1);
}

.vs-service-card h3 {
    padding: 20px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    color: var(--vs-dark);
}

/* ===================================
   About Section
   =================================== */
.vs-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vs-about-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--vs-dark);
}

.vs-about-content h2 span {
    color: var(--vs-green);
}

.vs-about-content p {
    color: var(--vs-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.vs-stats-row {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.vs-stat {
    text-align: center;
}

.vs-stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vs-green);
}

.vs-stat-text {
    font-size: 0.9rem;
    color: var(--vs-gray);
}

.vs-btn {
    display: inline-block;
    background: var(--vs-green);
    color: var(--vs-dark);
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vs-btn:hover {
    background: var(--vs-green-hover);
    transform: translateY(-3px);
}

.vs-btn-outline {
    background: transparent;
    border: 2px solid var(--vs-dark);
    color: var(--vs-dark);
}

.vs-btn-outline:hover {
    background: var(--vs-dark);
    color: var(--vs-white);
}

.vs-about-media {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.vs-about-media img {
    width: 100%;
    display: block;
}

/* ===================================
   Portfolio Section
   =================================== */
.vs-portfolio {
    background: var(--vs-dark);
}

.vs-portfolio .vs-section-title,
.vs-portfolio .vs-section-desc {
    color: var(--vs-white);
}

.vs-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.vs-portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.vs-portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vs-portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,230,118,0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vs-portfolio-item:hover .vs-portfolio-overlay {
    opacity: 1;
}

.vs-portfolio-item:hover img {
    transform: scale(1.1);
}

.vs-portfolio-overlay span {
    color: var(--vs-dark);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.vs-portfolio-overlay i {
    color: var(--vs-dark);
    font-size: 2rem;
}

.vs-portfolio-more {
    text-align: center;
}

.vs-portfolio .vs-btn-outline {
    border-color: var(--vs-white);
    color: var(--vs-white);
}

.vs-portfolio .vs-btn-outline:hover {
    background: var(--vs-green);
    border-color: var(--vs-green);
    color: var(--vs-dark);
}

/* ===================================
   References Section
   =================================== */
.vs-references {
    background: var(--vs-light);
}

.vs-ref-item {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-ref-item img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.vs-ref-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* ===================================
   Testimonials Section
   =================================== */
.vs-testimonials {
    background: var(--vs-white);
}

.vs-testimonial {
    background: var(--vs-light);
    padding: 40px;
    border-radius: 15px;
    margin: 10px;
}

.vs-testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--vs-dark);
    margin-bottom: 25px;
    line-height: 1.8;
}

.vs-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.vs-testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.vs-testimonial-author strong {
    display: block;
    color: var(--vs-dark);
    font-weight: 600;
}

.vs-testimonial-author span {
    font-size: 0.85rem;
    color: var(--vs-gray);
}

/* ===================================
   Contact Section
   =================================== */
.vs-contact {
    background: var(--vs-dark);
}

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

.vs-contact-info h2 {
    font-size: 2rem;
    color: var(--vs-white);
    margin-bottom: 20px;
}

.vs-contact-info h2 span {
    color: var(--vs-green);
}

.vs-contact-info p {
    color: var(--vs-gray);
    margin-bottom: 30px;
}

.vs-contact-list {
    list-style: none;
}

.vs-contact-list li {
    color: var(--vs-white);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.vs-contact-list i {
    color: var(--vs-green);
    width: 20px;
}

.vs-contact-form {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 15px;
}

.vs-contact-form input,
.vs-contact-form select,
.vs-contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: var(--vs-white);
    font-family: var(--vs-font);
    font-size: 0.95rem;
}

.vs-contact-form input::placeholder,
.vs-contact-form textarea::placeholder {
    color: var(--vs-gray);
}

.vs-contact-form select {
    color: var(--vs-gray);
}

.vs-contact-form .vs-btn {
    width: 100%;
}

/* ===================================
   Blog Section
   =================================== */
.vs-blog {
    background: var(--vs-light);
}

.vs-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vs-blog-card {
    background: var(--vs-white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vs-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.vs-blog-img {
    height: 200px;
    overflow: hidden;
}

.vs-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vs-blog-card:hover .vs-blog-img img {
    transform: scale(1.1);
}

.vs-blog-content {
    padding: 25px;
}

.vs-blog-date {
    font-size: 0.85rem;
    color: var(--vs-green);
    margin-bottom: 10px;
    display: block;
}

.vs-blog-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--vs-dark);
    line-height: 1.4;
}

/* ===================================
   Footer
   =================================== */
#footer {
    background: var(--vs-black);
    color: var(--vs-white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-about p {
    color: var(--vs-gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--vs-white);
}

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

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

.footer-links a {
    color: var(--vs-gray);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--vs-green);
}
.footer-links a i {
    font-size: 0.65rem;
    margin-right: 8px;
    color: var(--vs-green);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--vs-gray);
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--vs-green);
    margin-top: 4px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.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: var(--vs-white);
}

.footer-social a:hover {
    background: var(--vs-green);
    color: var(--vs-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--vs-gray);
    font-size: 0.85rem;
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1024px) {
    .vs-slide-inner {
        padding: 40px 20px;
    }

    .vs-services-grid,
    .vs-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .nav-menu,
    .nav-actions .lang-switch {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .vs-slide-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .vs-brand-logo {
        justify-content: center;
    }

    .vs-slide-title {
        font-size: 2rem;
    }

    .vs-services-row {
        flex-direction: column;
        gap: 30px;
    }

    .vs-services-icons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .vs-services-cta {
        flex-direction: column;
        text-align: center;
    }

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

    .vs-stats-row {
        justify-content: center;
    }

    .vs-services-grid,
    .vs-portfolio-grid,
    .vs-blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* ===================================
   Contact Section (from footer.tpl)
   =================================== */
.contact {
    padding: 80px 0;
    background: var(--vs-light);
}

.contact .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact .section-subtitle {
    color: var(--vs-green);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.contact .section-title {
    font-size: 2.5rem;
    color: var(--vs-dark);
}

.contact .section-title .highlight {
    color: var(--vs-green);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--vs-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vs-dark);
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--vs-dark);
}

.contact-details p,
.contact-details a {
    color: var(--vs-gray);
}

.contact-social h4 {
    margin-bottom: 15px;
    color: var(--vs-dark);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--vs-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vs-white);
}

.social-links a:hover {
    background: var(--vs-green);
    color: var(--vs-dark);
}

.contact-map iframe {
    width: 100%;
    height: 350px;
    border-radius: 15px;
}

/* Footer from footer.tpl */
.footer {
    background: var(--vs-black);
    color: var(--vs-white);
}

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

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

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

.footer-logo img {
    height: 40px;
}

.footer-about p {
    color: var(--vs-gray);
    line-height: 1.7;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: var(--vs-gray);
}

.footer-links a:hover {
    color: var(--vs-green);
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--vs-gray);
}

.footer-contact i {
    color: var(--vs-green);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.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: var(--vs-white);
}

.footer-social a:hover {
    background: var(--vs-green);
    color: var(--vs-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--vs-gray);
    font-size: 0.9rem;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--vs-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vs-dark);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--vs-green-hover);
    transform: translateY(-5px);
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .contact-wrapper,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   FIXES
   =================================== */

/* 1. Slider Nav Buttons Fix */
.vs-slider-nav {
    position: absolute;
    bottom: 50px;
    right: 60px;
    display: flex;
    gap: 10px;
    z-index: 100;
}

.vs-nav-prev,
.vs-nav-next {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 5px;
    color: var(--vs-white);
    cursor: pointer !important;
    transition: all 0.3s ease;
    font-size: 16px;
    z-index: 101;
    pointer-events: auto !important;
}

.vs-nav-prev:hover,
.vs-nav-next:hover {
    background: var(--vs-green);
    border-color: var(--vs-green);
    color: var(--vs-dark);
}

/* 2. Hero Background */
.vs-hero-OLD {
    background: var(--vs-dark);
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    position: relative;
}

.vs-hero-OLD::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,46,0.95) 0%, rgba(22,22,42,0.85) 100%);
    z-index: 1;
}

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

/* 3. Header Dropdown on Hover */
.nav-menu li {
    position: relative;
}

.nav-menu li:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--vs-dark);
    border-radius: 8px;
    padding: 15px 0;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1000;
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.dropdown-menu li a:hover {
    background: rgba(255,255,255,0.1);
    color: var(--vs-green);
}

/* Header Link Hover - No White Background */
.nav-link:hover {
    color: var(--vs-green) !important;
    background: transparent !important;
}

.nav-menu li:hover > .nav-link {
    color: var(--vs-green);
}

/* Disable owl drag on nav area */
.vs-slider-nav * {
    -webkit-user-drag: none;
    user-select: none;
}

.owl-carousel .owl-item {
    -webkit-touch-callout: none;
}

/* CMS Menu Structure - Hover Dropdown */
.nav-menu > li {
    position: relative;
}

.nav-menu > li > ul,
.nav-menu > li > .alt-menu,
.nav-menu > li > .sub-menu,
.nav-menu .altmenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--vs-darker);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    z-index: 1000;
    display: block !important;
}

.nav-menu > li:hover > ul,
.nav-menu > li:hover > .alt-menu,
.nav-menu > li:hover > .sub-menu,
.nav-menu > li:hover > .altmenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu > li > ul li,
.nav-menu .altmenu li {
    display: block;
    margin: 0;
}

.nav-menu > li > ul li a,
.nav-menu .altmenu li a {
    display: block;
    padding: 12px 20px;
    color: rgba(255,255,255,0.8) !important;
    font-size: 0.9rem;
    background: transparent !important;
}

.nav-menu > li > ul li a:hover,
.nav-menu .altmenu li a:hover {
    background: rgba(0,230,118,0.1) !important;
    color: var(--vs-green) !important;
}

/* Nav Link Hover Fix - Transparent Background */
.nav-menu > li > a:hover,
.nav-menu > li:hover > a {
    color: var(--vs-green) !important;
    background: transparent !important;
}

.nav-menu > li > a::after {
    background: var(--vs-green);
}

/* ===================================
   SLIDER NAV FIX - Override all
   =================================== */
.vs-hero-OLD {
    position: relative;
}

.vs-slider-nav {
    position: absolute !important;
    bottom: 50px !important;
    right: 60px !important;
    left: auto !important;
    top: auto !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 15px !important;
    z-index: 9999 !important;
}

.vs-nav-prev,
.vs-nav-next {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 55px !important;
    height: 55px !important;
    background: transparent !important;
    border: 2px solid rgba(255,255,255,0.4) !important;
    border-radius: 8px !important;
    color: #fff !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 18px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

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

/* Owl default nav hide */
.owl-nav {
    display: none !important;
}

/* Hero Background Fix */
.vs-hero-OLD {
    background-color: #1a1a2e !important;
    background-image: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(15,15,30,0.9) 100%), url('../img/hero-bg.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    min-height: 100vh !important;
}
