/*index mobile view*/
/* ===== TABLET (max 1024px) ===== */
@media (max-width: 1024px) {

    /* Why Section - 3 columns to 1 column */
    .cotainer-why-a {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .why-area-con {
        width: 100%;
        max-width: 600px;
        text-align: center;
    }

    /* Dumpster Cards - 2 columns */
    .card-container-dumsters {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px;
    }

    /* About + Form Section */
    .cont-gal-hom2 {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .cont-text-gal-hom {
        width: 100%;
        text-align: center;
    }

    .container-sliding-compar,
    .cont-form-index {
        width: 100%;
    }
    /* Skip link styles - make it accessible */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #0000FF;
  color: white;
  padding: 8px 16px;
  z-index: 10000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 0 0 4px 0;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid white;
  outline-offset: 2px;
}
    /* Contact Part */
    .contact-part {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }

    .line-ver-stra,
    .line-ver-double {
        display: none;
    }
}

/* ===== MOBILE (max 768px) ===== */
@media (max-width: 768px) {

    /* Video Section */
    .video-in-si {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    /* Title Sections */
    .tit-how-it h1 {
        font-size: 22px;
        text-align: center;
        padding: 10px;
    }

    .tit-how-it h2 {
        font-size: 16px;
        text-align: center;
        padding: 0 15px;
    }

    .tit-say-why h1 {
        font-size: 16px;
        text-align: center;
        padding: 5px 15px;
    }

    /* Why Section */
    .cotainer-why-a {
        flex-direction: column;
        padding: 15px;
    }

    .why-area-con {
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }

    .why-area-con img {
        width: 60px;
        height: 60px;
    }

    .why-area-con h1 {
        font-size: 16px;
    }

    .why-area-con p {
        font-size: 14px;
    }

    .why-contact a {
        font-size: 14px;
        padding: 12px 20px;
    }

    /* Dumpster Pricing Title */
    .title-dumpster-rent h1 {
        font-size: 18px;
        text-align: center;
        padding: 10px;
    }

    /* Dumpster Cards - 1 column */
    .card-container-dumsters {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 15px;
        gap: 20px;
    }

    .card-dumpsters-rental {
        width: 100%;
        max-width: 400px;
    }

    .dumpster-image-size img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        object-position: top;
    }

    /* More Days Button */
    .button-more-bot a {
        font-size: 12px;
        text-align: center;
        padding: 12px 10px;
        display: block;
    }

    /* About Section */
    .cont-gal-hom2 {
        flex-direction: column;
        padding: 15px;
        gap: 20px;
    }

    .cont-text-gal-hom {
        width: 100%;
        text-align: center;
    }

    .cont-text-gal-hom h1 {
        font-size: 18px;
    }

    .cont-text-gal-hom p {
        font-size: 14px;
    }

    .cont-form-index {
        width: 100%;
    }

    .cont-form-index input,
    .cont-form-index textarea {
        width: 100%;
        box-sizing: border-box;
    }

    .cont-inpu-form,
    .cont-inpu-form-fle {
        flex-direction: column;
    }

    /* About Title */
    .ab-title h1 {
        font-size: 18px;
        text-align: center;
        padding: 10px;
    }

    /* Contact Part */
    .contact-part {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 15px;
        gap: 10px;
    }

    .left-contact-text h1,
    .saying-contact-text h1 {
        font-size: 20px;
    }

    .left-contact-text h2,
    .saying-contact-text h2 {
        font-size: 22px;
    }

    .line-ver-stra,
    .line-ver-double {
        display: none;
    }

    .bott-contact-us a {
        font-size: 14px;
        padding: 10px 20px;
    }

    /* Reviews Section */
    .cont-reviews-box h1 {
        font-size: 20px;
        text-align: center;
    }

    .card-best-reviews {
        width: 280px !important;
    }

    /* Contract Section */
    .con-contra-le-w {
        flex-direction: column;
    }

    .cont-tw-input {
        flex-direction: column;
    }

    .inpu-contact-group,
    .inpu-contact-type {
        width: 100%;
    }
    /* Fix mobile menu display */
.mobile-menu-icon {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 1024px) {
    .mobile-menu-icon {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        padding: 10px;
        border: 4px solid var(--yellow-dark);
        border-radius: 5px;
        background: white;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1001;
    }
    
    .mobile-menu-icon div {
        width: 28px;
        height: 4px;
        background-color: var(--yellow-dark);
        border-radius: 10px;
    }
    
    .mobile-menu-icon .burger-mid {
        margin: 4px 0;
    }
    
    /* Hide desktop navigation on mobile */
    .cont-navbar > ul {
        display: none;
    }
    
    .cont-icons {
        display: none;
    }
    
    /* Make mobile slider visible when active */
    .mobile-slider {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100%;
        background-color: var(--darkgray);
        z-index: 1002;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }
    
    .mobile-slider.active {
        transform: translateX(0);
    }
    
    .filter {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 1000;
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .filter.active {
        visibility: visible;
        opacity: 1;
    }
    
    .mobile-slider-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background: var(--darkgray);
        border-bottom: 2px solid var(--yellow-dark);
    }
    
    .close-menu {
        cursor: pointer;
        font-size: 24px;
        font-weight: bold;
    }
    
    .mobile-navigation ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-navigation li a {
        display: block;
        padding: 15px 20px;
        color: white;
        text-decoration: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    
    .dropdown-content-nav-mo {
        display: none;
        background: rgba(0,0,0,0.3);
    }
    
    .dropdown-content-nav-mo a {
        padding-left: 40px !important;
    }
}

@media (max-width: 480px) {
    .mobile-slider {
        width: 85%;
    }
}

    .cont-in-dow,
    .cont-in-dow1,
    .cont-in-dow2 {
        width: 100%;
    }

    /* Google Maps */
    iframe {
        height: 250px;
    }
}
/*footer responsiveness */
/* ===== FOOTER RESPONSIVE ===== */

/* ===== TABLET (max 1024px) ===== */
@media (max-width: 1024px) {

    .footer {
        flex-direction: column;
        padding: 20px;
    }

    /* Logo + Contact/Address/Hours */
    .footer-log {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .footer-log img {
        width: 180px;
    }

    .cont-con-ho {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        width: 100%;
    }

    .footer-menu-con {
        width: 48%;
    }

    /* Privacy Footer */
    .priv-foot {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 15px;
    }
}

/* ===== MOBILE (max 768px) ===== */
@media (max-width: 768px) {

    .footer {
        flex-direction: column;
        padding: 15px;
        gap: 0;
    }

    /* Logo Section */
    .footer-log {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px 0;
        gap: 15px;
    }

    .footer-log img {
        width: 150px;
    }

    /* Contact / Address / Hours - stack vertically */
    .cont-con-ho {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 15px;
    }

    .footer-menu {
        width: 100%;
        text-align: center;
    }

    .footer-menu ul {
        padding: 0;
        list-style: none;
    }

    .footer-menu ul li {
        font-size: 13px;
        padding: 4px 0;
    }

    .footer-menu h1 {
        font-size: 16px;
    }

    /* Footer Menu Sections - full width, collapsible */
    .footer-menu-con {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    /* Show arrow icon on mobile */
    .arow-footer-mobile {
        display: inline-block !important;
        width: 14px;
        vertical-align: middle;
        margin-left: 6px;
    }

    /* Hide the lists by default on mobile */
    .show-mob-fo {
        display: none;
        padding: 10px 0;
    }

    /* Show when toggled */
    .show-mob-fo.active-fot-do {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    /* Cities list special - wrap when shown */
    .footer-menu-flex.active-fot-do {
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .footer-menu-flex li {
        font-size: 13px;
    }

    /* Dropdown cities */
    .dropdown-content {
        position: static !important;
        display: block;
        box-shadow: none;
        text-align: center;
    }

    /* Footer menu links */
    .footer-menu-con a {
        font-size: 14px;
        padding: 4px 0;
        display: block;
    }

    /* Hidden drop on mobile - show it */
    .hidden-drop {
        display: block !important;
    }

    /* Privacy Footer */
    .priv-foot {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        padding: 15px 10px;
    }

    .priv-text h1 {
        font-size: 11px;
    }

    .log img {
        width: 20px;
    }
}

/* ===== SMALL MOBILE (max 480px) ===== */
@media (max-width: 480px) {

    .footer-log img {
        width: 120px;
    }

    .footer-menu h1 {
        font-size: 14px;
    }

    .footer-menu ul li,
    .footer-menu-con a {
        font-size: 12px;
    }

    .priv-text h1 {
        font-size: 10px;
    }
}

/*footer responsiveness end*/

/* ===== SMALL MOBILE (max 480px) ===== */
@media (max-width: 480px) {

    .tit-how-it h1 {
        font-size: 18px;
    }

    .tit-say-why h1 {
        font-size: 14px;
    }

    .card-dumpsters-rental {
        max-width: 100%;
    }

    .dumpster-image-size img {
        height: 180px;
    }

    .cont-reviews-box h1 {
        font-size: 17px;
    }

    .card-best-reviews {
        width: 240px !important;
    }

    .button-more-bot a {
        font-size: 11px;
    }
}



/*mobile view*/
@media screen and (max-width:1860px) {
	.cont-navbar ul li a {
		font-size: 20px;
	}
	.cont-logo img {
	    width: 315px;
	}
	.cont-logo {
		width: 18%;
	}
}
@media screen and (max-width:1750px) {
	.center2 {
		right: 130px;
	}
}
@media screen and (max-width:1720px) {
	.body-dumpsters {
		padding: 0px 155px;
	}
}
@media screen and (max-width:1580px) {
	.cont-navbar ul {
        margin-left: 145px;
    }
    .center2 {
        right: 50px;
    }
}
@media screen and (max-width:1600px) {
	.cont-bot-about {
		width: 100%;
	}
}
@media screen and (max-width:1555px) {
    .cont-logo img {
        width: 275px;
    }
    .cont-navbar ul li a {
        font-size: 18px;
    }
}
@media screen and (max-width:1550px) {
	.body-dumpsters {
		padding: 0px 65px;
	}
}
@media screen and (max-width:1500px) {
    .cont-navbar ul {
        margin-left: 100px;
    }
    .cont-logo img {
        width: 285px;
    }
    .cont-logo {
    	width: 22%;
    }
    .cont-navbar ul li a img {
	    width: 14px;
	    margin-left: 5px;
	}
}
@media screen and (max-width:1470px) {
    .cont-logo {
        width: 20%;
    }
}
@media screen and (max-width:1425px) {
    .cont-navbar ul li a {
        font-size: 17px;
    }
    .cont-navbar ul {
        margin-left: 95px;
    }
}
@media screen and (max-width:1450px) {
        .cont-navbar ul li a {
        font-size: 17px;
    }
    .cont-logo img {
        width: 240px;
    }
}
@media screen and (max-width:1400px) {
    .cont-logo {
        width: 18%;
    }
    .cont-logo img {
        width: 210px;
    }
    .cont-navbar ul li a {
        font-size: 16px;
    }
}
@media screen and (max-width:1340px) {
	.body-dumpsters {
		padding: 0px 25px;
	}
}
@media screen and (max-width:1350px) {
	.card-dumpsters-rental a {
		width: 100%;
		text-align: center;
	}
}
@media screen and (max-width:1300px) {
    .cont-logo img {
        width: 190px;
    }
    .cont-navbar ul li a {
        font-size: 15px;
    }
    .cont-navbar ul li a {
    	padding: 5px 5px;
    }
    .cont-bot-about2 {
    	width: 100%;
    }
    .cont-text-about-pa2 {
    padding: 20px;
    width: 96%;
}
}
@media screen and (max-width:1270px) {
	.card-dumpsters-rental {
		width: 310px;
	}
	.dumpster-image-size {
		height: 180px;
	}
	.card-dumpsters-rental a {
		font-size: 15px;
	}
	.button-more-bot a {
		font-size: 15px;
	}
}
@media screen and (max-width:1255px) {
	.content12 {
		height: 420px !important;
	}
	.show-cont {
    width: 100% !important;
	}
}
@media screen and (max-width:1170px) {
	.why-area-con h1 {
		font-size: 23px;
	}
}
@media screen and (max-width:1145px) {
	.cont-car-how-wi-lef {
		width: 42%;
		margin-right: 53%;
	}
	.cont-car-how-wi-rig {
		width: 42%;
		margin-left: 53%;
	}
}
@media screen and (max-width:1135px) {
	.cotainer-why-a {
		flex-wrap: wrap;
	}
}
@media screen and (max-width:1050px) {
	.card-dumpsters-rental h1 {
		font-size: 28px;
		width: 45%;
	}
}
@media screen and (max-width:1000px) {
	.card-dumpsters-rental {
		width: 100%;
	}
	.tit-say-why {
		flex-direction: column;
		align-items: center;
	}
	.tit-say-why h1 {
		margin: 10px 0px;
	}
	.dumpster-image-size {
		height: 100%;
	}
	.button-more-bot a {
		max-width: 100%;
	}
	.contact-part {
		height: 100%;
	}
	.left-contact-text {
		padding: 5px;
		justify-content: center;
		align-items: center;
	}
	.contact-part {
		flex-direction: column;
	}
	.saying-contact-text {
		padding: 5px;
		justify-content: center;
		align-items: center;
	}
	.bott-contact-us {
		margin-left: 0px;
		margin-top: 20px;
	}
	.left-contact-text h2 {
		text-align: center;
	}
	.cont-bot-about {
		flex-direction: column;
	}
	.button-about-u,.cont-text-about-pa h1, .cont-text-about-pa h2 {
		text-align: center;
	}
	.cont-bot-about img {
    	width: 70%;
    	margin-bottom: 20px;
	}
	.cont-text-about-pa1 {
		width: 50%;
	}
	.cont-text-about-pa {
		margin-left: 0px;
	}
}
@media screen and (max-width:1050px) {
	.cont-car-how-wi-lef {
		width: 35%;
	}
	.cont-car-how-wi-rig {
		width: 35%;
	}
}
@media screen and (max-width:850px) {
	.card-dumpster-rentals img {
    width: 50%;
	}
}
@media screen and (max-width:700px) {
	.card-dumpster-rentals {
		flex-direction: column;
	}
	.rents-description {
    width: 95%;
	}
	.card-dumpster-rentals img {
        width: 90%;
    }
    .cont-staff-pa-te {
    	flex-direction: column;
    }
    .cont-text-about-pa1 {
    	width: 100%;
    	margin: 10px 0px;
    }
}
@media screen and (max-width:600px) {
	.container-contact-new {
		width: 100%;
	}
}
@media screen and (max-width:500px) {
	.title-dumpster-rent h1 {
		font-size: 37px;
	}
	.cont-car-how-wi-lef {
		width: 80%;
		margin-left: 18%;
		margin-right: 0;
	}
	.cont-car-how-wi-rig {
		width: 80%;
		margin-left: 18%;
	}
	.container-how-w-line, .dis-cont-left {
		align-items: flex-start;
	}
	.container-how-w-line::before {
		margin: 0 30px;
	}
	.dis-cont-left::before {
		margin: 20px 8px;
	}
	.dis-cont-left {
		margin: 20px 0px;
	}
	.arrow-l {
		clip-path: polygon(100% 0, 100% 100%, 0 50%) !important;
		right: 0;
		left: -15px !important;
	}
}
@media screen and (max-width:455px) {
    .content12 {
        height: 470px !important;
    }
}
@media screen and (max-width:400px) {
	.icon-get-int {
		flex-direction: column;
		align-items: center;
	}
	.icon {
		width: 100%;
	}
	.contact-info {
		width: 100%;
	}
	.icon-get-int {
		width: 100%;
	}
    .icon a {
        font-size: 15px;
    }
}
@media screen and (max-width:380px) {
    .content12 {
        height: 530px !important;
    }
}
@media screen and (max-width:390px) {
	.cont-car-how-wi-lef {
		width: 68%;
		margin-left: 25%;
	}
	.cont-car-how-wi-rig {
		margin-left: 25%;
		width: 68%;
	}
}