* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #c9a961;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    flex: 1;
}

.logo img {
    width: 100px;
    height: 64px;
    object-fit: contain;
}

.logo a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    font-size: 1rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

/* Dropdown Menu Styles */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    z-index: 1001;
    list-style: none;
}

.nav-menu .dropdown:hover .dropdown-menu {
    display: block;
}

.nav-menu .dropdown-menu li {
    padding: 0;
}

.nav-menu .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    font-weight: 400;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.nav-menu .dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--accent-color);
}

.nav-menu .dropdown-menu a::after {
    display: none;
}

.nav-menu .dropdown > a span {
    transition: transform 0.3s ease;
}

.nav-menu .dropdown:hover > a span {
    transform: rotate(180deg);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Nav Social - Default styles for all screen sizes */
.nav-social {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 15px;
}

.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(201, 169, 97, 0.35);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-social a:hover {
    background: rgba(201, 169, 97, 0.55);
    transform: scale(1.1);
}

.nav-social svg {
    width: 14px;
    height: 14px;
}

.hero {
    position: relative;
    height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: #b89850;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.4);
}

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

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

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.intro-section {
    padding: 5rem 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.intro-text h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e9ecef 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.why-us-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d4b876 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.practice-areas-section {
    padding: 5rem 0;
    background: var(--white);
}

.practice-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.practice-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.practice-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.practice-icon {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.practice-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.practice-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.practice-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.practice-link:hover {
    color: var(--primary-color);
}

.quote-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.quote {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quote p {
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.quote cite {
    font-size: 1.2rem;
    font-style: normal;
    color: var(--accent-color);
}

.cta-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.page-hero {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.practice-areas-detail {
    padding: 5rem 0;
    background: var(--bg-light);
}

.practice-area-item {
    background: var(--white);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.practice-area-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.practice-area-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--bg-light);
}

.practice-area-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d4b876 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.practice-area-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0;
}

.practice-area-content {
    line-height: 1.8;
}

.lead-text {
    font-size: 1.15rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.9;
    text-align: justify;
}

.practice-area-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 2rem 0 1.5rem 0;
    font-weight: 600;
}

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

.service-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-intro {
    padding: 5rem 0;
    background: var(--white);
}

.about-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-intro-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-intro-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-vision {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.vision-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.vision-icon {
    flex-shrink: 0;
    color: var(--accent-color);
}

.vision-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-align: justify;
}

.about-office {
    padding: 5rem 0;
    background: var(--bg-light);
}

.office-content {
    max-width: 900px;
    margin: 2rem auto 0;
}

.office-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.9;
    text-align: justify;
}

.about-principles {
    padding: 5rem 0;
    background: var(--white);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.principle-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.principle-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d4b876 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.principle-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.principle-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    text-align: justify;
}

.about-expertise {
    padding: 5rem 0;
    background: var(--bg-light);
}

.expertise-content {
    max-width: 900px;
    margin: 2rem auto 0;
}

.expertise-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.9;
    text-align: justify;
}

.about-network {
    padding: 5rem 0;
    background: var(--white);
}

.network-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.network-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.network-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    text-align: justify;
}

.network-map {
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e9ecef 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.about-services {
    padding: 5rem 0;
    background: var(--bg-light);
}

.services-content {
    max-width: 1000px;
    margin: 2rem auto 0;
}

.services-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.services-highlight {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 3rem;
    box-shadow: var(--shadow);
}

.services-highlight h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.services-highlight p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.contact-form-section {
    padding: 5rem 0;
    background: var(--white);
}

.contact-info-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-info-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d4b876 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-form-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-label span {
    line-height: 1.6;
}

.privacy-link {
    color: var(--accent-color);
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.contact-form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
}

.contact-map-section {
    padding: 5rem 0;
    background: var(--white);
}

.map-container {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    display: block;
    width: 100%;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    position: relative;
}

.modal-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.modal-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.modal-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-close-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, #d4b876 100%);
    color: var(--white);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.modal-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3);
}

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

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

