/* ============================================
   Homepage CSS - Pixel Perfect Match
   All styles written from scratch to match image exactly
   ============================================ */

/* Base Styles */
.homepage {
    font-family: 'Poppins', 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
}

.homepage * {
    box-sizing: border-box;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%), url('/assets4/images/Untitled-design-82.jpg') center/cover;
    padding: 120px 20px 80px;
    color: white;
    position: relative;
    min-height: 600px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.25;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.hero-content p {
    font-size: 17px;
    margin-bottom: 32px;
    opacity: 0.95;
    color: #ffffff;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.what-we-offer {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    display: block;
    font-family: 'Poppins', sans-serif;
}

.hero-features-wrapper {
    display: flex;
    gap: 60px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.hero-features-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.hero-feature-item svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.hero-feature-item span {
    color: #ffffff;
    line-height: 1.4;
}

/* Trusted Section */
.trusted-section {
    background-color: #ffffff;
    padding: 30px 15px 50px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    border-radius: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    max-width: 1400px;
    margin: 60px auto 0;
    border: 1px solid #eee;
    width: 100%;
    box-sizing: border-box;
}

.trusted-section h2 {
    font-size: 16px;
    font-weight: 700;
    color: #d3b574;
    margin: 0 0 35px 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.trusted-logos img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    max-width: 150px;
    display: block;
}

/* Desktop: Larger logos */
@media (min-width: 992px) {
    .trusted-logos img {
        height: 70px !important;
        max-width: 150px !important;
    }
    
    .trusted-logos {
        gap: 20px !important;
    }
}

.trusted-logos img:hover {
    transform: scale(1.05);
}

/* Free Case Evaluation Form */
.evaluation-form {
    background: #efdac7;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: sticky;
    top: 20px;
}

.evaluation-form h3 {
    font-size: 26px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.evaluation-form form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.evaluation-form label {
    font-size: 14px;
    font-weight: 500;
    color: #2a2a2a;
    font-family: 'Poppins', sans-serif;
}

.evaluation-form input,
.evaluation-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d0c4b0;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #333;
    transition: border-color 0.3s;
}

.evaluation-form input::placeholder,
.evaluation-form textarea::placeholder {
    color: #999;
    font-size: 14px;
}

.evaluation-form input:focus,
.evaluation-form textarea:focus {
    outline: none;
    border-color: #d3b574;
}

.evaluation-form textarea {
    min-height: 100px;
    resize: vertical;
}

.evaluation-form .submit-btn {
    background: #d3b574;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.evaluation-form .submit-btn:hover {
    background: #b89a5a;
    transform: translateY(-2px);
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 12px 18px;
    border-radius: 6px;
    margin-bottom: 15px;
    border: 1px solid #c3e6cb;
    font-size: 14px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: #d3b574;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: #b89a5a;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #d3b574;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.btn-secondary:hover {
    background-color: #b89a5a;
    transform: translateY(-2px);
}

/* Statistics Section */
.stats-section {
    padding: 60px 20px;
    font-family: "Inter", sans-serif;
    background: #ffffff;
}

.stats-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.stat-card {
    flex: 1;
    background: #fff;
    padding: 25px 20px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.stat-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
}

.stat-card p {
    font-size: 15px;
    color: #555;
}

/* Content Sections */
.content-section {
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.content-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0b1d33;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
}

.content-section .subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.content-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.content-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.two-column {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-column.reverse {
    grid-template-columns: 1fr 1fr;
}

.two-column.reverse > div:first-child {
    order: 2;
}

.two-column.reverse > div:last-child {
    order: 1;
}

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

.feature-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d3b574;
    font-weight: bold;
    font-size: 18px;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.why-choose-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.why-choose-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d3b574;
    font-weight: bold;
    font-size: 18px;
}

.why-choose-list-detailed {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.why-choose-list-detailed li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    border-bottom: 1px solid #e0e0e0;
}

.why-choose-list-detailed li:last-child {
    border-bottom: none;
}

.why-choose-list-detailed li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d3b574;
    font-weight: bold;
    font-size: 18px;
}

