/* Responsive Design - Mobile First Approach */

/* Extra Small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
    .hero-banner {
        padding-right: 0% !important;
        padding-left: 0% !important;
    }

    .logo-img {
        height: 30px;
    }

    .container {
        padding: 0 15px;
    }


    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .features {
        padding: 60px 0;
    }

    .features h3 {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .content-section {
        padding: 60px 0;
    }

    .content-section h3 {
        font-size: 1.6rem;
    }

    .content-section h4 {
        font-size: 1.3rem;
    }

    .footer {
        padding: 2rem 0 1rem 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-content h2 {
        font-size: 2.2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* Print styles */
@media print {

    .header,
    .footer,
    .hero-buttons {
        display: none;
    }

    .hero {
        background: none;
        color: #000;
        padding: 20px 0;
    }

    .main-content {
        padding: 0;
    }

    .container {
        max-width: none;
        padding: 0;
    }

    a {
        text-decoration: underline;
        color: #000;
    }

    .btn {
        border: 1px solid #000;
        background: none;
        color: #000;
    }
}

/* Dark mode support - DISABLED to maintain white background */

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .loading {
        animation: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        color: #fff;
        border: 2px solid #fff;
    }

    .btn-secondary {
        background: #fff;
        color: #000;
        border: 2px solid #000;
    }

    .nav-link:hover {
        color: #fff;
        text-decoration: underline;
    }

    .feature-card a:hover {
        color: #000;
        text-decoration: underline;
    }
}