/* Genel Stil Ayarları */
:root {
    --primary: #000000;
    --primary-dark: #1a1a1a;
    --secondary: #F28C28;
    --secondary-dark: #d87a21;
    --background: #ffffff;
    --text-color: #333333;
    --text-light: #6c757d;
    --border-color: #e5e5e5;
    --border-radius: 4px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --header-height: 80px;
    --section-padding: 80px 0;
}

::selection {
    background-color: var(--secondary);
    color: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

    a:hover {
        color: var(--secondary);
    }

img {
    max-width: 100%;
    height: auto;
}

.text-bold{
    font-weight: 700;
}

.entry-image {
    display: flex;
    height: 550px;
    object-fit: cover;
    margin-top: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--secondary);
    color: white;
}

    .btn-primary:hover {
        background-color: var(--secondary-dark);
        color: white;
    }

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    background: #fff;
}

    .btn-outline:hover {
        background-color: var(--primary);
        color: white;
    }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: var(--section-padding);
}

.section-title {
    margin-bottom: 3rem;
    position: relative;
}

    .section-title h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .section-title p {
        color: var(--text-light);
        max-width: 700px;
        margin: 0 auto;
    }

.title-separator {
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
    margin: 1rem auto;
}

/* Header Styles */
.top-bar {
    background-color: var(--primary-dark);
    padding: 10px 0;
    color: white;
}

.top-contact-info a {
    color: white;
    margin-right: 20px;
    font-size: 0.9rem;
}

    .top-contact-info a:hover {
        color: var(--secondary);
    }

.social-links a {
    color: white;
    margin-left: 15px;
    font-size: 0.9rem;
}

    .social-links a:hover {
        color: var(--secondary);
    }

.main-navbar {
    background-color: white;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo-container {
    flex: 0 0 auto;
}

.main-logo {
    height: 60px;
}

.nav-menu {
    display: flex;
    justify-content: center;
    flex: 1 1 auto;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 15px;
    position: relative;
}

.nav-link {
    padding: 10px 0;
    display: inline-block;
    font-weight: 500;
    position: relative;
    color: #000;
}

    .nav-link.active {
        color: var(--secondary);
    }

    .nav-link:after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--secondary);
        transition: var(--transition);
    }

    .nav-link:hover:after,
    .nav-link.active:after {
        width: 100%;
    }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: white;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    padding: 10px 0;
    border: 1px solid var(--border-color);
}

.dropdown-toggle::after {
    display: none;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 8px 20px;
}

    .dropdown-item:hover {
        background-color: #f8f9fa;
        color: var(--secondary);
    }

/* Çoklu seviye dropdown menüler için */
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -6px;
        margin-left: -1px;
        border-radius: var(--border-radius);
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-submenu > a:after {
        display: block;
        content: " ";
        float: right;
        width: 0;
        height: 0;
        border-color: transparent;
        border-style: solid;
        border-width: 5px 0 5px 5px;
        border-left-color: #cccccc;
        margin-top: 5px;
        margin-right: -10px;
    }

    .dropdown-submenu:hover > a:after {
        border-left-color: var(--secondary);
    }

/* Bootstrap collapse override */
.collapse:not(.navbar-collapse):not(.show) {
    display: none;
}

.navbar-collapse {
    display: flex !important;
}

/* Mobile menu fixes */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 20px 0;
}

    .mobile-menu.active {
        right: 0;
    }

.mobile-menu-container {
    padding: 0 15px;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 15px;
}

.mobile-logo {
    height: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

.mobileItem {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--dark);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid var(--light-gray);
    cursor: pointer;
}

    .mobileItem:hover {
        background-color: var(--light);
    }

    .mobileItem i {
        transition: transform 0.3s ease;
    }

.mobileHasChildren.active > .mobileItem i {
    transform: rotate(180deg);
}

.mobileChildArea {
    display: none;
    padding-left: 15px;
    background-color: var(--light);
}

.mobileHasChildren.active > .mobileChildArea {
    display: block;
}

