/* =============================================
   RESET & BASE STYLES
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Rethink Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* =============================================
   MOBILE FIRST - BASE STYLES (320px+)
   ============================================= */

/* NAVBAR - Mobile */
nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    z-index: 100;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-top: 0.5rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: opacity 0.3s;
    padding: 0.3rem 0.5rem;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* HERO SECTION - Mobile */
.hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.hero.grabbing {
    cursor: grabbing;
}

.hero-slides-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.hero-slides-container.no-transition {
    transition: none;
}

.hero-slide {
    position: relative;
    min-width: 100%;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.hero-slide img {  
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.hero-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1.5px solid transparent;
}

.hero-dot.active {
    background: white;
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.8);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* TAGLINE - Mobile */
.tagline {
    background: white;
    padding: 2rem 1.5rem;
    display: flex;
    justify-content: center;
    min-height: 150px;  
    align-items: center; 
}

.tagline-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: #000;
    max-width: 100%;
    line-height: 1.4;
    min-height: 2.5em;
    text-align: center;
}

/* CONTENT SECTION - Mobile */
.content-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    padding: 0;
}

.content-left {
    background: #EFE9E2;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.content-right {
    background: #888;
    padding: 0;
    min-height: 350px;
    overflow: hidden;
}

.content-right img {  
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.content-title {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #000;
    line-height: 1.2;
    margin-bottom: 0;
}

.content-description {
    font-size: 0.95rem;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    margin-bottom: 0;
}

.btn-map {
    background: #000;
    color: white;
    padding: 1rem 2rem;
    border: none;
    font-family: 'Rethink Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
    min-height: 48px; /* Touch target */
}

.btn-map:hover {
    background: #333;
}

/* SELECTION SECTION - Mobile */
.selection-section {
    padding: 2.5rem 1.5rem;
    background: white;
}

.selection-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 1.5rem;
    text-align: center;
}

.selection-tabs {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    background: none;
    border: none;
    font-family: 'Rethink Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #949494;
    cursor: pointer;
    padding: 0.5rem 0.8rem;
    transition: color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    min-height: 44px; /* Touch target */
}

.tab-btn.active {
    color: #424242;
}

.tab-btn:hover {
    color: #424242;
    transform: translateY(-2px);
}

/* PRODUCTS GRID - Mobile */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.product-card {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: #EFEFEF;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #565656;
    margin-bottom: -5px;
    padding: 0 8px 4px 8px;
}

.product-price {
    font-size: 0.85rem;
    font-weight: 400;
    color: #545E67;
    padding: 0 8px 4px 8px;
}

/* TERMS SECTION - Mobile */
.terms-section {
    padding: 2.5rem 1.5rem;
    background: white;
}

.terms-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000;
    text-align: center;
    margin-bottom: 2rem;
}

.terms-container {
    max-width: 100%;
    margin: 0 auto;
    background: #EFE9E2;
    padding: 1.5rem;
}

.term-item {
    border-bottom: 1px solid #B3AC9E;
    padding: 1rem 0;
}

.term-item:last-child {
    border-bottom: none;
}

.term-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    min-height: 44px; /* Touch target */
}

.term-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #3A3734;
}

.term-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    will-change: transform;
}

.term-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    will-change: max-height, opacity;
}

.term-item.active .term-content {
    padding-top: 1rem;
    max-height: 800px;
    opacity: 1;
}

.term-content p,
.term-content ul {
    font-size: 0.85rem;
    font-weight: 400;
    color: #616161;
    line-height: 1.7;
    margin: 0;
}

.term-content ul {
    padding-left: 1.2rem;
    list-style-type: disc;
}

.term-content li {
    margin-bottom: 0.6rem;
}

.term-content li:last-child {
    margin-bottom: 0;
}

