@media (min-width: 1650px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1290px !important;
    }
}
@media (max-width: 1720px) {
    .testimonials-col-main {
        padding: 100px 70px;
    }
    .section-nine {
        overflow: hidden;
    }
}
@media (max-width: 1600px) {
    .menu {
        gap: 40px;
    }
    .menu li span {
        position: absolute;
        top: 10px;
        right: -22px;
    }
    .testimonials-col-main {
        padding: 100px 30px;
    }
}
@media (max-width: 1500px) {
    .nav-actions .call {
        display: none;
    }
    .img-overlay {
        padding: 30px;
    }
}
@media (max-width:1399px) {
    .hero-slider {
        width: 100%;
        height: 900px;
    }
    .lets-us-do {
        font-size: 60px;
        line-height: 70px;
    }
    .home-img-clening {
        position: absolute;
        top: 10px;
    }
    .section-two,
    .section-three,
    .section-four,
    .section-five,
    .section-seven,
    .section-eight,
    .blog-section,
    .about-section-three {
        padding: 70px 0;
    }
    .testimonials-col-main {
        padding: 70px 30px;
    }
    .section-six {
        padding-bottom: 70px;
    }
    .contact-form-section {
        padding: 70px 0 220px;
    }
    .map-iframe {
        margin-top: 70px;
    }
    .calculator-box-main {
        margin-top: 70px;
        margin-bottom: -200px;
    }
    .get-quote-calculator {
        margin-bottom: 0;
    }
    .how-work-step-box {
        display: grid;
        grid-template-columns: 250px auto 250px auto 250px;
        gap: 20px;
    }
    .man-cleaning-home {
        max-width: 40%;
        object-position: left;
    }
    .addees {
        font-size: 20px;
        line-height: 30px;
    }
    .subscribe-section {
        margin-bottom: 70px;
    }
    .projectSlider2 {
        margin-top: 70px;
    }
}
@media (max-width: 1260px) {
    .header-container {
        gap: 40px;
    }
}
/* PC 버전 관리자 링크 스타일 */
footer a[href="admin-login.html"] {
    color: #333 !important;
    font-size: 9px !important;
    text-decoration: none !important;
    display: block !important;
    text-align: center !important;
    margin-top: 5px !important;
    opacity: 0.6 !important;
    transition: opacity 0.3s !important;
}

footer a[href="admin-login.html"]:hover {
    opacity: 0.6 !important;
}

/* PC 버전에서 모바일 네비게이션 숨기기 (기본값) */
@media (min-width: 1231px) {
    .mobile-menu-toggle,
    .mobile-overlay,
    .mobile-nav {
        display: none !important;
        visibility: hidden !important;
    }
}

