/* Girls Page Specific Styles */
.girls-page {
    position: relative;
    padding: 80px 0;
    background-color: var(--white);
    overflow: hidden;
}

/* Background Decorative Circles */
.sub-page-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.sub-circle-1 {
    width: 500px;
    height: 500px;
    background-color: rgba(209, 10, 16, 0.1);
    top: -250px;
    left: -250px;
}

.sub-circle-2 {
    width: 400px;
    height: 400px;
    background-color: rgba(212, 175, 55, 0.1);
    bottom: -200px;
    right: -150px;
}

.sub-circle-3 {
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    top: 40%;
    right: 10%;
}

.sub-page-header {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../assets/img/sub-header-bg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.sub-header-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.sub-header-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.header-subtitle {
    font-size: 18px;
    color: var(--light-gold);
    margin-bottom: 30px;
    font-weight: 300;
}

/* Girls Filter Buttons */
.girls-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.girls-filter-button {
    padding: 10px 20px;
    margin: 0 5px 10px;
    background-color: transparent;
    border: 2px solid var(--primary-red);
    border-radius: 30px;
    color: var(--primary-red);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.girls-filter-button:hover {
    background-color: rgba(209, 10, 16, 0.1);
}

.girls-filter-button.active {
    background-color: var(--primary-red);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(209, 10, 16, 0.3);
}

/* Girls Grid Layout */
.girls-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Girl Profile Card */
.girl-profile-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.girl-profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.girl-profile-image {
    height: 300px;
    overflow: hidden;
}

.girl-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.girl-profile-card:hover .girl-profile-image img {
    transform: scale(1.05);
}

.girl-profile-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.girl-profile-name {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-red);
}

.girl-profile-details {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 14px;
}

.girl-profile-details span {
    background-color: rgba(209, 10, 16, 0.1);
    padding: 3px 10px;
    border-radius: 15px;
}

.girl-profile-description {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

.girl-profile-button {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(209, 10, 16, 0.2);
    align-self: flex-start;
}

.girl-profile-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(209, 10, 16, 0.3);
}

/* Info Section Styles */
.section-light {
    background-color: var(--light-gray);
    color: var(--gray);
    position: relative;
    overflow: hidden;
}

.section-dark {
    background-color: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.sub-page-section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-light .section-title {
    color: var(--primary-red);
}

.section-dark .section-title {
    color: var(--white);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary-red));
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Feature Boxes */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.col-md-6 {
    width: 50%;
    padding: 15px;
}

.feature-box {
    background-color: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(209, 10, 16, 0.3);
}

.feature-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-red);
}

.feature-description {
    color: var(--gray);
    line-height: 1.6;
}

/* FAQ Accordion */
.accordion {
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.card {
    border: none;
    background-color: transparent;
    margin-bottom: 15px;
}

.card-header {
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 10px !important;
    padding: 0;
}

.card-header button {
    width: 100%;
    text-align: left;
    padding: 20px;
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    position: relative;
}

.card-header button:after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
}

.card-header button[aria-expanded="true"]:after {
    content: '-';
}

.card-body {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0 0 10px 10px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.collapse.show + .card-body {
    margin-top: -10px;
}

/* Contact Banner */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .col-md-6 {
        width: 100%;
    }
    
    .sub-header-content h1 {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .feature-box {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .girls-page-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .sub-header-content h1 {
        font-size: 32px;
    }
    
    .header-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .card-header button {
        font-size: 16px;
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .girls-page-grid {
        grid-template-columns: 1fr;
    }
    
    .girls-filter-button {
        margin-bottom: 10px;
    }
}