/* 
 * Domain Accounting Services - Responsive Stylesheet
 */

/* Tablet styles (768px - 1023px) */
@media screen and (max-width: 1023px) {
    /* Typography */
    body {
        font-size: 15px;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    /* Header & Navigation */
    .main-nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    /* About Section */
    .about-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    /* Services Section */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Benefits Section */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Pricing Section */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: scale(1.03);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-info {
        grid-column: 1 / -1;
    }
}

/* Mobile styles (up to 767px) */
@media screen and (max-width: 767px) {
    /* Typography */
    body {
        font-size: 14px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    /* Header & Logo */
    .header-content {
        height: 70px;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .mobile-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    /* Hero Section */
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Pricing Section */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    /* CTA Section */
    .cta-title {
        font-size: 28px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    /* Order Form */
    .order-form-container {
        padding: 30px 20px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Cookie Popup */
    .cookie-popup {
        flex-direction: column;
        width: calc(100% - 40px);
    }
    
    .cookie-popup p {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Small mobile devices (up to 479px) */
@media screen and (max-width: 479px) {
    /* Typography */
    .section-title h2 {
        font-size: 22px;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* Testimonials */
    .testimonial-text {
        font-size: 16px;
    }
    
    /* Order Form */
    .form-submit {
        padding: 12px;
    }
    
    /* Policy Pages */
    .policy-container {
        padding: 30px 20px;
    }
    
    .policy-header h1 {
        font-size: 26px;
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Optimize images for high DPI screens if necessary */
}
