/* Mobile First Responsive Design */
/* Large screens just below wide desktop */
@media (max-width: 1280px) {
    .nav-menu { gap: 1.25rem; }
    .nav-link { font-size: 0.9rem; }
}
/* Desktop and Larger */
@media (min-width: 1025px) {
    .nav-links {
        display: flex;
    }
    /* Add breathing room between logo and nav on desktop */
    .main-nav { margin-left: 2rem; }
    /* Slightly larger gaps between desktop links */
    .nav-menu { gap: 1.25rem; }
    .nav-link { font-size: 0.85rem; padding: 0.35rem 0; }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero-section .container {
        gap: 4rem;
    }
    
    .hero-layout {
        flex-direction: row;
        gap: 3rem;
    }
    
    .hero-section {
        background-attachment: fixed;
    }
}
/* Show dropdown menus on hover/focus for desktop */
@media (min-width: 1025px) {
    .nav-item.dropdown:hover > .dropdown-menu,
    .nav-item.dropdown:focus-within > .dropdown-menu {
        display: block;
    }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
}
/* Tablet Devices */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    /* Slightly smaller nav text on tablets */
    .nav-link { font-size: 0.9rem; }
    /* Add space between logo and links on tablet */
    .main-nav { margin-left: 1.5rem; }
    
    h1 {
        font-size: 3.2rem;
    }
    
    h2 {
        font-size: 2.3rem;
    }
    
    .hero-section .container {
        gap: 3rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }

    /* Show mobile toggle and hide nav links */
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-layout {
        flex-direction: row;
        gap: 2rem;
    }
    
    .hero-form-container {
        padding: 2.5rem 1.5rem;
    }
    
    .hero-section {
        background-attachment: scroll;
    }
    .why-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    /* Moving Process - Tablet */
    .moving-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    /* Reset 4th card span on tablet */
    .moving-process-grid .process-card:nth-child(4) {
        grid-column: span 1;
    }
    /* About Victoria - Ensure image comes first on tablet */
    .about-victoria-layout { grid-template-columns: 1fr; }
    .about-victoria-image { grid-row: 1; }
    .about-victoria-content { grid-row: 2; }
}