.why-choose-list-detailed li strong {
    color: #0b1d33;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.case-example-section {
    margin-top: 30px;
}

.case-example-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0b1d33;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.case-example-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 0;
}

.locations-served-section {
    margin-top: 30px;
}

.section-title-gold {
    color: #C9A961 !important;
}

.locations-served-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0b1d33;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.regions-list {
    margin-top: 15px;
}

.region-item {
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    border-bottom: 1px solid #e0e0e0;
}

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

.region-item strong {
    color: #C9A961;
    font-weight: 600;
    font-size: 17px;
}

.office-location-section {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.office-location-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0b1d33;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.location-checkmarks {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.location-checkmark-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #0b1d33;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    width: max-content;
}

.location-checkmark-item i {
    margin-right: 10px;
    color: #0b1d33;
    font-size: 16px;
}

.ready-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ready-section-left {
    display: block;
    text-align: left;
}

.ready-section-right {
    display: none;
    text-align: center;
}

.ready-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0b1d33;
    font-family: 'Poppins', sans-serif;
}

.ready-section p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    font-weight: 500;
    max-width: 400px;
}

.lawyer-profile-card {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
    overflow: hidden;
}

.lawyer-profile-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #2b2b2b;
    border-radius: 15px 0 0 15px;
}

.lawyer-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px 0 0 15px;
}

.lawyer-profile-content {
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lawyer-profile-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0b1d33;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.lawyer-title {
    font-size: 18px;
    font-weight: 400;
    color: #444;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.lawyer-qualifications {
    font-size: 16px;
    font-weight: 400;
    color: #444;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.lawyer-profile-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.lawyer-profile-content p:last-of-type {
    margin-bottom: 30px;
}

.lawyer-profile-content .btn-primary.btn-with-icon {
    align-self: flex-start;
    margin-top: 10px;
}

.btn-primary.btn-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: #C9A961 !important;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    font-family: 'Poppins', sans-serif;
    border: none;
    animation: scalePulse 2s ease-in-out infinite;
}

@keyframes scalePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.btn-primary.btn-with-icon:hover {
    background-color: #B8965A !important;
    color: #ffffff !important;
    text-decoration: none;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 8px rgba(201, 169, 97, 0.3);
    animation: none;
}

.btn-primary.btn-with-icon i {
    font-size: 16px;
}

/* Services Section */
.services-section {
    font-family: "Poppins", sans-serif;
    padding: 80px 20px;
    background: #f9f9f9;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: #0b1d33;
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Poppins', sans-serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background-color: #BCA953;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.service-card h3 {
    font-size: 18px;
    color: #2b2b2b;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 15px;
}

.service-card .arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: #BCA953;
    color: #fff;
    margin: 20px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    padding: 0;
    line-height: 0;
    text-decoration: none;
}

.service-card .arrow-btn i {
    font-size: 16px;
    color: #fff;
}

.service-card .arrow-btn:hover {
    background-color: #a28f46;
    transform: scale(1.05);
}

/* Team Section */
.meet-team {
    background-color: transparent;
    padding: 80px 20px;
    text-align: center;
    color: #111;
    font-family: 'Inter', sans-serif;
}

.meet-team h2 {
    font-size: 38px;
    margin-bottom: 50px;
    font-weight: 700;
    color: #0b1d33;
}

.team-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.team-member {
    background: #fff;
    color: #111;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.team-member img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.team-info {
    padding: 30px 25px;
}

.team-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 700;
}

.team-info h4 {
    font-size: 17px;
    color: #b37a2c;
    margin-bottom: 18px;
    font-weight: 600;
}

.team-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Testimonials Section */
#testimonialSlider {
    position: relative;
    min-height: 300px;
}

.t-slide {
    display: block;
    visibility: visible;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    max-width: 750px;
    margin: 0 auto;
    pointer-events: none;
}

.t-slide.active {
    opacity: 1;
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.t-slide:not(.active) {
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

.fade {
    animation: fadeEffect 1s ease;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: none;
    animation: none;
    visibility: visible;
    opacity: 1;
    margin: 0 5px;
}

.dot.active {
    background-color: #5B2130;
    background: #5B2130;
}

.dot:not(.active) {
    background-color: #c8a7b1;
    background: #c8a7b1;
}

/* FAQ Section */
.faq-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
    color: #111;
}

.faq-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    font-weight: 700;
    color: #0b1d33;
}

