/* ===================================
   Responsive Design - Tablet
   =================================== */
@media (max-width: 992px) {
    /* Header */
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav {
        order: 3;
        width: 100%;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        background: var(--white);
        padding: 20px 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .btn-gradient {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-image {
        order: -1;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .services-grid-full {
        grid-template-columns: 1fr;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-col:first-child {
        grid-column: 1 / -1;
    }
}

/* ===================================
   Responsive Design - Mobile
   =================================== */
@media (max-width: 768px) {
    /* Typography */
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    /* Header */
    .logo h1 {
        font-size: 20px;
    }
    
    /* Hero */
    .hero {
        padding: 50px 0;
    }
    
    .hero-features {
        margin-bottom: 30px;
    }
    
    .feature-item {
        gap: 12px;
    }
    
    .checkmark {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }
    
    .feature-item p {
        font-size: 14px;
    }
    
    /* Services */
    .services-preview {
        padding: 50px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        font-size: 40px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .service-card p {
        font-size: 15px;
    }
    
    .services-section {
        padding: 40px 0;
    }
    
    .service-card-detailed {
        padding: 25px;
    }
    
    .service-icon-large {
        font-size: 48px;
    }
    
    .service-card-detailed h3 {
        font-size: 22px;
    }
    
    /* CTA */
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
    
    .btn-whatsapp {
        padding: 14px 30px;
        font-size: 16px;
    }
    
    /* About */
    .about-section,
    .mission-vision,
    .why-choose-us,
    .stats-section {
        padding: 40px 0;
    }
    
    .about-text h2 {
        font-size: 26px;
    }
    
    .mv-icon {
        font-size: 48px;
    }
    
    .mv-card h3 {
        font-size: 22px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reason-icon {
        font-size: 40px;
    }
    
    .reason-card h3 {
        font-size: 18px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-label {
        font-size: 16px;
    }
    
    /* Contact */
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-form-wrapper h2,
    .contact-info-wrapper h2 {
        font-size: 24px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 15px;
    }
    
    .contact-info-card {
        padding: 20px;
        gap: 15px;
    }
    
    .contact-info-icon {
        font-size: 30px;
    }
    
    .map-section {
        padding: 40px 0;
    }
    
    /* FAQ */
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 16px;
    }
    
    .faq-icon {
        font-size: 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
    
    .faq-cta {
        padding: 40px 20px;
        margin-top: 40px;
    }
    
    .faq-cta h3 {
        font-size: 24px;
    }
    
    .faq-cta p {
        font-size: 16px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col:first-child {
        grid-column: 1;
    }
    
    .footer-col h3 {
        font-size: 20px;
    }
    
    .footer-col h4 {
        font-size: 16px;
    }
    
    /* Floating WhatsApp */
    .floating-whatsapp {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon-float {
        font-size: 28px;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* ===================================
   Responsive Design - Small Mobile
   =================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .cta-section h2 {
        font-size: 24px;
    }
    
    .btn-whatsapp {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .whatsapp-icon {
        font-size: 20px;
    }
    
    .service-card-detailed {
        padding: 20px;
    }
    
    .faq-question {
        padding: 18px 15px;
        font-size: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 18px;
    }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .header,
    .floating-whatsapp,
    .btn-gradient,
    .btn-primary,
    .btn-secondary,
    .btn-whatsapp,
    .cta-section,
    .nav-toggle {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    .container {
        max-width: 100%;
    }
    
    a {
        text-decoration: underline;
    }
}
