/* ============================================
   Responsive Styles - Mobile First Approach
   ============================================ */

/* Tablet Styles (768px and below) */
@media screen and (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    /* Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 0;
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    /* Services Marquee */
    .services-marquee {
        padding: 12px 0;
    }
    
    .service-badge {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    .marquee-content {
        gap: 25px;
    }
    
    /* Hero Carousel */
    .hero-carousel {
        height: calc(100vh - 70px);
        min-height: 500px;
    }
    
    .hero-content {
        padding: 20px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .carousel-prev {
        left: 10px;
        width: 40px;
        height: 40px;
    }
    
    .carousel-next {
        right: 10px;
        width: 40px;
        height: 40px;
    }
    
    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .carousel-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .carousel-dot.active {
        width: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    /* Services Feature Boxes */
    .service-feature-box {
        flex-direction: column !important;
    }
    
    .service-feature-box.reverse {
        flex-direction: column !important;
    }
    
    .service-feature-image {
        flex: 0 0 auto;
        width: 100%;
        height: 250px;
        padding: 30px;
    }
    
    .service-feature-img {
        max-width: 180px;
        max-height: 180px;
    }
    
    .service-feature-content {
        padding: 30px;
    }
    
    .service-feature-content h3 {
        font-size: 1.75rem;
    }
    
    .service-feature-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .service-price-tag {
        text-align: center;
        font-size: 1.75rem;
    }
    
    .service-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .service-buttons .btn {
        width: 100%;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Trust Stats */
    .trust-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    /* About Details */
    .about-details {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .different-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact Wrapper */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* About Preview Section */
    .about-preview-section {
        padding: 60px 0;
    }
    
    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-preview-highlights {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .highlight-item {
        padding: 25px 15px;
    }
    
    .highlight-icon {
        font-size: 2.5rem;
    }
    
    .highlight-item h3 {
        font-size: 1.1rem;
    }
    
    .highlight-item p {
        font-size: 0.9rem;
    }
    
    /* WhatsApp Button */
    .whatsapp-float {
        bottom: 85px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    /* Call Button */
    .call-float {
        bottom: 15px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .call-float svg {
        width: 26px;
        height: 26px;
    }
    
    /* Table */
    .comparison-table {
        overflow-x: auto;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Section Padding */
    section {
        padding: 50px 0;
    }
}

/* Mobile Styles (480px and below) */
@media screen and (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    .logo-image {
        height: 45px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    /* Typography */
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    /* Hero Carousel */
    .hero-carousel {
        height: calc(100vh - 70px);
        min-height: 450px;
        max-height: 600px;
    }
    
    .hero-content {
        padding: 15px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .carousel-prev {
        left: 8px;
        width: 35px;
        height: 35px;
        opacity: 0.9;
    }
    
    .carousel-next {
        right: 8px;
        width: 35px;
        height: 35px;
        opacity: 0.9;
    }
    
    .carousel-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .carousel-dots {
        bottom: 12px;
        gap: 6px;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
    
    .carousel-dot.active {
        width: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    /* Services Marquee on Mobile */
    .services-marquee {
        padding: 10px 0;
    }
    
    .service-badge {
        padding: 6px 16px;
        font-size: 0.75rem;
    }
    
    .marquee-content {
        gap: 20px;
    }
    
    /* Section Title */
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Service Cards */
    .service-content {
        padding: 20px;
    }
    
    .service-image-wrapper {
        height: 180px;
        padding: 15px;
    }
    
    .service-image {
        max-width: 120px;
        max-height: 120px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-feature-image {
        height: 200px;
        padding: 20px;
    }
    
    .service-feature-img {
        max-width: 150px;
        max-height: 150px;
    }
    
    .service-feature-content {
        padding: 25px;
    }
    
    .service-feature-content h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .service-feature-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .service-price-tag {
        font-size: 1.5rem;
        padding: 10px 20px;
    }
    
    /* Service Detail */
    .service-detail-content {
        padding: 20px;
    }
    
    .service-detail-card {
        flex-direction: column;
    }
    
    .service-detail-image {
        flex: 0 0 auto;
        width: 100%;
        height: 250px;
        padding: 30px;
    }
    
    .service-detail-img {
        max-width: 180px;
        max-height: 180px;
    }
    
    .service-detail-content {
        padding: 25px;
    }
    
    .service-detail-content h2 {
        text-align: center;
    }
    
    .service-price-large {
        text-align: center;
    }
    
    .service-intro {
        text-align: center;
    }
    
    .service-detail-content .service-buttons {
        justify-content: center;
        flex-direction: column;
    }
    
    .service-detail-content .service-buttons .btn {
        width: 100%;
    }
    
    .service-price-large {
        font-size: 2rem;
    }
    
    /* Page Header */
    .page-header {
        padding: 40px 0;
    }
    
    /* Contact Form */
    .contact-form-container,
    .contact-info-container {
        padding: 20px;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    /* WhatsApp Button */
    .whatsapp-float {
        bottom: 75px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
    
    /* Call Button */
    .call-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .call-float svg {
        width: 22px;
        height: 22px;
    }
    
    /* About Preview Section */
    .about-preview-section {
        padding: 40px 0;
    }
    
    .about-preview-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .highlight-item {
        padding: 25px 20px;
    }
    
    .highlight-icon {
        font-size: 2.5rem;
    }
    
    .highlight-item h3 {
        font-size: 1.1rem;
    }
    
    .highlight-item p {
        font-size: 0.9rem;
    }
    
    .about-preview-intro,
    .about-preview-description {
        font-size: 0.95rem;
    }
    
    /* Stat Number */
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Commitment Section */
    .commitment-section {
        padding: 25px;
    }
}

/* Large Desktop (1400px and above) */
@media screen and (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .services-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-float,
    .btn,
    .mobile-menu-toggle {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    section {
        page-break-inside: avoid;
    }
}
