/* Base Styles & Variables */
:root {
    /* Colors */
    --navy-blue: #0A1F44;
    --white: #FFFFFF;
    --gold: #C9A24D;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --text-color: #333333;
    --text-light: #666666;
    
    /* Typography */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Lato', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    --section-padding-sm: 50px 0;
    
    /* Border Radius */
    --border-radius: 4px;
    --border-radius-lg: 8px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--navy-blue);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

a {
    color: var(--navy-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--light-gray);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: var(--body-font);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--gold);
}

.btn-outline {
    background-color: transparent;
    color: var(--navy-blue);
    border-color: var(--navy-blue);
}

.btn-outline:hover {
    background-color: var(--navy-blue);
    color: var(--white);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--navy-blue);
}

.logo p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--navy-blue);
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav li.active a::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--navy-blue);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 31, 68, 0.85), rgba(10, 31, 68, 0.85)), 
                url('../img/justice.avif') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
    background-attachment: fixed;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Welcome Section */
.welcome-section {
    padding: var(--section-padding);
}

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

.divider {
    width: 80px;
    height: 3px;
    background-color: var(--gold);
    margin: 15px auto 0;
}

.welcome-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.welcome-text {
    flex: 1;
}

.welcome-text p {
    margin-bottom: 25px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.welcome-image {
    flex: 1;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Practice Areas Preview */
.practice-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.practice-area-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.practice-area-card .icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.practice-area-card h3 {
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.practice-area-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Practice Area Details */
.practice-area-detail {
    margin-bottom: 80px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.practice-area-detail h2 {
    color: var(--navy-blue);
    margin-bottom: 20px;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
}

.practice-area-detail h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.practice-area-detail .lead {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Expertise Section */
.expertise-section {
    margin: 40px 0;
}

.expertise-section h3 {
    color: var(--navy-blue);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

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

.expertise-item {
    background: #f9fafc;
    padding: 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #eef2f7;
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.expertise-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
    display: inline-block;
}

.expertise-item h4 {
    color: var(--navy-blue);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Process Section */
.process-section {
    margin: 50px 0;
}

.process-section h3 {
    color: var(--navy-blue);
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    padding: 20px 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.step-number {
    background: var(--gold);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
    border: 1px solid #eef2f7;
}

.step-content h4 {
    color: var(--navy-blue);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--navy-blue), #1a3a6e);
    padding: 40px;
    border-radius: 10px;
    color: white;
    text-align: center;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.cta-box p {
    max-width: 700px;
    margin: 0 auto 25px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-box .btn {
    background: var(--gold);
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-box .btn:hover {
    background: #e0b04d;
    transform: translateY(-2px);
}

/* Document Grids */
.document-grid, .affidavit-grid, .category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.document-card, .affidavit-card, .category-card {
    background: #f9fafc;
    padding: 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #eef2f7;
}

.document-card:hover, .affidavit-card:hover, .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.document-card i, .category-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
    display: inline-block;
}

.document-card h5, .affidavit-card h4, .category-card h4 {
    color: var(--navy-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.document-card h5::after, .affidavit-card h4::after, .category-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.document-card ul, .affidavit-card ul, .category-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.document-card li, .affidavit-card li, .category-card li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.document-card li::before, .affidavit-card li::before, .category-card li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Service Features */
.service-features, .service-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.feature, .highlight {
    text-align: center;
    padding: 30px 20px;
    background: #f9fafc;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature:hover, .highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature i, .highlight i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.feature h4, .highlight h4 {
    color: var(--navy-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer h3, .footer h4 {
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer h3::after,
.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--gold);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--gold);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal {
    margin-top: 10px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 5px;
    transition: var(--transition);
}

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

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(10, 31, 68, 0.9), rgba(10, 31, 68, 0.9)), 
                url('../img/legal-bg.jpg') no-repeat center center/cover;
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
}

.about-hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.scroll-indicator {
    margin-top: 40px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    margin-top: 10px;
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    display: block;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: var(--gold);
    margin: 15px auto;
}

.divider.left {
    margin: 15px 0;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* About Content */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 0 0 45%;
    position: relative;
}

.image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.about-image:hover .profile-image {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--white);
    padding: 15px 25px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text {
    flex: 1;
}

.about-text .position {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text .intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
}

/* About Details */
.about-details {
    margin-top: 40px;
}

.detail-item {
    display: flex;
    margin-bottom: 30px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.detail-icon {
    flex: 0 0 60px;
    height: 60px;
    background: rgba(201, 162, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--gold);
    font-size: 1.5rem;
}

.detail-content {
    flex: 1;
}

.detail-content h3 {
    margin-bottom: 15px;
    color: var(--navy-blue);
    font-size: 1.4rem;
}

.detail-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-content li {
    margin-bottom: 8px;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
}

.detail-content li i {
    color: var(--gold);
    margin-right: 10px;
    margin-top: 5px;
    font-size: 0.8rem;
}

/* Values Section */
.values-section {
    background: var(--light-gray);
}

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

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(201, 162, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--gold);
    color: var(--white);
    transform: rotateY(180deg);
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--navy-blue);
    font-size: 1.5rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Approach Section */
.approach-section {
    position: relative;
    overflow: hidden;
    background-color: #f9fafc;
}

.approach-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(201, 162, 77, 0.3));
    transform: translateX(-50%);
    z-index: 1;
}

.approach-step {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: flex-start;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.approach-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.approach-step:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(201, 162, 77, 0.3);
    z-index: 3;
}

.step-icon {
    flex: 0 0 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 30px;
    color: var(--gold);
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(201, 162, 77, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.approach-step:hover .step-icon {
    background: var(--gold);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(201, 162, 77, 0.4);
}

.step-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.approach-step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
    color: var(--navy-blue);
    margin-bottom: 15px;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.step-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.approach-step:nth-child(even) .step-content h3::after {
    left: auto;
    right: 0;
}

.step-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.step-features li {
    margin-bottom: 8px;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.approach-step:nth-child(even) .step-features li {
    justify-content: flex-end;
}

.step-features i {
    color: var(--gold);
    margin-right: 10px;
    font-size: 0.9rem;
}

.approach-step:nth-child(even) .step-features i {
    order: 1;
    margin-right: 0;
    margin-left: 10px;
}

/* Responsive Styles for Approach Section */
@media (max-width: 992px) {
    .approach-step,
    .approach-step:nth-child(even) {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 80px;
    }
    
    .step-number {
        top: -25px;
    }
    
    .step-icon {
        margin: 20px 0;
    }
    
    .step-content {
        width: 100%;
    }
    
    .step-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .approach-step:nth-child(even) .step-features li,
    .step-features li {
        justify-content: center;
    }
    
    .timeline-line {
        left: 50px;
    }
    
    .approach-step:nth-child(even) .step-features i {
        order: 0;
        margin-left: 0;
        margin-right: 10px;
    }
}

@media (max-width: 576px) {
    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .step-features li {
        font-size: 0.9rem;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(10, 31, 68, 0.9), rgba(10, 31, 68, 0.9)), 
                url('../img/cta-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    position: relative;
}

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

.cta-text h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-buttons .btn i {
    margin-right: 8px;
}

.cta-buttons .btn-primary {
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--navy-blue);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .welcome-content {
        flex-direction: column;
    }
    
    .welcome-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        flex: 0 0 100%;
        max-width: 500px;
        margin: 0 auto 40px;
    }
    
    .experience-badge {
        right: 20px;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .main-nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.active ul {
        display: flex;
    }
    
    .main-nav li {
        text-align: center;
        padding: 10px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-padding {
        padding: var(--section-padding-sm);
    }
}

@media (max-width: 576px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .experience-badge {
        padding: 10px 15px;
    }
    
    .experience-badge .years {
        font-size: 1.5rem;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
    }
    
    .detail-icon {
        margin: 0 auto 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .practice-areas-grid {
        grid-template-columns: 1fr;
    }
}
