@font-face {
    font-family: 'Kepler 296';
    src: url('Kepler-296-(Personal-use)/Kepler 296 (Personal use).otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lemosty';
    src: url('lemosty15/Lemosty.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arial Nova';
    src: url('ArialNova/ArialNova.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('Open_Sans/OpenSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('Open_Sans/OpenSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('Open_Sans/OpenSans-SemiBold.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('Open_Sans/OpenSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Kepler 296', 'Arial', 'Helvetica', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    background-color: #f5f5f5;
}

/* Üst Siyah Bar */
.top-black-bar {
    width: 100%;
    height: 50px;
    background-color: #000000;
    position: relative;
    top: 0;
    left: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 400px 0 0;
}

/* Üst Bar Bordo Renk (Sadece Anasayfa) */
.top-black-bar-bordo {
    background-color: #2D0808 !important; /* Footer ile aynı koyu bordo renk */
}

.contact-info-top {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: 340px;
    background-color: transparent;
    background: none;
}

.top-black-bar .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    border: none !important;
    outline: none !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
    background: none !important;
}

.top-black-bar .contact-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.top-black-bar .contact-label {
    color: #ffffff;
    font-family: 'Arial Nova', Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    border: none !important;
    outline: none !important;
}

.top-black-bar .contact-value {
    color: #ffffff;
    font-family: 'Arial Nova', Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    border: none !important;
    outline: none !important;
}

.social-media {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icon {
    color: #ffffff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: #DC143C;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Beyaz Navigasyon Bar */
.white-nav-bar {
    width: 100%;
    height: 85px;
    min-height: 75px;
    max-height: 85px;
    background-color: #ffffff;
    position: relative;
    top: 0;
    left: 0;
    z-index: 10000;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
}

.nav-logo-link {
    display: inline-block;
    text-decoration: none;
    margin-left: 325px !important;
    animation: navFadeIn 1s ease-out;
    padding: 0;
    line-height: 0;
    overflow: visible;
    width: auto;
    height: auto;
    position: relative;
    vertical-align: top;
}

.nav-logo-white {
    height:350px;
    width: auto;
    max-width: none;
    object-fit: contain;
    display: block;
    margin-left: -70px;
    position: relative;
    z-index: 1;
}

.nav-logo-link::before {
    content: '';
    position: absolute;
    top: 120px;
    left: 33px;
    width: 142px;
    height:100px;
    background: transparent;
    z-index: 2;
    pointer-events: auto;
    cursor: pointer;
}

.nav-logo-link {
    pointer-events: none;
}

.nav-logo-white {
    pointer-events: none;
}


/* Navigasyon Menü */
.navigation {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 60px;
    padding-right: 400px;
    animation: navFadeIn 1s ease-out;
    position: relative;
    z-index: 10001;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 450;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-link:hover {
    color: #000000;
}

.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #DC143C;
    animation: underlineSlide 0.3s ease-out;
}

/* Dropdown Menü */
.nav-dropdown {
    position: relative;
    display: inline-block;
    z-index: 10002;
}

.nav-dropdown:hover {
    z-index: 10004;
}

.nav-dropdown > .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.nav-dropdown > .nav-link::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #000000;
    transition: transform 0.3s ease;
    position: static;
    background: none;
    animation: none;
}

.nav-dropdown > .nav-link:hover::after {
    background: none;
    height: auto;
    width: auto;
}

.nav-dropdown:hover > .nav-link::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 10003;
    padding: 8px 0;
    pointer-events: none;
    white-space: nowrap;
    margin-top: 0;
    padding-top: 12px;
}

.nav-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #000000;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

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

.dropdown-item:hover {
    background-color: #f5f5f5;
    color: #DC143C;
    padding-left: 25px;
}

@keyframes underlineSlide {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Ana İçerik */
.main-content {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 50px 50px 50px 360px;
    position: relative;
    z-index: 10;
    margin-top: 0;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-section {
    max-width: 700px;
    width: 100%;
    text-align: left;
    animation: slideDown 1.2s ease-out;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Lemosty', serif;
    font-size: 55px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    animation: slideDown 1.4s ease-out;
    letter-spacing: 1px;
}

.hero-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.8;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: slideDown 1.6s ease-out;
    text-align: left;
}

/* İletişim Bölümü */
.contact-section {
    position: relative;
    width: 100%;
    padding: 20px 400px 40px 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    animation: slideDown 1.8s ease-out;
    background-color: #f5f5f5;
}

.contact-wrapper-box {
    width: 100%;
    max-width: 100%;
    background-color: transparent;
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 0;
}

.contact-box {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    box-shadow: none;
}

.contact-content {
    width: 100%;
    text-align: center;
}

.contact-title {
    font-family: 'PT Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.contact-text {
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    color: #333333;
}

.contact-button {
    background-color: #DC143C;
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Open Sans',sans-serif;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    align-self: center;
    text-decoration: none;
    display: inline-block;
}

.contact-button:hover {
    background-color: #B91C1C;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.contact-button:active {
    transform: translateY(-1px);
}

/* Footer */
.footer {
    width: 100%;
    min-height: 250px;
    background-color: #000000;
    padding: 50px;
    position: relative;
    z-index: 10;
    overflow: visible;
    margin-top: 0;
}

/* Footer Bordo Renk (Sadece Anasayfa) */
.footer-bordo {
    background-color: #2D0808 !important; /* Çok koyu bordo renk */
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 30px auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.footer-main-section {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    width: 100%;
    justify-content: flex-start;
    padding-left: 106px;
}

.footer-logo-section,
.footer-services-section,
.footer-pages-section,
.footer-contact-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-logo-section {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    align-self: flex-start;
}

.footer-services-section,
.footer-pages-section,
.footer-contact-section {
    align-self: flex-start;
}

.footer-logo-section .footer-logo {
    height: 350px;
    width: auto;
    max-width: none;
    object-fit: contain;
    flex-shrink: 0;
    margin-left: -105px !important;
    margin-right: 0;
    margin-bottom: 0;
    margin-top: -143px !important;
    padding: 0;
    display: block;
    align-self: flex-start;
    line-height: 0;
}

.footer-description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    margin-top: -140px;
    margin-left: 0px !important;
    padding: 0;
    max-width: 300px;
    
}

.footer-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    margin-bottom: 8px;
    line-height: 1.2;
    padding-top: 0;
}

.footer-underline {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #DC143C 0%, #ff4757 100%);
    border-radius: 2px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(220, 20, 60, 0.3);
}

.footer-services-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-service-link {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer-service-link:hover {
    color: #DC143C;
    transform: translateX(5px);
}

.footer-pages-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-page-link {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer-page-link:hover {
    color: #DC143C;
    transform: translateX(5px);
}

.footer-contact-icons {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
    margin-top: 0px;
    padding-top: 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.footer-icon-circle:hover {
    background-color: rgba(220, 20, 60, 0.2);
    border-color: #DC143C;
    transform: scale(1.1);
}

.footer-contact-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-icon-circle svg.footer-contact-icon {
    filter: none;
    fill: #ffffff;
}

.footer-contact-text {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.4;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin: 0 auto 20px auto;
    width: 100%;
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-copyright p {
    margin-bottom: 8px;
}

.footer-links {
    margin-top: 5px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}


/* Animasyonlar */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Hamburger Menü Butonu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10004;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #000000;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .top-black-bar {
        padding: 0 20px;
        height: auto;
        min-height: 50px;
        flex-wrap: wrap;
    }

    .contact-info-top {
        margin-left: 0;
        gap: 15px;
        flex-wrap: wrap;
    }

    .top-black-bar .contact-item {
        gap: 5px;
    }

    .top-black-bar .contact-label,
    .top-black-bar .contact-value {
        font-size: 12px;
    }

    .social-media {
        gap: 15px;
    }

    .white-nav-bar {
        padding: 10px 20px;
    }

    .nav-logo-link {
        margin-left: 0 !important;
    }

    .nav-logo-white {
        height: 60px;
        margin-left: 0;
    }

    .nav-logo-link::before {
        top: 10px;
        left: 0;
        width: 120px;
        height: 60px;
    }

    .navigation {
        padding-right: 20px;
        gap: 30px;
    }

    .nav-link {
        font-size: 15px;
    }

    .main-content {
        padding: 40px 20px;
    }

    .contact-section {
        padding: 20px !important;
    }

    .contact-wrapper-box {
        padding: 30px 20px;
    }

    .contact-title {
        font-size: 28px;
    }

    .contact-text {
        font-size: 16px;
    }

    .services-main-content {
        padding: 50px 20px !important;
    }

    .contact-page-main {
        padding: 50px 20px !important;
    }

    .contact-page-main-title,
    .contact-page-subtitle,
    .contact-page-divider {
        margin-left: 0 !important;
    }

    .contact-page-divider {
        width: 100% !important;
    }

    .contact-form-wrapper {
        margin-left: 0;
        flex-direction: column;
    }

    .contact-form-box {
        width: 100%;
        max-width: 100%;
    }

    .contact-info-sidebar {
        max-width: 100%;
    }

    .footer {
        padding: 40px 20px;
    }

    .footer-main-section {
        padding-left: 0;
        gap: 40px;
        flex-wrap: wrap;
    }

    .footer-logo-section .footer-logo {
        margin-left: 0 !important;
        margin-top: 0 !important;
        height: 200px;
    }

    .footer-description {
        margin-top: 20px;
        margin-left: 0 !important;
    }
}

@media (max-width: 768px) {
    .top-black-bar {
        padding: 8px 15px;
        height: auto;
        min-height: auto;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .contact-info-top {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .top-black-bar .contact-item {
        font-size: 11px;
    }

    .top-black-bar .contact-label,
    .top-black-bar .contact-value {
        font-size: 11px;
    }

    .top-black-bar .contact-icon {
        width: 14px;
        height: 14px;
    }

    .social-media {
        gap: 12px;
        align-self: flex-end;
        margin-top: -40px;
    }

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

    .white-nav-bar {
        padding: 10px 15px;
        height: auto;
        min-height: 70px;
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 3;
        margin-left: auto;
    }

    .nav-logo-link {
        margin-left: 0 !important;
        order: 1;
    }

    .nav-logo-white {
        height: 50px;
        margin-left: 0;
    }

    .nav-logo-link::before {
        top: 5px;
        left: 0;
        width: 100px;
        height: 50px;
    }

    .navigation {
        position: fixed;
        top: 135px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 10003;
        gap: 0;
        padding-right: 20px;
        max-height: calc(100vh - 135px);
        overflow-y: auto;
    }

    .navigation.active {
        transform: translateX(0);
    }

    .nav-link {
        width: 100%;
        padding: 15px 0;
        font-size: 16px;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link:hover::after {
        display: none;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown > .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-dropdown > .nav-link::after {
        border-top: 5px solid #000000;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        transform: rotate(0deg);
    }

    .nav-dropdown.active > .nav-link::after {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #f9f9f9;
        margin-top: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        pointer-events: auto;
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
    }

    .dropdown-item {
        padding: 12px 20px;
        font-size: 14px;
    }

    .main-content {
        padding: 30px 20px;
        margin-top: 0;
        min-height: 50vh;
    }

    .hero-section {
        max-width: 100%;
        padding: 0;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 20px;
        text-align: center;
    }

    .hero-description {
        font-size: 14px;
        text-align: center;
        line-height: 1.6;
    }

    .services-main-content {
        padding: 30px 15px !important;
    }

    .services-main-title {
        font-size: 24px;
    }

    .services-title-line {
        width: 100%;
        max-width: 100%;
    }

    .services-boxes {
        flex-direction: column;
        gap: 20px;
    }

    .service-box {
        width: 100%;
        min-width: auto;
        max-width: 100%;
    }

    .service-detail-content {
        padding: 30px 20px;
    }

    .service-detail-title {
        font-size: 24px;
    }

    .service-detail-content h2 {
        font-size: 20px;
    }

    .service-detail-content h3 {
        font-size: 18px;
    }

    .service-detail-content p {
        font-size: 14px;
    }

    .contact-page-main {
        padding: 30px 15px !important;
    }

    .contact-page-main-title {
        font-size: 24px;
        margin-left: 0 !important;
    }

    .contact-page-subtitle {
        font-size: 12px;
        margin-left: 0 !important;
    }

    .contact-page-divider {
        margin-left: 0 !important;
        width: 100% !important;
    }

    .contact-form-wrapper {
        margin-left: 0;
        flex-direction: column;
        gap: 20px;
    }

    .contact-form-box {
        width: 100%;
        max-width: 100%;
    }

    .contact-form {
        padding: 25px 15px;
    }

    .contact-form-row {
        flex-direction: column;
        gap: 15px;
    }

    .contact-info-sidebar {
        max-width: 100%;
    }

    .contact-info-title {
        font-size: 20px;
    }

    .contact-info-description {
        font-size: 13px;
    }

    .footer {
        padding: 30px 20px 20px 20px;
    }

    .footer-main-section {
        flex-direction: column;
        gap: 30px;
    }

    .footer-logo-section,
    .footer-services-section,
    .footer-pages-section,
    .footer-contact-section {
        width: 100%;
    }

    .footer-logo {
        height: 60px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-section-title {
        font-size: 18px;
    }

    .footer-service-link,
    .footer-page-link {
        font-size: 14px;
    }

    .footer-contact-text {
        font-size: 13px;
    }

    .footer-divider {
        width: calc(100% - 40px);
        margin: 20px auto;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-copyright p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .top-black-bar {
        padding: 8px 10px;
    }

    .top-black-bar .contact-label {
        display: none;
    }

    .top-black-bar .contact-value {
        font-size: 10px;
    }

    .social-media {
        gap: 10px;
    }

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

    .white-nav-bar {
        padding: 8px 10px;
        min-height: 60px;
    }

    .nav-logo-white {
        height: 40px;
    }

    .nav-logo-link::before {
        top: 3px;
        left: 0;
        width: 80px;
        height: 40px;
    }

    .mobile-menu-toggle {
        width: 25px;
        height: 25px;
    }

    .navigation {
        top: 120px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 13px;
    }

    .contact-section {
        padding: 20px 10px !important;
    }

    .contact-wrapper-box {
        padding: 25px 15px;
    }

    .contact-title {
        font-size: 24px;
    }

    .contact-text {
        font-size: 14px;
    }

    .contact-button {
        padding: 15px 40px;
        font-size: 16px;
    }

    .services-main-title {
        font-size: 20px;
    }

    .service-detail-title {
        font-size: 20px;
    }

    .contact-page-main-title {
        font-size: 20px;
    }

    .contact-form-input,
    .contact-form-textarea {
        font-size: 14px;
        padding: 10px 12px;
    }

    .contact-form-submit {
        padding: 12px 40px;
        font-size: 16px;
    }

    .footer {
        padding: 25px 15px 15px 15px;
    }

    .footer-logo {
        height: 50px;
    }

    .footer-description {
        font-size: 12px;
    }

    .footer-section-title {
        font-size: 16px;
    }

    .footer-service-link,
    .footer-page-link {
        font-size: 13px;
    }

    .footer-contact-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .navigation {
        top: 15px;
        left: 15px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 14px;
    }

    .nav-logo {
        top: 15px;
        right: 15px;
        width: 150px;
    }

    .main-title {
        font-size: 28px;
    }

    .description {
        font-size: 16px;
        padding: 25px 15px;
    }

    .contact-box {
        padding: 25px 15px;
        gap: 20px;
    }

    .contact-title {
        font-size: 24px;
    }

    .contact-text {
        font-size: 14px;
    }

    .footer {
        min-height: auto;
        padding: 30px 20px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 25px;
    }

    .footer-column:first-child {
        padding-left: 0;
        padding-top: 0;
    }

    .footer-logo {
        height: 70px;
        width: auto;
        margin-bottom: 15px;
    }

    .footer-description {
        font-size: 16px;
    }

    .footer-contact-title {
        font-size: 20px;
    }

    .footer-email,
    .footer-phone {
        font-size: 16px;
    }

    .footer-divider {
        width: calc(100% - 40px);
    }
}

/* Bize Ulaşın Sayfası */
.contact-main-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 50px 100px 50px;
    position: relative;
    z-index: 10;
}

.contact-wrapper {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    animation: slideDown 1.2s ease-out;
}

.contact-page-title {
    font-family: 'Kepler 296', 'Oswald', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: white;
    margin-bottom: 60px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
}

.contact-info-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.contact-info-section {
    background-color: rgba(0, 0, 0, 0.85);
    border-radius: 15px;
    padding: 50px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.contact-section-title {
    font-family: 'Kepler 296', 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    text-align: left;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #DC143C;
}

.contact-item-title {
    font-family: 'Kepler 296', 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #DC143C;
    margin-bottom: 10px;
}

.contact-item-text {
    font-family: 'Kepler 296', 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: white;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-page-title {
        font-size: 42px;
        margin-bottom: 40px;
    }

    .contact-info-container {
        flex-direction: column;
    }

    .contact-info-section {
        padding: 30px 20px;
    }

    .contact-section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .contact-main-content {
        padding: 120px 30px 80px 30px;
    }

    .contact-page-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .contact-info-section {
        padding: 25px 15px;
    }

    .contact-section-title {
        font-size: 24px;
    }

    .contact-item-title {
        font-size: 18px;
    }

    .contact-item-text {
        font-size: 16px;
    }
}

/* Bize Ulaşın Sayfası - Yeni Tasarım */
.contact-page-body {
    background-color: #ffffff;
    overflow-x: hidden;
}

.contact-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.contact-bg-right {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
}

.contact-main-content-new {
    min-height: calc(100vh - 130px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 50px 100px 50px;
    position: relative;
    z-index: 10;
    margin-top: 0;
}

.contact-wrapper-new {
    max-width: 800px;
    width: 100%;
    text-align: center;
    animation: slideDown 1.2s ease-out;
    padding: 0 30px;
}

.contact-main-title {
    font-family: 'Kepler 296', 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.contact-subtitle {
    font-family: 'Kepler 296', 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-main-content-new {
        padding: 120px 30px 80px 30px;
    }

    .contact-main-title {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .contact-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .contact-main-content-new {
        padding: 100px 20px 60px 20px;
    }

    .contact-main-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .contact-subtitle {
        font-size: 18px;
    }
}

/* Hizmetlerimiz Sayfası */
.services-main-content {
    min-height: calc(100vh - 135px);
    background-color: #f2f2f2;
    padding: 50px 50px 50px 269px;
    margin-top: 0;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    margin-bottom: 40px;
}

.services-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    margin-bottom: 15px;
    text-align: left;
    animation: slideDown 1.2s ease-out;
}

.services-title-line {
    border: none;
    border-top: 1px solid #cccccc;
    margin: 0;
    width: calc(84vw - 69px - 400px);
    max-width: calc(100vw - 269px - 400px);
}

.services-boxes {
    display: flex;
    gap: 0;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: calc(100vw - 269px - 500px);
}

.services-boxes + .services-boxes {
    margin-top: 30px;
}

.service-box-divider {
    width: 3px;
    height: 200px;
    background: linear-gradient(180deg, #28a745 0%, #20c997 100%);
    border-radius: 2px;
    margin: 0 30px;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.3);
    align-self: flex-start;
}

.service-box {
    background-color: #ffffff;
    border: none;
    padding: 0;
    width: calc(50% - 15px);
    min-width: 400px;
    max-width: 500px;
    height: 550px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    animation: slideDown 1.4s ease-out;
    display: flex;
    flex-direction: column;
}

.service-box-link {
    height: 550px;
    display: flex;
    flex-direction: column;
}

.service-box-link {
    text-decoration: none;
    color: inherit;
}

.service-box-link:hover {
    text-decoration: none;
    color: inherit;
}

.service-box:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.service-box-image {
    padding: 0;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


.service-box-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    padding: 15px 20px;
    text-align: left;
    flex-shrink: 0;
}

.service-box-description {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #333333;
    line-height: 1.8;
    margin: 0;
    padding: 0 20px 20px 20px;
    text-align: left;
    flex-grow: 1;
}

.service-box-footer {
    padding: 0 20px 20px 20px;
    margin-top: auto;
}

.service-inspect-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.service-inspect-link:hover {
    color: #DC143C;
}

.inspect-arrow-icon {
    transition: transform 0.3s ease;
}

.service-inspect-link:hover .inspect-arrow-icon {
    transform: translateX(3px);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.service-box-link .service-box-image .service-image,
.service-box .service-box-image .service-image {
    height: 250px;
    object-fit: cover;
}

.service-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8e8e8;
    color: #666666;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.service-box-content {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    padding: 30px;
    overflow-y: auto;
    z-index: 10;
}

.service-box.active .service-box-content {
    display: block;
}

.service-box.active .service-box-image {
    display: none;
}

.service-content-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 20px 0;
}

.service-content-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 20px 0 15px 0;
}

.service-content-list {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #333333;
    line-height: 1.8;
    margin: 0 0 20px 0;
    padding-left: 20px;
}

.service-content-list li {
    margin-bottom: 10px;
}

.service-content-section {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 20px 0 15px 0;
}

.service-box-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #333333;
    line-height: 1.8;
    margin: 0 0 15px 0;
}

.service-content-bold {
    font-weight: 700;
    margin-top: 15px;
}

/* Hizmet Detay Sayfaları */
.service-detail-content {
    max-width: 900px;
    margin-top: 30px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.service-detail-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 25px 0;
}

.service-detail-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 25px 0 15px 0;
}

.service-detail-list {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 1.8;
    margin: 0 0 25px 0;
    padding-left: 25px;
}

.service-detail-list li {
    margin-bottom: 12px;
}

.service-detail-section {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 25px 0 15px 0;
}

.service-detail-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 1.8;
    margin: 0 0 18px 0;
}

.service-detail-bold {
    font-weight: 700;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .services-main-content {
        padding: 50px 30px;
    }

    .services-boxes {
        flex-direction: column;
    }

    .service-box {
        width: 100%;
        min-width: auto;
        max-width: 100%;
    }
}

/* Bize Ulaşın Sayfası - İletişim Formu */
.contact-page-main {
    min-height: calc(100vh - 135px);
    background-color: #f2f2f2;
    padding: 50px 50px 50px 340px;
    margin-top: 0;
}

.contact-page-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-page-header {
    margin-bottom: 40px;
    animation: slideDown 1.2s ease-out;
}

.contact-page-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    margin-bottom: 15px;
    display: inline-block;
    margin-left: -135px !important;
    animation: slideDown 1.2s ease-out;
}

.contact-page-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #666666;
    margin: 0;
    margin-bottom: 20px;
    margin-left: -135px !important;
    animation: slideDown 1.4s ease-out;
}

.contact-page-divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    margin: 0;
    margin-left: -135px !important;
    width: 1145px;
    animation: slideDown 1.6s ease-out;
}

.contact-form-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-left: -135px;
    animation: slideDown 1.8s ease-out;
}

.contact-form-box {
    background-color: #ffffff;
    border: none;
    padding: 0;
    margin: 0;
    max-width: 600px;
    width: 600px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    animation: slideDown 1.8s ease-out;
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 400px;
    flex: 1;
    animation: slideDown 2s ease-out;
}

.contact-info-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    margin-bottom: 15px;
}

.contact-info-description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #666666;
    margin: 0;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-info-icons {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
    margin-top: 30px;
    padding-top: 0;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
    flex-shrink: 0;
}

.contact-info-text {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #333333;
    line-height: 1.4;
}

.contact-form-red-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #DC143C 0%, #ff4757 100%);
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: 0 2px 4px rgba(220, 20, 60, 0.3);
}

.contact-form {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.contact-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form-group-full {
    flex: 1 1 100%;
    width: 100%;
}

.contact-form-input,
.contact-form-textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #333333;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    border-color: #DC143C;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: #999999;
    font-weight: 300;
}

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

.contact-form-submit {
    background-color: #DC143C;
    color: #ffffff;
    border: none;
    padding: 15px 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: center;
    margin-top: 10px;
}

.contact-form-submit:hover {
    background-color: #B91C1C;
}

.contact-form-submit:disabled {
    background-color: #999999;
    cursor: not-allowed;
    transform: none;
}

.contact-form-submit:disabled:hover {
    background-color: #999999;
    transform: none;
    box-shadow: none;
}

/* Form Mesaj Stilleri */
.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    display: none;
    animation: slideDown 0.3s ease-out;
}

.form-message:not(:empty) {
    display: block;
}

.form-message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .contact-page-main {
        padding: 50px 30px;
    }

    .contact-page-main-title {
        font-size: 28px;
        margin-left: 0;
    }

    .contact-page-subtitle {
        margin-left: 0;
    }

    .contact-page-divider {
        margin-left: 0;
        width: 100%;
    }

    .contact-form-box {
        margin-left: 0;
    }

    .contact-form-row {
        flex-direction: column;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

