/* ============================================================
   LOCATIONS SECTION — Mobile-First Responsive CSS
   Breakpoints: Mobile(0-480) | SmTab(481-600) | MedTab(601-768)
              | LgTab(769-1024) | SmDesk(1025-1280) | MedDesk(1281-1440)
              | LgDesk(1441-1920) | XL(1921+)
   Units : clamp() + vw — zero px in property values
   Colors: ONLY from .white-locations / .blue-locations
============================================================ */


/* ============================================================
   1. BASE LAYOUT — Mobile (no colors, no px)
============================================================ */

.locations {
    padding: clamp(2rem, 8vw, 3.5rem) clamp(0.8rem, 4vw, 1.5rem);
}

.locations-container {
    max-width: clamp(17rem, 80vw, 69.25rem);
    margin: 0 auto;
    text-align: center;
    padding: clamp(0.8rem, 3vw, 1.5rem);
    height: 100%;
    border-radius: clamp(0.8rem, 3vw, 1.5rem);
}

/* ---- Title ---- */
.locations-title {
    display: inline-block;
    font-size: clamp(1.4rem, 5vw, 2rem);
    font-weight: 700;
    margin-block: clamp(0.6rem, 2vw, 1rem);
    position: relative;
}

.locations-title::after {
    content: "";
    position: absolute;
    width: 100%;
    height: clamp(0.18rem, 0.4vw, 0.32rem);
    border-radius: clamp(1rem, 3vw, 1.5rem);
    bottom: -10%;
    left: 0;
}

/* ---- Grid ---- */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(0.6rem, 2.5vw, 1rem);
    margin-top: clamp(1rem, 4vw, 1.8rem);
}

/* ---- Box ---- */
.location-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.4rem, 1.5vw, 0.7rem);
    padding: clamp(0.7rem, 2.5vw, 1.1rem);
    border-radius: clamp(0.6rem, 2vw, 1rem);
    text-decoration: none;
    font-size: clamp(0.85rem, 3vw, 1rem);
    border: clamp(0.05rem, 0.12vw, 0.08rem) solid;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.location-box i {
    font-size: clamp(1rem, 3.5vw, 1.3rem);
    transition: color 0.3s ease;
}

.locations-subtitle {
    font-size: clamp(0.85rem, 3vw, 1rem);
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
}


/* ============================================================
   2. BREAKPOINTS — min-width only, small → large
============================================================ */

/* Small Tablet — 481px → 600px */
@media (min-width: 481px) {
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .location-box {
        font-size: clamp(0.9rem, 2.5vw, 1.05rem);
        padding: clamp(0.8rem, 2vw, 1.2rem);
    }
}

/* Medium Tablet — 601px → 768px */
@media (min-width: 601px) {
    .locations-title {
        font-size: clamp(1.6rem, 4vw, 2.2rem);
    }

    .location-box {
        font-size: clamp(0.95rem, 2vw, 1.1rem);
    }
}

/* Large Tablet — 769px → 1024px */
@media (min-width: 769px) {
    .locations {
        padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem);
    }

    .locations-title {
        font-size: clamp(1.8rem, 4vw, 2.4rem);
    }

    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(0.8rem, 2vw, 1.3rem);
    }
}

/* Small Desktop — 1025px → 1280px */
@media (min-width: 1025px) {
    .locations {
        padding: clamp(3rem, 5vw, 4.5rem) clamp(1rem, 3vw, 2rem);
    }

    .locations-title {
        font-size: clamp(1.8rem, 3vw, 2.5rem);
    }

    .locations-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: clamp(0.8rem, 1.5vw, 1.3rem);
    }

    .location-box {
        font-size: clamp(0.95rem, 1.2vw, 1.1rem);
        padding: clamp(0.8rem, 1.5vw, 1.2rem);
    }

    .location-box i {
        font-size: clamp(1rem, 1.5vw, 1.4rem);
    }
}

/* Medium Desktop — 1281px → 1440px */
@media (min-width: 1281px) {
    .locations-title {
        font-size: clamp(2rem, 2.5vw, 2.8rem);
    }

    .locations-grid {
        gap: clamp(1rem, 1.5vw, 1.5rem);
    }
}

/* Large Desktop — 1441px → 1920px */
@media (min-width: 1441px) {
    .locations-title {
        font-size: clamp(2rem, 2vw, 3rem);
    }

    .location-box {
        font-size: clamp(1rem, 1.1vw, 1.2rem);
        padding: clamp(0.9rem, 1.2vw, 1.3rem);
    }
}

/* Extra Large — 1921px+ */
@media (min-width: 1921px) {
    .locations-container {
        max-width: clamp(71rem, 75vw, 90rem);
    }

    .locations-title {
        font-size: clamp(2.2rem, 2vw, 3.5rem);
    }
}


/* ============================================================
   3. THEME CLASSES — Colors only (end of file)
============================================================ */



.white-locations {
    background-color: var(--white);
}

.white-locations .locations-title {
    color: var(--helperColor);
}

.white-locations .locations-title::after {
    background-image: linear-gradient(90deg, var(--lightHelper) 0%, var(--lightHelper) 100%);
}

.white-locations .locations-subtitle {
    color: var(--helperColor);
}
.white-locations .locations-container  {
    border: 0.06em solid var(--lightHelper);
}

.white-locations .location-box {
    background-color: var(--white);
    color: var(--lightHelper);
    border-color: var(--lightHelper);
    
}

.white-locations .location-box i {
    color: var(--helperColor);
}

.white-locations .location-box:hover {
    background-color: var(--helperColor);
    color: var(--white);
    border-color: var(--helperColor);
}

.white-locations .location-box:hover i {
    color: var(--white);
}



.blue-locations {
    background-color: var(--lightHelper);
}

.blue-locations .locations-title {
    color: var(--white);
}

.blue-locations .locations-title::after {
    background-image: linear-gradient(90deg, var(--white) 0%, var(--white) 100%);
}

.blue-locations .locations-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.blue-locations .location-box {
      background-color: var(--white);
    color: var(--lightHelper);
    border-color: var(--white);
}

.blue-locations .location-box i {
    color: var(--lightHelper);
}

.blue-locations .location-box:hover {
    background-color: var(--white);
    color: var(--lightHelper);
    border-color: var(--white);
}
.blue-locations .locations-container  {
    border: 0.06em solid var(--white);
}
/* .blue-locations .location-box:hover i {
    color: var(--white);
} */