/* Responsive CSS for Chronometer Appraisal Website */

/* Large Screens (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Medium Screens (992px and up) */
@media (min-width: 992px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .hero-section h2 {
        font-size: 1.75rem;
    }
    
    .process-timeline::before {
        display: block;
    }
    
    .process-item {
        width: 50%;
        padding-right: 50px;
    }
    
    .process-item:nth-child(even) {
        margin-left: auto;
        padding-right: 0;
        padding-left: 50px;
    }
}

/* Tablets (768px to 991px) */
@media (max-width: 991px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    h4 { font-size: 1.1rem; }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section h2 {
        font-size: 1.25rem;
    }
    
    .navbar-brand {
    font-size: 12px !important;
        font-size: 1.1rem;
    }
    
    .price-card.featured {
        transform: none;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
}

/* Mobile Devices (less than 768px) */
@media (max-width: 767px) {
    /* Typography adjustments */
    body {
        font-size: 14px;
    }
    
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1.1rem; }
    h4 { font-size: 1rem; }
    h5 { font-size: 0.95rem; }
    h6 { font-size: 0.9rem; }
    
    p {
        font-size: 0.9rem;
    }
    
    /* Header adjustments */
    .navbar-brand {
    font-size: 12px !important;
        font-size: 1rem;
    }
    
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    
    /* Hero section */
    .hero-section {
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-section h2 {
        font-size: 1.1rem;
    }
    
    .hero-section p {
        font-size: 0.95rem;
    }
    
    /* Section spacing */
    section {
        padding: 3rem 0;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    section h3 {
        font-size: 1.1rem;
    }
    
    /* Service cards */
    .service-card img {
        height: 150px;
    }
    
    .service-card .price {
        font-size: 1.1rem;
    }
    
    /* Price cards */
    .price-amount {
        font-size: 2rem;
    }
    
    /* Team section */
    .team-member img {
        width: 120px;
        height: 120px;
    }
    
    /* Process section */
    .step-number {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1rem;
    }
    
    /* Timeline */
    .timeline-date {
        font-size: 0.85rem;
    }
    
    /* Contact form */
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form .btn-primary {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }
    
    /* Blog cards */
    .blog-card img {
        height: 150px;
    }
    
    /* Footer */
    .footer-section {
        text-align: center;
    }
    
    .footer-section .col-md-4 {
        margin-bottom: 2rem;
    }
    
    /* Swiper - disable autoplay on mobile */
    .swiper {
        --swiper-autoplay: 0;
    }
    
    /* Event dates */
    .event-date {
        min-width: 60px;
        padding: 0.5rem !important;
    }
    
    .event-date .month {
        font-size: 0.75rem;
    }
    
    .event-date .day {
        font-size: 1.25rem;
    }
    
    /* Utility spacing */
    .mt-5 {
        margin-top: 2rem !important;
    }
    
    .mb-4 {
        margin-bottom: 1.5rem !important;
    }
    
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}

/* Small Mobile Devices (less than 576px) */
@media (max-width: 575px) {
    /* Container padding */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Typography */
    h1 { font-size: 1.25rem; }
    h2 { font-size: 1.1rem; }
    h3 { font-size: 1rem; }
    h4 { font-size: 0.95rem; }
    
    /* Hero section */
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .hero-section h2 {
        font-size: 1rem;
    }
    
    .hero-section p {
        font-size: 0.85rem;
    }
    
    /* Cards and boxes */
    .feature-box,
    .service-card,
    .price-card,
    .career-card,
    .info-card,
    .method-card,
    .guideline-card,
    .resource-card,
    .brand-card,
    .tech-card {
        padding: 1rem;
    }
    
    /* Service cards */
    .service-card h4,
    .service-card p,
    .service-card ul {
        padding: 0 1rem;
    }
    
    /* Accordion */
    .accordion-button {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .accordion-body {
        padding: 1rem;
        font-size: 0.85rem;
    }
    
    /* Gallery */
    .gallery-section .col-md-4 {
        margin-bottom: 1rem;
    }
}

/* Extra Small Devices (less than 400px) */
@media (max-width: 399px) {
    /* Further reduce font sizes */
    body {
        font-size: 13px;
    }
    
    .navbar-brand {
    font-size: 12px !important;
        font-size: 0.9rem;
    }
    
    .hero-section h1 {
        font-size: 1.25rem;
    }
    
    /* Buttons */
    .btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    /* Form elements */
    .form-control {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }
}

/* Landscape orientation adjustments */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .vh-100 {
        height: auto !important;
        min-height: 100vh;
    }
}

/* Print styles */
@media print {
    /* Hide navigation and interactive elements */
    header,
    .navbar,
    .btn,
    .swiper-pagination,
    .accordion-button::after,
    footer {
        display: none !important;
    }
    
    /* Adjust colors for print */
    * {
        color: #000 !important;
        background: #fff !important;
    }
    
    /* Page breaks */
    section {
        page-break-inside: avoid;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    /* Links */
    a[href]:after {
        content: " (" attr(href) ")";
    }
} 