/* Responsive Design */

/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
    .display-4 {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 80px 0;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .navbar-brand .brand-text {
        font-size: 1.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .hero-section {
        text-align: center;
        padding: 60px 0;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .pricing-card {
        margin-bottom: 30px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
        gap: 15px !important;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .service-hero {
        padding: 50px 0;
    }
    
    .service-icon-large {
        display: none;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 375px) {
    .display-4 {
        font-size: 1.5rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .card-body {
        padding: 20px 15px;
    }
    
    .footer-links {
        margin-bottom: 20px;
    }
}

/* Print styles */
@media print {
    .navbar,
    .btn,
    .three-d-background,
    .social-icons,
    .hero-animation {
        display: none !important;
    }
    
    body {
        padding-top: 0;
        color: #000 !important;
        background: #fff !important;
    }
    
    a {
        color: #000 !important;
        text-decoration: underline !important;
    }
    
    .card {
        border: 1px solid #000 !important;
        box-shadow: none !important;
    }
}