/* MODAL - Mobile - DIPERBAIKI */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 0.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #F4F4F4;
    max-width: 100%;
    width: 100%;
    max-height: 92vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
    transform: scale(0.9) translateY(-20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin: auto;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-left {
    background: #EFEFEF;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    max-height: 180px;
    flex-shrink: 0;
}

.modal-left img {
    max-width: 80%;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.modal-right {
    background: #F4F4F4;
    padding: 1rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-title {
    font-family: 'Rethink Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #2B2B2B;
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.modal-description {
    font-family: 'Rethink Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    color: #525252;
    line-height: 1.5;
    margin-bottom: 0.3rem;
}

.modal-divider {
    width: 100%;
    height: 1px;
    background: #DFDFDF;
    margin: 0.4rem 0;
}

.modal-pricing {
    margin-bottom: 0.6rem;
}

.current-price {
    font-family: 'Rethink Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #625F5F;
    margin-bottom: 0.7rem;
}

.select-days-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    color: #777373;
    margin-bottom: 0.4rem;
    display: block;
}

.days-buttons {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
    margin-bottom: 0.7rem;
    overflow-x: visible;
    padding: 0;
}

.day-btn {
    background: #2A2A2C;
    color: #FFFFFF;
    font-family: 'Rethink Sans', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.5rem 0.65rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 38px;
    touch-action: manipulation;
}

.day-btn:hover {
    background: #3a3a3c;
}

.day-btn.active {
    background: #505052;
}

.modal-button {
    background: #242426;
    color: #FFFFFF !important;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer !important; 
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    z-index: 9999;
    margin-top: 0.3rem;
    width: 100%;
    pointer-events: all !important;
    min-height: 44px;
    touch-action: manipulation;
}

.modal-button:hover {
    background: #3e3e41;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(78, 78, 81, 0.3);
}

.modal-button:active {
    transform: translateY(0);
}

/* TESTIMONIALS - Mobile */
.trusted-client-section {
    padding: 2.5rem 1rem 0.5rem 1rem;
    background: white;
    overflow: hidden;
    margin-bottom: 0;
}

.trusted-client-title {
    font-size: 1.6rem;
    font-weight: 800;
    font-family: 'Rethink Sans', sans-serif;
    color: #000;
    text-align: center;
    margin-bottom: 2rem;
}

.elfsight-wrapper {
    padding: 0 0.5rem 0.5rem 0.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: #4E4E51;
    padding: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 0;
}

.testimonial-date {
    font-family: 'Rethink Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-family: 'Rethink Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 100;
    color: #FFFFFF;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-family: 'Rethink Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #FFFFFF;
}

/* LOCATION SECTION - Mobile */
.location-section {
    padding: 1rem 1.5rem 3rem 1.5rem;
    background: white;
}

.location-title {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Rethink Sans', sans-serif;
    color: #000;
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    max-width: 100%;
    margin: 0 auto 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
}

/* FOOTER - Mobile */
.footer {
    background: #000;
    padding: 2rem 1.5rem;
    margin-top: 0;
    width: 100%;
    clear: both;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: opacity 0.3s;
    padding: 0.3rem 0.5rem;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    min-height: 44px; /* Touch target */
    min-width: 44px;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* =============================================
   TABLET (768px+)
   ============================================= */
@media (min-width: 768px) {
    nav {
        padding: 1.5rem 3rem;
        flex-wrap: nowrap;
    }

    .logo {
        font-size: 1.4rem;
    }

    .nav-links {
        gap: 2rem;
        width: auto;
        margin-top: 0;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .hero-dots {
        bottom: 25px;
        gap: 10px;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }

    .tagline {
        padding: 3rem 3rem;
        justify-content: flex-end;
        min-height: 180px;
    }

    .tagline-text {
        font-size: 1.6rem;
        max-width: 500px;
        text-align: left;
    }

    .content-section {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        padding-left: 2rem;
    }

    .content-left {
        padding: 3rem 3rem;
        gap: 0;
    }

    .content-right {
        min-height: 500px;
    }

    .content-title {
        font-size: 1.8rem;
        margin-bottom: 8rem;
    }

    .content-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .btn-map {
        width: fit-content;
    }

    .selection-section {
        padding: 3.5rem 3rem;
    }

    .selection-title {
        font-size: 2.2rem;
        text-align: left;
    }

    .selection-tabs {
        gap: 1.5rem;
        justify-content: flex-start;
    }

    .tab-btn {
        font-size: 0.95rem;
        padding: 0;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .product-name {
        font-size: 0.95rem;
        padding: 0 10px 5px 10px;
    }

    .product-price {
        font-size: 0.95rem;
        padding: 0 10px 5px 10px;
    }

    .terms-section {
        padding: 3.5rem 3rem;
    }

    .terms-title {
        font-size: 2.2rem;
    }

    .terms-container {
        padding: 2rem;
    }

    .term-item {
        padding: 1.3rem 0;
    }

    .term-name {
        font-size: 1.05rem;
    }

    .term-content p,
    .term-content ul {
        font-size: 0.9rem;
    }

    .term-content ul {
        padding-left: 1.5rem;
    }

    .term-item.active .term-content {
        padding-top: 1.3rem;
    }

    .modal-content {
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        max-width: 900px;
        width: 90%;
        max-height: 90vh;
    }

    .modal-left {
        padding: 2rem;
        min-height: 300px;
        max-height: none;
    }

    .modal-left img {
        max-width: 100%;
        max-height: 350px;
    }

    .modal-right {
        padding: 2rem 2.5rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-description {
        font-size: 0.9rem;
    }

    .current-price {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .select-days-label {
        font-size: 0.72rem;
    }

    .days-buttons {
        gap: 0.45rem;
        margin-bottom: 1.5rem;
    }

    .day-btn {
        font-size: 0.75rem;
        padding: 0.6rem 0.9rem;
        min-height: 42px;
    }

    .modal-button {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }

    .trusted-client-section {
        padding: 3rem 2.5rem 1rem 2.5rem;
    }

    .trusted-client-title {
        font-size: 2rem;
    }

    .elfsight-wrapper {
        padding: 0 1rem 1rem 1rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .testimonial-card {
        padding: 2rem;
        min-height: 230px;
    }

    .testimonial-date {
        font-size: 0.9rem;
        margin-bottom: 1.3rem;
    }

    .testimonial-text {
        font-size: 0.8rem;
    }

    .location-section {
        padding: 3rem 3rem;
    }

    .location-title {
        font-size: 2.2rem;
    }

    .footer {
        padding: 2.5rem 3rem;
    }

    .footer-logo {
        font-size: 1.4rem;
    }

    .footer-links {
        gap: 2rem;
    }

    .footer-links a {
        font-size: 1rem;
    }

    .footer-social {
        gap: 1.2rem;
    }
}

/* =============================================
   DESKTOP (1024px+)
   ============================================= */
@media (min-width: 1024px) {
    nav {
        padding: 2rem 4rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 2.5rem;
    }

    .hero {
        height: 86vh;
        min-height: 600px;
    }

    .hero-dots {
        bottom: 30px;
        gap: 12px;
    }

    .hero-dot {
        width: 12px;
        height: 12px;
        border: 2px solid transparent;
    }

    .tagline {
        padding: 4rem 4rem;
        min-height: 200px;
    }

    .tagline-text {
        font-size: 1.8rem;
    }

    .content-left {
        padding: 4rem 4rem 4rem 50px;
    }

    .content-right {
        min-height: 600px;
    }

    .content-title {
        font-size: 2rem;
        margin-bottom: 17rem;
    }

    .content-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .selection-section {
        padding: 4rem;
    }

    .selection-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .selection-tabs {
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .tab-btn {
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }

    .product-image {
        margin-bottom: 1.2rem;
    }

    .product-name {
        font-size: 1rem;
        margin-bottom: -7px;
    }

    .product-price {
        font-size: 1rem;
    }

    .terms-section {
        padding: 4rem;
    }

    .terms-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .term-item {
        padding: 1.5rem 0;
    }

    .term-name {
        font-size: 1.1rem;
    }

    .term-content p,
    .term-content ul {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .term-content li {
        margin-bottom: 0.8rem;
    }

    .term-item.active .term-content {
        padding-top: 1.5rem;
    }

    .modal-content {
        max-width: 950px;
        width: 92%;
        max-height: 88vh;
    }

    .modal-left {
        padding: 2.5rem;
    }

    .modal-left img {
        max-height: 380px;
    }

    .modal-right {
        padding: 2.5rem 3.5rem 2.5rem 2.5rem;
    }

    .modal-title {
        font-size: 1.7rem;
        margin-bottom: 0.9rem;
    }

    .modal-description {
        font-size: 0.95rem;
        margin-bottom: 1.3rem;
    }

    .modal-divider {
        margin-bottom: 1.2rem;
    }

    .current-price {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .select-days-label {
        font-size: 0.75rem;
    }

    .days-buttons {
        margin-bottom: 0;
        gap: 0.5rem;
    }

    .day-btn {
        font-size: 0.8rem;
        padding: 0.65rem 1rem;
        min-height: 44px;
    }

    .modal-button {
        margin-top: 0.4rem;
    }

    .trusted-client-section {
        padding: 4rem 4rem 1rem 4rem;
    }

    .trusted-client-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .elfsight-wrapper {
        padding: 0 2rem 2.5rem 2rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonial-card {
        min-height: 250px;
    }

    .testimonial-date {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.80rem;
    }

    .testimonial-author {
        font-size: 0.80rem;
    }

    /* Hover effects only on desktop */
    .testimonial-card:hover {
        transform: rotate(-2deg) scale(1.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .testimonial-card:nth-child(2):hover {
        transform: rotate(2deg) scale(1.05);
    }

    .testimonial-card:nth-child(3):hover {
        transform: rotate(-1.5deg) scale(1.05);
    }

    .testimonial-card:nth-child(4):hover {
        transform: rotate(1.5deg) scale(1.05);
    }

    .testimonial-card:nth-child(5):hover {
        transform: rotate(-2.5deg) scale(1.05);
    }

    .testimonial-card:nth-child(6):hover {
        transform: rotate(2deg) scale(1.05);
    }

    .location-section {
        padding: 4rem;
    }

    .location-title {
        font-size: 2.5rem;
    }

    .footer {
        padding: 3rem 4rem;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-links {
        gap: 2.5rem;
    }

    .footer-social {
        gap: 1.5rem;
    }
}

/* =============================================
   LARGE DESKTOP (1440px+)
   ============================================= */
@media (min-width: 1440px) {
    .products-grid,
    .testimonials-grid,
    .terms-container,
    .map-container {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* =============================================
   EXTRA SMALL DEVICES - PERBAIKAN KHUSUS (max 375px)
   ============================================= */
@media (max-width: 375px) {
    .modal-overlay {
        padding: 0.3rem;
    }

    .modal-content {
        max-height: 94vh;
    }

    .modal-left {
        padding: 0.8rem;
        min-height: 140px;
        max-height: 160px;
    }

    .modal-left img {
        max-width: 75%;
        max-height: 120px;
    }

    .modal-right {
        padding: 0.9rem 1rem;
    }

    .modal-title {
        font-size: 1rem;
    }

    .modal-description {
        font-size: 0.75rem;
    }

    .current-price {
        font-size: 1.05rem;
        margin-bottom: 0.6rem;
    }

    .select-days-label {
        font-size: 0.65rem;
    }

    .days-buttons {
        gap: 0.25rem;
        margin-bottom: 0.6rem;
    }

    .day-btn {
        font-size: 0.65rem;
        padding: 0.45rem 0.6rem;
        min-height: 36px;
    }

    .modal-button {
        font-size: 0.75rem;
        padding: 0.55rem 0.9rem;
        min-height: 42px;
        margin-top: 0.2rem;
    }
}
