/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sora', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* About Hero Section */
.about-hero {
    position: relative;
    width: 1872px;
    max-width: calc(100% - 48px);
    height: 450px;
    margin: 13px auto 24px auto;
    background: url('../images/hakkimizda.png') center/cover no-repeat;
    border-radius: 48px;
    overflow: hidden;
    flex-shrink: 0;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
            rgba(32, 39, 79, 0.8) 50%,
            rgba(32, 39, 79, 0.3) 40%,
            rgba(32, 39, 79, 0.2) 30%,
            rgba(32, 39, 79, 0.3) 40%,
            rgba(32, 39, 79, 0.8) 50%);
    z-index: 1;
}

/* Hero Content */
.about-hero-content {
    position: absolute;
    bottom: 120px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 5;
}

.about-hero-title {
    color: #FFF;
    text-align: center;
    font-family: 'Sora', sans-serif;
    font-size: 49px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin-bottom: 30px;
}

/* Breadcrumb and Share */
.breadcrumb-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.breadcrumb {
    display: flex;
    height: 30px;
    padding: 6px 12px;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.10);
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.breadcrumb-item:hover {
    color: #ed3237;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
}

.breadcrumb-current {
    color: white;
    font-size: 14px;
}

.share-wrapper {
    display: flex;
    height: 30px;
    padding: 6px 12px;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.10);
}

.share-text {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-icon:hover {
    transform: scale(1.2);
    color: #ed3237;
}

/* About Section */
.about-section {
    padding: 60px 0 80px;
    background: #ffffff;
    min-height: auto;
}

.about-container {
    width: 100%;
    max-width: 1660px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-content {
    max-width: 100%;
    padding: 0px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-title {
    font-family: 'Sora', sans-serif;
    font-size: 49px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    color: var(--Koyu-Metin-Rengi, #2D2D3A);
    margin-bottom: 40px;
    text-align: left;
    align-self: stretch;
}

.about-text {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.15px;
    color: #758289;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.about-text p {
    margin-bottom: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text h1, .about-text h2, .about-text h3, .about-text h4, .about-text h5, .about-text h6 {
    margin: 30px 0 20px 0;
    color: #2D2D3A;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-text ul, .about-text ol {
    margin: 20px 0;
    padding-left: 30px;
}

.about-text li {
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.services-section {
    margin: 30px 0;
}

.services-section h3 {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #444;
    margin-bottom: 15px;
}

.services-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-section li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.15px;
    color: #758289;
}

.services-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #302F81;
    font-weight: bold;
    font-size: 20px;
}

/* Footer */
.footer-section {
    background: linear-gradient(270deg, #20274F 0%, #302F81 100%);
    border-radius: 30px 30px 0 0;
    padding: 80px 0 30px;
    margin-top: 100px;
    color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-hero {
        height: 400px;
    }

    .about-hero-title {
        font-size: 40px;
    }

    .about-container {
        max-width: 1200px;
    }

    .about-content {
        padding: 40px 0;
    }
}

@media (max-width: 1024px) {
    .about-hero {
        margin-top: 80px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 350px;
        width: calc(100% - 30px);
    }

    .about-hero-title {
        font-size: 32px;
    }

    .breadcrumb-wrapper {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

    .breadcrumb {
        max-width: calc(100vw - 60px);
        overflow: hidden;
        flex-wrap: wrap;
        justify-content: center;
        min-height: 30px;
        height: auto;
        padding: 8px 12px;
    }

    .breadcrumb-item {
        font-size: 12px;
        white-space: nowrap;
    }

    .breadcrumb-current {
        font-size: 12px;
        max-width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: inline-block;
    }

    .breadcrumb-separator {
        font-size: 12px;
        margin: 0 3px;
    }

    .about-section {
        padding: 40px 0 60px;
        min-height: auto;
    }

    .about-container {
        padding: 0 20px;
    }

    .about-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .about-text {
        font-size: 15px;
    }

    .services-section h3 {
        font-size: 20px;
    }

    .services-section li {
        font-size: 15px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 300px;
        margin-top: 70px;
        border-radius: 30px;
    }

    .about-hero-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .breadcrumb-wrapper {
        padding: 0 15px;
    }

    .breadcrumb {
        max-width: calc(100vw - 50px);
        padding: 6px 8px;
        font-size: 11px;
    }

    .breadcrumb-item {
        font-size: 11px;
    }

    .breadcrumb-current {
        font-size: 11px;
        max-width: 150px;
    }

    .breadcrumb-separator {
        font-size: 11px;
        margin: 0 2px;
    }

    .share-wrapper {
        padding: 4px 10px;
        font-size: 12px;
    }

    .about-section {
        padding: 30px 0 40px;
        min-height: auto;
    }

    .about-container {
        padding: 0 15px;
    }

    .about-content {
        padding: 20px 0;
    }

    .about-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .about-text {
        font-size: 14px;
    }

    .services-section h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .services-section li {
        padding-left: 20px;
        font-size: 14px;
    }
}

/* Scroll Reveal Animations */
.scroll-reveal {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.scroll-reveal.fade-up {
    transform: translateY(40px);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal.delay-1 {
    transition-delay: 0.2s;
}

.scroll-reveal.delay-2 {
    transition-delay: 0.4s;
}

.scroll-reveal.delay-3 {
    transition-delay: 0.6s;
}

.scroll-reveal.delay-4 {
    transition-delay: 0.8s;
}

.scroll-reveal.delay-5 {
    transition-delay: 1.0s;
}

.scroll-reveal.delay-6 {
    transition-delay: 1.2s;
}

.scroll-reveal.delay-7 {
    transition-delay: 1.4s;
}

.scroll-reveal.delay-8 {
    transition-delay: 1.6s;
}

.scroll-reveal.delay-9 {
    transition-delay: 1.8s;
}

.scroll-reveal.fade-left {
    transform: translateX(40px);
}

.scroll-reveal.zoom-in {
    transform: scale(0.8);
}

/* Corporate Detail Layout */
.corporate-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Corporate Content */
.corporate-content {
    padding-right: 20px;
}

.corporate-title {
    background: linear-gradient(135deg, #ed3237, #ff6b6b, #4ecdc4, #45b7d1);
    background-size: 300% 300%;
    animation: gradientShift 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.corporate-text {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.corporate-text h1, .corporate-text h2, .corporate-text h3 {
    background: linear-gradient(45deg, #ed3237, #2d3a8c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.corporate-text h1 {
    font-size: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.corporate-text h2 {
    font-size: 1.8rem;
    animation: fadeInLeft 0.8s ease-out;
}

.corporate-text h3 {
    font-size: 1.5rem;
    animation: fadeInRight 0.8s ease-out;
}

.corporate-text p {
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Corporate Gallery */
.corporate-gallery {
    padding-left: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    filter: brightness(1.1) saturate(1.2);
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.close-btn:hover {
    color: #ed3237;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .corporate-detail-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .corporate-content {
        padding-right: 0;
        order: 1;
    }

    .corporate-gallery {
        padding-left: 0;
        order: 2;
    }

    .corporate-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery-item img {
        height: 150px;
    }

    .corporate-title {
        font-size: 1.8rem;
    }

    .corporate-text {
        font-size: 14px;
    }
}