@font-face {
    font-family: 'MalekPretzelFont';
    src: url('../fonts/Lamar-Font.otf') format('opentype');
    /* Correct path */
}

p {
    font-family: 'MalekPretzelFont', sans-serif !important;
    /* Added !important */
}


/* Locations Section Styling */
.locations-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: center;
}

.location-card {
    padding: 10px;
    margin: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.location-icon {
    color: #fff;
    margin-bottom: 0px;
    display: inline-block;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.location-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 2px;
    text-transform: uppercase;
    font-size: 100%;
            text-align: center;

}

.location-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .location-item {
        margin-bottom: 15px;
        text-align: center;
        font-size: 9px;

    }

    .location-card {
        margin: 0;
    }
}

.col-md-12 {
    margin-top: 2%;
}

.contact-info-row {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 25px auto;
    max-width: 800px;
    backdrop-filter: blur(5px);
}

.contact-link {
    transition: all 0.3s ease;
    font-size: 1.2rem;
    padding: 10px 25px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    margin: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

/* Phone Call Specific Styling */
.click-to-call {
    position: relative;
    cursor: pointer;
}

.click-to-call::after {
    content: "اضغط للاتصال";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.click-to-call:hover::after {
    opacity: 0.8;
}

/* Social Icons */
.social-icon {
    font-size: 1.8rem;
    color: #fff;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-link {
        font-size: 1rem;
        padding: 8px 15px;
        margin: 5px 0;
        display: block;
        width: 90%;
        margin: 10px auto;
    }

    .click-to-call::after {
        display: none;
    }

    .locations-row {
        padding: 2rem 0 !important;
    }
}

@media (min-width: 1200px) {
    .contact-info-row {
        max-width: 1000px;
    }
}