/* Responsive CSS for Remote Virtual Assistant Agency Template */

/* Tablet Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-decorative {
        width: 200px;
        height: 200px;
    }
    
    .hero-decorative:nth-child(1) {
        top: -100px;
        right: -100px;
    }
    
    .hero-decorative:nth-child(2) {
        bottom: -100px;
        left: -100px;
    }
    
    .service-card,
    .feature-card,
    .price-card {
        margin-bottom: 2rem;
    }
    
    .price-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Remove animations for mobile as per requirements */
    * {
        animation: none !important;
        transition: none !important;
    }
    
    /* Header adjustments */
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        text-align: center;
    }
    
    /* Hero section mobile */
    #hero {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-decorative {
        display: none;
    }
    
    /* Section adjustments */
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .section-description {
        margin-bottom: 2rem;
    }
    
    /* Cards mobile optimization */
    .feature-card,
    .service-card,
    .price-card,
    .team-card,
    .review-card,
    .casestudy-card,
    .career-card,
    .coreinfo-card,
    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .service-card,
    .price-card {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .feature-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    /* Service cards mobile */
    .service-image {
        height: 150px;
        margin-bottom: 1rem;
    }
    
    .service-name {
        font-size: 1.1rem;
    }
    
    .service-price {
        font-size: 1.5rem;
    }
    
    /* Price cards mobile */
    .price-card {
        margin-bottom: 1.5rem;
    }
    
    .price-badge {
        position: static;
        transform: none;
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    /* Team cards mobile */
    .team-photo {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .team-name {
        font-size: 1.1rem;
    }
    
    /* Process section mobile */
    .process-step {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .process-title {
        font-size: 1.1rem;
    }
    
    /* Timeline mobile */
    .timeline-item {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .timeline-title {
        font-size: 1.1rem;
    }
    
    /* Contact section mobile */
    .contact-form {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-info-item {
        margin-bottom: 1rem;
    }
    
    .contact-info-icon {
        font-size: 1.25rem;
        width: 35px;
    }
    
    /* Blog section mobile */
    .blog-image {
        height: 150px;
        font-size: 2.5rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-title {
        font-size: 1.1rem;
    }
    
    /* FAQ mobile */
    .faq-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    /* Gallery mobile */
    .gallery-image {
        height: 200px;
        font-size: 2.5rem;
    }
    
    /* Footer mobile */
    #footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    /* Form elements mobile */
    .form-control {
        padding: 0.625rem 0.875rem;
        font-size: 1rem;
    }
    
    .btn-primary {
        padding: 0.625rem 1.5rem;
        width: 100%;
    }
}

/* Small mobile devices */
@media (max-width: 576px) {
    /* Container padding */
    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Typography adjustments */
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-subtitle,
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Card adjustments */
    .feature-card,
    .service-card,
    .price-card,
    .team-card,
    .review-card,
    .casestudy-card,
    .career-card,
    .coreinfo-card,
    .blog-card,
    .faq-card,
    .timeline-item {
        padding: 1.25rem;
    }
    
    /* Contact form */
    .contact-form {
        padding: 1.25rem;
    }
    
    .contact-info {
        padding: 1.25rem;
    }
    
    /* Footer */
    .footer-section {
        text-align: center;
    }
    
    /* Gallery adjustments */
    .gallery-image {
        height: 180px;
        font-size: 2rem;
    }
    
    /* Navigation */
    .navbar-collapse {
        text-align: center;
    }
    
    .navbar-nav {
        margin-top: 1rem;
    }
}

/* Large screens optimization */
@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.75rem;
    }
    
    .hero-decorative {
        width: 400px;
        height: 400px;
    }
    
    .hero-decorative:nth-child(1) {
        top: -200px;
        right: -200px;
    }
    
    .hero-decorative:nth-child(2) {
        bottom: -200px;
        left: -200px;
    }
}

/* Print styles */
@media print {
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    .navbar,
    .btn,
    .footer,
    #gallery,
    .hero-decorative {
        display: none !important;
    }
    
    .container {
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .section {
        page-break-inside: avoid;
        padding: 1rem 0;
    }
    
    .section-title {
        page-break-after: avoid;
    }
} 

body {
    overflow-x: hidden;
}

.hero-content {
    padding-top: 150px;
}