.regions-section {
    padding: 5rem 0;
    background: var(--white);
}

.regions-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.regions-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.regions-intro p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.region-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.region-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.region-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d4b876 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.region-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.region-type {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.region-card p:last-child {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.regions-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
}

.regions-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.regions-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.regions-cta .btn:hover {
    background: var(--accent-color);
    color: var(--white);
}

.privacy-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.privacy-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.privacy-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.privacy-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.privacy-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.privacy-content ul li {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.privacy-date {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
}

.privacy-date p {
    margin: 0;
    font-weight: 600;
    color: var(--primary-color);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-float {
    animation: pulse 2s infinite;
}

/* İçtihat Sayfası Üst Kısım Stilleri */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3rem 0 2.5rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '⚖️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12rem;
    opacity: 0.08;
    z-index: 0;
}

.page-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.page-header .update-date {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Geri Linki */
.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.back-link:hover {
    color: var(--primary-color);
    transform: translateX(-5px);
}

/* Content Section */
.content-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d3561 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.page-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* YARGITAY KARARI Rozeti (sayfa üstü) */
.detail-article::before {
    content: '⚖️ YARGITAY KARARI';
    position: absolute;
    top: -14px;
    left: 30px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d4b876 100%);
    color: var(--primary-color);
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 25px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
    z-index: 10;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 2rem 1rem 1.8rem;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
        line-height: 1.25;
    }
    
    .page-header .update-date {
        font-size: 0.9rem;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .content-container {
        padding: 0 1rem;
    }
    
    .detail-article::before {
        font-size: 0.7rem;
        padding: 6px 14px;
        left: 15px;
    }
}

/* İçtihat Detay Sayfası İçeriği Stilleri */
.detail-article {
    background: linear-gradient(135deg, #fefefe 0%, #f8f9fa 100%);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-left: 5px solid var(--accent-color);
    border-radius: 12px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.detail-article::before {
    content: '⚖️ YARGITAY KARARI';
    position: absolute;
    top: -12px;
    left: 25px;
    background: linear-gradient(135deg, #8B5A2B 0%, #A0522D 100%);
    color: white;
    padding: 6px 18px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(139, 90, 43, 0.3);
}

.detail-article .article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px dashed rgba(201, 169, 97, 0.3);
}

.detail-article .article-category {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d4b876 100%);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-article .article-date {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-article .article-date::before {
    content: '📅';
}

.detail-article h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(201, 169, 97, 0.3);
    font-weight: 700;
}

.detail-article h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-weight: 600;
    position: relative;
    padding-left: 1rem;
}

.detail-article h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(180deg, var(--accent-color) 0%, #d4b876 100%);
    border-radius: 2px;
}

.detail-article p {
    color: #3d3d3d;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    text-align: justify;
    font-size: 1.05rem;
}

.detail-article strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Karar Bilgileri Kutusu */
.detail-article h2 + p {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(201, 169, 97, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
}

.detail-article h2 + p strong {
    display: inline-block;
    width: 110px;
    color: var(--primary-color);
}

/* Liste Stilleri */
.detail-article ol,
.detail-article ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.detail-article ol li,
.detail-article ul li {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #3d3d3d;
    padding-left: 0.5rem;
}

.detail-article ol li {
    list-style-type: decimal;
}

.detail-article ol li strong {
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.3rem;
}

.detail-article ul li {
    list-style-type: disc;
    color: var(--primary-color);
}

/* Suç ve Hüküm Bölümü */
.detail-article h3:nth-of-type(1) + p {
    background: rgba(201, 169, 97, 0.08);
    padding: 1.2rem;
    border-radius: 8px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

/* Sonuç Bölümü */
.detail-article h3:nth-last-of-type(2) + p {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(201, 169, 97, 0.08) 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid rgba(201, 169, 97, 0.25);
    font-weight: 500;
}

/* Hukuki Dayanaklar */
.detail-article h3:last-of-type + ul {
    background: var(--bg-light);
    padding: 1.2rem 1.5rem 1.2rem 2.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.detail-article h3:last-of-type + ul li {
    color: var(--primary-color);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .detail-article {
        padding: 1.8rem 1.2rem;
        margin: 1.5rem 0;
        border-left-width: 4px;
    }
    
    .detail-article::before {
        font-size: 0.65rem;
        padding: 5px 14px;
        left: 15px;
    }
    
    .detail-article h2 {
        font-size: 1.4rem;
    }
    
    .detail-article h3 {
        font-size: 1.1rem;
    }
    
    .detail-article p {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    .detail-article .article-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .detail-article h2 + p strong {
        display: block;
        width: auto;
        margin-bottom: 0.3rem;
    }
}
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
}


.filter-btn:hover {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(197, 162, 98, 0.3);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--accent-color) 0%, #d4b876 100%);
    color: var(--white);
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(197, 162, 98, 0.4);
}

/* Category Descriptions Styles */
.category-descriptions {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    padding: 0 1rem;
}

.cat-desc {
    display: none;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(197, 162, 98, 0.08) 0%, rgba(197, 162, 98, 0.03) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    margin: 0;
}

.cat-desc.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

@media (max-width: 768px) {
    .filter-buttons {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .category-descriptions {
        margin-bottom: 2rem;
    }
    
    .cat-desc {
        font-size: 0.9rem;
        padding: 1rem;
    }
}

.articles-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--bg-light) 0%, var(--white) 100%);
}

.articles-grid {
    display: grid;
    gap: 4rem;
    max-width: 950px;
    margin: 0 auto;
}

.article-card {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(197, 162, 98, 0.1);
    position: relative;
    overflow: hidden;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, #d4b876 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    display: none;
}

.article-card:hover::before {
    transform: scaleX(1);
    display: none;
}

.article-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.article-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.article-category {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d4b876 100%);
    color: var(--white);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(197, 162, 98, 0.3);
}

.article-date {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-date::before {
    content: '📅';
    font-size: 1rem;
}

.article-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.8rem;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.article-excerpt {
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--accent-color);
}

.article-excerpt p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    font-weight: 400;
}

.article-read-more {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 48, 73, 0.2);
}

