/* ==========================================
   VANGUARD & WREN - RESPONSIVE STYLES
   ========================================== */

@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta-group {
        justify-content: center;
    }
    .client-logos-inline {
        justify-content: center;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
    }
    .services-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 900px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        height: 100vh;
        background: var(--bg-primary);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 899;
    }
    .main-nav.open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .nav-link {
        font-size: 1.25rem;
    }
    .mobile-menu-toggle {
        display: flex;
        z-index: 900;
    }
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .dashboard-display {
        grid-template-columns: 1fr;
    }
    .case-grid {
        grid-template-columns: 1fr;
    }
    .contact-container {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .process-timeline {
        grid-template-columns: 1fr;
    }
    .services-full-grid {
        grid-template-columns: 1fr;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .container {
        padding: 0 1.25rem;
    }
    .hero-visual-system {
        display: none; /* Simplify hero for mobile performance */
    }
    .explorer-tabs {
        overflow-x: auto;
        width: 100%;
        justify-content: flex-start;
    }
    .section-header.flex-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    .testimonial-slider-wrap {
        padding: 2rem 1.25rem;
    }
    .contact-info, .contact-form-wrap {
        padding: 1.75rem;
    }
}

/* Reduced Motion Override */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .custom-cursor, .custom-cursor-ring {
        display: none !important;
    }
}
.service-card {
    background: #111;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    color: #fff;
}

.service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.service-btn {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background: #00bcd4; /* ya apni theme ka accent color */
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease;
}

.service-btn:hover {
    background: #008ba3;
}