/* About page specific styles */
body {
    overflow-y: auto;
}

.about-container {
    display: block !important;
    flex-direction: unset !important;
    grid-template-columns: unset !important;
    position: relative;
    min-height: 100vh;
    padding: 100px 0 80px;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Changed from center to flex-start to allow content to start from top */
    background-color: #121212; /* Solid dark color */
}

/* Globe animation removed as requested */

.about-content {
    display: block !important;
    width: 100%;
    margin: 0 auto 40px auto;
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 50px;
    background-color: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    color: #fff;
    margin-top: 70px; /* Reduced space between header and content */
    margin-bottom: 100px; /* Increased to ensure space at bottom for scrolling */
}

.about-content h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 42px;
    font-weight: 300;
    color: #fff;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.about-content h1::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #ff0000;
}

.about-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 6px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
    text-align: justify;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Add a subtle animation to paragraphs for visual interest */
.about-text p {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s ease-out forwards;
}

.about-text p:nth-child(1) {
    animation-delay: 0.2s;
}

.about-text p:nth-child(2) {
    animation-delay: 0.4s;
}

.about-text p:nth-child(3) {
    animation-delay: 0.6s;
}

.about-text p:nth-child(4) {
    animation-delay: 0.8s;
}

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

/* Mobile responsiveness */
@media (max-width: 992px) {
    .about-content {
        max-width: 90%;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .about-content {
        padding: 30px;
        margin-top: 50px;
    }
    
    .about-content h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 80px 0 60px;
    }
    
    .about-content {
        padding: 25px;
        margin-top: 30px;
    }
    
    .about-content h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .about-text p {
        font-size: 14px;
    }
}

/* CLIENTS PAGE Sade ve Kompakt Tasarım */
.clients-hero {
    background: #111;
    padding: 40px 0 20px 0;
    text-align: center;
}
.clients-hero-content h1 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 2px;
}
.clients-hero-content p {
    color: #bbb;
    font-size: 1.1rem;
    margin: 0 auto;
    max-width: 600px;
}

.clients-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 10px 60px 10px;
}

.clients-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-align: left;
}

.clients-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 18px;
    margin-bottom: 35px;
}

.client-card {
    background: #181818;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 32px 10px 22px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    transition: box-shadow 0.2s, transform 0.2s, border 0.2s;
    border: 1.5px solid #232323;
    min-height: 140px;
}
.client-card i {
    color: #ff0000;
    font-size: 2.2rem;
    margin-bottom: 14px;
    display: block;
    text-align: center;
}
.client-card span {
    font-size: 1.08rem;
    color: #fff;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.client-card:hover {
    box-shadow: 0 8px 32px rgba(255,0,0,0.10);
    transform: translateY(-6px) scale(1.04);
    border-color: #ff0000;
}

.clients-info-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.clients-info-box {
    background: #191919;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    padding: 22px 18px;
    color: #eee;
    margin-bottom: 0;
    border-left: 4px solid #ff0000;
}
.clients-info-box h3 {
    font-size: 1.1rem;
    color: #ff0000;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.clients-info-box p {
    font-size: 0.98rem;
    color: #ccc;
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .clients-list {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    .clients-container {
        padding: 20px 5px 40px 5px;
    }
}
@media (max-width: 600px) {
    .clients-list {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .clients-info-box {
        padding: 15px 8px;
    }
    .clients-hero-content h1 {
        font-size: 1.3rem;
    }
    .clients-section-title {
        font-size: 1.1rem;
    }
}

/* MODERN CLIENTS PAGE TASARIMI */
.clients-hero-modern {
    background: linear-gradient(120deg, #181818 60%, #232323 100%);
    padding: 60px 0 30px 0;
    text-align: center;
}
.clients-hero-inner {
    max-width: 600px;
    margin: 0 auto;
}
.clients-hero-inner h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.clients-hero-inner p {
    color: #bbb;
    font-size: 1.15rem;
    margin: 0 auto;
}

.clients-modern-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 16px 70px 16px;
}

.clients-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}
.client-modern-card {
    background: #202124;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    padding: 32px 18px 24px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
    transition: box-shadow 0.2s, transform 0.2s, border 0.2s;
    border: 1.5px solid #232323;
    min-height: 220px;
}
.client-modern-card i {
    color: #ff0000;
    font-size: 2.2rem;
    margin-bottom: 14px;
}
.client-modern-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
    letter-spacing: 1px;
}
.client-modern-card p {
    font-size: 0.98rem;
    color: #ccc;
    margin: 0;
}
.client-modern-card:hover {
    box-shadow: 0 8px 32px rgba(255,0,0,0.10);
    transform: translateY(-6px) scale(1.04);
    border-color: #ff0000;
}

