* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Language Switcher Styles */
.language-switcher {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lang-text {
    font-family: 'Cairo', sans-serif;
}

/* RTL specific styles for language switcher */
[dir="rtl"] .language-switcher {
    margin-left: 0;
    margin-right: 20px;
}

[dir="rtl"] .lang-btn {
    flex-direction: row-reverse;
}

.top-bar a,
a[href^="tel"],
a[href^="mailto"] {
    text-decoration: none !important;
    color: inherit !important;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Alternative: Hide scrollbar for specific element */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body {
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #000000;
}

/* Top Bar */
.top-bar {
    background-color: #9e7c3c;
    color: #fff;
    padding: 12px 0;
    font-size: 14px;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 40px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.location {
    display: flex;
    gap: 10px;
}

/* Header Navigation */
header {
    background-color: #181717;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Mobile Menu Toggle Button - Hidden on Desktop */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #f0f0f0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background-color: #9e7c3c;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background-color: #9e7c3c;
}

.nav-wrapper {
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu>li {
    position: relative;
}

.nav-menu>li>a {
    text-decoration: none;
    color: #f0f0f0;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    display: block;
    transition: color 0.3s ease;
}

.nav-menu>li>a:hover {
    color: #9e7c3c;
}

.nav-menu>li.active>a {
    color: #9e7c3c;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: calc(100vh - 100px);
    min-height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.342) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.slide-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: slideInLeft 1s ease;
    line-height: 1.2;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    animation: slideInLeft 1s ease 0.2s both;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #9e7c3c;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    animation: slideInLeft 1s ease 0.4s both;
    border: 2px solid #9e7c3c;
}

.cta-button:hover {
    background-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 165, 116, 0.3);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 0%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #9e7c3c;
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #9e7c3c00;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background-color: #9e7c3c00;
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

/* Tablet View */
@media (max-width: 1024px) {
    .top-bar-content {
        padding: 0 15px;
    }

    .contact-info {
        gap: 20px;
        font-size: 13px;
    }

    .location {
        font-size: 13px;
    }

    .header-content {
        padding: 0 15px;
    }

    .nav-menu {
        gap: 25px;
    }

    .slide-content h2 {
        font-size: 40px;
    }

    .slide-content p {
        font-size: 16px;
    }
}

/* Mobile View - 768px and below */
@media (max-width: 768px) {

    /* Top Bar Mobile */
    .top-bar {
        padding: 10px 0;
        font-size: 12px;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        font-size: 12px;
    }

    .location {
        justify-content: center;
        text-align: center;
        font-size: 11px;
    }

    /* Header Mobile */
    .header-content {
        padding: 0 15px;
        flex-wrap: wrap;
    }

    .logo img {
        height: 70px;
    }

    /* Show Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
        margin-right: 15px;
    }

    /* Mobile Navigation Styles */
    .nav-wrapper {
        position: fixed;
        top: 0px;
        left: 0;
        width: 100%;
        height: 0;
        background-color: #181717;
        overflow: hidden;
        transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-wrapper.active {
        height: calc(100vh - 0px);
    }

    nav {
        width: 100%;
        padding: 0px 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .nav-menu>li {
        width: 100%;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-wrapper.active .nav-menu>li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-wrapper.active .nav-menu>li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-wrapper.active .nav-menu>li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-wrapper.active .nav-menu>li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-wrapper.active .nav-menu>li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-wrapper.active .nav-menu>li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-menu>li>a {
        padding: 18px 30px;
        font-size: 17px;
        display: block;
        width: 100%;
    }

    .nav-menu>li.active>a {
        background-color: rgba(158, 124, 60, 0.1);
        border-left: 4px solid #9e7c3c;
    }

    /* Hero Slider Mobile */
    .hero-slider {
        height: calc(100vh - 70px);
        min-height: 400px;
    }

    .slide-content {
        padding: 0 20px;
        text-align: center;
    }

    .slide-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .slide-content p {
        font-size: 14px;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 15px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }

    .slider-controls {
        bottom: 20px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

/* Small Mobile View - 480px and below */
@media (max-width: 480px) {
    .contact-info {
        flex-direction: column;
        gap: 8px;
    }

    .logo img {
        height: 60px;
    }

    .mobile-menu-toggle {
        width: 26px;
        height: 20px;
    }

    .hamburger-line {
        height: 2.5px;
    }

    /* Mobile Navigation Styles */
    .nav-wrapper {
        position: fixed;
        top: 0px;
        left: 0;
        width: 100%;
        height: 0;
        background-color: #18171700;
        overflow: hidden;
        transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-wrapper.active {
        height: calc(100vh - 0px);
        background-color: #181717;
    }

    .nav-menu>li>a {
        padding: 15px 20px;
        font-size: 16px;
    }

    .hero-slider {
        height: calc(100vh - 60px);
        min-height: 350px;
    }

    .slide-content h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .slide-content p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 14px;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .slider-arrow.prev {
        left: 5px;
    }

    .slider-arrow.next {
        right: 5px;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Information Section Styles */
.info-section {
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: #f5f5f5;
}

.info-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 100%;
    margin: 0 auto;
}

.info-card {
    position: relative;
    min-height: 415px;
    padding: 60px 45px;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 100%);
    transition: all 0.5s ease;
    z-index: 1;
}

.info-card:hover::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.emergency-card {
    background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=800&h=600&fit=crop');
}

.help-card {
    background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=800&h=600&fit=crop');
}

.hours-card {
    background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=800&h=600&fit=crop');
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 165, 116, 0.1);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.info-card:hover .card-overlay {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: fadeInUp 0.8s ease-out;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: #9e7c3c;
    border-radius: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.icon-wrapper i {
    font-size: 30px;
    color: #ffffff;
    transition: transform 0.4s ease;
}

.info-card:hover .icon-wrapper {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.5);
}

.info-card:hover .icon-wrapper i {
    transform: scale(1.1);
}

.card-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.info-card:hover .card-title {
    transform: translateX(5px);
    color: #d4a574;
}

.card-description {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.info-card:hover .card-description {
    color: #ffffff;
}

.call-action {
    width: 100%;
    margin-top: 15px;
}

.call-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.info-card:hover .call-text {
    color: #d4a574;
}

.phone-number {
    font-size: 22px;
    font-weight: 700;
    color: #9e7c3c;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.5px;
}

.phone-number:hover {
    color: #ffffff;
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(212, 165, 116, 0.4);
}

.separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
}

.appointment-btn {
    display: inline-block;
    padding: 16px 35px;
    background-color: #9e7c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    border: 2px solid #9e7c3c;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.appointment-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.appointment-btn:hover::before {
    left: 0;
}

.appointment-btn:hover {
    color: #d4a574;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.4);
}

.hours-list {
    width: 100%;
    margin-top: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease-out forwards;
}

.hours-item:nth-child(1) {
    animation-delay: 0.2s;
}

.hours-item:nth-child(2) {
    animation-delay: 0.4s;
}

.hours-item:nth-child(3) {
    animation-delay: 0.6s;
    border-bottom: none;
}

.info-card:hover .hours-item {
    padding-left: 10px;
    border-bottom-color: rgba(212, 165, 116, 0.3);
}

.day {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    transition: color 0.3s ease;
}

.time {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.info-card:hover .day {
    color: #9e7c3c;
}

.info-card:hover .time {
    color: #ffffff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .info-container {
        grid-template-columns: 1fr;
    }

    .info-card {
        min-height: 350px;
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .info-card {
        padding: 40px 30px;
        min-height: 320px;
    }

    .card-title {
        font-size: 24px;
    }

    .phone-number {
        font-size: 18px;
        display: block;
        margin-bottom: 8px;
    }

    .separator {
        display: none;
    }
}

/* Information Section Styles */
.info-section {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.info-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    margin: 0 auto;
    min-height: 450px;
}

.info-card {
    position: relative;
    padding: 60px 50px;
    color: #fff;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.5s ease;
    opacity: 0;
    transform: translateY(50px);
}

.info-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.info-card[data-animate="left"].animate-in {
    animation: slideInLeft 0.8s ease forwards;
}

.info-card[data-animate="center"].animate-in {
    animation: slideInCenter 0.8s ease 0.2s forwards;
}

.info-card[data-animate="right"].animate-in {
    animation: slideInRight 0.8s ease 0.4s forwards;
}

.emergency-card {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=800&h=600&fit=crop');
}

.help-card {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=800&h=600&fit=crop');
}

.hours-card {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=800&h=600&fit=crop');
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    transition: background 0.4s ease;
}

.info-card:hover .card-overlay {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 25px;
    color: #9e7c3c;
    transition: transform 0.4s ease, color 0.4s ease;
}

.info-card:hover .card-icon {
    transform: scale(1.15) rotate(5deg);
    color: #9e7c3c;
}

.card-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease;
}

.info-card:hover .card-title {
    transform: translateX(5px);
}

.card-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.info-card:hover .card-description {
    color: rgba(255, 255, 255, 1);
}

.card-action {
    margin-top: 20px;
}

.action-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.phone-number {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: #9e7c3c;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.phone-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d4a574;
    transition: width 0.3s ease;
}

.phone-number:hover {
    color: #9e7c3c;
    transform: translateX(5px);
}

.phone-number:hover::after {
    width: 100%;
}

.appointment-btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: #fff;
    color: #9e7c3c;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    border: 2px solid #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.appointment-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #9e7c3c;
    transition: left 0.4s ease;
    z-index: -1;
}

.appointment-btn:hover {
    color: #fff;
    border-color: #9e7c3c;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 165, 116, 0.3);
}

.appointment-btn:hover::before {
    left: 0;
}

.hours-list {
    margin-top: 25px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
}

.hours-card.animate-in .hours-item:nth-child(1) {
    animation: slideInItem 0.5s ease 0.6s forwards;
}

.hours-card.animate-in .hours-item:nth-child(2) {
    animation: slideInItem 0.5s ease 0.8s forwards;
}

.hours-card.animate-in .hours-item:nth-child(3) {
    animation: slideInItem 0.5s ease 1s forwards;
}

.hours-item:hover {
    padding-left: 10px;
    border-bottom-color: #9e7c3c;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
}

.time {
    font-size: 16px;
    color: #d4a574;
    font-weight: 500;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInCenter {
    from {
        opacity: 0;
        transform: translateY(100px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInItem {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .info-container {
        grid-template-columns: 1fr;
    }

    .info-card {
        min-height: 400px;
    }

    .info-card[data-animate="left"].animate-in,
    .info-card[data-animate="center"].animate-in,
    .info-card[data-animate="right"].animate-in {
        animation: slideInCenter 0.8s ease forwards;
    }
}

@media (max-width: 768px) {
    .info-card {
        padding: 40px 30px;
    }

    .card-title {
        font-size: 26px;
    }

    .card-description {
        font-size: 14px;
    }

    .phone-number {
        font-size: 20px;
    }
}

/* About Section Styles */
.about-section {
    width: 100%;
    padding: 100px 0;
    background-color: #f5f5f5;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease;
}

.about-image-wrapper.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.image-frame:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.lawyer-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.image-frame:hover .lawyer-image {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(212, 165, 116, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.image-frame:hover .image-overlay {
    opacity: 1;
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: -30px;
    background-color: #9e7c3c;
    color: #fff;
    padding: 30px 35px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

.badge-number {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.about-content {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease 0.3s;
}

.about-content.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.section-label {
    display: inline-block;
    color: #9e7c3c;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    padding-left: 60px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 2px;
    background-color: #9e7c3c;
    animation: expandLine 1s ease forwards;
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 25px;
    line-height: 1.2;
}

.highlight {
    color: #9e7c3c;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #9e7c3c;
    animation: underlineExpand 1s ease 0.5s forwards;
}

.about-description {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
    text-align: justify;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    color: #2c2c2c;
    font-size: 17px;
    font-weight: 500;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease;
}

.about-content.animate-in .feature-item:nth-child(1) {
    animation: slideInItem 0.5s ease 0.8s forwards;
}

.about-content.animate-in .feature-item:nth-child(2) {
    animation: slideInItem 0.5s ease 1s forwards;
}

.about-content.animate-in .feature-item:nth-child(3) {
    animation: slideInItem 0.5s ease 1.2s forwards;
}

.about-content.animate-in .feature-item:nth-child(4) {
    animation: slideInItem 0.5s ease 1.4s forwards;
}

.feature-item:hover {
    padding-left: 10px;
    color: #9e7c3c;
}

.feature-item i {
    color: #9e7c3c;
    font-size: 18px;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.2) rotate(360deg);
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 45px;
    background-color: transparent;
    color: #9e7c3c;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1.5px;
    border: 2px solid #9e7c3c;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #9e7c3c;
    transition: left 0.4s ease;
    z-index: -1;
}

.read-more-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
}

.read-more-btn:hover::before {
    left: 0;
}

.read-more-btn i {
    transition: transform 0.4s ease;
}

.read-more-btn:hover i {
    transform: translateX(8px);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes expandLine {
    from {
        width: 0;
    }

    to {
        width: 45px;
    }
}

@keyframes underlineExpand {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes slideInItem {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .experience-badge {
        right: 20px;
        bottom: 20px;
    }

    .about-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-title {
        font-size: 32px;
    }

    .about-description {
        font-size: 15px;
    }

    .section-label {
        padding-left: 50px;
    }

    .section-label::before {
        width: 35px;
    }

    .experience-badge {
        padding: 20px 25px;
    }

    .badge-number {
        font-size: 32px;
    }

    .badge-text {
        font-size: 12px;
    }
}
/* Horizontal Scrolling Sections */
.horizontal-scroll-section {
    position: relative;
    margin: 40px 20px;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #c8a45d;
}

.scroll-container {
    position: relative;
    display: flex;
    align-items: center;
}

.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #c8a45d;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
}

.scroll-button:hover {
    background: #b8944c;
    transform: translateY(-50%) scale(1.1);
}

.scroll-button.prev {
    left: 5px;
}

.scroll-button.next {
    right: 5px;
}

.scroll-button i {
    font-size: 18px;
}

.cards-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 10px;
    gap: 15px;
    scroll-snap-type: x mandatory;
}

.cards-wrapper::-webkit-scrollbar {
    display: none;
}

.service-card {
    flex: 0 0 auto;
    width: 280px;
    scroll-snap-align: start;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card-image-container {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image {
    transform: scale(1.05);
}

.service-card-heading {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.85));
    color: white;
    padding: 15px 10px 10px;
}

.service-card-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.service-title-underline {
    width: 40px;
    height: 2px;
    background: #c8a45d;
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-card-overlay {
    opacity: 1;
}

.service-card-description {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .horizontal-scroll-section {
        margin: 50px 40px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-title::after {
        width: 80px;
    }
    
    .scroll-button {
        width: 50px;
        height: 50px;
    }
    
    .scroll-button.prev {
        left: 10px;
    }
    
    .scroll-button.next {
        right: 10px;
    }
    
    .scroll-button i {
        font-size: 20px;
    }
    
    .cards-wrapper {
        padding: 20px 0;
        gap: 20px;
    }
    
    .service-card {
        width: 300px;
    }
    
    .service-card-image-container {
        height: 200px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .horizontal-scroll-section {
        margin: 60px 80px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cards-wrapper {
        gap: 25px;
    }
    
    .service-card {
        width: 320px;
    }
    
    .service-card-image-container {
        height: 220px;
    }
}

/* Large Desktop Styles */
@media (min-width: 1440px) {
    .horizontal-scroll-section {
        margin: 80px 300px;
    }
    
    .service-card {
        width: 350px;
    }
    
    .service-card-image-container {
        height: 240px;
    }
}

/* Small Mobile Adjustments */
@media (max-width: 480px) {
    .horizontal-scroll-section {
        margin: 30px 15px;
    }
    
    .section-header {
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-title::after {
        width: 50px;
        bottom: -8px;
    }
    
    .scroll-button {
        width: 35px;
        height: 35px;/* Hide buttons on very small screens for better touch scrolling */
    }
    
    .scroll-button i {
        font-size: 16px;
    }
    
    .cards-wrapper {
        padding: 15px 5px;
        gap: 12px;
    }
    
    .service-card {
        width: 260px;
    }
    
    .service-card-image-container {
        height: 160px;
    }
    
    .service-card-heading {
        padding: 12px 8px 8px;
    }
    
    .service-card-title {
        font-size: 15px;
    }
    
    .service-card-overlay {
        padding: 15px;
    }
    
    .service-card-description {
        font-size: 13px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover {
        transform: none;
    }
    
    .service-card:hover .service-card-image {
        transform: none;
    }
    
    .service-card:hover .service-card-overlay {
        opacity: 0;
    }
    
    .scroll-button:hover {
        transform: translateY(-50%);
    }
}

/* Enhanced Button */
.read-more-link {
    display: inline-block;
    padding: 12px 35px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    border: 2px solid #ffffff;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.4);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.9);
}

.read-more-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    transition: left 0.4s ease;
    z-index: -1;
}

.read-more-link:hover {
    color: #9e7c3c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.5);
    text-shadow: none;
}

.read-more-link:hover::before {
    left: 0;
}


.confidence-section {
    position: relative;
    width: 100%;
    height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1920&h=400&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.8) 0%, rgba(212, 165, 116, 0.3) 100%);
    z-index: 1;
}

.confidence-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.confidence-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 1s ease forwards;
}

.title-line:first-child {
    animation-delay: 0.2s;
}

.title-line:last-child {
    animation-delay: 0.5s;
}

.highlight {
    color: #9e7c3c;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #9e7c3c;
    animation: expandUnderline 0.8s ease forwards;
}

.title-line:first-child .highlight::after {
    animation-delay: 0.8s;
}

.title-line:last-child .highlight::after {
    animation-delay: 1.1s;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandUnderline {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .confidence-section {
        height: 350px;
    }

    .confidence-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .confidence-section {
        height: 300px;
        background-attachment: scroll;
    }

    .confidence-title {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .highlight::after {
        bottom: -3px;
        height: 2px;
    }
}

@media (max-width: 480px) {
    .confidence-section {
        height: 280px;
    }

    .confidence-title {
        font-size: 24px;
    }
}

/* Testimonial Section Styles */
.testimonial-section {
    padding: 80px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #000000;
}

.section-description {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
}

.testimonial-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    overflow: hidden;
    width: 100%;
    max-width: 1100px;
}

.testimonial-card {
    min-width: calc(33.333% - 20px);
    background: white;
    padding: 40px 30px;
    border-radius: 0px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 1;
}

.client-name {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.client-position {
    font-size: 14px;
    color: #999;
    margin-bottom: 30px;
}

.client-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 0%;
    overflow: hidden;
    border: 4px solid #f0f0f0;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: #999;
}

.nav-btn {
    background: white;
    border: 2px solid #9e7c3c;
    width: 50px;
    height: 50px;
    border-radius: 0px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nav-btn span {
    font-size: 20px;
    color: #9e7c3c;
    font-weight: 300;
}

.nav-btn:hover {
    background-color: #9e7c3c;
}

.nav-btn:hover span {
    color: white;
}

.nav-btn:active {
    transform: scale(0.95);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonial-card {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .testimonial-slider {
        gap: 15px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }

    .nav-btn span {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .testimonial-section {
        padding: 50px 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 14px;
    }
}

/* Reset for attorney section only */
.attorney-team-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main Wrapper */
.attorney-team-wrapper {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    padding: 90px 20px;
    min-height: 100vh;
}

.attorney-main-container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
}

/* Header Section */
.attorney-header-block {
    text-align: center;
    margin-bottom: 70px;
    animation: attorneyFadeInDown 1s ease;
}

.attorney-main-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 3px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.attorney-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #9e7c3c, rgba(200, 150, 93, 0.89));
}

.attorney-intro-text {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.8;
    max-width: 750px;
    margin: 30px auto 0;
}

/* Cards Grid */
.attorney-cards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

/* Profile Card */
.attorney-profile-card {
    background: white;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: attorneySlideUp 0.8s ease forwards;
}

.attorney-profile-card:nth-child(1) {
    animation-delay: 0.1s;
}

.attorney-profile-card:nth-child(2) {
    animation-delay: 0.2s;
}

.attorney-profile-card:nth-child(3) {
    animation-delay: 0.3s;
}

.attorney-profile-card:nth-child(4) {
    animation-delay: 0.4s;
}

.attorney-profile-card:nth-child(5) {
    animation-delay: 0.5s;
}

.attorney-profile-card:nth-child(6) {
    animation-delay: 0.6s;
}

.attorney-profile-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Image Holder */
.attorney-image-holder {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f0f0f0;
}

.attorney-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.attorney-profile-card:hover .attorney-photo {
    transform: scale(1.1);
}

.attorney-overlay-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.attorney-profile-card:hover .attorney-overlay-layer {
    opacity: 1;
}

/* Info Section */
.attorney-info-section {
    padding: 20px 15px;
    text-align: center;
}

.attorney-full-name {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.attorney-profile-card:hover .attorney-full-name {
    color: #9e7c3c;
}

.attorney-job-title {
    font-size: 13px;
    color: #9e7c3c;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

/* Description */
.attorney-description {
    font-size: 12px;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
}

.attorney-description ul {
    list-style: none;
    padding: 0;
}

.attorney-description li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 6px;
}

.attorney-description li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #9e7c3c;
    font-weight: bold;
}

/* Social Links */
.attorney-social-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.attorney-profile-card:hover .attorney-social-links {
    opacity: 1;
    transform: translateY(0);
}

.attorney-social-btn {
    width: 35px;
    height: 35px;
    border: 2px solid #e0e0e0;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a7a7a;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.attorney-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.attorney-facebook-btn:hover {
    background: #3b5998;
    border-color: #3b5998;
    color: white;
}

.attorney-twitter-btn:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: white;
}

.attorney-linkedin-btn:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: white;
}

.attorney-google-btn:hover {
    background: #9e7c3c;
    border-color: #9e7c3c;
    color: white;
}

/* Animations */
@keyframes attorneyFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes attorneySlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1600px) {
    .attorney-cards-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1400px) {
    .attorney-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .attorney-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .attorney-main-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .attorney-team-wrapper {
        padding: 60px 15px;
    }

    .attorney-main-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .attorney-intro-text {
        font-size: 15px;
    }

    .attorney-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .attorney-image-holder {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .attorney-cards-grid {
        grid-template-columns: 1fr;
    }

    .attorney-main-title {
        font-size: 28px;
    }

    .attorney-intro-text {
        font-size: 14px;
    }

    .attorney-full-name {
        font-size: 20px;
    }

    .attorney-job-title {
        font-size: 14px;
    }

    .attorney-description {
        font-size: 13px;
    }

    .attorney-info-section {
        padding: 25px 20px;
    }

    .attorney-image-holder {
        height: 280px;
    }
}

.mainContainer1 {
    width: 60%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

/* Card 1 - Mission (Dark Red) */
.sectionCard1 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 333.33px;
    opacity: 0;
    animation: slideInUp1 1s ease forwards;
    animation-delay: 0.2s;
}

.contentArea1 {
    background: linear-gradient(135deg, #9e7c3c 0%, #9e7c3ce5 100%);
    color: white;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.contentArea1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sectionCard1:hover .contentArea1::before {
    opacity: 1;
}

.titleText1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.sectionCard1:hover .titleText1 {
    transform: translateX(10px);
    letter-spacing: 5px;
}

.descriptionText1 {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.sectionCard1:hover .descriptionText1 {
    opacity: 1;
    transform: translateX(5px);
}

.visualArea1 {
    background: #2c2c2c;
    position: relative;
    overflow: hidden;
}

.bgImage1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.8s ease;
    filter: brightness(0.85) contrast(1.1);
}

.sectionCard1:hover .bgImage1 {
    transform: scale(1.08);
    filter: brightness(0.95) contrast(1.2);
}

.overlayEffect1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139, 30, 30, 0.3), transparent);
    pointer-events: none;
}

/* Card 2 - Vision (Orange) */
.sectionCard2 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 333.33px;
    opacity: 0;
    animation: slideInUp2 1s ease forwards;
    animation-delay: 0.4s;
}

.visualArea2 {
    background: #2c2c2c;
    position: relative;
    overflow: hidden;
    order: 1;
}

.bgImage2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.8s ease;
    filter: brightness(0.85) contrast(1.1);
}

.sectionCard2:hover .bgImage2 {
    transform: scale(1.08);
    filter: brightness(0.95) contrast(1.2);
}

.overlayEffect2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 140, 0, 0.3), transparent);
    pointer-events: none;
}

.contentArea2 {
    background: linear-gradient(135deg, #9e7c3c 0%, #9e7c3c 100%);
    color: white;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    order: 2;
    transition: all 0.5s ease;
}

.contentArea2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sectionCard2:hover .contentArea2::before {
    opacity: 1;
}

.titleText2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.sectionCard2:hover .titleText2 {
    transform: translateX(-10px);
    letter-spacing: 5px;
}

.descriptionText2 {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.sectionCard2:hover .descriptionText2 {
    opacity: 1;
    transform: translateX(-5px);
}

/* Card 3 - Values (Teal) */
.sectionCard3 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 333.33px;
    opacity: 0;
    animation: slideInUp3 1s ease forwards;
    animation-delay: 0.6s;
}

.contentArea3 {
    background: linear-gradient(135deg, #9e7c3c 0%, #9e7c3cf1 100%);
    color: white;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.contentArea3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sectionCard3:hover .contentArea3::before {
    opacity: 1;
}

.titleText3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.sectionCard3:hover .titleText3 {
    transform: translateX(10px);
    letter-spacing: 5px;
}

.descriptionText3 {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.sectionCard3:hover .descriptionText3 {
    opacity: 1;
    transform: translateX(5px);
}

.visualArea3 {
    background: #2c2c2c;
    position: relative;
    overflow: hidden;
}

.bgImage3 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.8s ease;
    filter: brightness(0.85) contrast(1.1);
}

.sectionCard3:hover .bgImage3 {
    transform: scale(1.08);
    filter: brightness(0.95) contrast(1.2);
}

.overlayEffect3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(43, 138, 138, 0.3), transparent);
    pointer-events: none;
}

/* Decorative Elements */
.decorLine1 {
    width: 80px;
    height: 3px;
    background: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: width 0.5s ease;
}

.sectionCard1:hover .decorLine1,
.sectionCard2:hover .decorLine1,
.sectionCard3:hover .decorLine1 {
    width: 120px;
}

/* Animations */
@keyframes slideInUp1 {
    from {
        opacity: 0;
        transform: translateY(80px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp2 {
    from {
        opacity: 0;
        transform: translateY(80px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp3 {
    from {
        opacity: 0;
        transform: translateY(80px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -----------------------------------
   ADDITIONAL RESPONSIVE FIXES
   ----------------------------------- */

/* Tablets & Below (max-width: 1024px) */
@media (max-width: 1024px) {

    .mainContainer1 {
        width: 92% !important;
    }

    .sectionCard1,
    .sectionCard2,
    .sectionCard3 {
        height: auto !important;
        grid-template-columns: 1fr !important;
        gap: 0;
        margin-bottom: 40px;
    }

    .contentArea1,
    .contentArea2,
    .contentArea3 {
        padding: 50px 35px !important;
        text-align: left;
    }

    .visualArea1,
    .visualArea2,
    .visualArea3 {
        height: 350px !important;
    }

    .bgImage1,
    .bgImage2,
    .bgImage3 {
        object-fit: cover;
    }
}

/* Mobile Large (max-width: 768px) */
@media (max-width: 768px) {

    .titleText1,
    .titleText2,
    .titleText3 {
        font-size: 34px !important;
        letter-spacing: 2px !important;
    }

    .descriptionText1,
    .descriptionText2,
    .descriptionText3 {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }

    .contentArea1,
    .contentArea2,
    .contentArea3 {
        padding: 40px 30px !important;
    }

    .visualArea1,
    .visualArea2,
    .visualArea3 {
        height: 300px !important;
    }
}

/* Mobile Small (max-width: 480px) */
@media (max-width: 480px) {

    .mainContainer1 {
        width: 96% !important;
    }

    .titleText1,
    .titleText2,
    .titleText3 {
        font-size: 28px !important;
        letter-spacing: 1.5px !important;
    }

    .descriptionText1,
    .descriptionText2,
    .descriptionText3 {
        font-size: 14px !important;
        line-height: 1.75 !important;
    }

    .contentArea1,
    .contentArea2,
    .contentArea3 {
        padding: 30px 22px !important;
    }

    .visualArea1,
    .visualArea2,
    .visualArea3 {
        height: 260px !important;
    }

    .decorLine1 {
        width: 60px !important;
    }
}

/* Ultra-Small Devices (max-width: 360px) */
@media (max-width: 360px) {

    .titleText1,
    .titleText2,
    .titleText3 {
        font-size: 24px !important;
    }

    .contentArea1,
    .contentArea2,
    .contentArea3 {
        padding: 25px 18px !important;
    }

    .visualArea1,
    .visualArea2,
    .visualArea3 {
        height: 220px !important;
    }
}


.law-footer-banner {
    background: #402a00;
    padding: 25px 20px;
    text-align: center;
}

.law-footer-banner-text {
    color: white;
    font-size: 28px;
    font-weight: 300;
    display: inline-block;
    margin-right: 40px;
}

.law-footer-consultation-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.law-footer-consultation-btn:hover {
    background: white;
    color: #c89968;
}

.law-footer-main {
    background-color: #0a0a0a;
    padding: 60px 20px 40px;
}

.law-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.law-footer-column {
    color: #ffffff;
}

.law-footer-heading {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.law-footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #9e7c3c;
}

.law-footer-description {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #ffffff;
}

.law-footer-social-icons {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.law-footer-social-link {
    width: 40px;
    height: 40px;
    border: 1px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.law-footer-social-link:hover {
    background: #c89968;
    border-color: #c89968;
    color: white;
}

.law-footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 14px;
}

.law-footer-contact-icon {
    color: #9e7c3c;
    margin-right: 15px;
    font-size: 18px;
    margin-top: 2px;
}

.law-footer-contact-text {
    color: #ffffff;
    line-height: 1.6;
}

.law-footer-work-list {
    list-style: none;
}

.law-footer-work-item {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.law-footer-work-item::before {
    content: '■';
    position: absolute;
    left: 0;
    color: #9e7c3c;
    font-size: 8px;
    top: 5px;
}

.law-footer-work-item:hover {
    color: #c89968;
    cursor: pointer;
}

.law-footer-hours-table {
    width: 100%;
}

.law-footer-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #1a1a1a;
    font-size: 14px;
}

.law-footer-day {
    color: #ffffff;
}

.law-footer-time {
    color: #9e7c3c;
    font-weight: 500;
}

.law-footer-bottom {
    background-color: #000;
    padding: 20px;
    text-align: center;
    color: #ffffff;
    font-size: 13px;
}

.law-footer-copyright-link {
    color: #9e7c3c;
    text-decoration: none;
}

.law-footer-copyright-link:hover {
    text-decoration: none;
}

.law-footer-scroll-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #9e7c3c;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    z-index: 1000;
}

.law-footer-scroll-top.law-scroll-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.law-footer-scroll-top:hover {
    background: #b88857;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .law-footer-banner-text {
        display: block;
        margin: 0 0 15px 0;
        font-size: 22px;
    }

    .law-footer-container {
        grid-template-columns: 1fr;
    }
}

.contact-section {
    background-color: #f8f8f8;
    padding: 60px 0 0 0;
}

.contact-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.contact-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #9e7c3c;
    margin: 20px auto 0;
}

.contact-map-section {
    width: 100%;
    height: 450px;
    background-color: #e0e0e0;
    position: relative;
    margin-bottom: 0;
}

.contact-map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: white;
    padding: 20px 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
    max-width: 250px;
}

.contact-info-badge h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.contact-info-badge p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.contact-info-badge a {
    color: #9e7c3c;
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-block;
    margin-top: 5px;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-info-badge a:hover {
    color: #b8894e;
    text-decoration: underline;
}

.contact-content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    background-color: #fff;
}

.contact-form-container h2,
.contact-address-container h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #333;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.contact-form-container h2::after,
.contact-address-container h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    background-color: #9e7c3c;
}

.contact-form-group {
    margin-bottom: 25px;
}

.contact-form-label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

.contact-form-input,
.contact-form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
    background-color: #fafafa;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    outline: none;
    border-color: #9e7c3c;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(158, 124, 60, 0.1);
}

.contact-form-textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-submit-btn {
    background-color: #9e7c3c;
    color: white;
    padding: 14px 45px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.contact-submit-btn:hover {
    background-color: #b8894e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(158, 124, 60, 0.3);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

.contact-address-container p {
    line-height: 1.9;
    color: #666;
    margin-bottom: 35px;
    font-size: 0.95rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.contact-detail-item:hover {
    transform: translateX(5px);
}

.contact-icon-box {
    width: 45px;
    height: 45px;
    background-color: #9e7c3c;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
    transition: background-color 0.3s;
}

.contact-detail-item:hover .contact-icon-box {
    background-color: #b8894e;
}

.contact-icon-box svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.contact-detail-text {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

@media (max-width: 992px) {
    .contact-content-area {
        gap: 60px;
        padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    .contact-section-title {
        font-size: 2rem;
    }

    .contact-content-area {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 50px 20px;
    }

    .contact-map-section {
        height: 350px;
    }

    .contact-info-badge {
        position: static;
        margin: 20px;
        max-width: calc(100% - 40px);
    }

    .contact-submit-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-section-title {
        font-size: 1.75rem;
        letter-spacing: 1px;
    }

    .contact-form-container h2,
    .contact-address-container h2 {
        font-size: 1.3rem;
    }

    .contact-map-section {
        height: 300px;
    }
}

.founder-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.founder-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 80px;
    background: white;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.founder-image {
    flex: 0 0 450px;
    position: relative;
}

.founder-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #b8935e 0%, #9a7844 100%);
    color: white;
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.experience-badge h3 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 5px;
}

.experience-badge p {
    font-size: 14px;
    opacity: 0.95;
}

.founder-content {
    flex: 1;
}

.section-label {
    color: #b8935e;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background: #b8935e;
    margin-right: 15px;
}

.founder-content h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.2;
}

.founder-content h2 span {
    color: #b8935e;
    position: relative;
}

.founder-content h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #b8935e;
}

.founder-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

.features-list {
    list-style: none;
    margin-bottom: 35px;
}

.features-list li {
    padding: 12px 0;
    color: #2c3e50;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.features-list li::before {
    content: '✓';
    background: #b8935e;
    color: white;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 12px;
    flex-shrink: 0;
}

.read-more-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #b8935e;
    color: #b8935e;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.read-more-btn:hover {
    background: #b8935e;
    color: white;
    transform: translateX(5px);
}

.read-more-btn::after {
    content: ' →';
    margin-left: 8px;
}

/* Second section - reversed layout */
.founder-section.reverse {
    flex-direction: row-reverse;
}

@media (max-width: 968px) {
    .founder-section {
        flex-direction: column !important;
        gap: 40px;
        padding: 30px;
    }

    .founder-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .founder-image img {
        height: 450px;
    }

    .founder-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .founder-image img {
        height: 350px;
    }

    .experience-badge {
        padding: 20px 30px;
    }

    .experience-badge h3 {
        font-size: 36px;
    }

    .founder-content h2 {
        font-size: 28px;
    }
}

/* About Us Page Styles - Unique Class Names */

/* Reset and Base Container */
.about-page-container {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.about-page-container * {
    box-sizing: border-box;
}

.about-page-wrapper {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background: #ffffff;
}

/* Hero Banner Section */
.about-hero-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('https://www.legaltranslationinuae.com/wp-content/uploads/2025/04/Legal-Translation-Dubai-4.webp');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

.about-hero-heading {
    font-size: 3.5em;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.about-hero-breadcrumbs {
    color: #cccccc;
    font-size: 1.1em;
}

.about-breadcrumb-item {
    color: #d4a574;
    text-decoration: none;
    margin-right: 5px;
    transition: color 0.3s ease;
}

.about-breadcrumb-item:hover {
    color: #c18e5a;
}

/* Main Content Section */
.about-main-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    background: #ffffff;
}

.about-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image Section */
.about-visual-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Text Content Section */
.about-text-block {
    padding: 20px 0;
}

.about-primary-heading {
    font-size: 2.8em;
    color: #222;
    margin-bottom: 25px;
    font-weight: 600;
}

.about-heading-accent {
    color: #d4a574;
}

.about-intro-paragraph {
    font-size: 1.05em;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-detail-paragraph {
    font-size: 0.95em;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.about-cta-link {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    border: 2px solid #d4a574;
    color: #d4a574;
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.about-cta-link:hover {
    background: #d4a574;
    color: #ffffff;
    transform: translateY(-2px);
}

/* CTA Section */
.about-appointment-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
        url('https://www.legaltranslationinuae.com/wp-content/uploads/2025/04/Legal-Translation-Dubai-4.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 20px;
    text-align: center;
}

.about-appointment-title {
    font-size: 2.5em;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-appointment-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #d4a574;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.about-appointment-btn:hover {
    background: #c18e5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-content-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-hero-heading {
        font-size: 2.5em;
    }

    .about-primary-heading {
        font-size: 2.2em;
    }

    .about-appointment-title {
        font-size: 2em;
    }
}

@media (max-width: 576px) {
    .about-hero-heading {
        font-size: 2em;
    }

    .about-primary-heading {
        font-size: 1.8em;
    }

    .about-appointment-title {
        font-size: 1.6em;
    }

    .about-hero-banner {
        padding: 60px 20px;
    }

    .about-main-section {
        padding: 60px 20px;
    }

    .about-appointment-banner {
        padding: 60px 20px;
    }

    .about-cta-link,
    .about-appointment-btn {
        padding: 12px 25px;
        font-size: 0.9em;
    }
}

.news-section {
    max-width: 1200px;
    margin: 80px auto;
    text-align: center;
}

.news-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
}

.news-subtitle {
    max-width: 650px;
    margin: 10px auto 40px;
    color: #7f8c8d;
}

/* Slider */
.slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slider-btn {
    background: #d4a574;
    color: #fff;
    border: none;
    padding: 10px 14px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 0px;
    margin: 0 10px;
}

.slider-btn:hover {
    background: rgba(41, 127, 185, 0.932);
}

.news-cards-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
    gap: 20px;
}

.news-card {
    min-width: 32%;
    background: #fff;
    border-radius: 0px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 0px;
}

.news-content {
    padding: 20px;
    text-align: left;
}

.news-date {
    color: #d4a574;
    font-size: 13px;
    margin-bottom: 8px;
    display: block;
    font-weight: 600;
}

.news-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.news-desc {
    font-size: 14px;
    color: #555;
}

@media (max-width: 900px) {
    .news-card {
        min-width: 48%;
    }
}

@media (max-width: 600px) {
    .news-card {
        min-width: 100%;
    }
}

/* Ensure header has proper z-index when menu is open */
header.menu-elevated {
    z-index: 10000;
}

.mobile-menu-toggle {
    z-index: 10001;
    position: relative;
}

.logo {
    z-index: 10001;
    position: relative;
}

.nav-wrapper {
    z-index: 10000;
}

.hero-slider,
.about-hero-banner,
body>*:not(header):not(.top-bar) {
    position: relative;
    z-index: 1;
}

/* ========================================
   LEGAL SERVICES SECTION - MAIN CARDS
======================================== */

.legal-services-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f9f9f9;
}

.legal-section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.legal-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

.legal-section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #c9a96e, #8b6b3d);
    border-radius: 2px;
}

.legal-section-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.9;
    margin-top: 30px;
    font-weight: 400;
}

/* Legal Cards Grid - 5 Cards in a Row */
.legal-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.legal-service-card {
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    position: relative;
    height: 320px;
}

.legal-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.legal-card-image-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.legal-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.legal-service-card:hover .legal-card-image {
    transform: scale(1.08);
}

.legal-card-heading {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.7) 50%,
            rgba(0, 0, 0, 0.3) 80%,
            transparent 100%);
    padding: 25px 20px;
    color: white;
    z-index: 2;
}

.legal-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    line-height: 1.3;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.legal-title-underline {
    width: 50px;
    height: 3px;
    background: #c9a96e;
    margin-top: 8px;
    border-radius: 2px;
}

.legal-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 25px;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.legal-service-card:hover .legal-card-overlay {
    opacity: 1;
}

.legal-card-description {
    color: #f5f5f5;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
    text-align: center;
}


/* ========================================
   SERVICES DETAIL SECTIONS - SUB-SERVICES
======================================== */

.services-detail-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.service-detail-section {
    margin-bottom: 0;
    background-color: #ffffff;
    padding: 70px 60px;
    overflow: hidden;
}

.service-detail-section:nth-child(even) {
    background-color: #f9f9f9;
}

.service-detail-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

.service-detail-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #c9a96e, #8b6b3d);
    border-radius: 2px;
}

/* Services Grid - Flexible Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-item {
    background-color: #fff;
    border-radius: 0px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    height: 230px;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-item-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover .service-item-image {
    transform: scale(1.1);
}

.service-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0) 30%,
            rgba(0, 0, 0, 0) 50%,
            rgba(0, 0, 0, 0.85) 70%,
            rgba(0, 0, 0, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    transition: background 0.4s ease;
}

.service-item:hover .service-item-overlay {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.5) 30%,
            rgba(0, 0, 0, 0.75) 50%,
            rgba(0, 0, 0, 0.9) 70%,
            rgba(0, 0, 0, 0.98) 100%);
}

.service-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-item:hover h4 {
    color: #c9a96e;
    transform: translateY(-3px);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 1),
        0 0 20px rgba(0, 0, 0, 0.9),
        1px 1px 4px rgba(0, 0, 0, 1);
}

.service-item p {
    font-size: 0.75rem;
    line-height: 1.6;
    color: #f5f5f5;
    margin: 0;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 1),
        0 0 10px rgba(0, 0, 0, 0.9),
        1px 1px 2px rgba(0, 0, 0, 1);
    position: relative;
    z-index: 2;
    font-weight: 400;
}


/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Large Desktop (1400px and up) */
@media (min-width: 1400px) {
    .legal-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop (1200px to 1399px) */
@media (max-width: 1399px) {
    .legal-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet Landscape (992px to 1199px) */
@media (max-width: 1199px) {
    .legal-services-section {
        padding: 60px 30px;
    }

    .legal-section-title {
        font-size: 2.4rem;
    }

    .legal-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .service-detail-section {
        padding: 60px 40px;
    }

    .service-detail-title {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

/* Tablet Portrait (768px to 991px) */
@media (max-width: 991px) {
    .legal-services-section {
        padding: 50px 25px;
    }

    .legal-section-title {
        font-size: 2rem;
    }

    .legal-section-description {
        font-size: 1rem;
    }

    .legal-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .legal-service-card {
        height: 280px;
    }

    .legal-card-title {
        font-size: 1.2rem;
    }

    .service-detail-section {
        padding: 50px 30px;
    }

    .service-detail-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-item {
        height: 280px;
    }
}

/* Mobile (576px to 767px) */
@media (max-width: 767px) {
    .legal-services-section {
        padding: 40px 20px;
    }

    .legal-section-header {
        margin-bottom: 40px;
    }

    .legal-section-title {
        font-size: 1.8rem;
    }

    .legal-section-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .legal-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .legal-service-card {
        height: 300px;
    }

    .legal-card-title {
        font-size: 1.3rem;
    }

    .legal-card-description {
        font-size: 0.95rem;
    }

    .service-detail-section {
        padding: 40px 20px;
    }

    .service-detail-header {
        margin-bottom: 40px;
    }

    .service-detail-title {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-item {
        height: 260px;
    }

    .service-item h4 {
        font-size: 1.2rem;
    }

    .service-item p {
        font-size: 0.9rem;
    }
}

/* Small Mobile (below 576px) */
@media (max-width: 575px) {
    .legal-services-section {
        padding: 30px 15px;
    }

    .legal-section-title {
        font-size: 1.6rem;
    }

    .legal-section-description {
        font-size: 0.9rem;
    }

    .legal-service-card {
        height: 280px;
    }

    .legal-card-heading {
        padding: 20px 15px;
    }

    .legal-card-title {
        font-size: 1.1rem;
    }

    .legal-card-overlay {
        padding: 20px;
    }

    .legal-card-description {
        font-size: 0.9rem;
    }

    .service-detail-section {
        padding: 30px 15px;
    }

    .service-detail-title {
        font-size: 1.6rem;
    }

    .service-item {
        height: 240px;
    }

    .service-item-overlay {
        padding: 20px;
    }

    .service-item h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .service-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* Our Clients Section */
.clients-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.clients-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.clients-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #c9a961;
    margin: 20px auto 0;
}

.slider-container {
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 0px;
}

.slider-track {
    display: flex;
    width: calc(250px * 20 + 30px * 20);
    animation: scroll 35s linear infinite;
}

.slider-track:hover {
    animation-play-state: paused;
}

.client-card {
    flex: 0 0 250px;
    height: 200px;
    margin: 0 15px;
    background: white;
    border-radius: 0px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.client-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .clients-section h2 {
        font-size: 2rem;
    }

    .client-card {
        flex: 0 0 180px;
        height: 140px;
        padding: 0px;
    }
}