/* Practice Area Page Specific Styles */

/* Page-specific navigation adjustments */
.nav-link.active {
    font-weight: bold;
    text-decoration: underline;
}

/* Practice Area Header */
.practice-header {
    position: relative;
    padding: 0; 
}

.practice-header .title-image {
    position: relative;
    padding: 60px 0 0;
}

.practice-header .title-image img {
    width: 100%;
    max-width: 1200px;
    height: 200px;
    border-radius: 8px;
    display: block;
    object-fit: cover;
    object-position: 50% 20%;
    margin: 0 auto;
    filter: brightness(0.4); 
}

.practice-header .overlay {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    max-width: 700px;
    text-align: left;
}


.practice-title {
    font-size: 48px;
    font-weight: bold;
    color: #B8A06F;
    line-height: 1.2;
    margin-bottom: 15px;
}

.practice-subtitle {
    font-size: 18px;
    color: #B8A06F;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 300;
    margin-top: 20px; 
    max-width: 700px; 
    padding-bottom: 40px;
}


/* How We Offer Section */

.how-we-offer h2 {
    font-size: 36px;
    color: #B8A06F;
    margin-bottom: 30px;
    font-weight: bold;
}

.service-blocks {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-block {
    display: flex;
    align-items: center;
    gap: 30px;
}

.service-description {
    flex: 2;
    font-size: 18px;
    color: #B8A06F;
    line-height: 1.6;
    opacity: 0.9;
}

.service-connector {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-line {
    height: 2px;
    background-color: #B8A06F;
    flex: 1;
    margin: 0;
}

.service-arrow {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;

    margin: 0;
}

.service-title {
    flex: 1;
    font-size: 26px;
    color: #B8A06F;
    font-weight: 600;
    text-align: left;
}

/* Bright Spot Section */
.bright-spot {
    padding: 80px 0 40px 0;
}

.bright-spot-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.bright-spot-text-wrapper {
    flex: 1;
}

.bright-spot-title {
    font-size: 36px;
    color: #B8A06F;
    font-weight: bold;
    margin-bottom: 30px;
}

.bright-spot-text {
    font-size: 18px;
    color: #B8A06F;
    line-height: 1.7;
    font-weight: 300;
    text-align: justify;
}

.bright-spot-image {
    flex: 1;
}

.bright-spot-photo {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #1a5962;
}

/* Services Grid */
.services-grid {
    padding: 20px 0 80px;
}

.services-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.services-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    padding: 25px;
    background-color: rgba(217, 185, 110, 0.1);

    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background-color: rgba(217, 185, 110, 0.15);
}

.service-item h3 {
    font-size: 20px;
    color: #B8A06F;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-item p {
    color: #B8A06F;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Page-specific footer adjustments if needed */

/* Mobile Responsive Design - Preserving Desktop Look */

/* Tablet Layout */
@media (max-width: 1024px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-block {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .service-connector {
        display: none;
    }

    .service-title {
        text-align: left;
    }
}

/* Page-specific Mobile Styles */
@media (max-width: 768px) {
    .practice-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .practice-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .how-we-offer h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .bright-spot-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .bright-spot-content {
        flex-direction: column;
        gap: 30px;
    }

    .services-column {
        gap: 25px;
    }
    
    .service-item {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .practice-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .how-we-offer h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .bright-spot-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .bright-spot-content {
        flex-direction: column;
        gap: 25px;
    }

    .service-item {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .service-title {
        font-size: 20px;
        line-height: 1.3;
    }
    
    .bright-spot {
        padding: 60px 0 30px 0;
    }
    
    .services-grid {
        padding: 15px 0 60px;
    }
    
    .practice-header {
        margin-bottom: 40px;
    }
} 

/* Mobile responsive styles for footer logo */
@media (max-width: 768px) {
    .footer-logo {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        height: 40px;
    }
} 