:root {
    --primary-color: #07303D !important;
    --secondary-color: #07303D !important;
    --light-color: #d4d4d4 !important;
    --white-color: #ffffff !important;
    --text-dark: #07303D !important;
    --text-light: #666666 !important;
    --bg-light: #f5f5f5 !important;
    --primary-light: rgba(17, 58, 63, 0.1);
    --secondary-light: rgba(177, 118, 77, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===== BASE STYLES ===== */
body {
    font-family: 'Raleway', sans-serif;
    color: var(--text-dark);
    background-color: var(--white-color);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.2;
}

p {
    margin-bottom: 1.5rem;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    border-radius: 0;
}

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

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    z-index: -1;
    transform: skew(-20deg);
    transition: var(--transition);
}

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

.btn-primary:hover::before {
    width: 120%;
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    overflow: hidden;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--secondary-color);
    z-index: -1;
    transition: var(--transition);
}

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

.btn-outline:hover::before {
    width: 100%;
}

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

.btn-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    z-index: -1;
    transform: skew(-20deg);
    transition: var(--transition);
}

.btn-light:hover {
    color: var(--white-color);
}

.btn-light:hover::before {
    width: 120%;
}

.btn i {
    margin-left: 10px;
    transition: var(--transition);
}

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

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* ===== TOP BAR ===== */
.top-bar {
    background-color: var(--primary-color);
    position: relative;
    padding: 8px 0;
    font-size: 0.85rem;
}

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

.top-contact {
    display: flex;
    flex-wrap: wrap;
}

.top-contact-item {
    color: var(--white-color);
    margin-right: 20px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.top-contact-item:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.top-contact-item i {
    margin-right: 5px;
}

.top-social {
    display: flex;
}

.top-social .social-icon {
    color: var(--white-color);
    margin-left: 15px;
    font-size: 1rem;
    opacity: 0.9;
    transition: var(--transition);
}

.top-social .social-icon:hover {
    opacity: 1;
    color: var(--secondary-color);
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: var(--transition);
}

.header-main {
    padding: 15px 0;
}

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

.site-branding {
    display: flex;
    flex-direction: column;
}

.site-logo {
    text-decoration: none;
    display: block;
}

.site-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
    position: relative;
    margin-bottom: -8px;
}

.site-description {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation .menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation .menu li {
    margin-left: 30px;
    position: relative;
}

.main-navigation .menu a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 10px 0;
    display: block;
    position: relative;
}

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

.main-navigation .menu a:hover {
    color: var(--secondary-color);
}

.main-navigation .menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
}

.header-cta {
    margin-left: 30px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 58, 63, 0.9) 0%, rgba(17, 58, 63, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-text {
    width: 60%;
    max-width: 700px;
    animation: fadeInUp 1s forwards;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white-color);
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--light-color);
    margin-bottom: 30px;
    max-width: 80%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons .btn-outline {
    color: var(--white-color);
    border-color: var(--white-color);
}

.hero-buttons .btn-outline:hover {
    color: var(--primary-color);
}

.hero-buttons .btn-outline::before {
    background-color: var(--white-color);
}

.hero-decoration {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.5s forwards;
}

.justice-symbol {
    width: 220px;
    height: 220px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.justice-symbol::before {
    content: '';
    position: absolute;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.justice-symbol i {
    font-size: 80px;
    color: var(--secondary-color);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    display: block;
    width: 40px;
    height: 40px;
    background-color: var(--white-color);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: bounce 2s infinite;
}

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

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 50px 0;
    position: relative;
    background-color: var(--white-color);
    margin-top: -80px;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    box-shadow: var(--box-shadow);
}

.feature-item {
    padding: 40px 20px;
    background-color: var(--white-color);
    border-bottom: 3px solid var(--secondary-color);
    text-align: center;
    transition: var(--transition);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-light);
    color: var(--secondary-color);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.feature-item h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===== SECTION HEADINGS ===== */
.section-heading {
    margin-bottom: 60px;
    position: relative;
}

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

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



.section-heading.center .section-subtitle::before {
    left: -50px;
}

.section-heading.center .section-subtitle::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: var(--secondary-color);
    top: 50%;
    right: -50px;
}

