/* ============================================
   RESPONSIVE DESIGN - COMPLETE SYSTEM
   ============================================ */

/* Tablet Landscape - 1024px to 1199px */
@media (min-width: 1024px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .hero-text h1 {
        font-size: 3.57rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .mvv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .mvv-item:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

/* Tablet Portrait - 768px to 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        max-width: 720px;
        padding: 0 1.5rem;
    }
    
    /* Header adjustments */
    .header {
        padding: 10px 0 12px 0;
        position: relative;
    }
    
    .logo img {
        height: 155px;
        max-height: 165px;
        margin: -12px 0;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    /* Hero Section */
    .hero {
        margin-top: 130px;
        min-height: 60vh;
    }
    
    .hero-text h1 {
        font-size: 3.06rem;
        line-height: 1.3;
    }
    
    .hero-text p {
        font-size: 1.28rem;
    }
    
    /* Sections */
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2.55rem;
    }
    
    /* Grids */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Cards */
    .service-card,
    .portfolio-item,
    .process-step {
        padding: 1.5rem;
    }
    
    /* Forms */
    .contact-form {
        padding: 2rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Mobile Landscape - 481px to 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    /* Header */
    .header {
        padding: 8px 0 10px 0;
    }
    
    .logo img {
        height: 140px;
        max-height: 150px;
        margin: -12px 0;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.3rem 0.8rem;
    }
    
    /* Hero */
    .hero {
        margin-top: 110px;
        min-height: 50vh;
    }
    
    .hero-text {
        padding: 1.5rem;
        width: 85%;
        margin: 0 auto;
    }
    
    .hero-text h1 {
        font-size: 2.55rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 1.19rem;
        margin-bottom: 1.5rem;
    }
    
    /* Sections */
    .section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 2.38rem;
        margin-bottom: 1.5rem;
    }
    
    /* All grids become single column */
    .services-grid,
    .portfolio-grid,
    .process-grid,
    .mvv-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    /* Cards */
    .service-card,
    .portfolio-item,
    .process-step,
    .mvv-item,
    .review-item {
        padding: 1.2rem;
    }
    
    .service-card h3,
    .process-step h3 {
        font-size: 1.8rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }
    
    /* Forms */
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* About page specific */
    .about-story {
        padding: 2.5rem 0;
    }
    
    .story-content {
        padding: 2rem;
    }
    
    .story-content h2 {
        font-size: 2.2rem;
    }
}

/* Mobile Portrait - up to 480px */
@media (max-width: 480px) {
    .container {
        padding: 0 0.8rem;
    }
    
    /* Header */
    .header {
        padding: 6px 0 8px 0;
        flex-direction: column;
        gap: 8px;
    }
    
    .logo img {
        height: 120px;
        max-height: 130px;
        margin: -10px 0;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 1.05rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Hero */
    .hero {
        margin-top: 130px;
        min-height: 40vh;
    }
    
    .hero-text {
        padding: 1rem;
        width: 90%;
        margin: 0 auto;
    }
    
    .hero-text h1 {
        font-size: 2.04rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1.19rem;
        margin-bottom: 1.2rem;
        line-height: 1.4;
    }
    
    /* Sections */
    .section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.87rem;
        margin-bottom: 1.2rem;
        line-height: 1.2;
    }
    
    /* Cards */
    .service-card,
    .portfolio-item,
    .process-step,
    .mvv-item,
    .review-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .service-card h3,
    .process-step h3,
    .mvv-item h3 {
        font-size: 1.7rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card p,
    .process-step p,
    .mvv-item p {
        font-size: 1.35rem;
        line-height: 1.4;
    }
    
    /* Buttons */
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 1.05rem;
        width: 100%;
        text-align: center;
        display: block;
        margin: 0 auto;
    }
    
    /* Forms */
    .contact-form {
        padding: 1rem;
    }
    
    .form-group label {
        font-size: 1.1rem;
    }
    
    .form-input,
    .form-textarea {
        font-size: 1.1rem;
        padding: 0.7rem;
    }
    
    /* Footer */
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer p {
        font-size: 0.95rem;
    }
    
    /* Floating elements */
    .floating-video-btn {
        bottom: 80px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .floating-video-btn span {
        font-size: 0.85rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float img {
        width: 25px;
        height: 25px;
    }
    
    /* About page mobile specific */
    .about-story {
        padding: 2rem 0;
        min-height: 30vh;
    }
    
    .story-content {
        padding: 1.5rem;
    }
    
    .story-content h2 {
        font-size: 1.7rem;
        margin-bottom: 1rem;
    }
    
    .story-content p {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    /* MVV cards mobile */
    .mvv-item h3::before {
        font-size: 1.4rem;
    }
    
    .mvv-item ul li {
        font-size: 1.05rem;
        margin-bottom: 0.3rem;
    }
    
    /* Reviews mobile */
    .review-text {
        font-size: 1.1rem;
    }
    
    .review-author strong {
        font-size: 1.2rem;
    }
    
    .review-author span {
        font-size: 0.95rem;
    }
    
    /* Contact page mobile */
    .contact-info h3 {
        font-size: 1.4rem;
    }
    
    .contact-details {
        font-size: 1.1rem;
    }
    
    .faq-item h4 {
        font-size: 1.2rem;
    }
    
    .faq-item p {
        font-size: 1.05rem;
    }
    
    /* Portfolio mobile */
    .portfolio-item img {
        height: 200px;
    }
    
    /* Services mobile */
    .service-card .service-icon {
        font-size: 2.4rem;
    }
    
    /* Process mobile */
    .process-step .step-number {
        font-size: 1.8rem;
        width: 40px;
        height: 40px;
    }
    
    .process-image img {
        height: 180px;
    }
}

/* Extra small devices - 320px and below */
@media (max-width: 320px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-text h1 {
        font-size: 1.79rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .service-card,
    .portfolio-item,
    .process-step,
    .mvv-item,
    .review-item {
        padding: 0.8rem;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
    }
}