/* Practice Areas Page Styles */
:root {
    --primary-color: #0B1C3F;
    --secondary-color: #FFFFFF;
    --tertiary-color: #F4F4F4;
    --accent-color: #D1A15F;
    --text-color: #333333;
    --gradient-overlay: linear-gradient(135deg, rgba(11, 28, 63, 0.95), rgba(11, 28, 63, 0.85));
}

/* Hero Section */
.practice-hero {
    position: relative;
    padding: 6rem 0;
    background: #fff;
    overflow: hidden;
    margin-top: 80px;
}

.hero-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, rgba(209, 161, 95, 0.05), rgba(44, 62, 80, 0.05));
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(11, 28, 63, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    color: var(--primary-color);
}

.hero-badge {
    background: linear-gradient(135deg, var(--primary-color), #2c3e50);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-badge i {
    font-size: 1.4rem;
}

.practice-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary-color);
}

.hero-highlight {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.highlight-text {
    background: rgba(11, 28, 63, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-color);
    border: 1px solid rgba(11, 28, 63, 0.1);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-color), #2c3e50);
    color: #fff;
}

.cta-button.secondary {
    background: rgba(11, 28, 63, 0.05);
    color: var(--primary-color);
    border: 1px solid rgba(11, 28, 63, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Hero Image Styles */
.hero-image-wrapper {
    flex: 1;
    position: relative;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.2)
    );
}

/* Expertise Badges */
.expertise-badges {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.expertise-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.expertise-badge:hover {
    transform: translateY(-5px);
}

.expertise-badge i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.expertise-badge span {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Responsive Design for Hero */
@media (max-width: 1200px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
}

    .hero-highlight {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .expertise-badges {
        position: relative;
        bottom: 0;
        margin-top: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .practice-hero {
        padding: 4rem 0;
    }

    .practice-hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .expertise-badges {
        padding: 1rem;
    }

    .expertise-badge {
        padding: 0.6rem 1rem;
    }
}

/* Practice Grid Section */
.practice-grid-section {
    padding: 100px 0;
    background: var(--tertiary-color);
    position: relative;
    overflow: hidden;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-intro h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-intro p {
    color: var(--text-color);
    font-size: 1.2rem;
    line-height: 1.6;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.practice-card {
    background: var(--secondary-color);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.card-content {
    padding: 40px 30px;
    position: relative;
    z-index: 1;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(209, 161, 95, 0.05), rgba(11, 28, 63, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.practice-card:hover .card-overlay {
    opacity: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #2c3e50);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transform: rotate(-10deg);
    transition: transform 0.4s ease;
}

.practice-card:hover .card-icon {
    transform: rotate(0deg);
}

.card-icon i {
    font-size: 2rem;
    color: #fff;
}

.practice-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.practice-card p {
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.practice-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.practice-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-color);
    font-size: 0.95rem;
}

.practice-features li i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-color), #2c3e50);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(11, 28, 63, 0.2);
}

.learn-more-btn i {
    transition: transform 0.3s ease;
}

.learn-more-btn:hover i {
    transform: translateX(5px);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: var(--secondary-color);
    position: relative;
}

.why-choose-us .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.why-choose-us .section-intro h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.why-choose-us .section-intro p {
    color: var(--text-color);
    font-size: 1.2rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-item {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #2c3e50);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.feature-content p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.feature-list li i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* Premium Consultation Box */
.premium-consultation {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), #2c3e50);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.premium-consultation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
    opacity: 0.1;
}

.consultation-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.consultation-text {
    flex: 1;
}

.consultation-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.consultation-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.consultation-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.consultation-features .feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.consultation-features .feature i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

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

.premium-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.premium-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.premium-button i {
    transition: transform 0.3s ease;
}

.premium-button:hover i {
    transform: translateX(5px);
}

.guarantee {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer Styles */
.footer {
    background: var(--primary-color);
    color: #fff;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    z-index: 1;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.footer-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.brand-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: #fff;
}

.brand-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-group h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-group li {
    margin-bottom: 15px;
}

.link-group a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.link-group a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.powered-by {
    display: flex;
    align-items: center;
    gap: 5px;
}

.powered-by p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.powered-by strong {
    color: #fff;
    font-weight: 600;
}

.powered-x {
    color: var(--accent-color);
    font-weight: bold;
    margin: 0 2px;
}

/* Responsive Design for Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .practice-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .practice-hero {
        min-height: 70vh;
        padding: 100px 0 60px;
        background-attachment: scroll;
    }

    .practice-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .practice-card {
        padding: 30px 20px;
    }

    .practice-hero h1 {
        font-size: 2.5rem;
    }

    .practice-hero p {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .hero-cta {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .practice-hero {
        min-height: 60vh;
    }

    .practice-hero h1 {
        font-size: 2rem;
    }

    .practice-hero p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
} 