@media (max-width: 1230px) {
    /* 모바일에서 가로 스크롤 방지 - 퀵메뉴·햄버거 한 화면에 보이게 */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw;
    }
    .header, .header-container {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .menu li span {
        display: none;
    }
    
    /* 모바일에서 관리자 링크 숨기기 */
    footer a[href="admin-login.html"] {
        display: none !important;
    }
    
    /* 모바일 네비게이션 바 스타일 */
    /* 햄버거 메뉴 버튼 */
    .mobile-menu-toggle {
        display: none;
        position: fixed;
        top: 20px;
        right: 20px !important;
        left: auto !important;
        z-index: 9999;
        background: rgba(0, 0, 0, 0.8);
        border: none;
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: white;
        margin: 5px 0;
        transition: all 0.3s ease;
    }
    
    /* 햄버거 메뉴 활성화 시 X 모양 */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hamburger img {
        display: none !important;
    }
    
    .logo img {
        width: 150px;
    }
    
    /* PC 네비게이션 숨기기 (모바일에서만) */
    .header-container .nav {
        display: none !important;
    }
    
    /* 모바일 네비게이션 메뉴 */
    .mobile-nav {
        display: none !important;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, #1a0a2e 0%, #0a0a0a 100%);
        z-index: 9998;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        pointer-events: none !important;
        visibility: hidden !important;
    }
    
    .mobile-nav.active {
        display: block !important;
        right: 0;
        pointer-events: auto !important;
        visibility: visible !important;
    }
    
    /* 모바일 메뉴 오버레이 - 비활성화 시 완전히 제거 */
    .mobile-overlay:not(.active) {
        display: none !important;
        position: absolute !important;
        top: -9999px !important;
        left: -9999px !important;
        width: 1px !important;
        height: 1px !important;
        background: transparent !important;
        z-index: -99999 !important;
        opacity: 0 !important;
        pointer-events: none !important;
        visibility: hidden !important;
        overflow: hidden !important;
    }
    
    .mobile-overlay.active {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9997;
        opacity: 1;
        pointer-events: auto !important;
        visibility: visible !important;
    }
    
    /* 기존 overlay 클래스 모바일에서 완전히 비활성화 */
    .overlay:not(.active) {
        pointer-events: none !important;
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        z-index: -9999 !important;
        top: -9999px !important;
        left: -9999px !important;
    }
    
    /* 비활성화된 오버레이는 완전히 제거 */
    .mobile-overlay:not(.active),
    .overlay:not(.active) {
        pointer-events: none !important;
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        z-index: -9999 !important;
        top: -9999px !important;
        left: -9999px !important;
    }
    
    .mobile-nav:not(.active) {
        pointer-events: none !important;
    }
    
    /* 모든 클릭 가능한 요소 보장 */
    button:not(.mobile-nav button),
    a:not(.mobile-nav a),
    input,
    select,
    textarea,
    [onclick],
    [role="button"] {
        pointer-events: auto !important;
        position: relative;
    }
    
    /* 퀵메뉴는 별도로 z-index 설정 */
    .quick-menu {
        pointer-events: auto !important;
        z-index: 9990 !important;
    }
    
    .quick-menu > * {
        pointer-events: auto !important;
    }
    
    /* 모바일 메뉴 토글 버튼은 항상 클릭 가능 */
    .mobile-menu-toggle {
        pointer-events: auto !important;
        z-index: 10001 !important;
        right: 20px !important;
        left: auto !important;
        position: fixed !important;
    }
    
    /* 모바일 메뉴 리스트 */
    .mobile-nav ul {
        list-style: none;
        padding: 80px 0 20px 0;
        margin: 0;
    }
    
    .mobile-nav ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-nav ul li a {
        display: block;
        padding: 15px 20px;
        color: white;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .mobile-nav ul li a:hover,
    .mobile-nav ul li a.active {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 30px;
    }
    
    /* 모바일 로고 */
    .mobile-nav .mobile-logo {
        position: absolute;
        top: 20px;
        left: 20px;
        width: 120px;
        z-index: 10;
        pointer-events: auto;
        cursor: pointer;
    }
    
    .mobile-nav .mobile-logo img {
        width: 100%;
        height: auto;
        pointer-events: none;
    }
    
    /* 드롭다운 스타일 */
    .mobile-nav ul li.dropdown > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .mobile-nav ul li.dropdown > a::after {
        content: '+';
        font-size: 20px;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.7);
        transition: all 0.3s ease;
        margin-left: 10px;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 4px;
        flex-shrink: 0;
    }
    
    .mobile-nav ul li.dropdown.open > a::after {
        content: '−';
        color: #00C2FF;
        border-color: #00C2FF;
        background-color: rgba(0, 194, 255, 0.2);
    }
    
    .mobile-nav .submenu {
        position: static !important;
        top: auto !important;
        left: auto !important;
        background: rgba(0, 0, 0, 0.2) !important;
        box-shadow: none !important;
        display: block !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        padding: 0 !important;
        border-top: none !important;
        border-radius: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-nav .dropdown.open .submenu {
        max-height: 1000px !important;
        display: block !important;
    }
    
    .mobile-nav .submenu li {
        padding: 0 !important;
        margin: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        display: block !important;
    }
    
    .mobile-nav .submenu li:last-child {
        border-bottom: none !important;
    }
    
    .mobile-nav .submenu li a {
        padding: 12px 20px 12px 40px !important;
        font-size: 14px !important;
        color: rgba(255, 255, 255, 0.8) !important;
        transition: all 0.3s ease !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-nav .submenu li a:hover,
    .mobile-nav .submenu li a:active {
        background: rgba(255, 255, 255, 0.1);
        color: #00C2FF;
        padding-left: 50px;
    }
    
    /* 스크롤바 스타일 (모바일 메뉴) */
    .mobile-nav::-webkit-scrollbar {
        width: 5px;
    }
    
    .mobile-nav::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .mobile-nav::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 5px;
    }
    
    .mobile-nav::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }
    
    /* 모바일 예약현황 섹션 스타일 */
    .col-xxl-6.col-xl-6.col-lg-6 > div[style*="color: #fff;"] {
        margin-top: 40px !important;
    }
    
    /* 예약현황 테이블 모바일 최적화 */
    .col-xxl-6.col-xl-6.col-lg-6 table th {
        font-size: 11px !important;
        padding: 10px 5px !important;
        white-space: nowrap !important;
    }
    
    .col-xxl-6.col-xl-6.col-lg-6 table td {
        font-size: 11px !important;
        padding: 10px 5px !important;
        white-space: nowrap !important;
    }
    
    /* 접수현황 버튼/스팬 모바일 최적화 */
    .col-xxl-6.col-xl-6.col-lg-6 table td span[style*="background: #00C2FF"],
    .col-xxl-6.col-xl-6.col-lg-6 table td span[style*="background: #666"] {
        font-size: 10px !important;
        padding: 3px 8px !important;
        white-space: nowrap !important;
        display: inline-block !important;
    }
    
    /* 예약현황 제목 모바일 최적화 */
    .col-xxl-6.col-xl-6.col-lg-6 h3[style*="font-size: 32px"] {
        font-size: 22px !important;
        margin-top: 30px !important;
    }
    
    .col-xxl-6.col-xl-6.col-lg-6 p[style*="font-size: 18px"] {
        font-size: 13px !important;
    }
    
    /* 퀵메뉴 모바일 최적화 */
    .quick-menu {
        right: 15px !important;
        bottom: 20px !important;
        gap: 8px !important;
        z-index: 9990 !important;
        pointer-events: auto !important;
    }
    
    .quick-menu > a,
    .quick-menu > button {
        width: 50px !important;
        height: 50px !important;
        padding: 6px !important;
        pointer-events: auto !important;
    }
    
    .quick-menu > a svg {
        width: 20px !important;
        height: 20px !important;
        margin-bottom: 2px !important;
        pointer-events: none !important;
    }
    
    .quick-menu > a span {
        font-size: 9px !important;
        line-height: 1.1 !important;
        pointer-events: none !important;
    }
    
    .quick-menu > a img {
        padding: 6px !important;
        pointer-events: none !important;
    }
    
    /* 네이버블로그와 카카오톡 버튼 - 박스 크기는 고정, 이미지만 크게 */
    .quick-menu > a.quick-menu-blog,
    .quick-menu > a.quick-menu-kakao {
        width: 50px !important;
        height: 50px !important;
    }
    
    .quick-menu > a.quick-menu-blog img,
    .quick-menu > a.quick-menu-kakao img {
        width: 120% !important;
        height: 120% !important;
        object-fit: contain !important;
        padding: 0 !important;
        transform: scale(1.15) !important;
    }
    
    .quick-menu > button.bottom-top-button {
        width: 40px !important;
        height: 40px !important;
        font-size: 24px !important;
        pointer-events: auto !important;
    }
}

