/* ====================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ==================================== */

/* Tablet and Below - 992px */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    /* Hero Section */
    .hero {
        padding: 140px 0 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        margin: 0 auto 2rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-badge {
        position: static;
        margin: 2rem auto 0;
        width: fit-content;
    }

    /* Models Grid */
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Service Layout */
    .service-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-image {
        order: -1;
    }

    /* About Layout */
    .about-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    /* Bio Grid */
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    /* Spotlight Grid */
    .spotlight-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .spotlight-content h2 {
        font-size: 2.5rem;
    }

    .specs-mini-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-group {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Mobile - 768px */
@media (max-width: 768px) {

    /* Navigation */
    nav {
        height: 70px;
    }

    .logo .brand-text {
        font-size: 1.2rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        transition: right 0.4s ease;
        border-top: 1px solid var(--glass-border);
        align-items: center;
        justify-content: flex-start;
        z-index: 2000;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    /* Mobile Menu Button (Hamburger) */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 2001;
        padding: 8px;
        background: rgba(16, 185, 129, 0.1);
        border-radius: 8px;
        border: 1px solid var(--glass-border);
        transition: all 0.3s ease;
    }

    .mobile-menu-btn:hover {
        background: rgba(16, 185, 129, 0.2);
        border-color: var(--primary);
    }

    .mobile-menu-btn span {
        width: 25px;
        height: 3px;
        background: var(--primary);
        border-radius: 3px;
        transition: all 0.3s ease;
        display: block;
    }

    /* Animated X when menu is open */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Hero Section */
    .hero {
        padding: 120px 0 60px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    /* Section Titles */
    .section-title {
        font-size: 2rem;
    }

    /* Models Grid */
    .models-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .model-card {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Brand Grid */
    .brand-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Team Grid */
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .team-image-wrapper {
        height: 250px;
    }

    /* Services Section */
    .service-list {
        gap: 1.5rem;
    }

    .service-list li {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .service-list i {
        margin: 0;
    }

    /* Reviews Slider */
    .review-card {
        min-width: 280px;
    }

    /* Contact Grid */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-map {
        height: 300px;
    }

    /* Footer */
    footer .container {
        padding: 3rem 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Multi-Brand Section */
    .multibrand-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .feature-list {
        gap: 1.5rem;
    }

    .multibrand-image {
        order: -1;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item {
        width: 100%;
        height: 200px;
    }

    /* Collage */
    .collage-grid {
        grid-template-columns: 1fr;
    }

    .collage-item {
        height: 250px;
    }

    /* Dashboard Banner */
    .dash-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .dash-user-profile {
        flex-direction: column;
        gap: 1rem;
    }

    .dash-actions {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }

    .dash-btn {
        justify-content: center;
        width: 100%;
    }

    .dash-info h3 {
        font-size: 1.3rem;
    }

    /* Contact Form */
    .contact-form-container {
        padding: 2rem;
    }

    /* Vajra Spotlight */
    .spotlight-content h2 {
        font-size: 2rem;
    }

    .specs-mini-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .spec-mini-item {
        padding: 1rem;
    }

    .cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-group .btn-primary,
    .cta-group .btn-secondary {
        width: 100%;
    }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    /* Hero */
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    /* Section Spacing */
    section {
        padding: 60px 0 !important;
    }

    .hero {
        padding: 100px 0 50px !important;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.75rem;
    }

    /* Model Cards */
    .model-card h3 {
        font-size: 1.3rem;
    }

    .model-card p {
        font-size: 0.9rem;
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }

    /* Team Cards */
    .team-info h3 {
        font-size: 1.2rem;
    }

    .team-info span {
        font-size: 0.8rem;
    }

    /* Service List */
    .service-list h4 {
        font-size: 1.1rem;
    }

    .service-list p {
        font-size: 0.9rem;
    }

    /* Review Cards */
    .review-card {
        min-width: 260px;
        padding: 1.5rem;
    }

    .review-card h4 {
        font-size: 1rem;
    }

    /* Contact Info */
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    /* Footer */
    footer p {
        font-size: 0.9rem;
    }

    /* Spotlight */
    .spotlight-content h2 {
        font-size: 1.75rem;
    }

    .spotlight-content .subtitle {
        font-size: 1rem;
    }

    .spec-mini-item {
        gap: 0.8rem;
    }

    .spec-mini-item i {
        font-size: 1.5rem;
    }

    .spec-mini-item strong {
        font-size: 1rem;
    }

    /* Dashboard */
    .dash-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }

    .dash-btn {
        padding: 1rem;
        font-size: 0.95rem;
    }

    /* About Section */
    .bio-content h3 {
        font-size: 1.3rem;
    }

    .bio-content p {
        font-size: 0.9rem;
    }
}

/* Extra Small - 360px */
@media (max-width: 360px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .model-card,
    .team-card,
    .brand-card {
        padding: 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

/* Landscape Mobile Fix */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 100px 0 40px !important;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    section {
        padding: 40px 0 !important;
    }

    .nav-links {
        height: calc(100vh - 60px);
        overflow-y: auto;
    }
}