.faq {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.faq input {
    display: none;
}

.faq label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
    color: #111;
}

.faq label:hover {
    color: #b37a2c;
}

.faq label::after {
    content: "+";
    font-size: 24px;
    transition: transform 0.3s ease;
    color: #111;
}

.faq input:checked + label::after {
    transform: rotate(45deg);
}

.faq .answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: #444;
}

.faq input:checked ~ .answer {
    max-height: 400px;
    margin-top: 10px;
}

.faq .answer p {
    line-height: 1.7;
    font-size: 16px;
    padding-right: 10px;
}

/* CTA Footer */
.cta-footer {
    background: #2b2b2b;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.cta-footer h2 {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-footer p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .evaluation-form {
        position: relative;
        top: 0;
    }
    
    .two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .two-column.reverse > div:first-child {
        order: 1;
    }
    
    .two-column.reverse > div:last-child {
        order: 2;
    }
    
    .content-section img {
        width: 100%;
        height: auto;
    }
    
    .team-container {
        gap: 30px;
    }
    
    .team-member {
        width: 320px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 15px 60px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-features-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .trusted-section {
        padding: 25px 10px 40px;
        border-radius: 25px;
        margin: 40px auto 0;
    }
    
    .trusted-section h2 {
        font-size: 18px;
        margin-bottom: 25px;
    }
    
    .trusted-logos {
        gap: 15px;
        padding: 0 10px;
    }
    
    .trusted-logos img {
        height: 30px !important;
        max-width: 50px !important;
    }
    
    .stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card h3 {
        font-size: 24px;
    }
    
    .lawyer-profile-card {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 0 15px;
    }
    
    .lawyer-profile-image {
        height: 400px;
        border-radius: 15px 15px 0 0;
    }
    
    .lawyer-profile-image img {
        border-radius: 15px 15px 0 0;
    }
    
    .lawyer-profile-content {
        padding: 30px 20px;
    }
    
    .lawyer-profile-content h2 {
        font-size: 28px;
    }
    
    .two-column {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .two-column.reverse > div:first-child {
        order: 1 !important;
    }
    
    .two-column.reverse > div:last-child {
        order: 2 !important;
    }
    
    /* Move Ready to Get Started section below content on mobile */
    .ready-section-left {
        display: none !important;
    }
    
    .ready-section-right {
        display: block !important;
    }
    
    /* Ensure contact and CTA sections stack on mobile */
    .free-case-review-container {
        grid-template-columns: 1fr !important;
    }
    
    .content-section {
        padding: 60px 15px;
    }
    
    .content-section h2 {
        font-size: 28px;
    }
    
    .content-section .subtitle {
        font-size: 18px;
    }
    
    .content-section p {
        font-size: 15px;
    }
    
    .content-section img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
    
    .locations-served-section h3 {
        font-size: 20px;
    }
    
    .region-item {
        font-size: 15px;
        padding: 10px 0;
    }
    
    .region-item strong {
        font-size: 16px;
    }
    
    .office-location-section {
        padding: 20px;
        margin-top: 30px;
    }
    
    .office-location-section h3 {
        font-size: 20px;
    }
    
    .location-checkmarks {
        flex-direction: column;
        gap: 8px;
    }
    
    .location-checkmark-item {
        font-size: 14px;
    }
    
    .ready-section {
        margin-top: 30px;
        text-align: center;
    }
    
    .ready-section h3 {
        font-size: 24px;
    }
    
    .ready-section p {
        font-size: 15px;
    }
    
    .why-choose-list-detailed li {
        padding: 12px 0;
        padding-left: 25px;
        font-size: 15px;
    }
    
    .why-choose-list-detailed li strong {
        font-size: 16px;
    }
    
    .case-example-section h3 {
        font-size: 20px;
    }
    
    .case-example-section p {
        font-size: 15px;
    }
    
    .closing-statement {
        margin-top: 30px;
        padding: 0 15px;
    }
    
    .closing-statement p {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .team-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .team-member {
        width: 100%;
    }
    
    .contact-section {
        padding: 60px 15px;
    }
    
    .contact-container {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }
    
    .contact-info-column h2 {
        font-size: 32px;
    }
    
    .contact-map iframe {
        height: 300px;
    }
    
    .free-case-review-section {
        padding: 40px 15px;
    }
    
    .free-case-review-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .free-case-review-content h2 {
        font-size: 28px;
    }
    
    .btn-free-review {
        width: 100%;
        text-align: center;
    }
    
    .meet-team h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .faq-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    #testimonialSlider ~ div,
    #testimonialSlider + div {
        margin-top: 20px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
        padding: 0 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }
    
    .dot.active {
        width: 12px;
        height: 12px;
    }
    
    .contact-info-column h2 {
        font-size: 28px;
    }
    
    .contact-form-card h3 {
        font-size: 22px;
    }
    
    .contact-form input {
        font-size: 15px;
        padding: 10px 12px;
    }
    
    .contact-item {
        font-size: 15px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-item i {
        margin-bottom: 5px;
    }
    
    .lawyer-profile-content h2 {
        font-size: 24px;
    }
    
    .lawyer-title {
        font-size: 16px;
    }
    
    .lawyer-qualifications {
        font-size: 15px;
    }
    
    .lawyer-profile-content p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .trusted-section {
        padding: 20px 10px 30px;
        border-radius: 20px;
        margin: 30px auto 0;
    }
    
    .trusted-section h2 {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .trusted-logos {
        gap: 10px;
        padding: 0 5px;
    }
    
    .trusted-logos img {
        height: 25px !important;
        max-width: 80px !important;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-container {
        grid-template-columns: 1fr;
    }
    
    .meet-team h2 {
        font-size: 28px;
    }
    
    .faq-section h2 {
        font-size: 28px;
    }
    
    #testimonialSlider ~ div,
    #testimonialSlider + div {
        gap: 6px;
        padding: 0 5px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
        margin: 0 2px;
    }
    
    .dot.active {
        width: 10px;
        height: 10px;
    }
}

/* Ensure logos don't overflow */
.trusted-logos {
    max-width: 100% !important;
    overflow: hidden !important;
    justify-content: center;
}

/* Mobile: Smaller logos */
@media (max-width: 991px) {
    .trusted-logos img {
        max-width: 70px !important;
        aspect-ratio: 1/1;
        object-fit: contain !important;
        display: block !important;
        height: auto !important;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info-column h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0b1d33;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.contact-item i {
    color: #C9A961;
    margin-right: 15px;
    margin-top: 3px;
    font-size: 18px;
    min-width: 20px;
}

.contact-item a {
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #C9A961;
}

.contact-map {
    margin-top: 30px;
}

.contact-form-column {
    position: relative;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-top-bar {
    background: #0b1d33;
    color: #ffffff;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border-radius: 15px 15px 0 0;
    font-family: 'Poppins', sans-serif;
}

.contact-form-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0b1d33;
    margin: 30px 25px 10px;
    font-family: 'Poppins', sans-serif;
}

.form-description {
    font-size: 15px;
    color: #666;
    margin: 0 25px 25px;
    font-family: 'Poppins', sans-serif;
}

.contact-form {
    padding: 0 25px 30px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #0b1d33;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.contact-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form input:focus {
    outline: none;
    border-color: #C9A961;
}

.btn-form-next {
    width: 100%;
    padding: 15px 30px;
    background-color: #C9A961;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-family: 'Poppins', sans-serif;
    margin-top: 10px;
}

.btn-form-next:hover {
    background-color: #B8965A;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(201, 169, 97, 0.3);
}

/* Free Case Review CTA Section */
.free-case-review-section {
    background: #2b2b2b;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
}

.free-case-review-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.free-case-review-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.free-case-review-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.btn-free-review {
    display: inline-block;
    padding: 15px 35px;
    background-color: #C9A961;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.btn-free-review:hover {
    background-color: #B8965A;
    color: #ffffff !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(201, 169, 97, 0.3);
}
