/* About Page Premium Styles */
.about-hero {
    background: linear-gradient(135deg, #f5879a 0%, #ffc1cc 100%);
    padding: 80px 0;
    border-radius: 0 0 50px 50px;
    margin-bottom: 60px;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.about-hero p {
    font-size: 1.25rem;
    color: #fff;
    opacity: 0.9;
}

.section-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #f5879a;
    border-radius: 2px;
}

.about-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-card .card-body {
    padding: 2.5rem;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #fff0f3;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #f5879a;
}

.icon-box i {
    font-size: 1.5rem;
}

.text-gradient {
    background: linear-gradient(to right, #f5879a, #d4418e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.movement-section {
    background-color: #fff9fa;
    padding: 80px 0;
    margin: 60px 0;
}

.cta-section {
    padding: 40px 0;
}

.booking-badge {
    background: #fff;
    color: #f5879a;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 15px;
    display: inline-block;
}

.security-footer {
    padding: 60px 0;
    background: #333;
    color: #fff;
    text-align: center;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
}
