:root {
    /* Navy Blue & Gold Premium Palette */
    --primary-color: #1a2a4a;
    /* Navy Blue - Gece Mavisi */
    --secondary-color: #0f1a2e;
    /* Deep Navy - Koyu Lacivert */
    --accent-color: #c9a227;
    /* Gold - Altın Sarısı */
    --accent-light: #e5c76b;
    /* Light Gold - Açık Altın */
    --accent-gradient: linear-gradient(135deg, #1a2a4a 0%, #c9a227 100%);

    /* Text Colors */
    --text-dark: #1a1a2e;
    --text-light: #4a4a5a;
    /* Cool Gray */
    --text-white: #ffffff;

    /* Backgrounds - Fildişi/Açık Gri */
    --bg-light: #f8f6f2;
    /* Fildişi */
    --bg-white: #fffefb;
    /* Warm White */
    --border-light: #e5e1da;

    /* Fonts - Bold Montserrat */
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --header-height: 90px;
}


/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 14px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.center {
    text-align: center;
}

/* Buttons */
.btn-gold {
    display: inline-block;
    padding: 14px 35px;
    background: var(--accent-gradient);
    color: var(--text-white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    border-radius: 4px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3);
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 168, 83, 0.4);
    filter: brightness(1.05);
}

.btn-outline {
    display: inline-block;
    padding: 12px 33px;
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--primary-color);
    border-color: var(--text-white);
}

/* Top Contact Bar */
.top-bar {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 10px 0;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 25px;
}

.top-bar-left a,
.top-bar-right span {
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    transition: color 0.3s;
}

.top-bar-left a:hover {
    color: var(--accent-color);
}

.top-bar-left a i,
.top-bar-right span i {
    margin-right: 8px;
    color: var(--accent-color);
}

/* Header & Nav - Glass White */
.site-header {
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(26, 42, 74, 0.1);
    position: fixed;
    width: 100%;
    top: 40px;
    /* Below top-bar */
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.site-header .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    max-height: 70px;
    width: auto;
}

/* Navigation */
.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list>li>a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
    padding: 30px 0;
    display: block;
}

.nav-list>li>a:hover {
    color: var(--accent-color);
}

.nav-list>li>a.btn-primary {
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 2px;
    font-weight: 700;
}

.nav-list>li>a.btn-primary:hover {
    background: var(--accent-color);
}


/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 900px;
    max-height: 70vh;
    overflow-y: auto;
    background: var(--bg-white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-top: 3px solid var(--accent-color);
    z-index: 1100;
    padding: 30px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 25px;
}


.dropdown-columns li a {
    display: block;
    padding: 8px 0;
    color: var(--text-light);
    /* Gray text */
    font-size: 0.95rem;
    border-bottom: 1px solid transparent;
}

.dropdown-columns li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
    border-bottom-color: var(--border-light);
}

.dropdown-columns li a i {
    width: 25px;
    color: var(--accent-color);
}

.dropdown-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
    text-align: right;
}

.dropdown-footer a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    /* Overlay with Navy Blue Gradient */
    background: linear-gradient(135deg, rgba(15, 26, 46, 0.95) 0%, rgba(26, 42, 74, 0.90) 100%), url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: var(--text-white);
    margin-top: calc(var(--header-height) + 40px);
    /* header + top-bar */
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: #dcdcdc;
}

/* Lighter gray for hero text */
.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Sections */
.section {
    padding: 100px 0;
}

.sub-heading {
    font-size: 0.9rem;
    color: var(--accent-color);
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border: 5px solid var(--accent-color);
    padding: 15px;
    background: var(--bg-white);
}

.placeholder-img,
.about-image img {
    position: relative;
    z-index: 1;
    background: #ddd;
    height: 450px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--bg-white);
    object-fit: cover;
}

.about-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
}

.about-highlights {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
}

.highlight-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.highlight-item span {
    font-weight: 600;
    color: var(--primary-color);
}

/* About Services */
.about-services {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
    background: var(--bg-light);
    border-radius: 4px;
    border-left: 3px solid var(--accent-color);
    transition: all 0.3s;
}