.clients-modern-info {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
}
.clients-modern-box {
    background: #232323;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 28px 22px;
    color: #eee;
    min-width: 260px;
    max-width: 370px;
    flex: 1 1 260px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-left: 4px solid #ff0000;
}
.clients-modern-box h4 {
    font-size: 1.08rem;
    color: #ff0000;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.clients-modern-box p {
    font-size: 0.97rem;
    color: #ccc;
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 1000px) {
    .clients-modern-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
    .clients-modern-info {
        gap: 16px;
    }
}
@media (max-width: 700px) {
    .clients-modern-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .clients-modern-container {
        padding: 18px 2vw 40px 2vw;
    }
    .clients-modern-box {
        padding: 18px 8px;
        min-width: 0;
        max-width: 100%;
    }
    .clients-hero-inner h1 {
        font-size: 1.4rem;
    }
}

/* PURE CLIENTS PAGE STYLES */
.clients-pure-container {
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: linear-gradient(120deg, #181818 60%, #232323 100%);
    padding: 60px 0 60px 0;
}
.clients-pure-content {
    background: #202124;
    border-radius: 18px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.10);
    padding: 48px 32px;
    max-width: 700px;
    width: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.clients-pure-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px;
    letter-spacing: 2px;
    text-align: center;
}
.clients-pure-content p {
    font-size: 1.08rem;
    color: #ccc;
    margin-bottom: 22px;
    line-height: 1.8;
    text-align: left;
    width: 100%;
}
.clients-pure-content p:last-child {
    margin-bottom: 0;
}
@media (max-width: 800px) {
    .clients-pure-content {
        padding: 28px 10px;
        max-width: 98vw;
    }
    .clients-pure-content h1 {
        font-size: 1.3rem;
    }
    .clients-pure-content p {
        font-size: 0.98rem;
    }
}

.modern-firm-overview {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    background-color: #1a1a1a;
    border-radius: 14px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    color: #fff;
    margin-top: 70px;
    margin-bottom: 100px;
}
.modern-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.modern-title::after {
    content: '';
    display: block;
    margin: 0 auto;
    margin-top: 10px;
    width: 60px;
    height: 4px;
    background: #ff0000;
    border-radius: 2px;
}
.modern-firm-box {
    background: #232323;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    padding: 32px 24px;
    margin-bottom: 32px;
    color: #eee;
    font-size: 1.08rem;
    line-height: 1.8;
}
.modern-firm-box:last-child {
    margin-bottom: 0;
}
.modern-section-title {
    color: #ff0000;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-align: center;
    letter-spacing: 1px;
}
@media (max-width: 900px) {
    .modern-firm-overview {
        padding: 30px 10px;
    }
    .modern-title {
        font-size: 1.5rem;
    }
    .modern-firm-box {
        padding: 18px 8px;
        font-size: 0.98rem;
    }
    .modern-section-title {
        font-size: 1.05rem;
    }
}

