/* About Us Page Styles */

/* Hero Section */
.about-hero {
    background: linear-gradient(180deg, rgb(211 47 47) 0%, rgb(101 0 18 / 90%) 100%);
    padding: 50px 0;
    text-align: center;
    color: white;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Our Story Section */
.story-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
}

.story-content p {
    margin-bottom: 20px;
}

/* Values Section */
.values-section {
    background-color: #f5f5f5;
}

.values-grid {
    margin-top: 40px;
}

.value-card {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.value-card-content {
    text-align: center;
    padding: 30px;
}

.value-card-content i {
    font-size: 3rem;
    color: #d32f2f;
    margin-bottom: 20px;
}

.value-card-content h3 {
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: white;
    color: #d32f2f;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

@media (hover: hover) {
    .cta-btn-primary:hover {
        background: #f5f5f5;
        transform: translateY(-2px);
    }
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

@media (hover: hover) {
    .cta-btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }
}

/* Locations Grid Container */
.locations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

/* Location Cards - Matching Landing Page Style */
.location-card {
    background: linear-gradient(180deg, #d80000 0%, #500000 100%);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    flex: 0 1 400px;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--white);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

@media (hover: hover) {
    .location-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .location-card:hover::before {
        transform: scaleX(1);
    }
    
    .card-action-btn:hover:not(.disabled) {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-3px);
    }
}

.location-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.location-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.location-card .location-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    width: 100%;
}

.location-card .location-details p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--white);
    line-height: 1.6;
    font-size: 1rem;
}

.location-card .location-details i {
    font-size: 1.2rem;
    color: var(--white);
    min-width: 24px;
    margin-top: 3px;
}

.location-card .location-details a {
    color: var(--white);
    text-decoration: none;
}

.location-card .location-details a:hover {
    text-decoration: underline;
}

/* Action Icons */
.card-actions {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    width: 100%;
}

.card-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 10px;
}

.card-action-btn i {
    font-size: 2rem;
    color: var(--white);
}

.card-action-btn span {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    color: var(--white);
}

.card-action-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {

    .about-hero h1 {
        font-size: 1.5rem;
    }

    .about-hero p {
        font-size: .75rem;
    }

    .location-card {
        max-width: 100%;
        padding: 30px 20px;
    }
    
    .logo-container {
        width: 120px;
        height: 120px;
    }
    
    .location-card h3 {
        font-size: 1.5rem;
    }
    
    .card-actions {
        gap: 15px;
    }
    
    .card-action-btn i {
        font-size: 1.75rem;
    }
    
    .card-action-btn span {
        font-size: 0.75rem;
    }
    
    /* Keep values-grid visible on mobile (override index.css) */
    .values-grid.favorites-grid {
        display: grid !important;
    }
}

@media (max-width: 480px) {
    .card-actions {
        gap: 10px;
    }
    
    .card-action-btn {
        padding: 8px;
    }
    
    .card-action-btn i {
        font-size: 1.5rem;
    }
    
    .card-action-btn span {
        font-size: 0.7rem;
    }
}