/* Practice Area Page Styles */

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.inner-page header {
    position: relative;
    background-color: var(--dark-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.practice-hero {
    height: 60vh;
    min-height: 400px;
    background: url('../image/background/law-library.jpg') center center no-repeat;
    background-size: cover;
}

.practice-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.practice-title .line-1 {
    display: block;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.practice-title .line-2 {
    display: block;
    font-size: 32px;
    font-weight: 400;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    letter-spacing: 2px;
    color: var(--text-off-white);
}

.hero-breadcrumbs {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--text-off-white);
    margin-top: 30px;
}

.hero-breadcrumbs a {
    color: var(--text-off-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-breadcrumbs a:hover {
    color: var(--gold-primary);
}

.breadcrumb-separator {
    margin: 0 10px;
    color: var(--gold-primary);
}

.hero-breadcrumbs .current {
    color: var(--gold-primary);
}

/* Content Section */
.practice-content-section {
    background-color: #0d0d0d;
    padding: 80px 0;
}

.practice-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0 30px;
}

.practice-main {
    flex: 0.68;
    padding-right: 50px;
}

.practice-sidebar {
    flex: 0.32;
}

.section-heading {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 15px;
    position: relative;
}

.heading-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), transparent);
    margin-bottom: 30px;
}

.practice-description {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-off-white);
    margin-bottom: 40px;
}

/* Practice Features */
.practice-feature {
    display: flex;
    margin-bottom: 40px;
    background: rgba(20, 20, 20, 0.6);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-left: 3px solid var(--gold-primary);
    transition: all 0.3s ease;
}

.practice-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: rgba(25, 25, 25, 0.7);
}

.feature-icon {
    flex: 0.15;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: 36px;
    color: var(--gold-primary);
}

.feature-content {
    flex: 0.85;
}

.feature-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.feature-content p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-off-white);
}

/* Why Choose Us Section */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.why-choose-item {
    background: rgba(20, 20, 20, 0.6);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border-top: 2px solid var(--gold-primary);
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: rgba(25, 25, 25, 0.7);
}

.why-icon {
    font-size: 32px;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.why-choose-item h4 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
}

.why-choose-item p {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-off-white);
}

/* Sidebar Styles */
.sidebar-box {
    background: rgba(20, 20, 20, 0.6);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.sidebar-box h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.sidebar-box p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-off-white);
    margin-bottom: 20px;
}

/* Contact Form */
.sidebar-form input,
.sidebar-form textarea {
    width: 100%;
    background: rgba(15, 15, 15, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    padding: 12px 15px;
    margin-bottom: 15px;
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.sidebar-form input:focus,
.sidebar-form textarea:focus {
    border-color: var(--gold-primary);
    outline: none;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Sidebar Links */
.sidebar-links {
    list-style: none;
    padding: 0;
}

.sidebar-links li {
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.sidebar-links li:last-child {
    border-bottom: none;
}

.sidebar-links li a {
    display: block;
    padding: 12px 10px;
    color: var(--text-off-white);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.sidebar-links li a:hover {
    color: var(--gold-primary);
    padding-left: 15px;
    background: rgba(212, 175, 55, 0.05);
}

.sidebar-links li.active a {
    color: var(--gold-primary);
    font-weight: 500;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold-primary);
    padding-left: 15px;
}

/* Testimonial */
.testimonial {
    position: relative;
}

.testimonial-text {
    position: relative;
    padding: 20px 0 10px;
}

.testimonial-text i {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--gold-primary);
    opacity: 0.3;
    font-size: 24px;
}

.testimonial-text p {
    padding-left: 30px;
    font-style: italic;
}

.testimonial-author {
    text-align: right;
    color: var(--gold-primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: url('../image/background/law-books.jpg') center center no-repeat;
    background-size: cover;
    padding: 80px 0;
    position: relative;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 20px;
}

.cta-section p {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    color: var(--text-off-white);
    margin-bottom: 30px;
}

/* Footer */
.site-footer {
    background-color: #080808;
    padding: 60px 0 20px;
    color: var(--text-off-white);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo svg {
    margin-right: 10px;
}

.footer-logo span {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold-primary);
}

.footer-column p {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
}

.footer-column h3 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
}

.contact-info li i {
    color: var(--gold-primary);
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--gold-primary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold-primary);
    color: #080808;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #777;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .practice-container {
        flex-direction: column;
    }
    
    .practice-main {
        flex: 1;
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .practice-sidebar {
        flex: 1;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .practice-title {
        font-size: 50px;
    }
    
    .practice-title .line-2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .practice-feature {
        flex-direction: column;
        padding: 25px;
    }
    
    .feature-icon {
        margin-bottom: 15px;
    }
    
    .feature-content {
        flex: 1;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-container {
        flex-direction: column;
    }
    
    .footer-column {
        flex: 1;
        width: 100%;
        padding-right: 0;
    }
    
    .practice-title {
        font-size: 40px;
    }
    
    .practice-title .line-2 {
        font-size: 24px;
    }
    
    .section-heading {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .practice-title {
        font-size: 32px;
    }
    
    .practice-title .line-2 {
        font-size: 20px;
    }
    
    .practice-feature {
        padding: 20px;
    }
    
    .feature-content h3 {
        font-size: 20px;
    }
    
    .section-heading {
        font-size: 24px;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
} 