/* Hero Section */
.loc-hero {
    padding: 20px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.loc-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Content Styles */
.loc-hero__content {
    position: relative;
    z-index: 2;
}

.loc-hero__tag {
    display: inline-block;
    color: #00bcd4;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.loc-hero__title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.loc-hero__highlight {
    color: #00bcd4;
    position: relative;
    display: inline-block;
}

.loc-hero__highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: #00bcd4;
}

.loc-hero__description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Button Styles */
.loc-hero__buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.loc-btn {
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.loc-btn--primary {
    background: #5B21B6;
    color: white;
    padding: 9px 32px;
    border-radius: 4px;
}

.loc-btn--primary:hover {
    background: #333;
    transform: translateY(-2px);
}

.loc-btn--circle {
    width: 48px;
    height: 48px;
    background: #00bcd4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loc-btn--circle:hover {
    transform: scale(1.1);
    background: #00acc1;
}

.loc-btn__play {
    color: white;
    font-size: 18px;
    margin-left: 2px;
}

/* Image Styles */
.loc-hero__image-container {
    position: relative;
}

.loc-hero__image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}

.loc-hero__image {
    width: 100%;
    height: auto;
    display: block;
}

.loc-hero__decorations {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.loc-hero__arrow {
    position: absolute;
    top: 15%;
    left: -10%;
    width: 100px;
    animation: float 3s ease-in-out infinite;
}

.loc-hero__book {
    position: absolute;
    bottom: 15%;
    right: -5%;
    width: 80px;
    animation: float 3s ease-in-out infinite reverse;
}

/* Service Cards */
.loc-services {
    margin-top: 80px;
}

.loc-services__grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.loc-services__card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.loc-services__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.loc-services__icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.loc-services__icon img {
    width: 32px;
    height: 32px;
}

.loc-services__icon--gold { background: #ffd700; }
.loc-services__icon--teal { background: #00bcd4; }
.loc-services__icon--blue { background: #2196f3; }
.loc-services__icon--orange { background: #ff9800; }

.loc-services__card h3 {
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.loc-services__card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .loc-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .loc-hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .loc-hero__description {
        margin-left: auto;
        margin-right: auto;
    }

    .loc-hero__buttons {
        justify-content: center;
    }

    .loc-hero__image-container {
        order: -1;
        margin-bottom: 40px;
    }

    .loc-services__grid {
        grid-template-columns: 1fr;
    }
}