.article-read-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 48, 73, 0.3);
}

.article-full-content {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(197, 162, 98, 0.2);
    animation: fadeIn 0.5s ease-in-out;
}

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

.article-full-content p {
    font-size: 1.08rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.8rem;
    text-align: justify;
}

/* Article content justify alignment for all article pages */
.article-content p {
    text-align: justify;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.article-full-content h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.8rem;
}

.article-full-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
}

.article-author {
    margin-top: 4rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(197, 162, 98, 0.08) 0%, rgba(197, 162, 98, 0.03) 100%);
    border-left: 5px solid var(--accent-color);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.article-author p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: justify;
}

.article-author strong {
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Ensure nav-social is visible on mobile */
    .nav-social {
        display: flex !important;
        margin-left: 10px;
    }

    .nav-social a {
        width: 32px;
        height: 32px;
    }

    .nav-social svg {
        width: 16px;
        height: 16px;
    }

    .hero {
        height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-text h2 {
        font-size: 2rem;
    }

    .intro-text h3 {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .practice-areas-grid {
        grid-template-columns: 1fr;
    }

    .quote p {
        font-size: 1.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .practice-area-item {
        padding: 2rem;
    }

    .practice-area-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .practice-area-icon-large {
        width: 80px;
        height: 80px;
    }

    .practice-area-header h2 {
        font-size: 2rem;
    }

    .lead-text {
        font-size: 1.05rem;
        text-align: left;
    }

    .practice-area-content h3 {
        font-size: 1.3rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .about-intro-content h2 {
        font-size: 2rem;
    }

    .vision-content {
        flex-direction: column;
        text-align: center;
    }

    .vision-icon {
        margin-bottom: 2rem;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .network-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .network-text h2 {
        font-size: 2rem;
    }

    .services-highlight {
        padding: 2rem;
    }

    .services-highlight h3 {
        font-size: 1.5rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-intro h2 {
        font-size: 2rem;
    }

    .article-card {
        padding: 2.5rem 2rem;
    }

    .article-title {
        font-size: 1.6rem;
    }

    .article-excerpt {
        padding-left: 1rem;
    }

    .article-full-content h3 {
        font-size: 1.4rem;
    }

    .article-author {
        padding: 2rem 1.5rem;
    }

    .articles-grid {
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .intro-text h2 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .quote p {
        font-size: 1.25rem;
    }

    .practice-area-item {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .practice-area-icon-large {
        width: 70px;
        height: 70px;
    }

    .practice-area-header h2 {
        font-size: 1.75rem;
    }

    .practice-area-content h3 {
        font-size: 1.2rem;
    }

    .service-list li {
        font-size: 0.95rem;
        padding-left: 1.5rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .about-intro-content h2 {
        font-size: 1.75rem;
    }

    .about-intro-content p {
        font-size: 1rem;
    }

    .principle-icon {
        width: 80px;
        height: 80px;
    }

    .principle-card {
        padding: 2rem;
    }

    .network-text h2 {
        font-size: 1.75rem;
    }

    .services-highlight {
        padding: 1.5rem;
    }

    .services-highlight h3 {
        font-size: 1.3rem;
    }

    .contact-info-card {
        padding: 2rem 1.5rem;
    }

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

    .contact-form {
        padding: 1.5rem;
    }

    .contact-form-intro h2 {
        font-size: 1.75rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.95rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* District Section Styles - Calisma Bolgeleri */
.district-section {
    padding: 5rem 0;
    background: var(--white);
}

.district-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.district-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.district-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.district-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.district-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.district-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.district-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.district-icon {
    color: var(--accent-color);
    flex-shrink: 0;
}

.district-summary {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.district-full-content {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.district-full-content.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.read-more-btn {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.team-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.team-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.expertise-tag {
    background: rgba(201,169,97,0.15);
    color: var(--accent-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.team-contact {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.team-contact a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
}

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

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Network Section Styles */
.network-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.network-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.network-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.network-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.network-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.network-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.network-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d4b876 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.network-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

/* Fee Section and Notice Box Styles */
.fee-section {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.fee-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.notice-box {
    background: rgba(201, 169, 97, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.contact-info {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Petition Examples Page Styles */
.info-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.info-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-content .lead-text {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.info-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.info-card ul {
    list-style: disc;
    padding-left: 1.5rem;
    color: var(--text-dark);
}

.info-card li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.warning-box {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%);
    border-left: 4px solid #e53e3e;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.warning-box h4 {
    color: #c53030;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.warning-box p {
    color: #742a2a;
    line-height: 1.6;
}

/* Petitions Section */
.petitions-section {
    padding: 4rem 0;
    background: var(--white);
}

.petitions-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

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

.petition-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.petition-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3d4785 100%);
    color: var(--white);
    padding: 1.5rem;
}

.petition-category {
    display: inline-block;
    background: rgba(201, 169, 97, 0.9);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.petition-header h3 {
    font-size: 1.3rem;
    margin: 0;
    color: var(--white);
}

.petition-preview {
    padding: 1.5rem;
    background: #f8f9fa;
}

.petition-preview pre {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.petition-preview code {
    font-family: 'Courier New', monospace;
    color: var(--text-dark);
    white-space: pre-wrap;
}

/* Formatted Petition Document Style */
.petition-document {
    background: linear-gradient(135deg, #fdfbf7 0%, #f5f0e6 100%);
    border: 2px solid #e8dcc8;
    border-radius: 12px;
    padding: 2.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
}

.petition-document::before {
    content: '📄';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0.3;
}

.petition-title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.petition-section {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
}

.petition-label {
    font-weight: 700;
    color: var(--primary-color);
    min-width: 150px;
    flex-shrink: 0;
}

.petition-content {
    flex: 1;
    color: var(--text-dark);
    line-height: 1.8;
    text-align: justify;
}

.petition-content p {
    margin-bottom: 1rem;
}

.petition-signature {
    text-align: right;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px dashed #ccc;
}

/* Petition Letter - Main container for petition content */
.petition-letter {
    background: linear-gradient(135deg, #fdfbf7 0%, #f5f0e6 100%);
    border: 2px solid #e8dcc8;
    border-radius: 12px;
    padding: 3rem;
    font-family: 'Times New Roman', Georgia, serif;
    line-height: 1.8;
    color: #2c3e50;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.petition-actions {
    padding: 1rem 1.5rem;
    display: flex;
    gap: 1rem;
    background: var(--white);
    border-top: 1px solid #e2e8f0;
}

.petition-actions .btn {
    flex: 1;
    text-align: center;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3d4785 100%);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #3d4785 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 48, 73, 0.3);
}

/* FAQ Section */
.faq-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .petitions-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .petition-actions {
        flex-direction: column;
    }
}

/* Hesaplama Araçları Sayfası Stilleri */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.calculators-list-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.calculators-header {
    text-align: center;
    margin-bottom: 50px;
}

.calculators-header h1 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.calculators-header p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.calculator-categories {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.category-section {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.category-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
}

.calculators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.calculator-link-card {
    display: block;
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.calculator-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.calculator-link-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.calculator-link-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 15px;
}

.calculator-link-card .arrow {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.calculator-link-card:hover .arrow {
    gap: 10px;
}

/* Responsive Hesaplama Araçları */
@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .calculators-grid {
        grid-template-columns: 1fr;
    }
    
    .category-section {
        padding: 20px;
    }
    
    .calculator-link-card {
        padding: 20px;
    }
}

/* Ekibimiz Sayfası Stilleri */
.team-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.team-hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.team-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.team-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.team-image svg {
    width: 60px;
    height: 60px;
}

.team-info h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.team-role {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.team-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.expertise-tag {
    background: rgba(201, 169, 97, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(201, 169, 97, 0.3);
}

.team-values {
    padding: 60px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background: var(--bg-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.value-card h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Responsive Ekibimiz */
@media (max-width: 768px) {
    .team-hero {
        padding: 60px 0 40px;
    }
    
    .team-hero h1 {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-card {
        padding: 25px 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* SSS / FAQ Sayfası - Modern Yeniden Tasarım */
.sss-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, #1a1f3d 100%);
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sss-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a961' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

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

.sss-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: -1px;
}

.sss-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* FAQ Section Modern */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

/* Category Filter Tabs */
.faq-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    padding: 0 20px;
}

.faq-category {
    background: var(--white);
    border: 2px solid rgba(201, 169, 97, 0.2);
    border-radius: 30px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-category:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.15);
}

.faq-category.active {
    background: linear-gradient(135deg, var(--accent-color) 0%, #d4b876 100%);
    border-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.3);
}

/* FAQ List Container */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* FAQ Item Cards */
.faq-item {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-item.active {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(201, 169, 97, 0.3);
}

/* FAQ Question */
.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    gap: 20px;
}

.faq-question:hover {
    background: linear-gradient(90deg, var(--white) 0%, rgba(201, 169, 97, 0.03) 100%);
}

.faq-item.active .faq-question {
    background: linear-gradient(90deg, var(--white) 0%, rgba(201, 169, 97, 0.05) 100%);
}

.faq-question::after {
    content: '';
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d4b876 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    background: linear-gradient(180deg, rgba(201, 169, 97, 0.02) 0%, var(--white) 100%);
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 30px 30px;
}

.faq-answer-content {
    padding-top: 10px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 16px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 20px;
    margin: 16px 0;
}

.faq-answer li {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 8px;
}

.faq-answer strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Category Tags in FAQ */
.faq-category-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: rgba(201, 169, 97, 0.1);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Contact CTA Section */
.contact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.contact-cta .container {
    position: relative;
    z-index: 1;
}

.contact-cta h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d4b876 100%);
    color: var(--primary-color);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.4);
    border: none;
    cursor: pointer;
}

.contact-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 169, 97, 0.5);
    background: linear-gradient(135deg, #d4b876 0%, var(--accent-color) 100%);
}

/* Hide inactive FAQ items when filtering */
.faq-item.hidden {
    display: none;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .sss-hero {
        padding: 70px 0 50px;
    }
    
    .sss-hero h1 {
        font-size: 2rem;
    }
    
    .sss-hero p {
        font-size: 1rem;
    }
    
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-categories {
        gap: 8px;
        margin-bottom: 30px;
    }
    
    .faq-category {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
        gap: 15px;
    }
    
    .faq-question::after {
        width: 24px;
        height: 24px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
    
    .contact-cta {
        padding: 70px 20px;
    }
    
    .contact-cta h2 {
        font-size: 1.8rem;
    }
    
    .contact-cta p {
        font-size: 1rem;
    }
    
    .contact-cta .btn {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .sss-hero h1 {
        font-size: 1.75rem;
    }
    
    .faq-category {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding: 16px 18px;
    }
}

/* Bireysel Hesaplama Sayfaları Stilleri */
.calculator-section {
    padding: 40px 0 60px;
    background: var(--bg-light);
    min-height: calc(100vh - 300px);
}

.calculator-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 25px;
    transition: gap 0.3s ease;
}

.back-link:hover {
    gap: 12px;
}

.calculator-card {
    background: var(--white);
    border-radius: 12px;
    padding: 35px;
    box-shadow: var(--shadow);
}

.calculator-card h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.calculator-card > p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white);
    color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

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

.calculate-btn {
    width: 100%;
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #b8941d 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 10px;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
}

.result-box {
    margin-top: 30px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    display: none;
}

.result-box.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.result-box h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

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

.result-item span:first-child {
    color: var(--text-light);
}

.result-item span:last-child {
    font-weight: 600;
    color: var(--primary-color);
}

.formula-info {
    margin-top: 20px;
    padding: 20px;
    background: rgba(201, 169, 97, 0.05);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

.formula-info strong {
    color: var(--primary-color);
}

/* Responsive Hesaplama Sayfaları */
@media (max-width: 768px) {
    .calculator-section {
        padding: 30px 0 40px;
    }
    
    .calculator-card {
        padding: 25px 20px;
    }
    
    .calculator-card h2 {
        font-size: 1.4rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .result-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .formula-info {
        padding: 15px;
        font-size: 0.8rem;
    }
}

/* Karar Künyesi Stili */
.karar-kunye {
    font-size: 0.85rem;
    color: #666;
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 4px;
    margin: 8px 0;
    display: inline-block;
    font-weight: 500;
    border-left: 3px solid #c9a961;
}

/* Dilekçe Kartları - Premium Profesyonel Tasarım */
.petitions-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 50%, var(--bg-light) 100%);
}

.petitions-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.petitions-section .section-description {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.petitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
}

.petition-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(26, 31, 61, 0.06);
    border: 1px solid rgba(26, 31, 61, 0.04);
    display: flex;
    flex-direction: column;
    position: relative;
}

.petition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, #d4b876 50%, var(--accent-color) 100%);
    opacity: 1;
}

.petition-header {
    padding: 28px 28px 20px;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--white) 100%);
}

.petition-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
    background: var(--white);
    border: 1.5px solid rgba(26, 31, 61, 0.08);
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.petition-category::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

/* Kategori renkleri - Canlı ve profesyonel */
.petition-card[data-category="ceza"] .petition-category {
    color: #dc3545;
    border-color: rgba(220, 53, 69, 0.2);
    background: rgba(220, 53, 69, 0.04);
}

.petition-card[data-category="icra"] .petition-category {
    color: #c9a961;
    border-color: rgba(201, 169, 97, 0.3);
    background: rgba(201, 169, 97, 0.06);
}

.petition-card[data-category="aile"] .petition-category {
    color: #6f42c1;
    border-color: rgba(111, 66, 193, 0.2);
    background: rgba(111, 66, 193, 0.04);
}

.petition-card[data-category="is"] .petition-category {
    color: #28a745;
    border-color: rgba(40, 167, 69, 0.2);
    background: rgba(40, 167, 69, 0.04);
}

.petition-card[data-category="tuketici"] .petition-category {
    color: #17a2b8;
    border-color: rgba(23, 162, 184, 0.2);
    background: rgba(23, 162, 184, 0.04);
}

.petition-card[data-category="idare"] .petition-category {
    color: #6c757d;
    border-color: rgba(108, 117, 125, 0.2);
    background: rgba(108, 117, 125, 0.04);
}

.petition-header h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
    letter-spacing: -0.3px;
}

.petition-description {
    padding: 0 28px 24px;
    flex-grow: 1;
}

.petition-description p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.petition-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.petition-features li {
    font-size: 0.9rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
}

.petition-features li::before {
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(201, 169, 97, 0.08) 100%);
    color: var(--accent-color);
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9a961' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.petition-actions {
    padding: 24px 28px 28px;
    border-top: 1px solid rgba(26, 31, 61, 0.06);
    background: linear-gradient(180deg, var(--white) 0%, #f8f9fa 100%);
}

.petition-actions .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26, 31, 61, 0.15);
}

.petition-actions .btn::after {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.petition-actions .btn:hover {
    box-shadow: 0 8px 25px rgba(26, 31, 61, 0.25);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

/* Responsive Dilekçe Kartları */
@media (max-width: 768px) {
    .petitions-section {
        padding: 60px 0;
    }
    
    .petitions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .petition-card {
        border-radius: 16px;
    }
    
    .petition-header,
    .petition-description,
    .petition-actions {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .petition-header {
        padding-top: 24px;
    }
    
    .petition-header h3 {
        font-size: 1.2rem;
    }
    
    .petition-category {
        font-size: 0.65rem;
        padding: 6px 12px;
    }
}

/* İçtihat Makaleleri - Şık Tasarım */
.full-article .article-category {
    background: linear-gradient(135deg, #8B5A2B 0%, #A0522D 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(139, 90, 43, 0.3);
}

/* Karar Bilgileri Kutusu */
.full-article .article-content > p:first-of-type {
    background: linear-gradient(135deg, rgba(139, 90, 43, 0.08) 0%, rgba(160, 82, 45, 0.03) 100%);
    border: 1px solid rgba(139, 90, 43, 0.15);
    border-radius: 10px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.full-article .article-content > p:first-of-type strong {
    color: #8B5A2B;
    display: inline-block;
    min-width: 100px;
}

/* Bölüm Başlıkları */
.full-article .article-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(139, 90, 43, 0.2);
    position: relative;
}

.full-article .article-content h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #8B5A2B 0%, #A0522D 100%);
}

/* Liste Stillari */
.full-article .article-content ol,
.full-article .article-content ul {
    background: rgba(139, 90, 43, 0.03);
    border-left: 3px solid rgba(139, 90, 43, 0.2);
    padding: 1.5rem 2rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 1.5rem;
}

.full-article .article-content ol li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.full-article .article-content ul li {
    margin-bottom: 0.5rem;
}

/* Responsive İçtihat */
@media (max-width: 768px) {
    .full-article .article-content > p:first-of-type {
        padding: 1rem 1.5rem;
    }
    
    .full-article .article-content > p:first-of-type strong {
        display: block;
        width: auto;
        margin-bottom: 0.3rem;
    }
    
    .full-article .article-content h3 {
        font-size: 1.2rem;
    }
    
    .full-article .article-content ol,
    .full-article .article-content ul {
        padding: 1rem 1.5rem;
    }
}

/* Desktop: Logo boyutunu artır (sadece 1024px ve üzeri) */
@media (min-width: 1024px) {
    .logo img {
        width: 130px !important;
        height: 84px !important;
    }
}