.service-item:hover {
    background: var(--bg-white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.service-item i {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-top: 3px;
}

.service-item div {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.service-item strong {
    color: var(--primary-color);
}


/* Practice Areas */
.practices-section {
    background-color: var(--bg-light);
}

.separator-gold {
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin: 20px auto 40px;
}

.practice-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.practice-item {
    background: var(--bg-white);
    padding: 18px 25px;
    border-left: 3px solid transparent;
    transition: all 0.3s;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    /* Gray text */
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
}

.practice-item i {
    font-size: 0.8rem;
    color: var(--accent-color);
    transition: transform 0.3s;
}

.practice-item:hover {
    border-left-color: var(--accent-color);
    padding-left: 30px;
    background: var(--bg-white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    color: var(--primary-color);
}

.practice-item:hover i {
    transform: translateX(5px);
}


/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--accent-color);
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-card .stars {
    color: #f1c40f;
    margin-bottom: 15px;
    font-size: 1rem;
}

.review-card .review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-info .name {
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.reviewer-info .date {
    font-size: 0.8rem;
    color: #999;
}

/* Mediation */
.mediation-section {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.mediation-section .white {
    color: var(--text-white);
}

.separator-white {
    width: 80px;
    height: 3px;
    background: var(--text-white);
    opacity: 0.3;
    margin: 20px auto 40px;
}

.expert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.expert-category h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.expert-category ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1.05rem;
    color: #ccc;
}

.expert-category ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
}

.expert-category ul li a:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

.expert-category ul li:last-child {
    border-bottom: none;
}

/* Bilirkişi Section */
.bilirkisi-section {
    background-color: var(--bg-light);
}

.expert-category-full {
    max-width: 900px;
    margin: 0 auto;
}

.expert-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.expert-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 18px 25px;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.expert-list li a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-left-color: var(--accent-color);
    padding-left: 30px;
}

.expert-list li a i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.expert-list.light li a {
    background: var(--bg-white);
    color: var(--text-light);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.expert-list.light li a:hover {
    color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}


.contact-card {
    background: var(--bg-white);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.contact-header {
    text-align: center;
    padding: 60px 20px 40px;
    background: var(--bg-light);
}

.contact-header p {
    color: var(--text-light);
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px;
}

.contact-box {
    text-align: center;
    padding: 20px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    transition: 0.3s;
}

.contact-box:hover .icon-circle {
    background: var(--accent-color);
    color: var(--bg-white);
    transform: rotateY(180deg);
}

.contact-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-box p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Footer - Improved Aesthetics */
.site-footer {
    background: var(--secondary-color);
    /* Darker palette tone */
    color: var(--text-light);
    padding: 80px 0 30px;
    position: relative;
    border-top: 5px solid var(--accent-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    text-align: left;
    /* Reset text align */
}

.footer-col h4 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

/* Brand Col */
.footer-logo {
    max-height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    /* Make logo white if it's black, adjust if needed */
    opacity: 0.9;
}

.brand-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 350px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-white);
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Contact Col */
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact-list li i {
    color: var(--accent-color);
    margin-top: 5px;
}

.footer-contact-list li a:hover {
    color: var(--accent-color);
}

/* Location Col */
.footer-address {
    display: flex;
    gap: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-address i {
    color: var(--accent-color);
    margin-top: 5px;
}

.btn-footer-map {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 2px;
}

.btn-footer-map:hover {
    color: var(--text-white);
    border-bottom-color: var(--text-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    justify-content: space-around;
    padding: 12px 0;
    border-top: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-light);
    gap: 4px;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
    transition: 0.3s;
}

.mobile-bottom-nav .nav-item:hover i {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.mobile-bottom-nav .nav-item span {
    font-weight: 500;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 25px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    overflow: hidden;
}

.whatsapp-float:hover {
    width: auto;
    border-radius: 30px;
    padding: 0 25px;
    background: #128C7E;
}

.whatsapp-float .whatsapp-text {
    display: none;
    margin-left: 10px;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-text {
    display: inline;
}

/* Typing Effect */
.typing-text {
    font-size: 1.3rem;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
    min-height: 2rem;
}

.cursor {
    animation: blink 1s infinite;
    font-weight: 100;
    color: var(--accent-light);
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

@media (max-width: 992px) {
    .whatsapp-float {
        display: none;
    }
}

/* Responsive & Mobile Menu Polish */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

@media (max-width: 992px) {
    body {
        padding-bottom: 70px;
    }

    /* Hide top-bar on mobile */
    .top-bar {
        display: none;
    }

    .site-header {
        top: 0;
    }

    .hero-section {
        margin-top: var(--header-height);
    }

    .mobile-bottom-nav {
        display: flex;
    }

    .logo-img {
        max-height: 50px;
    }

    /* Mobile Menu Overhaul - Premium Accordion Style */
    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
        font-size: 1.8rem;
    }

    .main-nav .nav-list {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: var(--primary-color);
        /* Dark Navy Background for Menu */
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 0 40px;
        /* Reset padding */
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 10px 0 50px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .main-nav .nav-list.active {
        left: 0;
    }

    .nav-list>li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        opacity: 1;
        /* FORCE VISIBLE */
        transform: none;
        /* NO SLIDE */
        display: block;
        /* Block layout for accordion */
    }

    .nav-list>li>a {
        padding: 20px 30px;
        color: var(--text-white);
        font-size: 1.1rem;
        font-weight: 500;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-list>li>a i {
        font-size: 0.9rem;
        opacity: 0.7;
        transition: 0.3s;
    }

    .dropdown.active>a {
        background: rgba(0, 0, 0, 0.2);
        color: var(--accent-color);
    }

    .dropdown.active>a i {
        transform: rotate(180deg);
        color: var(--accent-color);
        opacity: 1;
    }

    /* Mobile Dropdown - Static Accordion */
    .dropdown-menu {
        width: 100%;
        position: static;
        /* Flow with the content */
        box-shadow: none;
        display: none;
        visibility: visible;
        opacity: 1;
        padding: 0;
        border: none;
        background: rgba(0, 0, 0, 0.15);
        /* Slightly darker inner bg */
        margin: 0;
        transform: none !important;
        left: 0 !important;
        border-radius: 0;
        border-top: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .dropdown-columns {
        grid-template-columns: 1fr;
        /* Single Column for Readability */
        gap: 0;
    }

    .dropdown-columns li a {
        padding: 15px 20px 15px 35px;
        /* Daha dar padding - taşmayı önler */
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
        white-space: normal;
        line-height: 1.4;
        display: flex;
        align-items: center;
        gap: 12px;
        word-break: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        box-sizing: border-box;
    }

    .dropdown-columns li a:hover,
    .dropdown-columns li a:active {
        color: var(--accent-color);
        background: rgba(255, 255, 255, 0.05);
        padding-left: 40px;
    }

    .dropdown-columns li a i {
        color: var(--accent-color);
        width: 20px;
        text-align: center;
    }

    .dropdown-footer {
        display: none;
    }

    /* Hide footer link in mobile to save space */

    /* Mobile Hero Image - Premium/Architecture */
    .hero-section {
        background: linear-gradient(rgba(13, 37, 63, 0.8), rgba(13, 37, 63, 0.6)), url('https://images.unsplash.com/photo-1575505586569-646b2ca898fc?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
        /* Image: Court Columns / Architecture - Clean, Premium, Vertical-friendly */
        height: 85vh;
    }

    .hero-content {
        padding: 0 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-gold,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .about-grid,
    .expert-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .practice-list-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ===== Practice/Service Pages ===== */

/* Page Hero */
.page-hero {
    background: var(--accent-gradient);
    padding: 140px 0 60px;
    margin-top: calc(var(--header-height) + 40px);
    color: var(--text-white);
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--text-white);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    margin: 0 8px;
    opacity: 0.6;
}

.breadcrumb .current {
    opacity: 1;
    font-weight: 600;
}

.page-hero h1 {
    font-size: 2.8rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Practice Page Content */
.practice-page {
    padding: 80px 0;
    background: var(--bg-light);
}

.practice-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    align-items: start;
}

.practice-article {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.practice-article h2 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.practice-article h2:first-child {
    margin-top: 0;
}

.practice-article p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.practice-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.practice-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.practice-list li i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Practice Features */
.practice-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 2rem 0;
}

.feature-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    text-transform: none;
    font-style: normal;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* FAQ Section */
.faq-section {
    margin-top: 2rem;
}

.faq-item {
    background: var(--bg-light);
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid var(--accent-color);
}

.faq-item h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: none;
    font-style: normal;
}

.faq-item h4 i {
    color: var(--accent-color);
}

.faq-item p {
    margin: 0;
    padding-left: 30px;
    font-size: 0.95rem;
}

/* Sidebar */
.practice-sidebar {
    position: sticky;
    top: 150px;
}

.sidebar-cta {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 25px;
}

.sidebar-cta h3 {
    color: var(--text-white);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.sidebar-cta p {
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.sidebar-cta .btn-gold {
    display: block;
    margin-bottom: 10px;
}

.sidebar-cta .btn-whatsapp {
    display: block;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.sidebar-cta .btn-whatsapp:hover {
    background: #128C7E;
}

.sidebar-areas {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-areas h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
    text-transform: none;
    font-style: normal;
}

.sidebar-areas ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-areas li {
    border-bottom: 1px solid var(--border-light);
}

.sidebar-areas li:last-child {
    border-bottom: none;
}

.sidebar-areas a {
    display: block;
    padding: 12px 0;
    color: var(--text-dark);
    transition: color 0.3s, padding-left 0.3s;
}

.sidebar-areas a:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

/* Responsive Practice Pages */
@media (max-width: 992px) {
    .page-hero {
        margin-top: var(--header-height);
        padding: 100px 0 40px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .practice-content {
        grid-template-columns: 1fr;
    }

    .practice-article {
        padding: 25px;
    }

    .practice-features {
        grid-template-columns: 1fr;
    }

    .practice-sidebar {
        position: static;
    }
}