/* ========================================
   BRW BAR inc. - Additional Pages Stylesheet
   Styles for About, Treatments, Contact Pages
   ======================================== */

/* ========================================
   Page Header
   ======================================== */
.page-header {
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, #D4E5D4 0%, #FFFFFF 100%);
    position: relative;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: #000000;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #4A4A4A;
    font-weight: 400;
}

/* ========================================
   About Page - Our Story
   ======================================== */
.our-story {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content p {
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.story-visual {
    position: relative;
    height: 500px;
}

.story-visual .decor-block {
    width: 100%;
    height: 100%;
    background-color: #D4E5D4;
}

/* ========================================
   Mission & Values
   ======================================== */
.mission-values {
    padding: 100px 0;
    background-color: #FAFAFA;
}

.text-center {
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background-color: #FFFFFF;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #E8E8E8;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D4E5D4;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background-color: #000000;
    color: #FFFFFF;
}

.value-icon i {
    font-size: 2rem;
}

.value-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.value-card p {
    line-height: 1.8;
    color: #666666;
}

/* ========================================
   Our Team
   ======================================== */
.our-team {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #D4E5D4;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background-color: #F0F0F0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image i {
    font-size: 4rem;
    color: #CCCCCC;
}

.member-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.member-role {
    font-size: 1rem;
    color: #4A4A4A;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Montserrat', sans-serif;
}

.member-bio {
    color: #666666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========================================
   Why Choose Us Page Version
   ======================================== */
.why-choose-page {
    padding: 100px 0;
    background-color: #FAFAFA;
}

.why-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.why-list {
    margin-top: 50px;
}

.why-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.why-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #D4E5D4;
    line-height: 1;
    flex-shrink: 0;
}

.why-text h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.why-text p {
    color: #666666;
    line-height: 1.8;
}

/* ========================================
   Treatments Page - Service Details
   ======================================== */
.service-detail {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.service-detail-alt {
    background-color: #FAFAFA;
}

.service-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-category {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #4A4A4A;
    margin-bottom: 15px;
}

.service-detail-title {
    margin-bottom: 25px;
}

.service-detail-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #4A4A4A;
}

.service-list {
    margin-bottom: 40px;
}

.service-item {
    padding: 25px;
    background-color: #FAFAFA;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.service-detail-alt .service-item {
    background-color: #FFFFFF;
}

.service-item:hover {
    border-left-color: #D4E5D4;
    transform: translateX(5px);
}

.service-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-item h4 i {
    color: #D4E5D4;
    font-size: 1rem;
}

.service-item p {
    color: #666666;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #000000;
    font-size: 1.1rem;
    display: block;
}

.service-detail-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-large {
    width: 300px;
    height: 300px;
    background-color: #D4E5D4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-large i {
    font-size: 8rem;
    color: #FFFFFF;
}

/* ========================================
   Additional Services
   ======================================== */
.additional-services {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.additional-card {
    text-align: center;
    padding: 40px 30px;
    background-color: #FAFAFA;
    transition: all 0.3s ease;
}

.additional-card:hover {
    background-color: #D4E5D4;
}

.additional-card i {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 20px;
}

.additional-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.additional-card p {
    color: #666666;
    font-size: 0.95rem;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
}

.contact-form-container h2,
.contact-info-container h2 {
    margin-bottom: 20px;
}

.form-intro {
    margin-bottom: 40px;
    color: #666666;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4A4A4A;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 1px solid #E0E0E0;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #FAFAFA;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4E5D4;
    background-color: #FFFFFF;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #FF0000;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-card {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #E8E8E8;
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: #D4E5D4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.25rem;
    color: #000000;
}

.info-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.info-content p {
    color: #666666;
    line-height: 1.8;
}

.info-content a {
    color: #4A4A4A;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #000000;
}

.social-section h3 {
    margin-bottom: 20px;
}

.social-links-large {
    display: flex;
    gap: 15px;
}

.social-links-large a {
    width: 50px;
    height: 50px;
    border: 2px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #000000;
}

.social-links-large a:hover {
    background-color: #000000;
    color: #FFFFFF;
}

/* ========================================
   Map Section
   ======================================== */
.map-section {
    height: 450px;
    background-color: #F0F0F0;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #AAAAAA;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 1.25rem;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.faq-item {
    padding: 30px;
    background-color: #FAFAFA;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: #D4E5D4;
}

.faq-question {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.faq-question i {
    color: #D4E5D4;
    margin-top: 3px;
    flex-shrink: 0;
}

.faq-answer {
    color: #666666;
    line-height: 1.8;
}

/* ========================================
   Call to Action Section
   ======================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #B8D4B8 0%, #D4E5D4 100%);
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #4A4A4A;
}

/* ========================================
   Responsive Design - Tablet
   ======================================== */
@media (max-width: 1199px) {
    .story-grid,
    .service-detail-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .service-detail-visual {
        order: -1;
    }
    
    .service-icon-large {
        width: 200px;
        height: 200px;
    }
    
    .service-icon-large i {
        font-size: 5rem;
    }
}

/* ========================================
   Responsive Design - Mobile
   ======================================== */
@media (max-width: 768px) {
    .page-header {
        padding: 140px 0 60px;
    }
    
    .our-story,
    .mission-values,
    .our-team,
    .why-choose-page,
    .service-detail,
    .additional-services,
    .contact-section,
    .faq-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .story-visual,
    .why-visual {
        height: 250px;
    }
    
    .values-grid,
    .team-grid,
    .additional-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .why-number {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .map-section {
        height: 300px;
    }
    
    .service-icon-large {
        width: 150px;
        height: 150px;
    }
    
    .service-icon-large i {
        font-size: 4rem;
    }
}