.section-heading h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-heading p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
}

.section-heading.center p {
    margin-left: auto;
    margin-right: auto;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    height: 500px;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary-color);
    top: 20px;
    left: 20px;
    z-index: -1;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.about-text {
    position: relative;
}

.about-quote {
    position: relative;
    padding: 20px 25px;
    background-color: var(--white-color);
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.about-quote i {
    position: absolute;
    font-size: 4rem;
    color: var(--secondary-light);
    top: -20px;
    left: -20px;
    opacity: 0.5;
}

.about-quote p {
    position: relative;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 0;
}

.about-text p {
    /* margin-bottom: 20px; */
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-features {
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-feature-item {
    display: flex;
    align-items: center;
}

.about-feature-item i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
}

.service-card {
    background-color: var(--white-color);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: -30px;
    margin-bottom: 20px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    top: 5px;
    left: 5px;
    z-index: -1;
    transition: var(--transition);
}

.service-card:hover .service-icon::before {
    top: -5px;
    left: -5px;
}

.service-content {
    padding: 0 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.service-divider {
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .service-divider {
    width: 60px;
}

.service-content p {
    text-align: center;
    margin-bottom: 25px;
    color: var(--text-light);
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: auto;
}

.service-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: baseline;
}

.service-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 0.8rem;
}

.services-cta {
    margin-top: 50px;
    text-align: center;
}

/* ===== EXPERTISE AREAS SECTION ===== */
.expertise-areas-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.expertise-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tabs-navigation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 10px;
}

.tab-btn {
    padding: 12px 25px;
    background-color: var(--white-color);
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: var(--secondary-color);
    transition: var(--transition);
    z-index: -1;
}

.tab-btn.active::before,
.tab-btn:hover::before {
    width: 100%;
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--white-color);
}

.tabs-content {
    background-color: var(--white-color);
    box-shadow: var(--box-shadow);
    padding: 40px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s forwards;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.content-item {
    text-align: center;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--secondary-color);
}

.content-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.content-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.content-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===== PROFESSIONALS SECTION ===== */
.professionals-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.professionals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 50px;
}

.professional-card {
    background-color: var(--white-color);
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
}

.professional-image {
    width: 100%;
    height: 560px;
    overflow: hidden;
}

.professional-image img {
    width: 100%;
    height: 150%;
    object-fit: cover;
    transition: var(--transition);
}

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

.professional-info {
    padding: 30px;
}

.professional-info h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.professional-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.professional-oab {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.professional-details {
    margin-top: 20px;
}

.professional-education,
.professional-areas {
    margin-bottom: 20px;
}

.professional-education h4,
.professional-areas h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.professional-education ul {
    list-style: none;
    padding: 0;
}

.professional-education li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
}

.professional-education li::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    left: 0;
    top: 12px;
    border-radius: 50%;
}

.areas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.areas-tags span {
    padding: 5px 15px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
}

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

.professional-contact-link {
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 500;
}

.professional-contact-link i {
    margin-right: 5px;
}

/* ===== VALUES SECTION ===== */
.values-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

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

.value-card {
    background-color: var(--white-color);
    padding: 40px;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.value-card::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 0;
    background-color: var(--secondary-color);
    top: 0;
    left: 0;
    transition: var(--transition);
    z-index: -1;
}

.value-card:hover::before {
    height: 100%;
}

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

.value-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.value-card h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

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

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.values-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.values-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '\201C';
    font-family: Georgia, serif;
    position: absolute;
    font-size: 300px;
    color: var(--primary-light);
    top: 50px;
    left: 50px;
    line-height: 0;
    opacity: 0.2;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-item {
    background-color: var(--white-color);
    box-shadow: var(--box-shadow);
    padding: 40px;
    border-top: 3px solid var(--secondary-color);
    transition: var(--transition);
}

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

.testimonial-content {
    position: relative;
    margin-bottom: 30px;
}

