/* ============================================
   VERIODA WHMCS TEMASI - RESPONSIVE CSS
   ============================================ */

/* Tablet (1024px ve altı) */
@media (max-width: 1024px) {
    .vda-hero-content h1 {
        font-size: 36px;
    }
    
    .vda-hero-image {
        flex: 0 0 350px;
    }
    
    .vda-product-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vda-domain-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vda-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .vda-mega-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vda-mega-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vda-mega-grid-4 {
        grid-template-columns: 1fr 1fr;
    }
    
    .vda-mega-menu {
        min-width: 500px;
    }
}

/* Mobil (768px ve altı) */
@media (max-width: 768px) {
    /* Top Bar */
    .vda-topbar {
        display: none;
    }
    
    /* Header */
    .vda-header .vda-container {
        height: 65px;
    }
    
    .vda-logo img {
        height: 35px;
    }
    
    /* Mobil Menü Toggle */
    .vda-mobile-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .vda-mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .vda-mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .vda-mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Navigasyon */
    .vda-nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: var(--vda-white);
        padding: 80px 20px 30px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        transition: var(--vda-transition);
        z-index: 999;
        overflow-y: auto;
    }
    
    .vda-nav.active {
        right: 0;
    }
    
    .vda-nav-list {
        flex-direction: column;
        gap: 2px;
    }
    
    .vda-nav-list > li > a {
        padding: 14px 15px;
        font-size: 15px;
        border-radius: 8px;
    }
    
    /* Mega Menü Mobil */
    .vda-mega-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        min-width: auto;
        padding: 10px 20px;
        display: none;
        border: none;
    }
    
    .vda-mega-menu-trigger.active .vda-mega-menu {
        display: block;
    }
    
    .vda-mega-grid,
    .vda-mega-grid-3,
    .vda-mega-grid-4 {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .vda-mega-highlight {
        display: none;
    }
    
    .vda-mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: var(--vda-transition);
    }
    
    .vda-mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Hero */
    .vda-hero {
        padding: 40px 0 60px;
    }
    
    .vda-hero-slide {
        flex-direction: column;
        text-align: center;
    }
    
    .vda-hero-content h1 {
        font-size: 28px;
    }
    
    .vda-hero-content p {
        font-size: 14px;
    }
    
    .vda-hero-buttons {
        justify-content: center;
    }
    
    .vda-hero-image {
        flex: 0 0 auto;
        width: 80%;
        margin: 0 auto;
    }
    
    /* Domain Search */
    .vda-domain-search-form {
        flex-direction: column;
    }
    
    .vda-domain-search-box {
        padding: 25px 20px;
    }
    
    /* Section */
    .vda-section {
        padding: 50px 0;
    }
    
    .vda-section-title {
        font-size: 26px;
    }
    
    .vda-section-desc {
        font-size: 14px;
    }
    
    /* Kartlar */
    .vda-domain-cards {
        grid-template-columns: 1fr;
    }
    
    .vda-product-cards {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .vda-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vda-footer-bottom .vda-container {
        flex-direction: column;
        text-align: center;
    }
    
    .vda-footer-links {
        justify-content: center;
    }
    
    /* WHMCS Client Area */
    .vda-client-grid {
        grid-template-columns: 1fr;
    }
    
    .vda-client-sidebar {
        display: none;
    }
}

/* Küçük Mobil (480px ve altı) */
@media (max-width: 480px) {
    .vda-hero-content h1 {
        font-size: 24px;
    }
    
    .vda-hero-content p {
        font-size: 13px;
    }
    
    .vda-hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .vda-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .vda-btn-lg {
        padding: 14px 25px;
        font-size: 14px;
    }
    
    .vda-hero-image {
        width: 100%;
    }
    
    .vda-domain-search-box h3 {
        font-size: 18px;
    }
    
    .vda-section-title {
        font-size: 22px;
    }
    
    .vda-nav {
        width: 85%;
    }
}