.mobileSubItem {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.9rem;
    width: 100%;
}

    .mobileSubItem:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }

    .mobileSubItem.mobileHasChildren {
        display: block;
    }

        .mobileSubItem.mobileHasChildren > div {
            padding: 10px 15px;
            cursor: pointer;
        }

            .mobileSubItem.mobileHasChildren > div:hover {
                background-color: rgba(0, 0, 0, 0.05);
            }

    .mobileSubItem i {
        transition: transform 0.3s ease;
    }

    .mobileSubItem.mobileHasChildren.active > div i {
        transform: rotate(90deg);
    }

.mobileSubSubItem {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.85rem;
}

    .mobileSubSubItem:hover {
        background-color: rgba(0, 0, 0, 0.05);
        color: var(--primary);
    }

.contact-btn {
    padding: 8px 20px;
    border-radius: 30px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: white;
    z-index: 2000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
}

    .mobile-menu.active {
        right: 0;
    }

.mobile-menu-container {
    padding: 20px;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.mobile-logo {
    height: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    margin-bottom: 10px;
}

.mobile-nav-link {
    display: block;
    padding: 10px 0;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
}

    .mobile-nav-link i {
        float: right;
        transition: transform 0.3s;
    }

    .mobile-nav-link.active i {
        transform: rotate(180deg);
    }

.mobile-dropdown {
    list-style: none;
    padding: 0 0 0 15px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown-link {
    display: block;
    padding: 10px 0;
    color: var(--text-color);
}

.mobile-contact {
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.mobile-contact-item {
    display: block;
    margin-bottom: 15px;
    color: var(--text-color);
}

.mobile-social {
    display: flex;
    margin-top: 20px;
}

    .mobile-social a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--primary);
        color: white;
        border-radius: 50%;
        margin-right: 10px;
        transition: var(--transition);
    }

        .mobile-social a:hover {
            background-color: var(--secondary);
        }

/* Hero Section */
@media screen and (max-width: 765px) {
    .mobile-padding {
        padding: 3rem;
    }
}

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
}

.hero-content {
    max-width: 650px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    margin-right: 15px;
    padding: 12px 30px;
}

/* About Section */
.about-section {
    padding: var(--section-padding);
}

.about-img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.about-content {
    padding: 20px 0;
}

.about-title {
    margin-bottom: 20px;
}

.about-description {
    margin-bottom: 30px;
}

.feature-box {
    display: flex;
    margin-bottom: 25px;
}

.feature-icon {
    margin-right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-text h4 {
    margin-bottom: 10px;
}

/* Services Section */
.services-section {
    padding: var(--section-padding);
    background-color: #f9f9f9;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-10px);
    }

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--secondary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.service-title {
    margin-bottom: 15px;
}

.service-description {
    margin-bottom: 20px;
}

/* Products Section */
.products-section {
    padding: var(--section-padding);
}

.product-card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

    .product-card:hover {
        box-shadow: var(--box-shadow);
        transform: translateY(-5px);
    }

.product-img {
    height: 200px;
    overflow: hidden;
}

    .product-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-content {
    padding: 20px;
}

.product-title {
    margin-bottom: 10px;
}

.product-description {
    margin-bottom: 15px;
    color: var(--text-light);
    height: 70px;
}

.product-link {
    color: var(--secondary);
    font-weight: 500;
}

    .product-link:hover {
        text-decoration: underline;
    }

/* Call to Action */
.cta-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('/images/cta-bg.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-icon {
    margin-right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 5px;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

    .form-control:focus {
        border-color: var(--secondary);
        outline: none;
    }

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.form-check {
    margin-bottom: 20px;
}

.form-btn {
    width: 100%;
    padding: 12px;
}

/* Map Section */
.map-section {
    height: 400px;
}

    .map-section iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

/* Footer */
.main-footer {
    background-color: var(--primary);
    color: white;
    padding-top: 70px;
}

@media screen and (max-width: 765px){
    .main-footer {
        padding-bottom: 120px;
    }
}

.footer-content {
    padding-bottom: 40px;
}

.footer-logo {
    height: 60px;
    border-radius: 5px;
}

.footer-description {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
}

    .footer-social a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
        border-radius: 50%;
        margin-right: 10px;
        transition: var(--transition);
    }

        .footer-social a:hover {
            background-color: var(--secondary);
        }

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

    .footer-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background-color: var(--secondary);
    }

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 15px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        transition: var(--transition);
    }

        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-contact li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
        color: rgba(255, 255, 255, 0.7);
    }

    .footer-contact i {
        margin-right: 15px;
        color: var(--secondary);
    }

    .footer-contact a {
        color: rgba(255, 255, 255, 0.7);
    }

        .footer-contact a:hover {
            color: var(--secondary);
        }

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.developer {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

    .developer a {
        color: var(--secondary);
    }

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 900;
}

    .back-to-top:hover {
        color: #fff;
    }

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
    }

