/* Variables */
:root {
    --primary-color: #1b2845;
    --secondary-color: #ffffff;
    --accent-color: #e67e22;
    --dark-overlay: rgba(27, 40, 69, 0.8);
    --dark-overlayed: rgba(27, 40, 69, 0.3);
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    padding: 8px 0;
    color: var(--secondary-color);
    font-size: 14px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1000;
}

.top-bar.hidden {
    transform: translateY(-100%);
}

.top-bar-contact {
    display: flex;
    gap: 20px;
}

.top-bar-contact a, .top-bar-contact span {
    color: var(--secondary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.top-bar-contact a:hover {
    opacity: 1;
}

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

.top-bar-social a {
    color: var(--secondary-color);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.top-bar-social a:hover {
    opacity: 1;
}

/* Navigation */
.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
    position: absolute;
    width: 100%;
    z-index: 999;
    background-color: var(--dark-overlayed) !important;
}

.navbar-sticky {
    position: fixed;
    top: 0;
    background-color: var(--primary-color) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-consultation {
    background-color: transparent;
    color: var(--secondary-color) !important;
    padding: 10px 25px;
    border: 2px solid var(--accent-color);
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-consultation:hover {
    background-color: var(--accent-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-image: url('../images/front-banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-overlay);
}

.hero-gavel {
    position: absolute;
    left: 50px;
    bottom: 50px;
    width: 200px;
    height: 200px;
    background-image: url('../images/gavel.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--secondary-color);
    text-align: left;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
}

.btn-learn-more {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 500;
}

.btn-learn-more:hover {
    background-color: #d35400;
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Services Section */
.services {
    margin-top: -100px;
    position: relative;
    z-index: 3;
}

.service-card {
    background-color: var(--primary-color);
    padding: 40px 30px;
    text-align: center;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    opacity: 0.9;
    margin-bottom: 0;
}

/* Add this after the Services Section styles */
.section-spacer {
    padding: 50px 0;
}

/* Who We Are Section */
.who-we-are {
    padding: 50px 0 100px;
    background-color: var(--secondary-color);
}

.section-subtitle {
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    color: var(--primary-color);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.signature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.signature-img {
    max-width: 150px;
    height: auto;
}

.signature-info h4 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.signature-info p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.who-we-are-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-play {
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.video-play i {
    font-size: 24px;
    margin-left: 5px;
}

.video-play:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 991px) {
    .top-bar-contact {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .top-bar-social {
        justify-content: center;
        margin-top: 10px;
    }
    
    .navbar-sticky {
        background-color: var(--primary-color) !important;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .services {
        margin-top: -50px;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .who-we-are {
        padding: 60px 0;
    }
    
    .who-we-are-image {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .top-bar {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-gavel {
        display: none;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .signature {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Our Services Section */
.our-services {
    padding: 100px 0;
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../images/wakili/service-bg.jpg');
}

.services-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 40, 69, 0.95);
    z-index: 1;
}

.our-services .container {
    position: relative;
    z-index: 2;
}

.our-services .section-subtitle {
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.our-services .section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.our-services .description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-more-services {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-more-services:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.practice-area-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.practice-area-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

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

.practice-area-card h3 {
    color: var(--secondary-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.practice-area-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.practice-area-card.with-image {
    background-image: url('../images/insurance-law.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.practice-area-card.with-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.practice-area-card.with-image h3,
.practice-area-card.with-image p {
    position: relative;
    z-index: 1;
}

/* Personalized Attention Section */
.personalized-attention {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.team-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.team-image img {
    /* width: 100%; */
    border-radius: 10px;
}

.process-steps {
    margin-top: 40px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-content h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.step-content p {
    color: #666;
    margin-bottom: 0;
}

/* Add to existing media queries */
@media (max-width: 991px) {
    .our-services {
        background-attachment: scroll; /* For better mobile performance */
    }
    
    .our-services .section-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .our-services .section-title {
        font-size: 28px;
    }
}

/* Add to your custom-style.css */
.service-icon i,
.practice-area-card .icon i {
    font-size: 48px;
    background: linear-gradient(45deg, var(--accent-color), #f39c12);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i,
.practice-area-card:hover .icon i {
    transform: scale(1.1);
    background: linear-gradient(45deg, #f39c12, var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Update the icon sizes for better visibility */
.service-icon,
.practice-area-card .icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

/* Call To Action Section */
.call-to-action-wrap-layout1 {
    padding: 88px 0 80px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-color: #f9f9f9;
}

.call-to-action-wrap-layout1 .animated-figure {
    position: absolute;
    z-index: 0;
    right: 0;
    top: 10px;
    opacity: 0.05;
}

.call-to-action-wrap-layout1 img {
    transform: translateY(3%) translateX(0);
    transition: all 0.3s ease;
}

.call-to-action-wrap-layout1:hover img {
    transform: translateY(0) translateX(0);
}

.call-to-action-box-layout1 {
    position: relative;
    z-index: 2;
}

.call-to-action-box-layout1 .item-title {
    font-weight: 600;
    font-size: 40px;
    line-height: 56px;
    color: var(--primary-color);
    margin-bottom: 0;
}

.call-to-action-box-layout1 .btn-fill {
    padding: 15px 35px;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.call-to-action-box-layout1 .btn-fill:hover {
    background-color: transparent;
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Add to existing media queries */
@media only screen and (max-width: 1199px) {
    .call-to-action-wrap-layout1 {
        padding: 88px 0 70px;
    }
}

@media only screen and (max-width: 991px) {
    .call-to-action-wrap-layout1 {
        padding: 68px 0 43px;
    }
    
    .call-to-action-box-layout1 {
        margin-bottom: 20px;
        text-align: center;
    }
    
    .call-to-action-box-layout1 .item-title {
        font-size: 32px;
        line-height: 44px;
    }
}

@media only screen and (max-width: 767px) {
    .call-to-action-wrap-layout1 {
        padding: 68px 0 63px;
    }
    
    .call-to-action-box-layout1 .item-title {
        font-size: 28px;
        line-height: 38px;
    }
}

@media only screen and (max-width: 575px) {
    .call-to-action-wrap-layout1 {
        padding: 48px 0 23px;
    }
    
    .call-to-action-box-layout1 {
        margin-bottom: 22px;
    }
    
    .call-to-action-box-layout1 .item-title {
        font-size: 24px;
        line-height: 34px;
    }
}

/* Statistics & Testimonial Section */
.stats-testimonial {
    padding: 100px 0;
    background-color: #fff;
}

/* Statistics Styles */
.stats-wrapper {
    padding-right: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.stat-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    margin-right: 20px;
    color: var(--accent-color);
    font-size: 40px;
}

.stat-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.stat-content p {
    margin: 0;
    color: #666;
    font-size: 16px;
}

/* Testimonial Styles */
.testimonial-wrapper {
    position: relative;
    padding-left: 30px;
}

.testimonial-wrapper .section-subtitle {
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.testimonial-wrapper .section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.testimonial-wrapper .description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 5px;
}

.author-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.testimonial-nav {
    display: flex;
    gap: 10px;
}

.testimonial-nav span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-nav span.active {
    background-color: var(--accent-color);
    width: 25px;
    border-radius: 5px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .stats-testimonial {
        padding: 60px 0;
    }

    .stats-wrapper {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .testimonial-wrapper {
        padding-left: 0;
    }

    .testimonial-wrapper .section-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .stat-item {
        padding: 15px;
    }

    .stat-content h3 {
        font-size: 28px;
    }

    .testimonial-wrapper .section-title {
        font-size: 28px;
    }
}

/* Team Member Section */
.team-member-section {
    padding: 100px 0;
    background-image: url('../images/wakili/brand-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.team-member-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 40, 69, 0.95);
    z-index: -1;
}

.team-member-section .section-subtitle {
    color: var(--accent-color);
}

.team-member-section .section-title {
    color: var(--secondary-color);
}

.team-member-section .description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.btn-our-team {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.btn-our-team:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.team-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-info p {
    color: var(--accent-color);
    margin: 0;
    font-size: 14px;
}

/* Add to existing media queries */
@media (max-width: 991px) {
    .team-member-section {
        padding: 60px 0;
    }
    
    .team-member-section .section-title {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .team-card {
        margin-bottom: 30px;
    }
}

/* Free Consultation Section */
.consultation-section {
    position: relative;
    background-color: var(--primary-color);
}

.consultation-image {
    height: 100%;
    min-height: 600px;
    position: relative;
}

.consultation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.consultation-form-wrapper {
    padding: 80px 50px;
    color: var(--secondary-color);
}

.consultation-form-wrapper .section-subtitle {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.consultation-form-wrapper .section-title {
    color: var(--secondary-color);
    font-size: 42px;
    margin-bottom: 20px;
}

.consultation-form-wrapper .description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.consultation-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--secondary-color);
    padding: 12px 20px;
    height: auto;
    border-radius: 5px;
}

.consultation-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.consultation-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    box-shadow: none;
}

.consultation-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 15px 35px;
    border: 2px solid var(--accent-color);
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    width: auto;
    display: inline-block;
}

.btn-submit:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Add to existing media queries */
@media (max-width: 991px) {
    .consultation-image {
        min-height: 400px;
    }

    .consultation-form-wrapper {
        padding: 50px 30px;
    }

    .consultation-form-wrapper .section-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .consultation-form-wrapper {
        padding: 40px 20px;
    }

    .consultation-form-wrapper .section-title {
        font-size: 28px;
    }
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.blog-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    line-height: 1.2;
}

.blog-date .day {
    display: block;
    font-size: 24px;
    font-weight: 700;
}

.blog-date .month {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: var(--accent-color);
    font-size: 16px;
}

.blog-title {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--accent-color);
}

.blog-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-color);
    gap: 10px;
}

.read-more i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

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

/* Add to existing media queries */
@media (max-width: 991px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-title {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .blog-card {
        margin-bottom: 30px;
    }
    
    .blog-image img {
        height: 220px;
    }
}

/* Footer Section */
.footer-section {
    background-color: #000;
    color: var(--secondary-color);
    position: relative;
    padding-top: 120px; /* Space for floating subscribe box */
}

/* Subscribe Section - Floating Design */
.subscribe-wrapper {
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    z-index: 10;
}

.subscribe-box {
    background-color: var(--primary-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 80%;
    margin: 0 auto;
}

.subscribe-content h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.subscribe-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.subscribe-form .input-group {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 5px;
}

.subscribe-form .form-control {
    height: 50px;
    background-color: transparent;
    border: none;
    color: var(--secondary-color);
    padding: 0 20px;
    font-size: 1rem;
}

.subscribe-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.subscribe-form .form-control:focus {
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-subscribe {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border: none;
    padding: 0 30px;
    height: 50px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

/* Footer Content */
.footer-content {
    padding: 80px 0 50px;
    background-color: #000;
}

.footer-content h4 {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: 0.75rem;
    color: var(--accent-color);
}

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

/* Contact Information */
.footer-contact {
    margin: 0;
    padding: 0;
}

.contact-item {
    margin-bottom: 1.25rem;
}

.contact-item span {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-color);
}

.contact-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Copyright Bar */
.footer-bottom {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.25rem 0;
    margin-top: 2rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-section {
        padding-top: 80px;
    }
    
    .subscribe-box {
        width: 90%;
        padding: 30px;
    }
    
    .subscribe-content {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .subscribe-content h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .footer-section {
        padding-top: 60px; /* Reduced padding since subscribe box is hidden */
    }
    
    .footer-content {
        padding: 40px 0 30px;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding-top: 40px; /* Further reduced padding for very small screens */
    }
}

/* Page Header Styles */
.page-header {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    
    background-size: cover;
    background-position: center;
    margin-top: 0;
}
.about-header {
    background-image: url('../images/wakili/brand-bg.jpg');
}
.contact-header {
    background-image: url('../images/wakili/brand-bg.jpg');
}
.blog-header {
    background-image: url('../images/wakili/brand-bg.jpg');
}
.practice-header {
    background-image: url('../images/wakili/brand-bg.jpg');
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-overlay);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--secondary-color);
    padding-top: 70px;
}

.page-header .breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    background: transparent;
    padding: 0;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: var(--secondary-color);
    font-size: 16px;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.page-header .breadcrumb-item a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.page-header .breadcrumb-item.active {
    color: var(--accent-color);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    content: '|';
    color: rgba(255, 255, 255, 0.5);
    padding: 0 15px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    text-transform: capitalize;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .page-header {
        height: 400px;
    }

    .page-header .container {
        padding-top: 60px;
    }

    .page-header h1 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .page-header {
        height: 350px;
    }

    .page-header .container {
        padding-top: 50px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header .breadcrumb-item {
        font-size: 14px;
    }

    .page-header .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 10px;
    }
}

/* About Content Section */
.section-padding {
    padding: 100px 0;
}

.section-subtitle {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
}

.section-title {
    color: var(--primary-color);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.description p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Feature Items */
.feature-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(230, 126, 34, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 24px;
    color: var(--accent-color);
}

/* About Image Stack */
.about-image-stack {
    position: relative;
    padding-right: 30px;
}

.about-image-stack img {
    border-radius: 15px;
}

.about-image-overlay {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: absolute;
    right: 0;
    bottom: 30px;
    width: 320px;
    transform: translateX(50px);
}

.about-image-overlay img.signature {
    height: 60px;
    margin-right: 20px;
}

/* Core Values Section */
.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(230, 126, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon i {
    font-size: 32px;
    color: var(--accent-color);
}

.value-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Team Section */
.team-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-info .position {
    color: var(--accent-color);
    font-size: 16px;
    margin-bottom: 15px;
    display: block;
}

.team-info p {
    color: #666;
    margin-bottom: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(230, 126, 34, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--accent-color);
    margin: 0 5px;
    transition: all 0.3s ease;
}

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

/* Stats Section */
.stats-section {
    background: var(--primary-color);
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-icon {
    margin-bottom: 20px;
}

.stat-icon i {
    font-size: 48px;
    color: var(--accent-color);
}

.stat-content h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #080000;
}

.stat-content p {
    font-size: 16px;
    margin: 0;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #d35400;
    border-color: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(211, 84, 0, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .page-header {
        padding: 100px 0 60px;
        margin-top: -76px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .section-padding {
        padding: 70px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .about-image-overlay {
        width: 280px;
        transform: translateX(30px);
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 80px 0 50px;
        margin-top: -70px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .about-image-stack {
        padding-right: 0;
        margin-top: 40px;
    }

    .about-image-overlay {
        position: relative;
        width: 100%;
        transform: translateX(0);
        margin-top: -50px;
    }

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

    .stat-content h3 {
        font-size: 36px;
    }
}

/* About Page Team Section */
/*  */

/* Practice Areas Section */
.practice-areas-content {
    background-color: #fff;
    padding: 100px 0;
}

.practice-area-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.practice-area-item .icon {
    width: 70px;
    height: 70px;
    background: rgba(230, 126, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.practice-area-item:hover .icon {
    background: var(--accent-color);
}

.practice-area-item .icon i {
    font-size: 28px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.practice-area-item:hover .icon i {
    color: #fff;
}

.practice-area-item h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.practice-area-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.practice-area-item .read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.practice-area-item .read-more i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.practice-area-item .read-more:hover {
    color: var(--primary-color);
}

.practice-area-item .read-more:hover i {
    transform: translateX(5px);
}

/* Practice Areas Responsive */
@media (max-width: 991px) {
    .practice-areas-content {
        padding: 70px 0;
    }

    .practice-area-item {
        padding: 30px 25px;
    }

    .practice-area-item h3 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .practice-areas-content {
        padding: 50px 0;
    }

    .practice-area-item {
        padding: 25px 20px;
        margin-bottom: 30px;
    }

    .practice-area-item .icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .practice-area-item .icon i {
        font-size: 24px;
    }

    .practice-area-item h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .practice-area-item p {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

/* Blog Page Specific Styles */
.blog-content {
    background-color: #f9f9f9;
}

.blog-post-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.blog-post-card .blog-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.blog-post-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-post-card .blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    line-height: 1.2;
    z-index: 1;
}

.blog-post-card .blog-content {
    background: #fff;
    padding: 30px;
}

.blog-post-card .blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.blog-post-card .blog-meta span {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-post-card .blog-meta i {
    color: var(--accent-color);
}

.blog-post-card .blog-title {
    margin-bottom: 15px;
}

.blog-post-card .blog-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-card .blog-title a:hover {
    color: var(--accent-color);
}

.blog-post-card .blog-excerpt {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Blog Sidebar Styles */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.widget-title {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

/* Search Widget */
.search-widget .search-form {
    position: relative;
}

.search-widget .form-control {
    height: 50px;
    padding-right: 50px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.search-widget .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: none;
}

.search-widget .btn-search {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    width: 50px;
    border: none;
    background: transparent;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.search-widget .btn-search:hover {
    color: var(--primary-color);
}

/* Categories Widget */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    border-bottom: 1px solid #eee;
}

.categories-list li:last-child {
    border-bottom: none;
}

.categories-list li a {
    color: #666;
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.categories-list li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.categories-list li a span {
    background: rgba(230, 126, 34, 0.1);
    color: var(--accent-color);
    padding: 2px 10px;
    border-radius: 15px;
    font-size: 12px;
}

/* Recent Posts Widget */
.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.recent-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-item .post-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.recent-post-item .post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-post-item:hover .post-thumb img {
    transform: scale(1.1);
}

.recent-post-item .post-info h5 {
    margin: 0 0 5px;
    font-size: 16px;
    line-height: 1.4;
}

.recent-post-item .post-info h5 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-item .post-info h5 a:hover {
    color: var(--accent-color);
}

.recent-post-item .post-date {
    color: #666;
    font-size: 13px;
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 50px;
}

.blog-pagination .pagination {
    justify-content: center;
    gap: 5px;
}

.blog-pagination .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    border-radius: 8px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    padding: 0;
}

.blog-pagination .page-link:hover,
.blog-pagination .page-item.active .page-link {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .blog-sidebar {
        margin-top: 50px;
        position: static;
    }
    
    .blog-post-card .blog-title a {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .blog-post-card .blog-image {
        height: 250px;
    }
    
    .blog-post-card .blog-title a {
        font-size: 20px;
    }
    
    .blog-post-card .blog-content {
        padding: 25px;
    }
    
    .sidebar-widget {
        padding: 25px;
    }
}

/* Contact Page Styles */
.contact-info-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.contact-info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

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

.contact-info-card .icon {
    width: 80px;
    height: 80px;
    background: rgba(230, 126, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .icon {
    background: var(--accent-color);
}

.contact-info-card .icon i {
    font-size: 32px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.contact-info-card:hover .icon i {
    color: #fff;
}

.contact-info-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-info-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-info-card a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 5px;
}

.contact-info-card a:hover {
    color: var(--accent-color);
}

/* Map Section */
.map-section {
    position: relative;
    z-index: 1;
}

.map-container {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1);
    transition: all 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0);
}

/* Contact Form Section */
.contact-form-section {
    background-color: #fff;
    padding: 100px 0;
}

.contact-form-section .section-subtitle {
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.contact-form-section .section-title {
    color: var(--primary-color);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-form-section .description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 50px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form .form-control {
    height: 55px;
    padding: 0 20px;
    font-size: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.contact-form textarea.form-control {
    height: auto;
    padding: 15px 20px;
    resize: vertical;
}

.contact-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
    background-color: #fff;
}

.contact-form .form-control::placeholder {
    color: #999;
}

.contact-form .btn-submit {
    background: var(--accent-color);
    color: #fff;
    padding: 15px 40px;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.contact-form .btn-submit:hover {
    background-color: transparent;
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .contact-info-section {
        padding: 60px 0;
    }

    .contact-info-card {
        margin-bottom: 30px;
    }

    .map-container {
        height: 400px;
    }

    .contact-form-section {
        padding: 80px 0;
    }

    .contact-form-section .section-title {
        font-size: 36px;
    }

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

@media (max-width: 767px) {
    .contact-info-section {
        padding: 40px 0;
    }

    .contact-info-card {
        padding: 30px 20px;
    }

    .contact-info-card .icon {
        width: 60px;
        height: 60px;
    }

    .contact-info-card .icon i {
        font-size: 24px;
    }

    .map-container {
        height: 350px;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-section .section-title {
        font-size: 28px;
    }

    .contact-form {
        padding: 25px;
    }

    .contact-form .btn-submit {
        width: 100%;
        padding: 12px 30px;
    }
}

/* Additional Responsive Adjustments for Small Screens */
@media (max-width: 576px) {
    /* General Spacing Adjustments */
    .section-padding {
        padding: 40px 0;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Navigation Adjustments */
    .navbar {
        padding: 15px 0;
    }

    .navbar-brand img {
        height: 40px;
    }

    /* Header Adjustments */
    .page-header {
        height: 300px;
        padding: 60px 0 40px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .breadcrumb {
        margin-bottom: 5px;
    }

    /* Card Spacing Adjustments */
    .practice-area-item,
    .team-card,
    .blog-post-card,
    .contact-info-card,
    .value-card {
        margin-bottom: 20px;
        padding: 20px 15px;
    }

    /* Section Title Spacing */
    .section-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 13px;
        margin-bottom: 10px;
    }

    /* Form Elements */
    .form-control {
        padding: 10px 15px;
        height: 45px;
    }

    textarea.form-control {
        padding: 12px 15px;
    }

    /* Button Adjustments */
    .btn-submit,
    .btn-consultation,
    .btn-learn-more {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Grid Gaps */
    .row {
        --bs-gutter-x: 15px;
    }

    .row > [class*='col-'] {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Icon Sizes */
    .icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .icon i {
        font-size: 20px;
    }

    /* Text Spacing */
    p {
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 1.6;
    }

    h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    /* Blog Specific */
    .blog-post-card .blog-content {
        padding: 20px 15px;
    }

    .blog-post-card .blog-image {
        height: 200px;
    }

    .sidebar-widget {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    /* Contact Page */
    .contact-form {
        padding: 20px 15px;
    }

    .map-container {
        height: 300px;
    }

    /* Footer Adjustments */
    .footer-section {
        padding-top: 40px;
    }

    .subscribe-box {
        padding: 25px 15px;
        width: 95%;
    }

    .footer-content {
        padding: 40px 0 20px;
    }

    .footer-content h4 {
        margin-bottom: 15px;
    }

    .social-links {
        gap: 8px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
    }

    /* Stats Section */
    .stat-content h3 {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .stat-content p {
        font-size: 13px;
    }

    .team-info {
        padding: 15px;
    }

    /* Practice Areas */
    .practice-area-item .icon {
        margin-bottom: 15px;
    }

    .practice-area-item h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    /* CTA Sections */
    .cta-section {
        padding: 40px 0;
    }

    .cta-section h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
}

/* Additional Tablet-Small Screen Breakpoint */
@media (max-width: 768px) and (min-width: 577px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .row {
        --bs-gutter-x: 20px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }
}

/* Navbar Toggler */
.navbar-toggler {
    padding: 0.5rem;
    border: 2px solid var(--secondary-color);
    background-color: transparent;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    .navbar-toggler {
        margin-right: 15px;
        z-index: 1030;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
        outline: none;
    }
}