/* Calisma Alanlarimiz Page Styles */

/* Scroll padding for fixed navbar */
html {
    scroll-padding-top: 150px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /*min-height: 100vh;*/
}

.hero-content {
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    .hero-content.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

/* Page Logo */
.page-logo {
    margin-bottom: 40px;
    opacity: 1;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

    .page-logo.animate-in {
        opacity: 1;
        transform: scale(1);
    }

.logo-image {
    max-height: 120px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Page Title */
.page-title {
    font-family: 'Times New Roman', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: #032D63;
    margin: 0;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

    .page-title.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

/* Page Slogan */
.page-slogan {
    margin-top: 30px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

    .page-slogan.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

.slogan-text {
    font-family: 'Times New Roman', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    color: #032D63;
    display: block;
    line-height: 1.3;
}

.slogan-highlight {
    font-family: 'Times New Roman', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    color: #8AB84F;
    display: block;
    line-height: 1.3;
}

/* Scroll Arrow */
.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 24px;
    animation: bounce 2s infinite;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.8s ease;
}

    .scroll-arrow.animate-in {
        opacity: 1;
    }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Introduction Section */
.introduction-section {
    padding: 80px 0;
    background: white;
}

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

.intro-content {
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    .intro-content.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

    .intro-content p {
        font-size: 18px;
        line-height: 1.8;
        color: #333;
        margin-bottom: 25px;
        text-align: justify;
        padding: 20px;
        border-radius: 12px;
        transition: all 0.4s ease;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

        .intro-content p::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #032D63 0%, #052331 100%);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .intro-content p:hover::before {
            left: 0;
        }

        .intro-content p:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .intro-content p:last-child {
            margin-bottom: 0;
        }

/* Practice Areas Section */
.practice-areas-section {
    background: linear-gradient(135deg, #052331 0%, #032D63 100%);
    padding: 80px 0;
    color: white;
}

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

/* Practice Area */
.practice-area {
    margin-bottom: 60px;
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    .practice-area.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

    .practice-area:last-child {
        margin-bottom: 0;
    }

/* Practice Title */
.practice-title {
    font-family: 'Times New Roman', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: white;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

    .practice-title::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 60px;
        height: 2px;
        background: white;
    }

/* Practice Content */
.practice-content {
    margin-bottom: 30px;
}

    .practice-content p {
        font-size: 16px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 20px;
    }

        .practice-content p:last-child {
            margin-bottom: 0;
        }

/* Practice Subsection */
.practice-subsection {
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .practice-subsection::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
        opacity: 1;
        transition: opacity 0.4s ease;
        z-index: 1;
    }

    .practice-subsection:hover::before {
        opacity: 1;
    }

    .practice-subsection:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .practice-subsection:last-child {
        margin-bottom: 0;
    }

/* Subsection Title */
.subsection-title {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

/* Subsection Content */
.subsection-content {
    position: relative;
    z-index: 2;
}

    .subsection-content p {
        font-size: 16px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 15px;
    }

        .subsection-content p:last-child {
            margin-bottom: 0;
        }

/* Practice List */
.practice-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .practice-list li {
        font-size: 15px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 15px;
        padding-left: 25px;
        position: relative;
        transition: all 0.3s ease;
    }

        .practice-list li::before {
            content: '•';
            color: white;
            font-size: 18px;
            position: absolute;
            left: 0;
            top: 0;
            transition: all 0.3s ease;
        }

        .practice-list li:hover {
            color: white;
            transform: translateX(5px);
        }

            .practice-list li:hover::before {
                color: #8AB84F;
                transform: scale(1.2);
            }

        .practice-list li:last-child {
            margin-bottom: 0;
        }

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0;
        min-height: 50vh;
    }

    .logo-image {
        max-height: 80px;
    }

    .introduction-section {
        padding: 60px 0;
    }

    .intro-content p {
        font-size: 16px;
        text-align: left;
    }

    .practice-areas-section {
        padding: 60px 0;
    }

    .practice-area {
        margin-bottom: 40px;
    }

    .practice-subsection {
        padding: 25px;
        margin-bottom: 30px;
    }

    .subsection-title {
        font-size: 18px;
    }

    .practice-content p,
    .subsection-content p {
        font-size: 15px;
    }

    .practice-list li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-container,
    .content-container,
    .practice-container {
        padding: 0 15px;
    }

    .practice-subsection {
        padding: 20px;
    }

    .practice-title {
        font-size: 1.5rem;
    }

    .subsection-title {
        font-size: 16px;
    }
}
/* Principles Section */
.principles-section {
    background: linear-gradient(135deg, #052331 0%, #032D63 100%);
    padding: 80px 0;
    color: white;
}

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

.principles-title {
    font-family: 'Times New Roman', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
    color: white;
}

.principles-intro {
    text-align: center;
    margin-bottom: 60px;
}

    .principles-intro p {
        font-size: 18px;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.9);
        max-width: 800px;
        margin: 0 auto;
    }

/* Principles Grid */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.principle-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.4s ease;
    opacity: 1;
    transform: translateY(30px);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

    .principle-item.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

    .principle-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
        opacity: 1;
        transition: opacity 0.4s ease;
        z-index: 1;
    }

    .principle-item:hover::before {
        opacity: 1;
    }

    .principle-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        border-color: rgba(255, 255, 255, 0.2);
    }

.principle-name {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.principle-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Principles Conclusion */
.principles-conclusion {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

    .principles-conclusion p {
        font-size: 18px;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.9);
        max-width: 800px;
        margin: 0 auto;
    }