/* WhatsApp Support */
.whatsapp-support {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 900;
    transition: var(--transition);
}

    .whatsapp-support:hover {
        transform: scale(1.1);
        color: white;
    }

/* Cookie Alert */
.cookie-alert {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    z-index: 1000;
    transition: bottom 0.5s ease;
}

    .cookie-alert.show {
        bottom: 0;
    }

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .cookie-content p {
        margin-bottom: 15px;
        margin-right: 20px;
        flex: 1;
    }

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    :root {
        --section-padding: 60px 0;
    }

    .nav-menu {
        display: none;
    }

    .navbar-actions .contact-btn {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-section {
        height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 50px 0;
    }

    .footer-title {
        margin-top: 30px;
    }

    .hero-section {
        height: 400px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .back-to-top, .whatsapp-support {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .whatsapp-support {
        width: 50px;
        height: 50px;
    }

    .cookie-content, .cookie-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575.98px) {
    :root {
        --section-padding: 40px 0;
    }

    .hero-section {
        height: 350px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        padding: 10px 20px;
        margin-bottom: 10px;
    }
}

/* Tilt Effect */
.tilt-img {
    transition: transform 0.3s ease-out;
    transform-style: preserve-3d;
    will-change: transform;
    border-radius: 10px;
}

    .tilt-img:hover {
        transform: perspective(1000px) rotateX(5deg) rotateY(5deg) scale(1.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

/* Hero Slider */
.hero-slider {
    width: 100%;
    height: 100%;
}

    .hero-slider .swiper-slide {
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        position: relative;
    }

        .hero-slider .swiper-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

    .hero-slider .hero-content {
        position: relative;
        z-index: 2;
        color: #fff;
        max-width: 650px;
    }

    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        color: #fff;
    }

    .hero-slider .swiper-pagination-bullet {
        background: #fff;
        opacity: 0.7;
    }

    .hero-slider .swiper-pagination-bullet-active {
        background: var(--primary-color);
        opacity: 1;
    }

/* Testimonials Slider */
.testimonials-slider {
    width: 100%;
    padding-bottom: 50px;
}

.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 10px;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

    .testimonial-text::before {
        content: '"';
        font-size: 40px;
        color: var(--primary-color);
        position: absolute;
        left: -10px;
        top: -10px;
        opacity: 0.5;
    }

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

    .testimonial-author-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.testimonial-author-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author-title {
    font-size: 14px;
    color: #777;
}

/* Process Flow */
.process-flow {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

    .process-flow::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 20px;
        bottom: 20px;
        width: 2px;
        background: var(--primary-color);
        transform: translateX(-50%);
        z-index: 1;
    }

.process-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    z-index: 2;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #f06620;
    margin-right: 30px;
    position: relative;
    flex-shrink: 0;
}

    .process-icon span {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 2px;
        line-height: 1;
    }

    .process-icon i {
        font-size: 20px;
    }

.process-content {
    background: #fff;
    border-radius: 10px;
    padding: 20px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
}

.process-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.process-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .process-flow::before {
        left: 40px;
    }

    .process-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 40px;
    }

    .process-icon {
        position: absolute;
        left: 0;
        top: 0;
        margin-right: 0;
        width: 60px;
        height: 60px;
    }

    .process-content {
        margin-top: 40px;
        width: 100%;
    }
}

/* Product Category Card */
.product-category-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

    .product-category-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.product-category-img {
    height: 200px;
    overflow: hidden;
}

    .product-category-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.product-category-card:hover .product-category-img img {
    transform: scale(1.1);
}

.product-category-content {
    padding: 20px;
}

.product-category-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.product-category-description {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
    height: 50px;
}

/* Corporate Card */
.corporate-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

    .corporate-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.corporate-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .corporate-icon i {
        font-size: 30px;
        color: #F28C28;
    }