.firm-hero {
    background: linear-gradient(120deg, #181818 60%, #232323 100%);
    padding: 60px 0 0 0;
    text-align: center;
}
.firm-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 18px;
}
.firm-title::after {
    content: '';
    display: block;
    margin: 0 auto;
    margin-top: 10px;
    width: 60px;
    height: 4px;
    background: #ff0000;
    border-radius: 2px;
}
.firm-mainbox {
    background: #202124;
    border-radius: 16px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.10);
    padding: 48px 32px;
    max-width: 800px;
    width: 100%;
    color: #fff;
    margin: 40px auto 80px auto;
    font-size: 1.08rem;
    line-height: 1.8;
}
.firm-mainbox p {
    color: #ccc;
    margin-bottom: 28px;
    text-align: left;
}
.firm-mainbox p:last-child {
    margin-bottom: 0;
}
.firm-section {
    color: #ff0000;
    font-size: 1.18rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 8px;
}
@media (max-width: 900px) {
    .firm-mainbox {
        padding: 24px 8px;
        font-size: 0.98rem;
    }
    .firm-title {
        font-size: 1.5rem;
    }
    .firm-section {
        font-size: 1.05rem;
    }
}

.firm-hero-modern {
    background: linear-gradient(120deg, #181818 60%, #232323 100%);
    padding: 70px 0 30px 0;
    text-align: center;
}
.firm-title-modern {
    font-size: 2.7rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    text-transform: uppercase;
}
.firm-title-modern::after {
    content: '';
    display: block;
    margin: 0 auto;
    margin-top: 12px;
    width: 70px;
    height: 4px;
    background: #ff0000;
    border-radius: 2px;
}
.firm-mainbox-modern {
    background: #232323;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.13);
    padding: 56px 44px 44px 44px;
    max-width: 900px;
    width: 100%;
    color: #fff;
    margin: 0 auto 90px auto;
    font-size: 1.13rem;
    line-height: 1.85;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}
.firm-mainbox-modern p {
    color: #e0e0e0;
    margin-bottom: 32px;
    text-align: left;
    font-size: 1.13rem;
    letter-spacing: 0.1px;
}
.firm-mainbox-modern p:last-child {
    margin-bottom: 0;
}
.firm-section-modern {
    color: #ff0000;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 12px;
    margin-top: 10px;
    text-align: left;
    display: block;
}
@media (max-width: 900px) {
    .firm-mainbox-modern {
        padding: 24px 8px 18px 8px;
        font-size: 1rem;
    }
    .firm-title-modern {
        font-size: 1.4rem;
    }
    .firm-section-modern {
        font-size: 1.08rem;
    }
}

.firm-hero-bg {
    background: linear-gradient(135deg, #191c22 60%, #232323 100%);
    min-height: 180px;
    margin-bottom: 0;
}
.firm-mainbox-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-top: -30px;
}
.firm-mainbox-modern {
    background: #232323;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.09);
    padding: 32px 28px 28px 28px;
    max-width: 600px;
    width: 100%;
    color: #fff;
    margin: 0 auto 60px auto;
    font-size: 1.07rem;
    line-height: 1.7;
}
.firm-mainbox-modern p {
    color: #e0e0e0;
    margin-bottom: 22px;
    text-align: left;
    font-size: 1.07rem;
    letter-spacing: 0.05px;
    max-width: 100%;
}
.firm-mainbox-modern p:last-child {
    margin-bottom: 0;
}
.firm-section-modern {
    color: #ff0000;
    font-size: 1.13rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    margin-top: 6px;
    text-align: left;
    display: block;
}
.firm-title-modern {
    font-size: 2.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
    text-transform: uppercase;
}
.firm-title-modern::after {
    content: '';
    display: block;
    margin: 0 auto;
    margin-top: 10px;
    width: 50px;
    height: 3px;
    background: #ff0000;
    border-radius: 2px;
}
@media (max-width: 700px) {
    .firm-mainbox-modern {
        padding: 14px 4vw 14px 4vw;
        max-width: 98vw;
        font-size: 0.98rem;
    }
    .firm-title-modern {
        font-size: 1.1rem;
    }
    .firm-section-modern {
        font-size: 1.01rem;
    }
}

.about-icon {
    text-align: center;
    margin-bottom: 18px;
}
.about-icon i {
    color: #ff0000;
    font-size: 2.5rem;
    display: inline-block;
    vertical-align: middle;
    filter: drop-shadow(0 2px 8px rgba(255,0,0,0.10));
}
