/* Locations Page Styles */

/* Hero Section */
.locations-hero {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.9)), 
                url('https://images.unsplash.com/photo-1559925393-8be0ec4767c8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 140px 0 80px;
    margin-top: 80px;
    position: relative;
}

.locations-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #d32f2f, #ffc107, #d32f2f);
}

.locations-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.locations-hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    font-weight: 300;
}

/* Main Location Section */
.main-location {
    padding: 80px 0;
    background-color: white;
    position: relative;
}

.main-location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #eee, transparent);
}

.location-header {
    text-align: center;
    margin-bottom: 50px;
}

.location-header h2 {
    font-size: 2.6rem;
    color: #222;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    display: inline-block;
}

.location-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #d32f2f;
    border-radius: 2px;
}

.location-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #333;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.location-tag i {
    color: #d32f2f;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

@media (max-width: 1100px) {
    .location-content {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .location-content {
        grid-template-columns: 1fr;
    }
}

/* Location Info */
.location-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.location-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.3);
}

.location-card h3 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.location-details {
    margin-bottom: 30px;
}

.location-details p {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.6;
    color: #444;
}

.location-details i {
    color: #d32f2f;
    min-width: 20px;
    margin-top: 4px;
    font-size: 1.1rem;
}

.location-details strong {
    color: #333;
    min-width: 90px;
    font-weight: 600;
}

.hours-list {
    list-style: none;
    padding-left: 35px;
    margin: 10px 0 20px 0;
}

.hours-list li {
    margin-bottom: 10px;
    color: #555;
    position: relative;
    padding-left: 5px;
}

.hours-list li::before {
    content: '•';
    color: #d32f2f;
    font-weight: bold;
    position: absolute;
    left: -15px;
    font-size: 1.2rem;
}

.location-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.location-btn {
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.call-btn {
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    color: white;
}

.call-btn:hover {
    background: linear-gradient(135deg, #388E3C, #2E7D32);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(56, 142, 60, 0.3);
}

.directions-btn {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
}

.directions-btn:hover {
    background: linear-gradient(135deg, #1976D2, #1565C0);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.3);
}

.order-btn {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: white;
}

.order-btn:hover {
    background: linear-gradient(135deg, #b71c1c, #9a1a1a);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.3);
}

/* Location Features */
.location-features {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 2px solid #f5f5f5;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.location-features h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #222;
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-family: 'Montserrat', sans-serif;
}

.location-features i.fa-check-circle {
    color: #4CAF50;
    font-size: 1.3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #f9f9f9, #f0f0f0);
    border-radius: 12px;
    transition: all 0.3s;
    border: 1px solid #e8e8e8;
}

.feature-item:hover {
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
    transform: translateX(5px);
}

.feature-item i {
    color: #d32f2f;
    font-size: 1.4rem;
    width: 30px;
    text-align: center;
}

.feature-item span {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

/* Map Container */
.map-container {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 1px solid #e0e0e0;
}

#map {
    height: 100%;
    width: 100%;
    background-color: #f5f5f5;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: white;
    padding: 25px;
    z-index: 1000;
}

.map-overlay h4 {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
}

.map-overlay p {
    margin: 8px 0;
    font-size: 0.95rem;
    opacity: 0.95;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Other Locations */
.other-locations {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    text-align: center;
    position: relative;
}

.other-locations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ddd, transparent);
}

.other-locations h2 {
    font-size: 2.6rem;
    color: #222;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    display: inline-block;
}

.other-locations h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #d32f2f;
    border-radius: 2px;
}

.section-subtitle {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 60px;
    font-weight: 300;
}

.upcoming-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.upcoming-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.upcoming-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #d32f2f, #ffc107);
}

.upcoming-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.upcoming-status {
    margin-bottom: 25px;
}

.status-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.opening-soon {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
}

.planned {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
}

.franchise {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
    color: white;
}

.upcoming-card h3 {
    font-size: 1.7rem;
    color: #222;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.upcoming-card p {
    color: #555;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.upcoming-card i {
    color: #d32f2f;
    font-size: 1.1rem;
}

.opening-date {
    color: #666;
    font-style: italic;
    font-size: 0.95rem;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px dashed #eee;
}

.franchise-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d32f2f;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: rgba(211, 47, 47, 0.1);
    border-radius: 25px;
    transition: all 0.3s;
}

.franchise-link:hover {
    gap: 15px;
    background-color: rgba(211, 47, 47, 0.2);
    color: #b71c1c;
    padding-right: 25px;
}

/* Find Location */
.find-location {
    padding: 100px 0;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: white;
    text-align: center;
    position: relative;
}

.find-location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.find-content h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.find-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 50px;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
}

.notification-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .form-group {
        flex-direction: column;
        gap: 15px;
    }
}

.form-group input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 35px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.form-group button {
    padding: 18px 40px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #333;
    border: none;
    border-radius: 35px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
}

.form-group button:hover {
    background: linear-gradient(135deg, #ffb300, #f57c00);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 179, 0, 0.4);
}

.form-note {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 15px;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .locations-hero h1 {
        font-size: 2.8rem;
    }
    
    .location-content {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .locations-hero {
        padding: 120px 0 60px;
    }
    
    .locations-hero h1 {
        font-size: 2.5rem;
    }
    
    .locations-hero p {
        font-size: 1.2rem;
    }
    
    .location-header h2,
    .other-locations h2,
    .find-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .locations-hero {
        margin-top: 70px;
        padding: 100px 0 50px;
    }
    
    .locations-hero h1 {
        font-size: 2.2rem;
    }
    
    .location-card {
        padding: 25px;
    }
    
    .location-card h3 {
        font-size: 1.7rem;
    }
    
    .location-actions {
        justify-content: center;
    }
    
    .map-container {
        height: 500px;
    }
}

@media (max-width: 576px) {
    .locations-hero h1 {
        font-size: 1.8rem;
    }
    
    .location-tag {
        padding: 8px 20px;
        font-size: 1rem;
    }
    
    .location-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .upcoming-card {
        padding: 25px;
    }
    
    .find-content h2 {
        font-size: 1.8rem;
    }
    
    .find-content p {
        font-size: 1.1rem;
    }
}