/* ===================================
   LOCATIONS PAGE STYLES
   =================================== */

/* Hero Section */
.locations-hero {
    background: linear-gradient(135deg, #9bae9d 0%, #7a8e7c 100%);
    padding: 100px 0;
    text-align: center;
    color: white;
}

.locations-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.locations-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.locations-hero-text {
    font-size: 20px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

/* Locations List Section */
.locations-list-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.locations-list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.locations-list-content {
    max-width: 900px;
    margin: 0 auto;
}

.locations-list-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.locations-list-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #f5704a;
    border-radius: 2px;
}

.locations-list-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 50px;
    text-align: center;
}

.locations-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.locations-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.locations-list li {
    font-size: 18px;
    color: #333;
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid #e8f3ea;
    transition: all 0.3s ease;
}

.locations-list li:last-child {
    border-bottom: none;
}

.locations-list li:before {
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #f5704a;
    font-size: 18px;
}

.locations-list li:hover {
    padding-left: 40px;
    color: #f5704a;
}

.locations-list li:hover:before {
    transform: scale(1.1);
}

/* CTA Section */
.locations-list-cta {
    text-align: center;
    padding: 50px 40px;
    background-color: #e8f3ea;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.locations-list-cta p {
    font-size: 18px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 500;
}

.locations-list-button {
    display: inline-block;
    background-color: #f5704a;
    color: white;
    padding: 16px 45px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.3s ease;
    text-decoration: none;
}

.locations-list-button:hover {
    background-color: #e45c36;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(245, 112, 74, 0.3);
}

/* ===================================
   TABLET STYLES (768px - 1024px)
   =================================== */
@media (max-width: 1024px) {
    .locations-hero {
        padding: 80px 0;
    }
    
    .locations-hero-title {
        font-size: 38px;
    }
    
    .locations-hero-text {
        font-size: 18px;
    }
    
    .locations-list-section {
        padding: 60px 0;
    }
    
    .locations-list-title {
        font-size: 36px;
    }
    
    .locations-list-intro {
        font-size: 17px;
        margin-bottom: 40px;
    }
    
    .locations-list-grid {
        gap: 50px;
        margin-bottom: 50px;
    }
    
    .locations-list li {
        font-size: 17px;
    }
    
    .locations-list-cta {
        padding: 40px 30px;
    }
    
    .locations-list-cta p {
        font-size: 17px;
    }
    
    .locations-list-button {
        font-size: 17px;
        padding: 14px 40px;
    }
}

/* ===================================
   MOBILE STYLES (Max 767px)
   =================================== */
@media (max-width: 767px) {
    .locations-hero {
        padding: 60px 0;
    }
    
    .locations-hero-title {
        font-size: 30px;
    }
    
    .locations-hero-text {
        font-size: 16px;
    }
    
    .locations-list-section {
        padding: 50px 0;
    }
    
    .locations-list-title {
        font-size: 28px;
    }
    
    .locations-list-intro {
        font-size: 16px;
        margin-bottom: 35px;
    }
    
    .locations-list-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .locations-list li {
        font-size: 16px;
        padding: 10px 0;
        padding-left: 32px;
    }
    
    .locations-list li:before {
        font-size: 16px;
    }
    
    .locations-list-cta {
        padding: 35px 25px;
    }
    
    .locations-list-cta p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .locations-list-button {
        font-size: 16px;
        padding: 14px 35px;
    }
}

@media (max-width: 480px) {
    .locations-hero {
        padding: 50px 0;
    }
    
    .locations-hero-title {
        font-size: 26px;
    }
    
    .locations-hero-text {
        font-size: 15px;
    }
    
    .locations-list-section {
        padding: 40px 0;
    }
    
    .locations-list-title {
        font-size: 24px;
    }
    
    .locations-list-intro {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .locations-list-grid {
        gap: 30px;
        margin-bottom: 35px;
    }
    
    .locations-list li {
        font-size: 15px;
        padding: 9px 0;
        padding-left: 30px;
    }
    
    .locations-list li:before {
        font-size: 15px;
    }
    
    .locations-list-cta {
        padding: 30px 20px;
    }
    
    .locations-list-cta p {
        font-size: 15px;
    }
    
    .locations-list-button {
        font-size: 15px;
        padding: 12px 30px;
    }
}