/* Collapse pricing cards to single column below 850px */
@media (max-width: 850px) {
    .why-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    .reliable-movers-layout {
        display: flex;
        flex-direction: column;
    }
}
/* Medium Mobile Devices */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    /* Balance readability in mobile menu */
    .nav-link { font-size: 0.95rem; }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-section {
        padding: 2rem 0; /* Reduced from 3rem */
        min-height: 60vh; /* Reduced from 70vh */
        background-attachment: scroll;
    }
    
    .hero-section .container {
        gap: 2rem; /* Reduced from 3rem */
    }
    
    .hero-layout {
        flex-direction: column;
        gap: 1.5rem; /* Reduced from 2rem */
        text-align: center;
        align-items: center;
        margin-bottom: 1rem; /* Reduced from 1.5rem */
    }
    
    .hero-content {
        text-align: center;
        gap: 1.3rem;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        margin-bottom: 0.8rem; /* Reduced from 1rem */
    }
    
    .hero-content p {
        font-size: 1.2rem;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
        margin-bottom: 1.2rem; /* Reduced from 1.5rem */
        max-width: 100%; /* Full width on mobile */
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
        margin-top: 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-content a {
        justify-content: center;
    }
    
    .hero-form-container {
        padding: 2rem 1.5rem; /* Reduced from 2rem 1.5rem */
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Hero Features Mobile Styles */
    .hero-features-section {
        padding: 1.5rem 0;
    }
    
    .hero-features {
        gap: 1.5rem;
    }
    
    .feature-item img {
        max-height: 65px; /* Increased from 50px */
        max-width: 130px; /* Increased from 100px */
    }
    
    /* Trusted Section Mobile Styles */
    .trusted-section {
        padding: 2.5rem 0;
    }
    
    .trusted-heading h2 {
        font-size: 2.2rem;
    }
    
    .trusted-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .trusted-image {
        flex: none;
        max-width: 100%;
    }
    
    .trusted-text {
        flex: none;
        padding-left: 0;
    }
    
    .trusted-full-content {
        padding: 2rem 1.5rem;
    }
    
    /* Services Section Mobile Styles */
    .services-section {
        padding: 3.5rem 0;
    }
    
    .services-header h2 {
        font-size: 2.4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .service-card {
        min-height: 400px;
    }
    
    .service-image {
        height: 190px;
    }
    
    /* CTA Section Mobile Styles */
    .cta-section {
        padding: 3.5rem 0;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.15rem;
    }
    
    /* Service Areas Section - Tablet */
    .service-areas-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
        padding: 2.25rem;
    }
    
    .service-areas-header h2 {
        font-size: 2.2rem;
    }

    /* Pricing Section - Tablet */

    .pricing-rate strong { font-size: 1.8rem; }
    .pricing-tier { font-size: 1.25rem; }

    /* Care Section - Tablet */
    .care-section {
        padding: 4rem 0;
    }
    
    .care-header h2 {
        font-size: 2.5rem;
    }
    
    .care-content {
        gap: 2.5rem;
    }
    
    .care-item {
        padding: 2.25rem;
        gap: 2.5rem;
    }
    
    .care-visual {
        flex: 0 0 180px;
    }
    
    .care-icon {
        width: 110px;
        height: 110px;
    }
    
    .care-icon i {
        font-size: 2.8rem;
    }
    
    .care-text h3 {
        font-size: 1.6rem;
    }
    
    .care-text p {
        font-size: 1.05rem;
    }

    
    .image-container img {
        height: 400px;
    }
    
    .intro-text {
        font-size: 1.15rem;
    }
    
    .feature-item {
        padding: 1.35rem;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
        flex: 0 0 55px;
    }
    
    .feature-icon i {
        font-size: 1.3rem;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
    }
    
    .feature-content p {
        font-size: 0.98rem;
    }
    
    .reliable-movers-cta {
        padding: 1.75rem;
    }
    
    .cta-text {
        font-size: 1.2rem;
    }
    /* Moving Process - Mobile */
    .moving-process-section { padding: 3.5rem 0; }
    .moving-process-section .section-title { font-size: 2.2rem; }
    .moving-process-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .process-card-image { height: 160px; }
    /* Ensure no spanning on mobile */
    .moving-process-grid .process-card:nth-child(4) { grid-column: auto; }
    
    /* About Victoria - Tablet/Mobile tweaks */
    .about-victoria-section { padding: 4rem 0; }
    .about-victoria-header h2 { font-size: 2.4rem; }
    .about-victoria-layout { grid-template-columns: 1fr; gap: 2rem; }
    .about-victoria-image img { height: 360px; }
    
}
/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    /* Comfortable size for very small screens */
    .nav-link { font-size: 0.95rem; }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 1.5rem 0; /* Reduced from 2rem */
        min-height: 50vh; /* Reduced from 60vh */
        background-attachment: scroll;
    }
    
    .hero-section .container {
        gap: 1.5rem; /* Reduced from 2rem */
    }
    
    .hero-layout {
        flex-direction: column;
        gap: 1.5rem; /* Reduced from 2rem */
        text-align: center;
        align-items: center;
        margin-bottom: 0.5rem; /* Reduced from 1rem */
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        margin-bottom: 0.6rem; /* Reduced from 0.8rem */
    }
    
    .hero-content p {
        font-size: 1.1rem;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
        margin-bottom: 1rem; /* Reduced from 1.2rem */
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .top-bar-left, .top-bar-center, .top-bar-right {
        justify-content: center;
    }
    
    .header-logo img {
        height: 40px;
        max-width: 150px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-links.active {
        display: block;
        position: absolute;
        top: 100%;
        right: 0;
        width: 280px;
        background-color: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        border-radius: 0 0 var(--border-radius) var(--border-radius);
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
        margin-top: 0.5rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0px;
    }
    

    
    .hero-form-container {
        padding: 1.5rem 1rem; /* Reduced from 1.5rem 1rem */
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Hero Features Small Mobile Styles */
    .hero-features-section {
        padding: 1rem 0;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .feature-item img {
        max-height: 55px; /* Increased from 40px */
        max-width: 110px; /* Increased from 80px */
    }
    
    /* Trusted Section Small Mobile Styles */
    .trusted-section {
        padding: 2rem 0;
    }
    
    .trusted-heading h2 {
        font-size: 1.8rem;
    }
    
    .trusted-content {
        gap: 1.5rem;
    }
    
    .trusted-full-content {
        padding: 1.5rem 1rem;
    }
    
    .trusted-intro {
        font-size: 1rem;
    }
    
    .trusted-text p,
    .trusted-full-content p {
        font-size: 0.95rem;
    }
    
    .trusted-cta {
        font-size: 1rem;
    }
    
    /* Services Section Small Mobile Styles */
    .services-section {
        padding: 3rem 0;
    }
    
    .services-header h2 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        max-width: 100%;
        min-height: 380px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 1.5rem 1.5rem 2rem 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
    
    .service-content p {
        font-size: 0.95rem;
    }
    
    /* CTA Section Small Mobile Styles */
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }

    /* Pricing Section - Mobile */
    .pricing-section {
        padding: 3.5rem 0;
    }
    .pricing-rate strong { font-size: 1.6rem; }
    .pricing-tier { font-size: 1.1rem; }

    /* Why Section - Mobile */
    .why-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .why-tile { 
        grid-template-columns: 1fr; 
        text-align: center;
    }
    .why-tile:nth-child(even) { 
        grid-template-columns: 1fr; 
    }
    .why-tile:nth-child(even) .why-media { order: 0; }
    .why-tile:nth-child(even) .why-content { order: 1; }
    .why-media-frame img { height: 180px; }
    
    /* Service Areas Section - Mobile */
    .service-areas-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .service-areas-header h2 {
        font-size: 2rem;
    }
    
    .service-areas-list li {
        font-size: 1rem;
        padding: 0.6rem 0;
    }
    .service-areas-list li::before{
        visibility: hidden;
    }

    /* Care Section - Mobile */
    .care-section {
        padding: 3.5rem 0;
    }
    
    .care-header h2 {
        font-size: 2.2rem;
    }
    
    .care-content {
        gap: 2rem;
    }
    
    .care-item {
        flex-direction: column !important;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    
    .care-visual {
        flex: none;
    }
    
    .care-icon {
        width: 100px;
        height: 100px;
    }
    
    .care-icon i {
        font-size: 2.5rem;
    }
    
    .care-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .care-text h3 {
        font-size: 1.5rem;
    }
    
    .care-text p {
        font-size: 1rem;
    }

    /* Reliable Movers Section - Mobile */
    .reliable-movers-section {
        padding: 3.5rem 0;
    }
    
    .reliable-movers-header {
        margin-bottom: 2.5rem;
    }
    
    .reliable-movers-header h2 {
        font-size: 2.2rem;
    }
    
    .image-container img {
        height: 350px;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .feature-item {
        padding: 1.25rem;
        gap: 0.75rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        flex: 0 0 50px;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .feature-content h3 {
        font-size: 1.1rem;
    }
    
    .feature-content p {
        font-size: 0.95rem;
    }
    
    .reliable-movers-cta {
        padding: 1.5rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    /* Moving Process - Small Mobile */
    .moving-process-grid { grid-template-columns: 1fr; }
    .process-card-header h3 { font-size: 1rem; }
    /* About Victoria - Small Mobile */
    .about-victoria-section { padding: 3.5rem 0; }
    .about-victoria-header h2 { font-size: 2rem; }
    .about-victoria-image img { height: 260px; }
    /* Force image first on small mobile */
    .about-victoria-image { grid-row: 1; }
    .about-victoria-content { grid-row: 2; }
}







/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: 60vh;
        padding: 2rem 0;
    }
    
    .hero-section .container {
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        margin-bottom: 1rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-image-placeholder {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
}

/* Print Styles */
@media print {
    .top-bar,
    .mobile-menu-toggle,
    .hero-buttons {
        display: none;
    }
    
    .hero-section {
        background: white;
        color: black;
    }
    
    .site-footer {
        background: white;
        color: black;
    }
}