.testimonial-icon {
    position: absolute;
    font-size: 3rem;
    top: -20px;
    left: -10px;
    color: var(--secondary-light);
}

.testimonial-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-light);
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.testimonial-author {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.faq-tab {
    padding: 10px 20px;
    background-color: var(--white-color);
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.faq-tab.active,
.faq-tab:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.faq-tab-content {
    display: none;
}

.faq-tab-content.active {
    display: block;
    animation: fadeIn 0.5s forwards;
}

.accordion-container {
    background-color: var(--white-color);
    box-shadow: var(--box-shadow);
}

.accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.accordion-header {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header h3 {
    font-size: 1.1rem;
    margin: 0;
    transition: var(--transition);
}

.accordion-icon {
    position: relative;
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.accordion-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.accordion-icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.accordion-item.active .accordion-header {
    background-color: var(--primary-light);
}

.accordion-item.active .accordion-header h3 {
    color: var(--primary-color);
}

.accordion-item.active .accordion-icon::after {
    opacity: 0;
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 30px 20px;
    max-height: 500px;
}

.accordion-content p {
    margin: 0;
    line-height: 1.8;
    color: var(--text-light);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--white-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-card {
    background-color: var(--white-color);
    box-shadow: var(--box-shadow);
    padding: 40px;
    height: 100%;
}

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

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-text p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

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

.contact-social h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.contact-social h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.contact-form-container {
    box-shadow: var(--box-shadow);
}

.contact-form-card {
    background-color: var(--white-color);
    padding: 40px;
}

.contact-form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.contact-form-card h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee;
    background-color: #f9f9f9;
    font-family: 'Raleway', sans-serif;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px var(--secondary-light);
    background-color: var(--white-color);
}

.form-control.invalid {
    border-color: #ff3b30;
    box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.1);
}

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

.form-submit {
    text-align: center;
    margin-top: 20px;
}

/* ===== MAP SECTION ===== */
.map-section {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: var(--primary-color);
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.footer-widgets {
    padding: 80px 0 40px;
}

.footer-widgets-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-widget-title {
    font-size: 1.4rem;
    color: var(--white-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

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

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo h3 {
    font-size: 1.6rem;
    color: var(--white-color);
    margin-bottom: 5px;
}

.footer-logo span {
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-contact-item {
    display: flex;
    margin-bottom: 20px;
}

.footer-contact-item i {
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.footer-contact-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

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

.footer-areas-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-areas-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 0.8rem;
}

.footer-areas-list li:hover {
    color: var(--secondary-color);
    transform: translateX(10px);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Data Animation Attributes */
[data-animation] {
    opacity: 0;
}

[data-animation="fadeIn"].visible {
    animation: fadeIn 1s forwards;
}

[data-animation="fadeUp"].visible {
    animation: fadeInUp 1s forwards;
}

[data-animation="fadeDown"].visible {
    animation: fadeInDown 1s forwards;
}

[data-animation="fadeLeft"].visible {
    animation: fadeInLeft 1s forwards;
}

[data-animation="fadeRight"].visible {
    animation: fadeInRight 1s forwards;
}

/* ===== PAGE LAYOUTS ===== */
.page-header {
    position: relative;
    padding: 120px 0 60px;
    background-color: var(--primary-color);
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(45deg, rgba(177, 118, 77, 0.1) 25%, transparent 25%, transparent 50%, rgba(177, 118, 77, 0.1) 50%, rgba(177, 118, 77, 0.1) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    opacity: 0.2;
}

.page-title {
    color: var(--white-color);
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.post-meta span {
    display: flex;
    align-items: center;
}

.post-meta span i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.page-content {
    padding: 80px 0;
    position: relative;
}

.content-layout,
.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.post-content,
.page-main-content {
    background-color: var(--white-color);
    box-shadow: var(--box-shadow);
    padding: 40px;
}

.single-post-thumbnail {
    margin-bottom: 30px;
    overflow: hidden;
}

.single-post-thumbnail img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.entry-content {
    margin-bottom: 30px;
}

.entry-tags {
    margin-bottom: 20px;
    color: var(--text-light);
}

.entry-tags i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.post-navigation {
    margin-top: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 30px;
}

.post-nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.post-nav-prev,
.post-nav-next {
    display: flex;
    flex-direction: column;
}

.post-nav-next {
    text-align: right;
}

.nav-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.nav-link {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
}

.post-nav-prev .nav-link i {
    margin-right: 10px;
}

.post-nav-next .nav-link {
    justify-content: flex-end;
}

.post-nav-next .nav-link i {
    margin-left: 10px;
}

.related-posts {
    margin-top: 50px;
}

.related-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

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

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-post {
    background-color: var(--bg-light);
    transition: var(--transition);
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.related-thumbnail {
    height: 150px;
    overflow: hidden;
}

.related-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.related-post:hover .related-thumbnail img {
    transform: scale(1.05);
}

.related-content {
    padding: 15px;
}

.related-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.related-content h4 a {
    color: var(--primary-color);
}

.related-content h4 a:hover {
    color: var(--secondary-color);
}

.related-date {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.related-date i {
    margin-right: 5px;
    color: var(--secondary-color);
}

/* ===== SIDEBAR STYLING ===== */
.widget-area {
    position: relative;
}

.sidebar-inner {
    position: sticky;
    top: 120px;
}

.widget {
    background-color: var(--white-color);
    box-shadow: var(--box-shadow);
    padding: 30px;
    margin-bottom: 30px;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

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

.widget-content p {
    margin-bottom: 20px;
}

.widget-link {
    color: var(--secondary-color);
    font-weight: 600;
    position: relative;
    padding-right: 20px;
}

.widget-link::after {
    content: '\F231';
    font-family: 'bootstrap-icons';
    position: absolute;
    right: 0;
    top: 2px;
    transition: var(--transition);
}

.widget-link:hover::after {
    transform: translateX(5px);
}

.areas-list {
    list-style: none;
    padding: 0;
}

.areas-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.areas-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.areas-list a {
    color: var(--text-dark);
    transition: var(--transition);
    display: block;
}

.areas-list a:hover {
    color: var(--secondary-color);
    transform: translateX(10px);
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.contact-info p i {
    color: var(--secondary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* ===== BLOG LAYOUT ===== */
.posts-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.blog-post {
    background-color: var(--white-color);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

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

.post-thumbnail {
    height: 300px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.post-content {
    padding: 30px;
}

.entry-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.entry-title a {
    color: var(--primary-color);
}

.entry-title a:hover {
    color: var(--secondary-color);
}

.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.entry-meta span {
    display: flex;
    align-items: center;
}

.entry-meta i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.entry-footer {
    margin-top: 20px;
}

.pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    background-color: var(--white-color);
    color: var(--primary-color);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.pagination .prev,
.pagination .next {
    width: auto;
    padding: 0 15px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-heading h2 {
        font-size: 2.5rem;
    }
    
    .professionals-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        margin-top: 200px;
    }
    
    .hero-text {
        width: 100%;
        margin-bottom: 40px;
    }
    
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content,
    .contact-content,
    .footer-widgets-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        margin-bottom: 40px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .content-layout,
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .widget-area {
        margin-top: 50px;
    }
    
    .sidebar-inner {
        position: static;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .top-contact {
        justify-content: center;
    }
    
    .top-social {
        justify-content: center;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        right: -300px;
        width: 270px;
        height: 100vh;
        background-color: var(--white-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 1000;
    }
    
    .main-navigation.active {
        right: 0;
    }
    
    .main-navigation .menu {
        flex-direction: column;
        width: 100%;
    }
    
    .main-navigation .menu li {
        margin-left: 0;
        margin-bottom: 15px;
    }
    
    .header-cta {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }
    
    .header-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-tabs .tabs-navigation {
        overflow-x: auto;
        padding-bottom: 10px;
        white-space: nowrap;
        display: block;
    }
    
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .post-nav-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-heading h2 {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card,
    .contact-form-card {
        padding: 20px;
    }
}