/* 반응형 - 모바일에서만 표시 */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block !important;
        right: 12px !important;
        left: auto !important;
        position: fixed !important;
    }
    
    .quick-menu {
        right: 12px !important;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .mobile-overlay {
        display: block;
    }
    
    /* 데스크톱 네비게이션 숨기기 */
    .desktop-nav {
        display: none !important;
    }
}

/* 태블릿 */
@media (min-width: 769px) and (max-width: 1024px) {
    .mobile-nav {
        max-width: 350px;
    }
}

/* 태블릿 */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav {
        max-width: 350px;
    }
    .nav-actions .call {
        display: flex;
    }
    .nav-actions {
        flex-direction: column-reverse;
        margin-top: 30px;
        gap: 15px;
        width: 100%;
        padding: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .get-quote-btn {
        width: 100%;
        text-align: center;
    }
    .nav-actions .call {
        width: 100%;
    }
    .home-img-clening {
        display: none;
    }
    .main-swiper-row {
        justify-content: center;
        text-align: center;
    }
    .clearfix-space {
        margin-top: 80px;
    }
    .needs-text,
    .lets-us-do,
    .residents {
        text-align: center;
    }
    .cutomer-img-main-text {
        position: unset;
        width: fit-content;
        margin: 30px auto 0 auto;
    }
    .hero-slider {
        width: 100%;
        height: 800px;
    }
    .residents {
        padding-left: 0;
        margin-bottom: 40px;
        border-left: none;
    }
    .sec-text {
        font-size: 40px;
        line-height: 50px;
        padding-bottom: 20px;
    }
}
@media (max-width: 1199px) {
    .about-grid-box-main {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .about-sec-main {
        margin-top: 40px;
        gap: 20px;
    }
    .section-main-text-flex .ornare {
        max-width: 400px;
    }
    .sadas {
        left: 80px;
    }
    .how-work-step-box {
        display: grid;
        grid-template-columns: 210px auto 210px auto 210px;
        gap: 20px;
    }
    .testimonialSlider-swiper-slide {
        padding: 40px;
    }
    .testimonialSlider {
        max-width: 540px;
        margin-left: 0;
        margin-top: 60px;
        border-radius: 20px;
    }
    .adres-main-home {
        display: flex;
        gap: 0px;
        flex-direction: column;
        align-items: flex-start;
    }
    .call-support-text {
        padding-bottom: 5px;
        margin-top: 20px;
    }
    .addees {
        font-size: 20px !important;
        line-height: 30px !important;
    }
    .tel-num {
        font-size: 25px;
        line-height: 35px;
    }
    .get-toch {
        font-size: 38px;
    }
    .subscribe-section {
        flex-direction: column;
        padding: 40px;
        margin-bottom: 50px;
    }
    .updat {
        text-align: center;
    }
    .media-logo-call-footer .call-detl {
        padding: 10px 25px 10px 10px;
    }
    .heroSection {
        padding: 180px 0 80px;
    }
    .team-contact-1 {
        padding: 20px;
    }
    .pricing-row {
        gap: 50px 0;
    }
    .clients-main {
        gap: 25px;
    }
    .all-service-text {
        font-size: 30px;
        line-height: 40px;
        padding: 25px;
    }
    .roofing-services-list-main {
        padding: 25px;
    }
    .card-adds-main {
        margin: 30px 0;
    }
    .adds-details-main h3 {
        font-size: 30px;
        line-height: 40px;
    }
    .adds-details-main .adds-logo-wrap {
        min-height: 40px;
        margin-top: -18px;
        margin-bottom: 36px;
    }
    .adds-details-main .adds-logo {
        max-height: 40px;
    }
    .overlay-title {
        padding: 0 20px 30px;
    }
}
@media (max-width:991px) {
    .header {
        position: fixed;
        top: 15px;
        width: calc(100% - 30px);
    }
    .hero-slider {
        width: 100%;
        height: 740px;
    }
    .about-img2,
    .about-img3 {
        display: none;
    }
    .cap-text,
    .sec-text,
    .sec-sub-text {
        text-align: center;
    }
    .about-sec-main {
        justify-content: center;
    }
    .sub-img-main {
        margin-top: 50px;
    }
    .section-two,
    .section-three,
    .section-four,
    .section-five,
    .section-seven,
    .section-eight,
    .blog-section,
    .about-section-three {
        padding: 50px 0;
    }
    .section-six {
        padding-bottom: 50px;
    }
    .contact-form-section {
        padding: 50px 0 190px;
    }
    .map-iframe {
        margin-top: 50px;
    }
    .section-main-text-flex {
        gap: 15px;
        flex-direction: column;
    }
    .section-main-text-flex .ornare {
        max-width: 100%;
    }
    .why-choose-row {
        gap: 50px;
    }
    .sadas {
        left: 150px;
    }
    .how-to-work-arrow {
        display: none;
    }
    .how-work-step-box {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        align-items: start;
    }
    .calculator-box-main {
        padding: 50px;
        margin-top: 50px;
    }
    .calcult-from-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .exper-team-row-home {
        gap: 30px 0;
    }
    .team-circle-main {
        margin: 0 auto;
    }
    .testimonial-section-main {
        display: flex;
        align-items: stretch;
        flex-direction: column;
    }
    .man-cleaning-home {
        display: none;
    }
    .tryse {
        margin: 0 auto;
    }
    .testimonialSlider {
        width: 100%;
        max-width: 100%;
    }
    .testimonials-col-main {
        padding: 50px 30px;
    }
    .home-blog-row {
        gap: 30px 0;
    }
    .adres-main-home {
        display: flex;
        gap: 20px;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
    .call-support-text {
        text-align: center;
    }
    .tel-num {
        display: block;
        text-align: center;
    }
    .form-sec-row {
        gap: 50px 0;
    }
    .media-logo-call-footer {
        gap: 30px 80px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .copyrights-main {
        padding-bottom: 30px;
        flex-direction: column-reverse;
    }
    .footer-row-quick {
        gap: 30px 0;
    }
    .working-hours {
        padding-bottom: 10px;
    }
    .media-logo-call-footer {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .img-header-text {
        font-size: 45px;
        line-height: 55px;
    }
    .breadcrumb-group {
        margin-top: 15px;
    }
    .heroSection {
        padding: 150px 0 60px;
    }
    .personal-main h2 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 15px;
    }
    .pricing-row {
        gap: 30px 0;
    }
    .clients-main {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 30px;
    }
    .all-services-row {
        gap: 30px;
        justify-content: center;
    }
    .projectSlider2 {
        margin-top: 50px;
    }
    .project-two-row {
        gap: 30px 0;
    }
    .diamond-nextbtn-head {
        margin-top: 30px;
    }
    .diamond-next-btn {
        margin: 15px 0;
    }
    .all-services-row2 {
        flex-direction: column-reverse;
        align-items: center
    }
    .blog-two-grid-row {
        gap: 30px;
        justify-content: center;
    }
    .single-services-black-box {
        margin-bottom: 20px;
        margin-top: 30px;
    }
    .blog-two-grid-row2 {
        flex-direction: column-reverse;
        align-items: center;
    }
}
@media (max-width:767px) {
    .cap-text {
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 1.2px;
    }
    .lets-us-do {
        font-size: 50px;
        line-height: 64px;
    }
    .residents {
        margin-bottom: 28px;
        font-size: 18px;
        line-height: 28px;
    }
    .hero-slider {
        width: 100%;
        height: 650px;
    }
    .clearfix-space {
        margin-top: 60px;
    }
    .sec-text {
        font-size: 35px;
        line-height: 45px;
        padding-bottom: 15px;
    }
    .header {
        padding: 6px 10px;
    }
    .sub-img-main {
        margin-top: 30px;
    }
    .services-slider {
        margin-right: 0 !important;
        margin-left: 0 !important;
        margin-top: 30px;
        padding: 0 !important;
        overflow: visible !important;
        display: block !important;
    }
    .services-slider .swiper-wrapper {
        display: flex !important;
        flex-direction: column !important;
        transform: none !important;
        width: 100% !important;
        position: relative !important;
        height: auto !important;
    }
    .cleaning-card {
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        margin-bottom: 30px !important;
        margin-right: 0 !important;
    }
    .services-slider .swiper-slide {
        width: 100% !important;
        max-width: 100% !important;
        flex-shrink: 0 !important;
        margin-right: 0 !important;
        height: auto !important;
        position: relative !important;
        transform: none !important;
    }
    .sadas {
        left: 110px;
    }
    .how-work-step-box {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .calcult-from-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .calculator-box-main {
        padding: 30px 20px;
        margin-top: 30px;
    }
    .send-info {
        max-width: 100%;
    }
    .get-cost-estimate {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
        flex-direction: column-reverse;
        text-align: center;
    }
    .projectSlider,
    .how-work-step-box {
        margin-top: 30px;
    }
    .exper-team-row-home {
        margin-top: 30px;
    }
    .testimonialSlider {
        margin-top: 30px;
    }
    .home-blog-row {
        margin-top: 30px;
    }
    .form-sec-row {
        gap: 30px 0;
    }
    .contact-form-section {
        padding: 50px 0 170px;
    }
    .subscribe-input-main input {
        width: 100%;
        padding: 20px 20px;
        border-radius: 10px;
    }
    .subscribe-input-main {
        padding: 0;
        width: 100%;
        max-width: 570px;
        border-radius: 0;
        flex-direction: column;
        gap: 20px;
        flex-direction: column;
        background: transparent;
    }
    .copyrights-main {
        padding-bottom: 20px;
    }
    .quicklinks-main {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }
    .call-detl .img-main-call {
        width: 70px;
        height: 70px;
    }
    .contac-form-main {
        padding: 30px 20px;
    }
    .team-single-box {
        margin-bottom: 20px;
    }
    .personal-main h2 {
        margin-bottom: 10px;
    }
    .pricing-row {
        gap: 30px 0;
        margin-top: 30px;
    }
    .pricing-card {
        padding: 30px;
    }
    .clients-main {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-top: 20px;
    }
    #accordionExample {
        margin-top: 30px;
    }
    .services-page-row {
        gap: 30px 0;
    }
    .roofing-services-list-main {
        padding: 20px;
    }
    .all-service-text {
        padding: 20px;
    }
    .layers-img1 {
        margin: 20px 0;
    }
    .ourServicesPrcoes {
        font-size: 28px;
        line-height: 38px;
        padding-top: 20px;
        padding-bottom: 15px;
        text-align: center;
    }
    .your-message-input {
        margin-top: 20px;
    }
    .send-inquiry-form {
        padding: 20px;
    }
    .project-info-main {
        padding: 15px 0;
    }
    .project-info-main p:nth-child(1),
    .project-info-main p:nth-child(2) {
        font-size: 18px;
        line-height: 28px;
    }
    .project-info-text {
        font-size: 29px;
        line-height: 38px;
        margin-bottom: 15px;
    }
    .qoute-box {
        padding: 25px;
    }
}
@media (max-width:575px) {
    .lets-us-do {
        font-size: 40px;
        line-height: 50px;
    }
    .hero-slider {
        width: 100%;
        height: 530px;
    }
    .clearfix-space {
        margin-top: 70px;
    }
    .cutomer-img-main-text {
        display: none;
    }
    .about-sec-main {
        flex-direction: column;
        margin-top: 30px;
    }
    .section-two,
    .section-three,
    .section-four,
    .section-five,
    .section-seven,
    .section-eight,
    .blog-section,
    .about-section-three {
        padding: 30px 0;
    }
    .section-six {
        padding-bottom: 30px;
    }
    .projectSlider2,
    .map-iframe {
        margin-top: 30px;
    }
    .sec-text {
        font-size: 30px;
        line-height: 39px;
    }
    .sadas {
        display: none;
    }
    .services-name {
        font-size: 22px;
    }
    .why-choose-img3 {
        bottom: 0px;
        display: none;
    }
    .why-choose-row {
        gap: 30px;
    }
    .how-work-step-box {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .how-work-step-box .how-work-step-box-sub h3 {
        font-size: 22px;
        line-height: 30px;
        padding-bottom: 6px;
    }
    .send-info {
        max-width: 100%;
    }
    .project-button-next,
    .project-button-prev,
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
    .team-circle-link h3 {
        margin-top: 20px;
    }
    .testimonials-col-main {
        padding: 30px 12px;
    }
    .testimonialSlider-swiper-slide {
        padding: 30px;
    }
    .exper-team-row-home {
        gap: 20px 0;
    }
    .cellent {
        font-size: 20px;
        line-height: 32px;
        padding-top: 10px;
        padding-bottom: 25px;
    }
    .contact-form-section {
        padding: 30px 0 160px;
    }
    .addees {
        font-size: 18px !important;
        line-height: 30px !important;
    }
    .adres-main-home {
        display: flex;
        gap: 0;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    .subscribe-section {
        flex-direction: column;
        padding: 30px;
        margin-bottom: 30px;
    }
    .img-header-text {
        font-size: 40px;
        line-height: 50px;
    }
    button.bottom-top-button {
        right: 18px;
        bottom: 14px;
        width: 40px;
        height: 40px;
        font-size: 25px;
    }
    .breadcrumb-group a {
        font-size: 16px;
        line-height: 26px;
    }
    .breadcrumb-group {
        margin-top: 10px;
    }
    .pricing-card h2,
    .price-box {
        margin-bottom: 0;
    }
    .clients-main {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        justify-items: center;
    }
    .testimonial-page-row {
        gap: 20px 0;
    }
    .fusce {
        text-align: justify;
    }
    .layers-img {
        width: 100%;
    }
}
@media (max-width:425px) {
    /* 모바일 네비게이션 추가 최적화 */
    .nav {
        width: 85%;
        max-width: 280px;
    }
    /* 모바일 햄버거 버튼 오른쪽 고정 */
    .mobile-menu-toggle {
        right: 15px !important;
        left: auto !important;
        top: 15px !important;
    }
    .hamburger {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    .hamburger::before,
    .hamburger::after {
        width: 22px;
        height: 2px;
    }
    .hamburger .menu-icon {
        width: 22px;
        height: 2px;
    }
    .mobile-logo {
        width: 100px;
        top: 15px;
        left: 15px;
    }
    .hamburger {
        width: 52px;
        height: 52px;
    }
    .hamburger img {
        width: 24px;
    }
    .menu li a {
        padding: 16px 15px;
        font-size: 16px;
        min-height: 52px;
    }
    .submenu li a {
        padding: 14px 20px;
        font-size: 14px;
        min-height: 44px;
    }
    .mobile-logo img {
        max-height: 45px;
    }
    
    /* 푸터 모바일 추가 최적화 (작은 화면) */
    footer > div:last-child {
        padding: 30px 15px !important;
    }
    
    footer > div:last-child > div {
        gap: 25px !important;
    }
    
    footer > div:last-child > div > div:first-child img {
        max-width: 120px !important;
    }
    
    footer > div:last-child > div > div:nth-child(2) p {
        font-size: 13px !important;
        margin-bottom: 8px !important;
    }
    
    /* 작은 모바일 화면에서 네이버블로그와 카카오톡 버튼 - 박스 크기는 고정, 이미지만 크게 */
    .quick-menu > a.quick-menu-blog,
    .quick-menu > a.quick-menu-kakao {
        width: 50px !important;
        height: 50px !important;
    }
    
    .quick-menu > a.quick-menu-blog img,
    .quick-menu > a.quick-menu-kakao img {
        width: 120% !important;
        height: 120% !important;
        object-fit: contain !important;
        padding: 0 !important;
        transform: scale(1.15) !important;
    }
    
    footer > div:last-child > div > div:last-child img {
        max-width: 100px !important;
    }
    
    footer > div:last-child > div > div:last-child h2 {
        font-size: 16px !important;
    }
    
    footer > div:last-child > div > div:last-child p {
        font-size: 18px !important;
    }
    
    footer > div:first-child > div > div > div a {
        font-size: 11px !important;
        gap: 10px !important;
    }
    .card-containe {
        padding: 20px;
    }
    .check-box-main-sub h2 {
        font-size: 22px;
        line-height: 32px;
        padding-bottom: 3px;
    }
    .check-box-main-sub {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-top: 20px;
        flex-direction: column;
        text-align: center;
    }
    .blog-containe-main {
        padding: 20px;
    }
    .blog-containe-main h2 {
        font-size: 22px;
        line-height: 28px;
    }
    .call-detl .img-main-call {
        display: none;
    }
    .media-logo-call-footer .call-detl {
        padding: 10px 10px 10px 10px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .call-detl a {
        font-size: 25px;
        line-height: 30px;
    }
    .footer-med-icons-main {
        gap: 10px;
    }
}

/* 푸터 모바일 최적화 */
@media (max-width: 768px) {
    /* 푸터 메인 콘텐츠 영역 */
    footer > div:last-child {
        padding: 40px 15px !important;
    }
    
    footer > div:last-child > div {
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
        text-align: center !important;
    }
    
    /* 로고 영역 */
    footer > div:last-child > div > div:first-child {
        margin: 0 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }
    
    footer > div:last-child > div > div:first-child img {
        max-width: 150px !important;
    }
    
    /* 회사 정보 영역 */
    footer > div:last-child > div > div:nth-child(2) {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }
    
    footer > div:last-child > div > div:nth-child(2) p {
        white-space: normal !important;
        margin-bottom: 10px !important;
        line-height: 1.6 !important;
        font-size: 14px !important;
        word-break: keep-all !important;
    }
    
    /* 은행 정보 영역 */
    footer > div:last-child > div > div:last-child {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    footer > div:last-child > div > div:last-child img {
        margin: 0 auto 10px auto !important;
    }
    
    footer > div:last-child > div > div:last-child h2,
    footer > div:last-child > div > div:last-child p {
        text-align: center !important;
    }
    
    /* 푸터 상단 링크 모바일 최적화 */
    footer > div:first-child {
        padding: 15px 0 !important;
    }
    
    footer > div:first-child > div > div {
        margin: 0 !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    
    footer > div:first-child > div > div > div {
        margin: 0 !important;
        gap: 15px !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    
    footer > div:first-child > div > div > div a {
        font-size: 12px !important;
    }
    .sec-text {
        font-size: 28px;
        line-height: 39px;
    }
    .testimonial-page .cellent {
        font-size: 17px;
        line-height: 28px;
        padding-bottom: 20px;
    }
}
@media (max-width:400px) {
    .lets-us-do {
        font-size: 35px;
        line-height: 45px;
    }
    .services-slider {
        margin-right: 0;
    }
    .cleaning-card {
        min-width: 100% !important;
        max-width: 100% !important;
    }
    .video2 {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 200px;
    }
}