.corporate-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.corporate-text {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

    .timeline::after {
        content: '';
        position: absolute;
        width: 6px;
        background-color: var(--primary-color);
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -3px;
    }

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

    .timeline-item.left {
        left: 0;
    }

    .timeline-item.right {
        left: 50%;
    }

    .timeline-item::after {
        content: '';
        position: absolute;
        width: 25px;
        height: 25px;
        right: -12px;
        background-color: #fff;
        border: 4px solid var(--primary-color);
        top: 20px;
        border-radius: 50%;
        z-index: 1;
    }

    .timeline-item.right::after {
        left: -12px;
    }

.timeline-content {
    padding: 20px 30px;
    background-color: #fff;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-date {
    background-color: var(--primary-color);
    color: #fff;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.timeline-title {
    margin: 10px 0;
    color: var(--primary-color);
    font-weight: 600;
}

.timeline-text {
    line-height: 1.6;
    margin-bottom: 0;
    color: #555;
}

@media screen and (max-width: 768px) {
    .timeline::after {
        left: 40px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 20px;
    }

        .timeline-item.right {
            left: 0;
        }

        .timeline-item::after {
            left: 28px;
            right: auto;
        }

        .timeline-item.right::after {
            left: 28px;
        }
}

/* Team Card */
.team-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.team-img {
    position: relative;
    overflow: hidden;
}

    .team-img img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

    .team-social a:hover {
        background: var(--primary-color);
        color: #fff;
    }

.team-content {
    padding: 20px;
    text-align: center;
}

.team-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.team-position {
    color: #555;
    font-size: 14px;
    margin-bottom: 0;
}

/* Value Card */
.value-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .value-icon i {
        font-size: 28px;
        color: #F28C28;
    }

.mission-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
}

    .mission-icon i {
        font-size: 28px;
        color: #F28C28;
    }

.value-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Goal Item */
.goal-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.goal-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

    .goal-icon span {
        font-size: 24px;
        font-weight: bold;
        color: #fff;
    }

.goal-text {
    flex-grow: 1;
}

    .goal-text h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
        color: var(--primary-color);
    }

    .goal-text p {
        color: #555;
        line-height: 1.6;
        margin-bottom: 0;
    }

/* Policy Content */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

    .policy-content h2 {
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .policy-content h3 {
        color: var(--primary-color);
        margin-top: 30px;
    }

    .policy-content p {
        color: #555;
        line-height: 1.7;
    }

    .policy-content ul {
        color: #555;
        line-height: 1.7;
    }

        .policy-content ul li {
            margin-bottom: 10px;
        }

    .policy-content a {
        color: var(--primary-color);
        text-decoration: none;
    }

        .policy-content a:hover {
            text-decoration: underline;
        }

/* Page Header */
.page-header {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
    }

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.page-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffff;
    text-shadow: 1px 1px 2px #0e0e0e;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
    justify-content: center;
}

.breadcrumb-item, .breadcrumb-item.active {
    color: #fff;
}

    .breadcrumb-item a {
        color: #fff;
        text-decoration: none;
    }

        .breadcrumb-item a:hover {
            text-decoration: underline;
        }

    .breadcrumb-item + .breadcrumb-item::before {
        color: #fff;
    }

/* Mobil Alt Menü */
.mobile-bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
}

.mobile-bottom-menu-container {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}

.mobile-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary);
    font-size: 0.75rem;
    text-decoration: none;
    padding: 5px 0;
    transition: all 0.3s ease;
}

    .mobile-bottom-item i {
        font-size: 1.25rem;
        margin-bottom: 4px;
        color: var(--secondary);
    }

    .mobile-bottom-item span {
        font-weight: 500;
    }

    .mobile-bottom-item:hover,
    .mobile-bottom-item:hover i,
    .mobile-bottom-item.active,
    .mobile-bottom-item.active i {
        color: var(--secondary);
    }

@media (max-width: 767.98px) {
    .mobile-bottom-menu {
        display: block;
    }

    .whatsapp-support {
        bottom: 85px;
    }

    .back-to-top {
        bottom: 85px;
    }

    main {
        padding-bottom: 70px;
    }
}
