﻿/**
* Template Name: Flattern - v4.2.0
* Template URL: https://bootstrapmade.com/flattern-multipurpose-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #4d4643;
}

a {
    color: #f03c02;
    text-decoration: none;
}

    a:hover {
        color: #fd5c28;
        text-decoration: none;
    }

h1, h2, h3, h4, h5, h6 {
    font-family: "Muli", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #0a78b9;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 28px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #020D5F;
        color: #fff;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #28245d;
    padding: 10px 0;
    font-size: 14px;
}

    #topbar .contact-info i {
        font-style: normal;
        color: #ffffff;
    }

        #topbar .contact-info i a, #topbar .contact-info i span {
            padding-left: 5px;
            color: #ffffff;
        }

        #topbar .contact-info i a {
            line-height: 0;
            transition: 0.3s;
        }

            #topbar .contact-info i a:hover {
                color: #ffffff;
            }

    #topbar .social-links a {
        color: #ffffff;
        line-height: 5px;
        transition: 0.3s;
        margin-left: 15px;
    }

        #topbar .social-links a:hover {
            color: #ffffffff;
        }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 100px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    background: #fff;
}

    #header.fixed-top {
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    }

    #header .logo {
        padding: 0;
        margin: 0;
        height: 100%; /* Header yüksekliği neyse, o kadar uzan */
        display: flex; /* İçindeki <a>'yı dikeyde ortalamak için */
        align-items: center;
    }

        /* Logonun linkini (<a>) de aynı şekilde ayarlıyoruz */
        #header .logo a {
            display: flex;
            align-items: center;
            height: 100%;
        }

        /* Asıl logo resminin boyutunu belirliyoruz */
        #header .logo img {
            /* max-height yerine direkt height kullanmak daha kesin sonuç verir */
            height: 80px !important; /* <<< ANA DEĞİŞİKLİK BURADA. 100px'lik header içinde ideal bir boyut. */
            width: auto; /* Genişlik, yüksekliğe göre otomatik ayarlansın */
            max-height: none !important; /* Eski max-height kurallarını ezelim */
            padding: 0;
            margin: 0;
        }

.scrolled-offset {
    margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0 10px 20px;
        font-size: 13px;
        color: #65534c;
        white-space: nowrap;
        text-transform: uppercase;
        transition: 0.3s;
    }

        .navbar a i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

        .navbar a:hover, .navbar .active, .navbar li:hover > a {
            color: #0a78b9;
        }

    .navbar .getstarted {
        background: #f03c02;
        padding: 8px 20px;
        margin-left: 30px;
        border-radius: 4px;
        color: #fff;
    }

        .navbar .getstarted:hover {
            color: #fff;
            background: #fd490f;
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 14px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 13px;
            text-transform: none;
            font-weight: 500;
            color: #581601;
        }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
                color: #f03c02;
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #2b2320;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #fff;
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(14, 11, 10, 0.9);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a {
        padding: 10px 20px;
        font-size: 15px;
        color: #581601;
    }

        .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
            color: #0a78b9;
        }

    .navbar-mobile .getstarted {
        margin: 15px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
                color: #f03c02;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    position: relative;
    padding: 0;
}

    #hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
    }

    #hero .carousel-container {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        position: absolute;
        bottom: 60px;
        top: 110px;
        left: 50px;
        right: 50px;
    }

    #hero .carousel-content {
        background: rgba(28, 23, 21, 0.7);
        padding: 20px;
        color: #fff;
        -webkit-animation-duration: .5s;
        animation-duration: .5s;
        border-top: 5px solid #0a78b9;
    }

        #hero .carousel-content h2 {
            color: #fff;
            margin-bottom: 30px;
            font-size: 28px;
            font-weight: 700;
        }

    #hero .btn-get-started {
        font-family: "Muli", sans-serif;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 12px 32px;
        border-radius: 4px;
        transition: 0.5s;
        line-height: 1;
        margin: 10px;
        color: #fff;
        -webkit-animation-delay: 0.8s;
        animation-delay: 0.8s;
        border: 2px solid #f03c02;
    }

        #hero .btn-get-started:hover {
            background: #f03c02;
            color: #fff;
            text-decoration: none;
        }

    #hero .carousel-inner .carousel-item {
        transition-property: opacity;
    }

    #hero .carousel-inner .carousel-item,
    #hero .carousel-inner .active.carousel-item-start,
    #hero .carousel-inner .active.carousel-item-end {
        opacity: 0;
    }

    #hero .carousel-inner .active,
    #hero .carousel-inner .carousel-item-next.carousel-item-start,
    #hero .carousel-inner .carousel-item-prev.carousel-item-end {
        opacity: 1;
        transition: 0.5s;
    }

        #hero .carousel-inner .carousel-item-next,
        #hero .carousel-inner .carousel-item-prev,
        #hero .carousel-inner .active.carousel-item-start,
        #hero .carousel-inner .active.carousel-item-end {
            left: 0;
            transform: translate3d(0, 0, 0);
        }

    #hero .carousel-control-prev, #hero .carousel-control-next {
        width: 10%;
    }

    #hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
        background: none;
        font-size: 48px;
        line-height: 1;
        width: auto;
        height: auto;
    }

    #hero .carousel-indicators li {
        cursor: pointer;
    }

@media (min-width: 1024px) {
    #hero .carousel-content {
        width: 60%;
    }

    #hero .carousel-control-prev, #hero .carousel-control-next {
        width: 5%;
    }
}

@media (max-width: 992px) {
    #hero {
        height: calc(100vh - 70px);
    }

        #hero .carousel-content h2 {
            margin-bottom: 15px;
            font-size: 22px;
        }

        #hero .carousel-content p {
            font-size: 15px;
        }
}

@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f6f3f2;
}

.section-title {
    padding-bottom: 30px;
    text-align: center;
}

    .section-title h2 {
        font-size: 28px;
        font-weight: 300;
        margin-bottom: 20px;
        padding-bottom: 0;
        color: #65534c;
    }

        .section-title h2 strong {
            font-weight: 700;
        }

    .section-title p {
        margin-bottom: 0;
    }

 

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: #f3f1f0;
    padding: 60px 0;
    color: #574741;
}

    .cta h3 {
        font-size: 28px;
        font-weight: 700;
    }

        .cta h3 span {
            color: #f03c02;
        }

    .cta p {
        padding: 0;
        margin: 0;
    }

    .cta .cta-btn {
        font-family: "Poppins", sans-serif;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 25px;
        border-radius: 2px;
        transition: 0.4s;
        margin: 10px;
        border-radius: 4px;
        border: 2px solid #f03c02;
        color: #f03c02;
        background: #fff;
    }

        .cta .cta-btn:hover {
            background: #f03c02;
            color: #fff;
        }

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .cta .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    padding: 50px 20px;
    margin-top: 35px;
    margin-bottom: 25px;
    text-align: center;
    border: 2px solid black;
    height: 200px;
    position: relative;
    background: white;
}

.services .icon {
    position: absolute;
    top: -36px;
    left: calc(50% - 36px);
    transition: 0.2s;
    border-radius: 50%;
    border: 6px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 72px;
    height: 72px;
    background: #1d1d1d;
}

    .services .icon i {
        color: #fff;
        font-size: 24px;
        line-height: 0;
    }

.services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
}

    .services .title a {
        color: black;
    }

.services .icon-box:hover .icon {
    background: #fff;
    border: 2px solid #1d1d1d;
}

    .services .icon-box:hover .icon i {
        color: #1d1d1d;
    }

.services .icon-box:hover .title a {
    color: black;
}

.services .description {
    line-height: 24px;
    font-size: 14px;
}


/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

    .portfolio-details .portfolio-details-slider {
        width: 100%;
    }

        .portfolio-details .portfolio-details-slider .swiper-pagination {
            margin-top: 20px;
            position: relative;
        }

            .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
                width: 15px;
                height: 12px;
                background-color: #fff;
                opacity: 1;
                border: 1px solid #c99d4e;
            }

            .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
                background-color: #c99d4e;
            }

    .portfolio-details .portfolio-info {
        padding: 30px;
        box-shadow: 0px 0 30px rgba(43, 35, 32, 0.08);
    }

        .portfolio-details .portfolio-info h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .portfolio-details .portfolio-info ul {
            list-style: none;
            padding: 0;
            font-size: 15px;
        }

            .portfolio-details .portfolio-info ul li + li {
                margin-top: 10px;
            }

    .portfolio-details .portfolio-description {
        padding-top: 30px;
    }

        .portfolio-details .portfolio-description h2 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .portfolio-details .portfolio-description p {
            padding: 0;
        }




/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about-us .content {
    padding: 30px 0;
}

    .about-us .content h3 {
        font-weight: 700;
        font-size: 34px;
    }

    .about-us .content p {
        margin-bottom: 0;
    }

    .about-us .content .icon-box {
        margin-top: 25px;
    }

        .about-us .content .icon-box h4 {
            font-size: 20px;
            font-weight: 700;
            margin: 5px 0 10px 60px;
        }

        .about-us .content .icon-box i {
            font-size: 48px;
            float: left;
            color: #f03c02;
        }

        .about-us .content .icon-box p {
            font-size: 15px;
            color: #90847f;
            margin-left: 60px;
        }

.about-us .image {
    background: url("../img/about.jpg") center center no-repeat;
    background-size: cover;
    min-height: 400px;
}

@media (max-width: 991px) {
    .about-us .image {
        text-align: center;
    }

        .about-us .image img {
            max-width: 80%;
        }
}

@media (max-width: 667px) {
    .about-us .image img {
        max-width: 100%;
    }
}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
    padding-top: 0;
}

    .features .nav-tabs {
        border: 0;
    }

    .features .nav-link {
        border: 0;
        padding: 25px 20px;
        transition: 0.3s;
        color: #2b2320;
    }

        .features .nav-link:hover {
            color: #0a78b9;
        }

        .features .nav-link h4 {
            font-size: 18px;
            font-weight: 600;
        }

        .features .nav-link p {
            font-size: 14px;
            margin-bottom: 0;
        }

        .features .nav-link.active {
            box-shadow: 0px 0 15px rgba(0, 0, 0, 0.12);
            color: #0a78b9;
        }

    .features .tab-pane.active {
        -webkit-animation: slide-down 0.5s ease-out;
        animation: slide-down 0.5s ease-out;
    }

@-webkit-keyframes slide-down {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slide-down {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
    padding: 20px;
    background: #f3f1f0;
    text-align: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.pricing h3 {
    font-weight: 400;
    padding: 15px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: #2b2320;
}

.pricing h4 {
    font-size: 42px;
    color: #f03c02;
    font-weight: 500;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 20px;
}

    .pricing h4 sup {
        font-size: 20px;
        top: -15px;
        left: -3px;
    }

    .pricing h4 span {
        color: #bababa;
        font-size: 16px;
        font-weight: 300;
    }

.pricing ul {
    padding: 0;
    list-style: none;
    color: #2b2320;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

    .pricing ul li {
        padding-bottom: 16px;
    }

    .pricing ul .na {
        color: #ccc;
        text-decoration: line-through;
    }

.pricing .btn-wrap {
    padding: 15px;
    text-align: center;
}

.pricing .btn-buy {
    color: #9c847b;
    border: 2px solid #e9e3e1;
    display: inline-block;
    padding: 10px 40px 12px 40px;
    border-radius: 4px;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: "Muli", sans-serif;
    font-weight: 600;
    transition: 0.3s;
}

    .pricing .btn-buy:hover {
        color: #f03c02;
        border-color: #f03c02;
    }

.pricing .featured {
    background: #fd5c28;
    box-shadow: none;
}

    .pricing .featured h3, .pricing .featured h4, .pricing .featured h4 span, .pricing .featured ul, .pricing .featured ul .na {
        color: #fff;
    }

    .pricing .featured .btn-wrap {
        padding: 15px;
        text-align: center;
    }

    .pricing .featured .btn-buy {
        color: #fff;
        border-color: rgba(255, 255, 255, 0.5);
    }

        .pricing .featured .btn-buy:hover {
            color: #f03c02;
            background: #fff;
            border-color: #fff;
        }

/*--------------------------------------------------------------
# Cta Pricing
--------------------------------------------------------------*/
.cta-pricing {
    background: #f3f1f0;
    color: #65534c;
}

    .cta-pricing h3 {
        font-size: 28px;
        font-weight: 700;
    }

    .cta-pricing .cta-btn {
        font-family: "Poppins", sans-serif;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 25px;
        border-radius: 2px;
        transition: 0.4s;
        margin: 10px;
        border-radius: 4px;
        border: 2px solid #f03c02;
        color: #f03c02;
        background: #fff;
    }

        .cta-pricing .cta-btn:hover {
            background: #f03c02;
            color: #fff;
        }

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 40px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    background: #fff;
}

    .testimonials .testimonial-item .testimonial-img {
        width: 90px;
        border-radius: 50px;
        border: 6px solid #fff;
        float: left;
        margin: 0 10px 0 0;
    }

    .testimonials .testimonial-item h3 {
        font-size: 18px;
        font-weight: bold;
        margin: 10px 0 5px 0;
        color: #111;
    }

    .testimonials .testimonial-item h4 {
        font-size: 14px;
        color: #999;
        margin: 0;
    }

    .testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
        color: #fecfc0;
        font-size: 26px;
    }

    .testimonials .testimonial-item .quote-icon-left {
        display: inline-block;
        left: -5px;
        position: relative;
    }

    .testimonials .testimonial-item .quote-icon-right {
        display: inline-block;
        right: -5px;
        position: relative;
        top: 10px;
    }

    .testimonials .testimonial-item p {
        font-style: italic;
        margin: 15px 0 0 0;
        padding: 0;
    }

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-wrap {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.contact .info {
    background: #fff;
}

    .contact .info i {
        font-size: 30px;
        color: #1d1d1d;
        float: left;
        width: 44px;
        height: 44px;
        background: #c99d4e;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        transition: all 0.3s ease-in-out;
    }

    .contact .info h4 {
        padding: 0 0 0 60px;
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 5px;
        color: #2b2320;
    }

    .contact .info p {
        padding: 0 0 0 60px;
        margin-bottom: 0;
        font-size: 14px;
        color: #1d1d1d;
    }

    .contact .info:hover i {
        background: #0a78b9;
        color: #fff;
    }

.contact .php-email-form {
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
    padding: 30px;
    background: #1d1d1d;
}

    .contact .php-email-form .form-group {
        padding-bottom: 8px;
    }

    .contact .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #ed3c0d;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }

        .contact .php-email-form .error-message br + br {
            margin-top: 25px;
        }

    .contact .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #1d1d1d;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .contact .php-email-form .loading {
        display: none;
        background: #fff;
        text-align: center;
        padding: 15px;
    }

        .contact .php-email-form .loading:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid #18d26e;
            border-top-color: #eee;
            -webkit-animation: animate-loading 1s linear infinite;
            animation: animate-loading 1s linear infinite;
        }

    .contact .php-email-form input, .contact .php-email-form textarea {
        border-radius: 0;
        box-shadow: none;
        font-size: 14px;
    }

    .contact .php-email-form input {
        height: 44px;
    }

    .contact .php-email-form textarea {
        padding: 10px 12px;
    }

    .contact .php-email-form button[type="submit"] {
        background: #1d1d1d;
        border: 0;
        padding: 10px 24px;
        color: #FFFFFF;
        transition: 0.4s;
        border-radius: 4px;
    }

        .contact .php-email-form button[type="submit"]:hover {
            background: #1d1d1d;
        }

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
    padding: 40px 0 20px 0;
}

    .blog .entry {
        padding: 30px;
        margin-bottom: 60px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

        .blog .entry .entry-img {
            max-height: 440px;
            margin: -30px -30px 20px -30px;
            overflow: hidden;
        }

        .blog .entry .entry-title {
            font-size: 28px;
            font-weight: bold;
            padding: 0;
            margin: 0 0 20px 0;
        }

            .blog .entry .entry-title a {
                color: #2b2320;
                transition: 0.3s;
            }

                .blog .entry .entry-title a:hover {
                    color: #f03c02;
                }

        .blog .entry .entry-meta {
            margin-bottom: 15px;
            color: #9c847b;
        }

            .blog .entry .entry-meta ul {
                display: flex;
                flex-wrap: wrap;
                list-style: none;
                align-items: center;
                padding: 0;
                margin: 0;
            }

                .blog .entry .entry-meta ul li + li {
                    padding-left: 20px;
                }

            .blog .entry .entry-meta i {
                font-size: 16px;
                margin-right: 8px;
                line-height: 0;
            }

            .blog .entry .entry-meta a {
                color: #847872;
                font-size: 14px;
                display: inline-block;
                line-height: 1;
            }

        .blog .entry .entry-content p {
            line-height: 24px;
        }

        .blog .entry .entry-content .read-more {
            -moz-text-align-last: right;
            text-align-last: right;
        }

            .blog .entry .entry-content .read-more a {
                display: inline-block;
                background: #f03c02;
                color: #fff;
                padding: 6px 20px;
                transition: 0.3s;
                font-size: 14px;
                border-radius: 4px;
            }

                .blog .entry .entry-content .read-more a:hover {
                    background: #fd490f;
                }

        .blog .entry .entry-content h3 {
            font-size: 22px;
            margin-top: 30px;
            font-weight: bold;
        }

        .blog .entry .entry-content blockquote {
            overflow: hidden;
            background-color: #fafafa;
            padding: 60px;
            position: relative;
            text-align: center;
            margin: 20px 0;
        }

            .blog .entry .entry-content blockquote p {
                color: #4d4643;
                line-height: 1.6;
                margin-bottom: 0;
                font-style: italic;
                font-weight: 500;
                font-size: 22px;
            }

            .blog .entry .entry-content blockquote::after {
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                bottom: 0;
                width: 3px;
                background-color: #2b2320;
                margin-top: 20px;
                margin-bottom: 20px;
            }

        .blog .entry .entry-footer {
            padding-top: 10px;
            border-top: 1px solid #0a78b9;
        }

            .blog .entry .entry-footer i {
                color: #836a61;
                display: inline;
            }

            .blog .entry .entry-footer a {
                color: #3a2f2b;
                transition: 0.3s;
            }

                .blog .entry .entry-footer a:hover {
                    color: #f03c02;
                }

            .blog .entry .entry-footer .cats {
                list-style: none;
                display: inline;
                padding: 0 20px 0 0;
                font-size: 14px;
            }

                .blog .entry .entry-footer .cats li {
                    display: inline-block;
                }

            .blog .entry .entry-footer .tags {
                list-style: none;
                display: inline;
                padding: 0;
                font-size: 14px;
            }

                .blog .entry .entry-footer .tags li {
                    display: inline-block;
                }

                    .blog .entry .entry-footer .tags li + li::before {
                        padding-right: 6px;
                        color: #6c757d;
                        content: ",";
                    }

            .blog .entry .entry-footer .share {
                font-size: 16px;
            }

                .blog .entry .entry-footer .share i {
                    padding-left: 5px;
                }

    .blog .entry-single {
        margin-bottom: 30px;
    }

    .blog .blog-author {
        padding: 20px;
        margin-bottom: 30px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

        .blog .blog-author img {
            width: 120px;
            margin-right: 20px;
        }

        .blog .blog-author h4 {
            font-weight: 600;
            font-size: 22px;
            margin-bottom: 0px;
            padding: 0;
            color: #2b2320;
        }

        .blog .blog-author .social-links {
            margin: 0 10px 10px 0;
        }

            .blog .blog-author .social-links a {
                color: rgba(43, 35, 32, 0.5);
                margin-right: 5px;
            }

        .blog .blog-author p {
            font-style: italic;
            color: #bfb9b6;
        }

    .blog .blog-comments {
        margin-bottom: 30px;
    }

        .blog .blog-comments .comments-count {
            font-weight: bold;
        }

        .blog .blog-comments .comment {
            margin-top: 30px;
            position: relative;
        }

            .blog .blog-comments .comment .comment-img {
                margin-right: 14px;
            }

                .blog .blog-comments .comment .comment-img img {
                    width: 60px;
                }

            .blog .blog-comments .comment h5 {
                font-size: 16px;
                margin-bottom: 2px;
            }

                .blog .blog-comments .comment h5 a {
                    font-weight: bold;
                    color: #4d4643;
                    transition: 0.3s;
                }

                    .blog .blog-comments .comment h5 a:hover {
                        color: #f03c02;
                    }

                .blog .blog-comments .comment h5 .reply {
                    padding-left: 10px;
                    color: #2b2320;
                }

                    .blog .blog-comments .comment h5 .reply i {
                        font-size: 20px;
                    }

            .blog .blog-comments .comment time {
                display: block;
                font-size: 14px;
                color: #483b36;
                margin-bottom: 5px;
            }

            .blog .blog-comments .comment.comment-reply {
                padding-left: 40px;
            }

        .blog .blog-comments .reply-form {
            margin-top: 30px;
            padding: 30px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        }

            .blog .blog-comments .reply-form h4 {
                font-weight: bold;
                font-size: 22px;
            }

            .blog .blog-comments .reply-form p {
                font-size: 14px;
            }

            .blog .blog-comments .reply-form input {
                border-radius: 4px;
                padding: 10px 10px;
                font-size: 14px;
            }

                .blog .blog-comments .reply-form input:focus {
                    box-shadow: none;
                    border-color: #fe825a;
                }

            .blog .blog-comments .reply-form textarea {
                border-radius: 4px;
                padding: 10px 10px;
                font-size: 14px;
            }

                .blog .blog-comments .reply-form textarea:focus {
                    box-shadow: none;
                    border-color: #fe825a;
                }

            .blog .blog-comments .reply-form .form-group {
                margin-bottom: 25px;
            }

            .blog .blog-comments .reply-form .btn-primary {
                border-radius: 4px;
                padding: 10px 20px;
                border: 0;
                background-color: #2b2320;
            }

                .blog .blog-comments .reply-form .btn-primary:hover {
                    background-color: #3a2f2b;
                }

    .blog .blog-pagination {
        color: #65534c;
    }

        .blog .blog-pagination ul {
            display: flex;
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .blog .blog-pagination li {
            margin: 0 5px;
            transition: 0.3s;
        }

            .blog .blog-pagination li a {
                color: #2b2320;
                padding: 7px 16px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .blog .blog-pagination li.active, .blog .blog-pagination li:hover {
                background: #f03c02;
            }

                .blog .blog-pagination li.active a, .blog .blog-pagination li:hover a {
                    color: #fff;
                }

    .blog .sidebar {
        padding: 30px;
        margin: 0 0 60px 20px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

        .blog .sidebar .sidebar-title {
            font-size: 20px;
            font-weight: 700;
            padding: 0 0 0 0;
            margin: 0 0 15px 0;
            color: #2b2320;
            position: relative;
        }

        .blog .sidebar .sidebar-item {
            margin-bottom: 30px;
        }

        .blog .sidebar .search-form form {
            background: #fff;
            border: 1px solid #ddd;
            padding: 3px 10px;
            position: relative;
        }

            .blog .sidebar .search-form form input[type="text"] {
                border: 0;
                padding: 4px;
                border-radius: 4px;
                width: calc(100% - 40px);
            }

            .blog .sidebar .search-form form button {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                border: 0;
                background: none;
                font-size: 16px;
                padding: 0 15px;
                margin: -1px;
                background: #f03c02;
                color: #fff;
                transition: 0.3s;
                border-radius: 0 4px 4px 0;
                line-height: 0;
            }

                .blog .sidebar .search-form form button i {
                    line-height: 0;
                }

                .blog .sidebar .search-form form button:hover {
                    background: #fd4509;
                }

        .blog .sidebar .categories ul {
            list-style: none;
            padding: 0;
        }

            .blog .sidebar .categories ul li + li {
                padding-top: 10px;
            }

            .blog .sidebar .categories ul a {
                color: #2b2320;
                transition: 0.3s;
            }

                .blog .sidebar .categories ul a:hover {
                    color: #f03c02;
                }

                .blog .sidebar .categories ul a span {
                    padding-left: 5px;
                    color: #b4aca8;
                    font-size: 14px;
                }

        .blog .sidebar .recent-posts .post-item + .post-item {
            margin-top: 15px;
        }

        .blog .sidebar .recent-posts img {
            width: 80px;
            float: left;
        }

        .blog .sidebar .recent-posts h4 {
            font-size: 15px;
            margin-left: 95px;
            font-weight: bold;
        }

            .blog .sidebar .recent-posts h4 a {
                color: #2b2320;
                transition: 0.3s;
            }

                .blog .sidebar .recent-posts h4 a:hover {
                    color: #f03c02;
                }

        .blog .sidebar .recent-posts time {
            display: block;
            margin-left: 95px;
            font-style: italic;
            font-size: 14px;
            color: #b4aca8;
        }

        .blog .sidebar .tags {
            margin-bottom: -10px;
        }

            .blog .sidebar .tags ul {
                list-style: none;
                padding: 0;
            }

                .blog .sidebar .tags ul li {
                    display: inline-block;
                }

                .blog .sidebar .tags ul a {
                    color: #745f56;
                    font-size: 14px;
                    padding: 6px 14px;
                    margin: 0 6px 8px 0;
                    border: 1px solid #ded5d2;
                    display: inline-block;
                    transition: 0.3s;
                }

                    .blog .sidebar .tags ul a:hover {
                        color: #fff;
                        border: 1px solid #f03c02;
                        background: #f03c02;
                    }

                    .blog .sidebar .tags ul a span {
                        padding-left: 5px;
                        color: #c8bab5;
                        font-size: 14px;
                    }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: #b4aca8;
    font-size: 14px;
    background: #045b8e;
}

    #footer .footer-top {
        padding: 60px 0 30px 0;
        background: #1d1d1d;
    }

        #footer .footer-top .footer-contact {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-contact h3 {
                font-size: 22px;
                margin: 0 0 10px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                font-weight: 500;
                letter-spacing: 1px;
                text-transform: uppercase;
                color: #fff;
            }

            #footer .footer-top .footer-contact p {
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 0;
                font-family: "Muli", sans-serif;
                color: white;
            }

        #footer .footer-top h4 {
            font-size: 16px;
            font-weight: bold;
            color: #fff;
            position: relative;
            padding-bottom: 12px;
        }

        #footer .footer-top .footer-links {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                #footer .footer-top .footer-links ul i {
                    padding-right: 2px;
                    color: #c99d4e;
                    font-size: 18px;
                    line-height: 1;
                }

                #footer .footer-top .footer-links ul li {
                    padding: 10px 0;
                    display: flex;
                    align-items: center;
                }

                    #footer .footer-top .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                #footer .footer-top .footer-links ul a {
                    color: white;
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 1;
                }

                    #footer .footer-top .footer-links ul a:hover {
                        text-decoration: none;
                        color: #c99d4e;
                    }

    #footer .footer-newsletter {
        font-size: 15px;
    }

        #footer .footer-newsletter h4 {
            font-size: 16px;
            font-weight: bold;
            color: #fff;
            position: relative;
            padding-bottom: 12px;
        }

        #footer .footer-newsletter form {
            margin-top: 30px;
            background: #fff;
            padding: 6px 10px;
            position: relative;
            border-radius: 4px 0 0 4px;
            text-align: left;
        }

            #footer .footer-newsletter form input[type="email"] {
                border: 0;
                padding: 4px 8px;
                width: calc(100% - 100px);
            }

            #footer .footer-newsletter form input[type="submit"] {
                position: absolute;
                top: 0;
                right: -4px;
                bottom: 0;
                border: 0;
                background: none;
                font-size: 16px;
                padding: 0 20px;
                background: #f03c02;
                color: #fff;
                transition: 0.3s;
                border-radius: 0 4px 4px 0;
                box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
            }

                #footer .footer-newsletter form input[type="submit"]:hover {
                    background: #fd5c28;
                }

    #footer .credits {
        padding-top: 5px;
        font-size: 13px;
        color: #ffffffff;
    }
.meka {
    color: #c99d4e;
}
    .meka:hover{
        color:antiquewhite;
    }
#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #c99d4e;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

        #footer .social-links a:hover {
            background: #020D5F;
            color: #fff;
            text-decoration: none;
        }
/* ================================================================== */
/* YENİ ELİT TASARIM STİLLERİ - ALTUG İÇ MİMARLIK           */
/* ================================================================== */

/* Önce Google Font'ları projemize ekleyelim.
   Bu link etiketini _Layout.cshtml dosyanızda <head> etiketleri arasına ekleyin:
   <link rel="preconnect" href="https://fonts.googleapis.com">
   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
   <link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;700&family=Montserrat:wght@400;500&display=swap" rel="stylesheet">
*/

/* --- Genel Gövde ve Renk Ayarları --- */
body {
    /*background: url('../img/altugmimarlikbackground.png') fixed center center; /* Resmi ekle */
    background-size cover;
     background-color: #F8F8F8;  /* Ana zemin rengi */
    color: #333333; /* Varsayılan metin rengi */
    font-family: "Raleway", Arial, Helvetica, sans-serif; /* Paragraflar için modern font */
}

/* --- Başlıklar İçin Zarif Font --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Copperplate Gothic', sans-serif; /* Başlıklar için zarif font */
    color: #2B2B2B; /* Koyu antrasit başlık rengi */
}

/* ================================================= */
/* HEADER STİLLERİ (SIFIRA SIFIR HİZALAMA VERSİYONU) */
/* ================================================= */

/* Ana Header Konteyneri */
#header {
  height: 100px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
  
  /* YENİ YARI ŞEFFAF ARKA PLAN */
  /* Bu, yukarıdan aşağı doğru hafifçe kararan bir efekt verir */
  background: linear-gradient(to bottom, rgba(29, 29, 29, 0.7) 0%, rgba(29, 29, 29, 0) 100%);
}

/* Sayfa aşağı kaydırıldığında header'ın alacağı stil */
#header.header-scrolled {
  background: #1d1d1d; /* Koyu ana rengimiz */
  height: 80px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}


/* --- Logo Stilleri --- */
#header .logo a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
#header .logo .logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: #fff; /* Başlangıçta ana logo beyaz olsun */
    text-shadow: 0 1px 3px rgba(0,0,0,0.4); /* Okunabilirlik için gölge */
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: all 0.4s ease;
}
#header .logo .logo-subtitle-header {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    color: #eee; /* <<< Rengini daha belirgin hale getirdik */
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -5px;
    transition: all 0.4s ease;
}

/* Sayfa kaydırıldığında logo renkleri altın rengine dönsün */
#header.header-scrolled .logo-main,
#header.header-scrolled .logo a:hover .logo-main {
    color: #c99d4e;
}
#header.header-scrolled .logo-subtitle-header {
    color: #ccc;
}


/* --- MENÜ LİNKLERİ --- */
#header .navbar a,
#header .navbar a:focus {
    color: #c99d4e !important; /* <<< LİNKLERİN RENGİNİ ALTIN YAPTIK */
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700; /* Daha belirgin olsun */
    letter-spacing: 1.5px;
    padding: 10px 0;
    margin: 0 15px;
    transition: color 0.3s ease;
    position: relative;
}
#header .navbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #c99d4e;
    transition: all 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}
#header .navbar a:hover,
#header .navbar .active > a {
    color: #fff !important; /* Üzerine gelince beyaza dönsün */
}
#header .navbar a:hover::after,
#header .navbar .active > a::after {
    width: 100%;
    left: 0;
}

/* Aktif olan sayfanın linki her zaman altın rengi ve altı çizgili olsun */
#header .navbar .active > a,
#header .navbar .active > a:focus {
    color: #c99d4e !important;
}

    #header .navbar .active > a::after {
        width: 100%;
        left: 0;
    }

/* --- Servis Kutuları (ALTUG İC MİMARLİK ve İÇ MİMARİ) --- */

.service-box {
    background-color: #c99d4e;
    border: none; /* Çerçeveyi kaldıralım, gölge daha şık duracak */
    border-top: 4px solid #C0A172; /* Üste VURGU renginde bir çizgi */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07); /* Daha belirgin ama yumuşak bir gölge */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 40px 30px; /* İç boşluğu artıralım */
    text-align: center; /* İçerik ortalansın */
}

    .service-box:hover {
        transform: translateY(-10px); /* Üzerine gelince daha belirgin yukarı kaysın */
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

    /* İKONLAR - Bu class'ı kendi ikon class'ınızla değiştirin! (Örn: .fas, .fa, .bi) */
    .service-box i {
        font-size: 48px; /* İkonları büyütelim */
        color: #c99d4e !important; /* İkonlara Vurgu Rengini verelim */
        margin-bottom: 20px;
    }

    .service-box h3 { /* Kutuların başlığı için */
        font-size: 22px;
        letter-spacing: 1px;
    }
/* ================================================= */
/* FOOTER STİLLERİ (YENİ VE ELİT TASARIM)          */
/* ================================================= */

#footer {
    background-color: #1d1d1d; /* Header ile aynı zemin rengi */
    color: #ccc; /* Genel metin rengi, yumuşak bir gri */
    font-size: 15px;
    padding: 60px 0 30px 0;
}

    /* Footer içindeki başlıklar (Site Haritası vb.) */
    #footer .footer-top h4 {
        font-family: 'Cormorant Garamond', serif; /* Zarif başlık fontu */
        color: #FFFFFF;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding-bottom: 12px;
        margin-bottom: 20px;
        position: relative;
    }

        /* Başlıkların altına altın rengi çizgi ekliyoruz */
        #footer .footer-top h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: #C0A172; /* Vurgu Rengi */
        }

    /* Footer linkleri */
    #footer .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        #footer .footer-links ul li {
            padding: 8px 0;
        }

        #footer .footer-links ul a {
            color: #ccc; /* Linklerin normal rengi */
            text-decoration: none;
            transition: color 0.3s ease;
        }

            #footer .footer-links ul a:hover {
                color: #C0A172; /* Üzerine gelince Vurgu Rengi */
            }

    /* En alttaki Copyright ve Credits alanı */
    #footer .copyright,
    #footer .credits {
        padding-top: 15px;
        text-align: center;
        font-size: 14px;
        color: #c99d4e;
    }

    #footer .copyright {
        border-top: 1px solid #333; /* Ayırıcı çizgi */
        padding-top: 30px;
        margin-top: 30px;
    }

    #footer .credits a {
        color: #C0A172; /* Credits linkini de altın rengi yapalım */
        transition: color 0.3s ease;
    }

        #footer .credits a:hover {
            color: #FFFF;
        }

/* ================================================= */
/* BODY ÜST BOŞLUK SIFIRLAMA (HEADER HATASI ÇÖZÜMÜ) */
/* ================================================= */

body {
    padding-top: 0 !important;
    margin-top: 0 !important;
}




/* Sağ Sütun - Ürün Bilgi Kutusu */
.product-info-box {
    padding: 20px;
    background: #fff;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
}

.product-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 700;
    color: #1d1d1d;
    margin-bottom: 10px;
}

.product-brand {
    font-size: 16px;
    color: #888;
    margin-bottom: 20px;
}

.product-short-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Bilgi Sekmeleri (Tabs) */
.product-tabs .nav-tabs {
    border-bottom: 2px solid #eee;
}

.product-tabs .nav-link {
    border: none;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
}

    .product-tabs .nav-link.active {
        color: #1d1d1d;
        border-bottom: 2px solid #C0A172; /* Vurgu Rengi */
    }

.product-tabs .tab-content {
    padding: 20px 5px;
    font-size: 15px;
    color: #666;
}

/* Eyleme Çağrı Butonu (CTA) */
.btn-cta {
    display: block;
    width: 100%;
    background: #C0A172; /* Vurgu Rengi */
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

    .btn-cta:hover {
        background: #1d1d1d;
        color: #fff;
    }

/* ======================================================= */
/* == ÜRÜN KARTI TASARIMI (MODERN HOVER EFEKTİ) == */
/* ======================================================= */

.product-card {
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    overflow: hidden; /* Zoom efekti için önemli */
}

    .product-card:hover {
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transform: translateY(-5px);
    }

.product-image-container {
    position: relative;
    overflow: hidden;
}

    /* Resme hafif zoom efekti ekliyoruz */
    .product-image-container img {
        transition: transform 0.4s ease;
    }

.product-card:hover .product-image-container img {
    transform: scale(1.05);
}

/* HOVER EFEKTİ BURADA YENİDEN TASARLANDI */
.product-image-container .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /* Alttan üste doğru kararan gölge efekti */
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%);
    transition: all 0.4s ease;
    /* İkonları ortalamak için Flexbox kullanıyoruz */
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-card:hover .product-image-container .portfolio-info {
    opacity: 1;
}

/* İkonların stilini iyileştiriyoruz */
.portfolio-info .preview-link, .portfolio-info .details-link {
    font-size: 24px;
    color: #fff;
    margin: 0 10px;
    background: rgba(29, 29, 29, 0.5); /* Hafif koyu bir daire arka planı */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

    .portfolio-info .preview-link:hover, .portfolio-info .details-link:hover {
        background: #C0A172; /* Üzerine gelince altın rengi */
        color: #1d1d1d;
    }


/* Resmin altındaki sabit başlık ve kategori alanı (Bu kodlar aynı kalabilir) */
.product-card-info {
    padding: 20px;
    text-align: center;
}

.product-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

    .product-card-title a {
        color: #1d1d1d;
        transition: color 0.3s ease;
    }

        .product-card-title a:hover {
            color: #C0A172;
        }

.product-card-category {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-container {
    justify-content: center;
}

.product-image-container {
    aspect-ratio: 4 / 3; /* Resimleri kare yapar. 4 / 3 de deneyebilirsin. */
    overflow: hidden;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmin oranını bozmadan alanı kaplamasını sağlar. */
}

/* ======================================================= */
/* == PROJE KARTI TASARIMI (KOMPAKT VERSİYON)         == */
/* ======================================================= */

.project-card {
    background: #ffffff;
    border: 1px solid #f0f0f0; 
    transition: all 0.3s ease;
    margin-bottom: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08); 
    transform: translateY(-5px);
}

.project-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3; 
}

.project-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.4s ease;
}

.project-card:hover .project-image-container img {
    transform: scale(1.05);
}

/* Hover Efekti ve İkonlar aynı kalıyor */
.project-image-container .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    background: rgba(40, 40, 40, 0.7);
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}
.project-card:hover .project-image-container .portfolio-info {
    opacity: 1;
}
/* ... (İkon stilleri öncekiyle aynı) ... */


/* Kartın altındaki bilgi alanı */
.project-card-info {
    /* İç boşluğu daralan karta göre ayarladık */
    padding: 15px; /* DEĞİŞTİ */
    text-align: left; 
    border-top: 1px solid #f0f0f0;
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fdfdfd; 
}

.project-card-title {
    font-family: 'Cormorant Garamond', serif;
    /* Font boyutunu küçülttük */
    font-size: 19px; /* DEĞİŞTİ */
    font-weight: 700;
    margin-bottom: 4px; /* DEĞİŞTİ */
}

.project-card-title a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    color: #333333;
    transition: color 0.3s ease;
}

.project-card-title a:hover {
    color: #C0A172; 
}

.project-card-category {
    /* Font boyutunu küçülttük */
    font-size: 12px; /* DEĞİŞTİ */
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ======================================================= */
/* == ANA SAYFA PROJE KARTLARI (ENTEGRE TASARIM)      == */
/* ======================================================= */

/* Ana sayfa kartlarının kutu görünümünü kaldırıyoruz */
.homepage-projects .project-card {
    /* Eski siyah gölgeyi sıfırlayıp yerine hafif bir altın ışıltı veriyoruz */
    box-shadow: 0 0 15px rgba(201, 157, 78, 0.15); /* #c99d4e renginin çok şeffaf hali */
    /* Koyu fonda daha iyi görünen bir çerçeve rengi */
    border-color: #555;
}

    /* Üzerine gelince (hover) efekti */
    .homepage-projects .project-card:hover {
        /* Gölgeyi daha belirgin ve yaygın bir altın ışımasına dönüştürüyoruz */
        box-shadow: 0 0 35px rgba(201, 157, 78, 0.4); /* #c99d4e renginin daha belirgin hali */
        /* Çerçeve de tam altın rengi oluyor */
        border-color: #c99d4e;
        /* 3D efektini koruyoruz */
        transform: perspective(1000px) translateY(-12px) rotateX(5deg) scale(1.02);
    }

/* Ana sayfada resmin altındaki bilgi alanını daha sade yapıyoruz */
.homepage-projects .project-card-info {
    background-color: transparent;
    border-top: none;
    padding: 20px 0; /* Boşlukları ayarlıyoruz */
    text-align: center;
}

/* Ana sayfada başlık linki hover rengini değiştirelim */
.homepage-projects .project-card-title a:hover {
    color: #C0A172;
}

/* Ana sayfadaki kartın resim hover efektini daha belirgin yapalım */
.homepage-projects .project-image-container {
    transition: all 0.4s ease;
}

.homepage-projects .project-card:hover .project-image-container {
    transform: translateY(-8px); /* Resim hafifçe yukarı kaysın */
    box-shadow: 0 15px 30px rgba(0,0,0,0.15); /* Gölge sadece hover'da gelsin */
}
/* ======================================================= */
/* == PROJE DETAY SAYFASI TASARIMI (HİZMETLER DETAY)    == */
/* ======================================================= */



/* Ana içerik alanı */
.portfolio-details {
    padding: 60px 0;
}

/* SOL SÜTUN - Resim Galerisi Stilleri */
.portfolio-details-slider {
    margin-bottom: 20px;
}

    .portfolio-details-slider .swiper-slide img {
        width: 100%;
        height: auto;
    }

    .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: #fff;
        opacity: 1;
        border: 1px solid #C0A172;
    }

    .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #C0A172;
    }


/* SAĞ SÜTUN - Proje Bilgi Kutusu Stilleri */
.project-info-box {
    padding: 30px;
    background: #fff;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    height: 100%;
}

.project-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    color: #1d1d1d;
    margin-bottom: 15px;
    line-height: 1.2;
}

.project-short-desc {
    font-size: 16px;
    font-style: italic;
    color: #666;
    margin-bottom: 25px;
}

.project-description h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
}

.project-description p {
    font-size: 16px;
    line-height: 1.7;
}

/* "Teklif İste" Butonu */
.btn-cta {
    display: block;
    width: 100%;
    background: #C0A172;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

    .btn-cta:hover {
        background: #1d1d1d;
        color: #fff;
    }

/* ======================================================= */
/* == JS ÇAKIŞMASINI ÖNLEYEN NİHAİ DÜZELTME KODU      == */
/* ======================================================= */

/* main.js tarafından eklenen yapay boşluğu sıfırlıyoruz */
body > main,
body > div[class*="main-content-offset"], /* main-content-offset gibi classları da hedefler */
.scrolled-offset {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Asıl boşluğu, header'ın yüksekliği kadar, içeriğin ana bölümüne kendimiz veriyoruz */
main#main {
    margin-top: 100px; /* Header'ınızın yüksekliği ne kadarsa o değeri verin */
    padding-top: 0;
}

/* ======================================================= */
/* == PROJE DETAY SLIDER DÜZELTMELERİ                 == */
/* ======================================================= */

/* Ana slider kapsayıcısını ayarla */
.portfolio-details-slider {
    width: 100%; /* Kapsayıcının genişliği sütununa otursun */
    height: 450px; /* Slider'ın sabit bir yüksekliği olsun */
    overflow: hidden; /* Taşmaları gizle */
    position: relative; /* İçindeki oklar ve noktalar için konumlandırma */
    border-radius: 8px; /* Hafif yuvarlak köşeler */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
}

    /* Slider içindeki her bir slaytın (resmin) kapsayıcısını ayarla */
    .portfolio-details-slider .swiper-slide {
        display: flex; /* Resimleri ortalamak için */
        justify-content: center; /* Yatayda ortala */
        align-items: center; /* Dikeyde ortala */
        background-color: #1d1d1d; /* Arka plan rengi */
    }

        /* Slider içindeki resimleri ayarla */
        .portfolio-details-slider .swiper-slide img {
            width: 100%; /* Kapsayıcısının genişliğini doldur */
            height: 100%; /* Kapsayıcısının yüksekliğini doldur */
            object-fit: contain; /* Resmin en boy oranını koruyarak alanı doldur */
            display: block; /* Gereksiz boşlukları engelle */
        }

    /* Slider navigasyon oklarını gizle (varsa) */
    .portfolio-details-slider .swiper-button-next,
    .portfolio-details-slider .swiper-button-prev {
        color: #fff; /* Ok rengi */
        background-color: rgba(0, 0, 0, 0.4); /* Arka plan karartması */
        border-radius: 50%; /* Yuvarlak ok butonları */
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s ease;
    }

        .portfolio-details-slider .swiper-button-next:hover,
        .portfolio-details-slider .swiper-button-prev:hover {
            background-color: rgba(0, 0, 0, 0.7);
        }


    /* Pagination (noktaları) ayarla */
    .portfolio-details-slider .swiper-pagination {
        position: absolute;
        bottom: 10px; /* En alta yerleştir */
        left: 0;
        right: 0;
        text-align: center;
        z-index: 10;
    }

    .portfolio-details-slider .swiper-pagination-bullet {
        background: #007bff; /* Aktif olmayan nokta rengi */
        opacity: 0.7;
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }

    .portfolio-details-slider .swiper-pagination-bullet-active {
        background: #0056b3; /* Aktif nokta rengi */
        opacity: 1;
    }

/* Proje bilgi kutusu için (sağ taraftaki beyaz alan) */
.project-info-box {
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%; /* Galeri yüksekliği kadar yer kaplasın */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* İçeriği dağıt */
}

    .project-info-box .project-title {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #333;
    }

    .project-info-box .project-short-desc {
        font-style: italic;
        color: #666;
        margin-bottom: 20px;
    }

    .project-info-box .project-description h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
        color: #555;
    }

    .project-info-box .project-description p {
        font-size: 15px;
        line-height: 1.6;
        color: #444;
    }

    .project-info-box .btn-cta {
        display: inline-block;
        background: #007bff;
        color: #fff;
        padding: 10px 25px;
        border-radius: 5px;
        margin-top: 20px;
        transition: background 0.3s ease;
        text-align: center;
    }

        .project-info-box .btn-cta:hover {
            background: #0056b3;
        }
/* ======================================================= */
/* == PROJE DETAY SLIDER KONTROLLERİ VE BUTON STİLİ   == */
/* ======================================================= */

/* --- Slider Navigasyon Okları --- */
.portfolio-details-slider .swiper-button-next,
.portfolio-details-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(29, 29, 29, 0.6); /* Yarı şeffaf koyu gri arka plan */
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

    .portfolio-details-slider .swiper-button-next:hover,
    .portfolio-details-slider .swiper-button-prev:hover {
        background-color: #1d1d1d; /* Üzerine gelince tam koyu gri */
    }

    /* Okların içindeki ikonun rengini ve boyutunu ayarlıyoruz */
    .portfolio-details-slider .swiper-button-next::after,
    .portfolio-details-slider .swiper-button-prev::after {
        font-size: 20px;
        font-weight: 900;
        color: #C0A172; /* Altın/Bronz rengi */
    }


/* --- Slider Sayfalama Noktaları (Pagination) --- */
.portfolio-details-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #888; /* Pasif noktaların çerçevesi */
}

.portfolio-details-slider .swiper-pagination-bullet-active {
    background-color: #C0A172; /* Aktif olan nokta altın rengi */
    border-color: #C0A172;
}


/* --- "Bilgi Al" Butonunu Düzeltme --- */
/* Bu kural, daha önce yazdığımız .btn-cta kuralını ezecek veya güncelleyecektir */
.project-info-box .btn-cta {
    display: block;
    width: 100%;
    background: #C0A172; /* Vurgu Rengi */
    color: #1d1d1d; /* Koyu renk yazı */
    text-align: center;
    padding: 15px;
    margin-top: 30px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

    .project-info-box .btn-cta:hover {
        background: #1d1d1d;
        color: #FFFFFF;
    }
/* ======================================================= */
/* == İLETİŞİM SAYFASI ÖZEL STİLLERİ                  == */
/* ======================================================= */

 

/* Üst Bilgi Kutuları */
.contact .info-box {
    color: #444;
    text-align: center;
    width: 100%;
    padding: 30px 20px;
    background: #fff;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    border-bottom: 3px solid #eee;
    transition: all 0.3s ease;
}

    .contact .info-box i {
        font-size: 38px;
        color: #C0A172; /* Vurgu Rengi */
        border-radius: 50%;
        padding: 8px;
    }

    .contact .info-box h3 {
        font-size: 20px;
        color: #777;
        font-weight: 700;
        margin: 10px 0;
    }

    .contact .info-box:hover {
        border-color: #C0A172; /* Vurgu Rengi */
    }

/* İletişim Formu Stilleri */
.contact .php-email-form {
    width: 100%;
    padding: 30px;
    background: #fff;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
}

    .contact .php-email-form .form-group {
        margin-bottom: 20px;
    }

    .contact .php-email-form input,
    .contact .php-email-form textarea {
        border-radius: 2px;
        box-shadow: none;
        font-size: 14px;
        border: 1px solid #ddd;
        padding: 10px 15px;
        transition: all 0.3s ease;
    }

        /* Form elemanına tıklandığında (focus) */
        .contact .php-email-form input:focus,
        .contact .php-email-form textarea:focus {
            border-color: #C0A172; /* Vurgu Rengi */
        }

    /* Gönder Butonu */
    .contact .php-email-form button[type="submit"] {
        background: #C0A172; /* Vurgu Rengi */
        border: 0;
        padding: 12px 34px;
        color: #fff;
        transition: 0.4s;
        border-radius: 4px;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 1px;
    }

        .contact .php-email-form button[type="submit"]:hover {
            background: #1d1d1d; /* Koyu Ana Renk */
        }

    /* Başarı ve Hata Mesajları */
    .contact .php-email-form .sent-message {
        display: block;
        background: #dff0d8;
        color: #3c763d;
        padding: 15px;
        text-align: center;
    }

    .contact .php-email-form .error-message {
        display: block;
        background: #f2dede;
        color: #a94442;
        padding: 15px;
        text-align: center;
    }

/* ======================================================= */
/* == KART TASARIMI (GERÇEKTEN 3D HİSSİ VEREN NİHAİ VERSİYON) == */
/* ======================================================= */

/* --- Ortak Yapı ve Hizalama --- */
.portfolio-item {
    display: flex;
    margin-bottom: 30px;
}

.product-card,
.project-card {
    background: #ffffff;
    border: 2px solid #c99d4e;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); /* Daha dinamik bir geçiş efekti */
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    /* <<< BAŞLANGIÇ GÖLGESİ (3D İÇİN İLK KATMAN) >>> */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15); /* Hafif, uzak bir gölge */
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1); /* 3D başlangıç pozisyonu */
}

    /* --- HOVER EFEKTİ (Asıl 3D Vurgu Burada) --- */
    .product-card:hover,
    .project-card:hover {
        /* <<< DAHA GÜÇLÜ 3D GÖLGE VE YÜKSELME >>> */
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25), /* Orta derinlikli, belirgin gölge */
        0 25px 50px rgba(0, 0, 0, 0.1); /* Uzak, yaygın, hafif bir gölge (3D'ye destek) */

        transform: perspective(1000px) /* 3D perspektifi */
        translateY(-12px) /* Daha fazla yukarı kalkış */
        rotateX(5deg) /* Hafifçe öne eğilme */
        scale(1.02); /* Hafifçe büyüme */

        border-color: #b38e45; /* Çerçeve altın renginin biraz daha koyu tonu */
    }

/* --- Resim Alanı (Aynı Kalıyor, Hafif Zoom ile 3D Hissi Desteklenecek) --- */
.product-image-container,
.project-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

    .product-image-container img,
    .project-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.product-card:hover .product-image-container img,
.project-card:hover .project-image-container img {
    transform: scale(1.08); /* Resim daha fazla zoom yapsın, 3D hissine katkıda bulunsun */
}

/* --- Bilgi Alanı (Aynı Kalıyor) --- */
.product-card-info,
.project-card-info {
    padding: 20px;
    text-align: left;
    border-top: 1px solid #f0f0f0;
    background-color: #fdfdfd;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- Başlık ve Kategori Stilleri (Aynı Kalıyor) --- */
.product-card-title,
.project-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

    .product-card-title a,
    .project-card-title a {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        color: #333333;
        transition: color 0.3s ease;
    }

.product-card:hover .product-card-title a,
.project-card:hover .project-card-title a {
    color: #c99d4e;
}

.product-card-category,
.project-card-category {
    font-size: 13px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

 
/* ======================================================= */
/* == HAKKIMIZDA SAYFASI ÖZEL STİLLERİ                == */
/* ======================================================= */

/* Sayfa Başlığına Özel Arka Plan ve Stil */
.about-header {
    background: linear-gradient(rgba(29, 29, 29, 0.7), rgba(29, 29, 29, 0.7)), url('/File/Abouts/arkaplan.jpg') center center; /* Arka plan resmini kendinize göre değiştirin */
    background-size: cover;
    padding: 60px 0;
}

    .about-header h2, .about-header p, .about-header ol, .about-header ol a {
        color: #fff;
    }

        .about-header ol a:hover {
            color: #f0f0f0;
        }

/* Hikaye Alanı */
.about-story .content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 700;
}

.about-story .content .fst-italic {
    color: #888;
}

/* Değerlerimiz Alanı */
.about-values .icon-box {
    text-align: center;
    border: 1px solid #e2e2e2;
    padding: 40px 30px;
    width: 100%;
    transition: all ease-in-out 0.3s;
    background: #fff;
}

    .about-values .icon-box .icon {
        margin: 0 auto;
        width: 64px;
        height: 64px;
        background: #fdfdfd;
        border-radius: 50px;
        border: 2px solid #C0A172;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: all ease-in-out 0.3s;
    }

        .about-values .icon-box .icon i {
            color: #C0A172; /* Vurgu Rengi */
            font-size: 28px;
        }

    .about-values .icon-box h4 {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 24px;
    }

        .about-values .icon-box h4 a {
            color: #333;
        }

    .about-values .icon-box p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .about-values .icon-box:hover {
        border-color: #fff;
        box-shadow: 0px 0 25px 0 rgba(0,0,0,0.1);
        transform: translateY(-10px);
    }

        .about-values .icon-box:hover .icon {
            background: #C0A172;
            border-color: #C0A172;
        }

            .about-values .icon-box:hover .icon i,
            .about-values .icon-box:hover h4 a {
                color: #fff;
            }

/* Sertifika Galerisi */
.certificates .certificate-box {
    transition: all 0.3s ease;
    border: 1px solid #eee;
    padding: 10px;
}

    .certificates .certificate-box:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

/* Projeye Davet (CTA) Alanı */
.cta-about {
    background: #f8f8f8;
    padding: 60px 0;
    text-align: center;
}

    .cta-about h3 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 32px;
        font-weight: 700;
    }

    .cta-about .cta-btn {
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: inline-block;
        padding: 12px 30px;
        border-radius: 4px;
        transition: 0.5s;
        margin-top: 10px;
        background: #C0A172;
        color: #1d1d1d;
    }

        .cta-about .cta-btn:hover {
            background: #1d1d1d;
            color: #fff;
        }
/* ======================================================= */
/* == HAKKIMIZDA SAYFASI CANLILIK VE DERİNLİK KODLARI   == */
/* ======================================================= */

/* --- 1. Hikayemiz Bölümü İnce Ayar --- */
.about-story .content h3 {
    /* Başlığın soluna imza niteliğinde altın bir çizgi ekliyoruz */
    border-left: 4px solid #C0A172;
    padding-left: 20px;
}

/* --- 2. Değerlerimiz Bölümünü Baştan Yaratıyoruz --- */
#about-values.about-values {
    /* Arka planı ana koyu rengimiz yapıyoruz */
    background-color: #1d1d1d;
}

#about-values .icon-box {
    /* Koyu fon üzerinde kutuların arka planını biraz daha açık bir tona çekiyoruz */
    background: #2a2a2a;
    border-color: #333;
}

    /* Koyu fon üzerinde başlıkların ve metinlerin rengini açıyoruz */
    #about-values .icon-box h4 a {
        color: #ffffff;
        transition: color 0.3s ease;
    }

    #about-values .icon-box p {
        color: #ccc;
    }

    /* İkonların hover efektini de koyu fona göre güncelliyoruz */
    #about-values .icon-box:hover {
        border-color: #C0A172;
    }

        #about-values .icon-box:hover h4 a {
            color: #C0A172;
        }

/* --- 3. Sertifikalar Bölüm Başlığını Güzelleştiriyoruz --- */
#certificates .section-title {
    padding-bottom: 40px;
}

    #certificates .section-title h2 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 34px;
        font-weight: 700;
        position: relative;
        padding-bottom: 15px;
    }

        /* Başlığın altına şık bir çizgi ekliyoruz */
        #certificates .section-title h2::after {
            content: '';
            position: absolute;
            display: block;
            width: 60px;
            height: 3px;
            background: #C0A172;
            bottom: 0;
            left: calc(50% - 30px); /* Tam ortaya hizalamak için */
        }

    #certificates .section-title p {
        color: #888;
    }
/* ======================================================= */
/* == SAYFA GİRİŞ ALANI (HERO SECTION) STİLİ          == */
/* ======================================================= */

.page-hero {
    position: relative;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

    .page-hero .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Buraya istediğin şık bir arka plan resmi koyabilirsin */
        background: url('/Content/Site/assets/img/seramik.png') center center;
        background-size: cover;
        z-index: 1;
    }

        /* Arka plan resmini karartarak yazıların okunmasını sağlıyoruz */
.page-hero {
    position: relative;
    padding: 100px 0; /* Alanın yüksekliğini artırıyoruz */
    text-align: center;
    color: #fff;
}

    .page-hero .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('/Content/Site/assets/img/hero-background.jpg') center center;
        background-size: cover;
        z-index: 1;
    }

        /* Arka plan resmini karartma efekti */
        .page-hero .hero-background::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(29, 29, 29, 0.6); /* Karartmayı biraz azalttık */
        }

    /* YENİ TASARIMIN KALBİ: PLAKET KUTUSU */
    .page-hero .container {
        position: relative;
        z-index: 2;
        background: rgba(29, 29, 29, 0.85); /* Yarı şeffaf koyu arka plan */
        padding: 40px 50px;
        display: inline-block; /* İçeriği kadar yer kaplamasını sağlar */
        border: 2px solid rgba(192, 161, 114, 0.5); /* Yarı şeffaf altın/bronz çerçeve */
        border-radius: 4px;
    }

    .page-hero h1 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 48px; /* Daha etkileyici bir boyut */
        font-weight: 700;
        margin: 0 0 10px 0;
        padding-bottom: 10px;
        color: #fff;
        position: relative;
    }

        /* İmza niteliğindeki altın çizgi */
        .page-hero h1::after {
            content: '';
            position: absolute;
            display: block;
            width: 80px;
            height: 3px;
            background: #C0A172; /* Vurgu Rengi */
            bottom: 0;
            left: calc(50% - 40px);
        }

    .page-hero p {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 0;
    }
 
.portfolio {
    padding-top: 60px; /* Üst bölümle arayı biraz açar */
    border-top: 1px solid #eee; /* Çok silik bir ayırıcı çizgi */
}
/* ======================================================= */
/* == ÜRÜN KARTI TASARIMI (HİZALI VE RENKLİ FİNAL)      == */
/* ======================================================= */

/* Bu kural hem ürün hem proje kartlarını etkiler, ortak olduğu için kalmalı */
.portfolio-item {
    display: flex;
    margin-bottom: 30px;
}

.product-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    overflow: hidden;
    width: 100%;
    /* KARTLARIN AYNI YÜKSEKLİKTE OLMASINI SAĞLAYAN ANAHTAR KODLAR */
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .product-card:hover {
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        transform: translateY(-5px);
    }

.product-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

    .product-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.product-card:hover .product-image-container img {
    transform: scale(1.05);
}

/* Kartın altındaki bilgi alanı */
.product-card-info {
    padding: 20px;
    text-align: left;
    border-top: 1px solid #f0f0f0;
    background-color: #fdfdfd; /* Sıcak arka plan rengi */
    /* Bu alanın esneyerek kartın altını doldurmasını sağlar */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

    .product-card-title a {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        color: #333333;
        transition: color 0.3s ease;
    }

        .product-card-title a:hover {
            color: #C0A172;
        }

.product-card-category {
    font-size: 13px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ======================================================= */
/* == PORTFOLYO SAYFALARI NİHAİ STİL KODU (GEMINI)      == */
/* ======================================================= */




/* --- 2. KARTLARIN ORTAK YAPISI VE HİZALANMASI --- */

/* Bu, Bootstrap sütununun içindeki kartı dikeyde uzamaya zorlar */
.portfolio-item {
    display: flex;
    margin-bottom: 30px;
}

/* Ürün ve Proje kartları için ortak temel stil */
.product-card,
.project-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    overflow: hidden;
    width: 100%;
    /* KARTLARIN AYNI YÜKSEKLİKTE OLMASINI SAĞLAYAN ANAHTAR KODLAR */
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .product-card:hover,
    .project-card:hover {
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        transform: translateY(-5px);
    }

/* Resim alanı için ortak stil */
.product-image-container,
.project-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

    .product-image-container img,
    .project-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.product-card:hover .product-image-container img,
.project-card:hover .project-image-container img {
    transform: scale(1.05);
}

/* Hover efekti bilgi kutusu için ortak stil */
.product-image-container .portfolio-info,
.project-image-container .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(40, 40, 40, 0.7);
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-card:hover .product-image-container .portfolio-info,
.project-card:hover .project-image-container .portfolio-info {
    opacity: 1;
}

/* İkonlar için ortak stil */
.portfolio-info .preview-link,
.portfolio-info .details-link {
    font-size: 24px;
    color: #fff;
    margin: 0 10px;
    background: rgba(29, 29, 29, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

    .portfolio-info .preview-link:hover,
    .portfolio-info .details-link:hover {
        background: #C0A172;
        color: #1d1d1d;
    }

/* Resim altındaki bilgi alanı için ortak stil */
.product-card-info,
.project-card-info {
    padding: 20px;
    text-align: left;
    border-top: 1px solid #f0f0f0;
    background-color: #fdfdfd;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Başlık için ortak stil */
.product-card-title,
.project-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

    .product-card-title a,
    .project-card-title a {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        color: #333333;
        transition: color 0.3s ease;
    }

        .product-card-title a:hover,
        .project-card-title a:hover {
            color: #C0A172;
        }

/* Kategori için ortak stil */
.product-card-category,
.project-card-category {
    font-size: 13px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ======================================================= */
/* == PORTFOLYO FİLTRE BUTONLARI (NİHAİ VE TEMİZ KOD)   == */
/* ======================================================= */

/* Filtrelerin bulunduğu <ul> listesinin genel hizalaması */
.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 40px auto;
    list-style: none;
    text-align: center;
}

    /* Her bir filtre butonu <li> */
    .portfolio #portfolio-flters li {
        cursor: pointer;
        display: inline-block;
        padding: 10px 22px;
        font-size: 15px;
        font-weight: 600;
        line-height: 1;
        text-transform: uppercase;
        color: #444;
        margin: 0 5px 10px 5px;
        transition: all 0.3s ease-in-out;
        border: 2px solid #eee;
        border-radius: 4px;
        list-style-type: none !important; /* Mermi noktalarını kesin olarak kaldırır */
    }

        /* Üzerine gelince veya aktif olunca uygulanacak stiller */
        .portfolio #portfolio-flters li:hover,
        .portfolio #portfolio-flters li.filter-active {
            color: #1d1d1d;
            background: #C0A172;
            border-color: #C0A172;
        }
/* ======================================================= */
/* == ANA SAYFA ÖNE ÇIKAN PROJELER BÖLÜMÜ             == */
/* ======================================================= */

/* Bölümün ana arka planını koyu yapıyoruz */
.section-bg-dark {
    background-color: #1d1d1d;
    padding: 60px 0;
}

    /* Koyu arka plan üzerindeki başlıkları beyaz yapıyoruz */
    .section-bg-dark .section-title h2 {
        color: #fff;
        font-family: 'Cormorant Garamond', serif;
        font-size: 38px;
    }

    .section-bg-dark .section-title p {
        color: #ccc;
    }

    /* Başlığın altına altın rengi çizgi ekliyoruz */
    .section-bg-dark .section-title h2 {
        position: relative;
        padding-bottom: 15px;
    }

        .section-bg-dark .section-title h2::after {
            content: '';
            position: absolute;
            display: block;
            width: 60px;
            height: 3px;
            background: #C0A172; /* Vurgu Rengi */
            bottom: 0;
            left: calc(50% - 30px);
        }

/* "Tüm Projeleri Gör" Butonu */
.btn-view-all {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    transition: 0.5s;
    text-transform: uppercase;
    color: #fff;
    background: transparent;
    border: 2px solid #C0A172; /* Vurgu Rengi */
}

    .btn-view-all:hover {
        background: #C0A172;
        color: #1d1d1d;
    }
/* ======================================================= */
/* == ANA SAYFA ÖNE ÇIKAN PROJELER BAŞLIK STİLİ         == */
/* ======================================================= */

/* Bu kod, sadece .section-bg-dark içindeki başlıkları etkiler */
.section-bg-dark .section-title {
    margin-bottom: 40px; /* Başlıkla kartlar arasına biraz daha boşluk */
}

    /* Ana Başlık (Öne Çıkan Projeler) */
    .section-bg-dark .section-title h2 {
        font-size: 38px;
        font-weight: 700;
        font-family: 'Cormorant Garamond', serif;
        color: #fff;
        /* Plaket efekti için arka plan ve çerçeve */
        background: rgba(0, 0, 0, 0.2); /* Hafif yarı şeffaf siyah arka plan */
        display: inline-block; /* İçeriği kadar yer kaplamasını sağlar */
        padding: 20px 40px;
        border: 2px solid rgba(192, 161, 114, 0.3); /* Yarı şeffaf altın/bronz çerçeve */
        border-radius: 4px;
        position: relative;
    }

        /* Altın çizgi detayı */
        .section-bg-dark .section-title h2::after {
            content: '';
            position: absolute;
            display: block;
            width: 80px;
            height: 3px;
            background: #C0A172; /* Vurgu Rengi */
            bottom: -20px; /* Çizgiyi başlığın biraz altına indiriyoruz */
            left: calc(50% - 40px);
        }

    /* Alt Başlık */
    .section-bg-dark .section-title p {
        margin-top: 30px; /* Çizgiyle arasında boşluk bırakıyoruz */
        color: #ccc;
        font-size: 16px;
    }
/* Proje Detay Sayfası Video Stilleri */
.project-video-container {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

    .project-video-container h4 {
        font-size: 20px;
        font-weight: 600;
        color: #333;
        margin-bottom: 15px;
    }

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 oranını korur */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
/* Footer Sosyal Medya İkonları Stili */
#footer .footer-social h4 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-social p {
    color: #fff;
}

#footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #555;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

    #footer .social-links a:hover {
        color: #1d1d1d;
        background: #C0A172; /* Vurgu Rengi */
        border-color: #C0A172;
    }

/* ======================================================= */
/* == HAREKETLİ LOGO (GENİŞLEYEN VE NEFES ALAN VERSİYON) == */
/* ======================================================= */

/* Logonun tamamını saran link etiketi */
.animated-logo-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 0;
    /* Genişleme animasyonunun yumuşak olması için geçiş ekliyoruz */
    transition: all 0.4s ease-in-out;
}

/* "ALTUĞ" yazısının ana stili */
.animated-altug-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #c99d4e;
    text-transform: uppercase;
    /* Başlangıçtaki harf aralığı */
    letter-spacing: 4px;
    display: flex;
    cursor: pointer;
    /* Genişleme animasyonu için geçiş */
    transition: letter-spacing 0.5s cubic-bezier(0.25, 0.1, 0.25, 1.0);
}

    /* Her bir harf için ayarlar */
    .animated-altug-logo .letter {
        display: inline-block;
        padding: 0 3px;
        animation-duration: 0.8s;
        animation-fill-mode: both;
        animation-iteration-count: 1;
    }

/* Alt başlığın stili */
.logo-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    color: #c99d4e; /* <<< Rengini daha belirgin hale getirdik */
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -5px;
    transition: all 0.4s ease;
    
}

/* --- YENİ "GENİŞLEME" VE HAREKET EFEKTİ --- */

/* Fare üzerine geldiğinde ana logo konteynerine ne olacağı */
.animated-logo-link:hover .animated-altug-logo {
    /* Harflerin arasını daha da açıyoruz */
    letter-spacing: 6px; /* DEĞİŞTİ */
}

/* Fare üzerine geldiğinde harflere ne olacağı */
.animated-logo-link:hover .letter {
    /* Hem dalga animasyonu çalışsın hem de harf hafifçe büyüsün */
    animation-name: letter-wave-glow;
    transform: scale(1.05); /* <<< YENİ EKLENDİ */
}

/* Fare üzerine geldiğinde alt başlığa ne olacağı (Aynı) */
.animated-logo-link:hover .logo-subtitle {
    transform: translateY(2px);
    opacity: 0.8;
    letter-spacing: 0px;
    color: #c99d4e;
    text-shadow: 0 0 5px rgba(201, 157, 78, 0.5);
}

/* --- ANA ANİMASYON EFEKTİ --- */

/* Fare TÜM LOGO ALANININ üzerine geldiğinde */
.animated-logo-link:hover .animated-altug-logo .letter {
    animation-name: letter-wave-glow; /* Ana logo animasyonunu başlat */
}

.animated-logo-link:hover .logo-subtitle .sub-letter {
    /* Alt başlık harflerine basit bir parlama ve hareket ver */
    transform: translateY(3px);
    color: #fff;
    text-shadow: 0 0 5px rgba(201, 157, 78, 0.5);
    /* Animasyon gecikmesini CSS değişkeni ile al */
    transition-delay: calc(var(--i) * 0.02s);
}

/* Her harfe farklı gecikme vererek dalga efekti (Aynı) */
.animated-logo-link:hover .letter:nth-child(1) {
    animation-delay: 0.1s;
}

.animated-logo-link:hover .letter:nth-child(2) {
    animation-delay: 0.05s;
}

.animated-logo-link:hover .letter:nth-child(3) {
    animation-delay: 0.1s;
}

.animated-logo-link:hover .letter:nth-child(4) {
    animation-delay: 0.15s;
}

.animated-logo-link:hover .letter:nth-child(5) {
    animation-delay: 0.2s;
}




/* DALGA VE PARLAMA ANİMASYONUNUN TANIMI (Aynı) */
@keyframes letter-wave-glow {
    0% {
        transform: translateY(0) scale(1);
        color: #c99d4e;
        text-shadow: none;
    }

    50% {
        transform: translateY(5px) scale(1.3); /* <<< Büyüme efektini buraya da ekledik */
        color: #fff;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(201, 157, 78, 0.6);
    }

    100% {
        transform: translateY(0) scale(1.05); /* <<< Sonunda hafif büyük kalsın */
        color: #c99d4e;
        text-shadow: none;
    }
}
/* ======================================================= */
/* == ANA SAYFA ÖNE ÇIKAN PROJELER (İNTERAKTİF SAHNE)   == */
/* ======================================================= */

/* Bölümün ana arka planını ve geçiş efektlerini tanımlıyoruz */
.featured-projects {
    background-color: #1d1d1d;
    padding: 80px 0; /* Boşluğu biraz artırdık */
    position: relative;
    overflow: hidden;
    transition: background-color 0.5s ease;
}

    /* Arka plana eklenecek desen (isteğe bağlı ama çok şık durur) */
    .featured-projects::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('/path/to/your/subtle-pattern.png'); /* Buraya hafif bir doku resmi eklenebilir */
        background-repeat: repeat;
        opacity: 0.05; /* Çok silik olacak */
        z-index: 1;
    }

    /* Bölümün içeriği desenin üstünde kalmalı */
    .featured-projects .container {
        position: relative;
        z-index: 2;
    }

    /* Bölümün üzerine gelindiğinde arka plan hafifçe aydınlansın */
    .featured-projects:hover {
        background-color: #2a2a2a;
    }

    /* Başlık stilleri */
    .featured-projects .section-title {
        margin-bottom: 50px;
    }

        .featured-projects .section-title h2 {
            color: #fff;
            font-family: 'Cormorant Garamond', serif;
            font-size: 42px; /* Daha büyük ve cesur */
            font-weight: 700;
            position: relative;
            padding-bottom: 20px;
        }

            /* Başlığın altındaki çizgi için animasyon */
            .featured-projects .section-title h2::after {
                content: '';
                position: absolute;
                display: block;
                width: 0px; /* Başlangıçta genişliği sıfır */
                height: 4px;
                background: #C0A172;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                transition: width 0.5s ease; /* Genişliğin animasyonla değişmesini sağlıyoruz */
            }

    /* Bölümün üzerine gelindiğinde çizgi uzasın */
    .featured-projects:hover .section-title h2::after {
        width: 80px; /* Yeni genişliği */
    }

    .featured-projects .section-title p {
        color: #ccc;
        transition: color 0.5s ease;
    }

    /* Bölüm üzerine gelindiğinde alt başlık da canlansın */
    .featured-projects:hover .section-title p {
        color: #fff;
    }

    /* Kartların üzerine gelinceki efekti daha da belirginleştirelim */
    .featured-projects .project-card {
        transition: all 0.4s ease;
    }

    .featured-projects:hover .project-card:hover {
        transform: scale(1.05) translateY(-10px); /* Hem büyüsün hem yukarı çıksın */
        box-shadow: 0 15px 40px rgba(0,0,0,0.5); /* Gölge daha da artsın */
    }

/* ======================================================= */
/* == LIGHTBOX (RESİM BÜYÜTME) GALERİSİ ÖZEL STİLLERİ  == */
/* == (GELİŞMİŞ METİN VE NAVİGASYON)                     == */
/* ======================================================= */

/* Galerinin ana arka planını karartıyoruz */
.goverlay {
    background: rgba(29, 29, 29, 0.95) !important; /* Arka planı biraz daha koyu yaptık */
}

/* Resim başlığı (description) kutusunun stilleri */
.gslide-description {
    background: rgba(15, 15, 15, 0.9) !important;
    border-top: 2px solid #C0A172;
    padding: 20px 30px !important;
    text-align: center !important;
    /* <<< ANA DEĞİŞİKLİKLER BURADA >>> */
    width: 100vw !important; /* Ekran genişliğinin %100'ünü kapla */
    max-width: 100% !important; /* Taşmaları önle */
    left: 50% !important;
    transform: translateX(-50%) !important; /* Tam olarak yatayda ortala */

    position: absolute;
    bottom: 0;
    box-sizing: border-box;
}

    .gslide-description .gslide-title {
        font-family: 'Playfair Display', serif !important; /* <<< DAHA GÜZEL YAZI STİLİ */
        font-size: 28px !important; /* Biraz daha büyüttük */
        font-weight: 700 !important;
        color: #fff !important;
        margin-bottom: 5px !important; /* Açıklamadan ayırmak için */
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.1); /* Hafif gölge */
    }

    .gslide-description .gslide-desc {
        font-family: 'Montserrat', sans-serif !important;
        font-size: 14px !important;
        color: #ccc !important;
        line-height: 1.6 !important;
    }


/* Navigasyon Okları (İleri/Geri) - Görsel olarak daha belirgin hale getiriyoruz */
.gnext, .gprev {
    background: rgba(201, 157, 78, 0.7) !important; /* Biraz daha şeffaf ve altın rengi */
    width: 55px !important; /* Ok butonlarını biraz büyüttük */
    height: 55px !important;
    border-radius: 50% !important; /* Yuvarlak yapıyoruz */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.3s ease, transform 0.3s ease !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3); /* Hafif bir gölge */
}

    .gnext:hover, .gprev:hover {
        background: #c99d4e !important;
        transform: scale(1.1); /* Üzerine gelince hafifçe büyüsün */
    }

    /* Ok ikonlarının rengini beyaz yapıyoruz */
    .gnext svg, .gprev svg {
        fill: #fff !important;
        width: 25px !important;
        height: 25px !important;
    }

/* Kapatma Butonu (X) */
.gclose {
    color: #fff !important;
    opacity: 0.9;
    transition: all 0.3s ease;
    top: 20px !important; /* Biraz daha içeri çektik */
    right: 20px !important;
    font-size: 30px !important; /* Biraz büyüttük */
}

    .gclose:hover {
        color: #c99d4e !important;
        opacity: 1;
        transform: rotate(90deg); /* Kapatma ikonu dönerek kapansın */
    }
/* ======================================================= */
/* == ANA SAYFA SLIDER BAŞLIK TASARIMI (FİNAL)          == */
/* ======================================================= */

/* Slider'ın içindeki ana metin konteyneri */
#hero .carousel-container {
    /* Konteyneri dikeyde biraz daha ortalayalım */
    align-items: center;
    padding-bottom: 60px; /* Alttaki noktalara çok yakın olmasın */
}

/* O eski, çirkin kutuyu tamamen kaldırıyoruz */
#hero .carousel-content {
    background: transparent !important; /* Arka planı şeffaf yap */
    padding: 0;
    border: none; /* Kenarlığı kaldır */
    text-align: center;
    max-width: 800px; /* Metnin çok fazla yayılmasını engelle */
}

    /* Ana Başlık (WELCOME TO...) */
    #hero .carousel-content h2 {
        color: #fff;
        margin-bottom: 20px;
        font-size: 48px; /* Daha etkileyici bir boyut */
        font-weight: 700;
        font-family: 'Cormorant Garamond', serif; /* İmza fontumuz */
        /* Metne derinlik ve okunabilirlik katan gölge efekti */
        text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.8);
    }

    /* Alt Başlık (THE BEST PROSAVE...) */
    #hero .carousel-content p {
        color: rgba(255, 255, 255, 0.9); /* Saf beyaz değil, biraz daha sönük */
        font-weight: 400;
        font-size: 20px;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.8);
    }

/* Slider'ın altındaki sayfalama noktaları */
#hero .carousel-indicators li {
    background-color: rgba(255, 255, 255, 0.5);
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

#hero .carousel-indicators .active {
    background-color: #C0A172; /* Aktif noktayı altın rengi yap */
}

 
 

/* --- Açılan Mobil Menünün Ana Konteyneri --- */
.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    /* Arka planı, sitemizin ana koyu renginin yarı şeffaf haliyle kaplıyoruz */
    background: rgba(29, 29, 29, 0.95) !important;
    transition: 0.3s;
    z-index: 9999;
}

    /* Kapatma (X) ikonu */
    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 35px; /* Header yüksekliğimize göre ayarlıyoruz */
        right: 15px;
    }

    /* Menü listesinin kendisi (beyaz kutu) */
    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        border-radius: 8px; /* Köşeleri biraz daha yuvarlak */
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
        box-shadow: 0px 0px 30px rgba(0,0,0,0.15);
    }

    /* Mobil menü içindeki linkler */
    .navbar-mobile a, .navbar-mobile a:focus {
        padding: 12px 20px;
        font-size: 16px;
        font-family: 'Montserrat', sans-serif;
        color: #333;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s;
        display: block; /* Tüm satırı kaplasın */
    }

        /* Aktif link veya üzerine gelinen link */
        .navbar-mobile a:hover, .navbar-mobile .active > a, .navbar-mobile li:hover > a {
            color: #fff !important;
            background-color: #C0A172 !important; /* Vurgu Rengi */
        }

    /* Kapatma (X) ikonu */
    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }
/* ======================================================= */
/* == YUKARI ÇIK BUTONU ÖZEL STİLİ                    == */
/* ======================================================= */

.back-to-top {
    background: #c99d4e; /* <<< YENİ ALTIN RENGİ */
    color: #1d1d1d; /* Koyu renk ikon daha şık durur */
}

    .back-to-top:hover {
        background: #b38e45; /* Üzerine gelince hafif koyulaşan bir ton */
        color: #fff;
    }
/* ======================================================= */
/* == MOBİL CİHAZLAR İÇİN ÖZEL DÜZENLEMELER (MEDIA QUERIES) == */
/* ======================================================= */

/* Genellikle tablet ve telefonlar için (991px altı) */
@media (max-width: 991px) {

    /* --- Proje/Ürün Detay Sayfası Mobil Düzenlemesi --- */

    /* İki sütun yapısını mobilde alt alta getiriyoruz */
    .portfolio-details .row > div {
        margin-bottom: 30px;
    }

    /* Bilgi kutusunun gölgesini ve padding'ini mobilde azaltalım */
    .project-info-box, .product-info-box {
        padding: 20px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

    /* Başlıkları mobilde biraz küçültelim */
    .project-title, .product-title {
        font-size: 28px;
    }

    /* --- Proje/Ürün Listeleme Sayfası Mobil Düzenlemesi --- */

    /* Kartların arasındaki boşluğu mobilde azaltalım */
    .portfolio-item {
        margin-bottom: 20px;
    }

    /* Hero (Karşılama) alanını mobilde daha kompakt hale getirelim */
    .page-hero {
        padding: 60px 0;
    }

        .page-hero h1 {
            font-size: 36px;
        }

        .page-hero p {
            font-size: 16px;
        }

        .page-hero .container {
            padding: 20px 30px;
        }

    /* Filtre butonlarını mobilde daha kompakt yapalım */
    .portfolio .portfolio-filters li {
        padding: 8px 15px;
        font-size: 14px;
    }
}

/* Sadece telefonlar için (576px altı) */
@media (max-width: 576px) {

    /* Detay sayfasındaki başlıkları daha da küçültelim */
    .project-title, .product-title {
        font-size: 24px;
    }

    /* Açıklama metinlerinin fontunu ayarlayalım */
    .project-short-desc, .project-description p {
        font-size: 15px;
    }

    /* Kart başlıklarını küçültelim */
    .project-card-title, .product-card-title {
        font-size: 18px;
    }
}
/* ======================================================= */
/* == MOBİL HEADER VE LOGO STİLLERİ                   == */
/* ======================================================= */

/* Sadece mobil ekranlar için (991px ve altı) */
@media (max-width: 991px) {

    /* Mobil header'a daha fazla dikey boşluk verelim */
    #header {
        height: 80px !important; /* Yüksekliği biraz azaltalım */
    }

        /* Mobil logoyu dikeyde ortalayalım ve boyutunu ayarlayalım */
        #header .logo {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
        }

            #header .logo img {
                height: 60px !important; /* Logonun yüksekliğini mobil için ayarla */
                max-height: 60px !important;
            }


    /* ======================================================= */
    /* == AÇILAN MOBİL MENÜ TASARIMI (NİHAİ VERSİYON)       == */
    /* ======================================================= */

    /* Mobil menü ikonunun (☰) rengini altın yapıyoruz */
    .mobile-nav-toggle {
        color: #c99d4e !important;
        font-size: 32px;
    }

    /* Menü açıldığında ekranı kaplayan koyu arka plan */
    .navbar-mobile {
        background: rgba(29, 29, 29, 0.98) !important; /* Neredeyse opak, koyu ana rengimiz */
    }

        /* Menü açıldığında linklerin göründüğü ana alan */
        .navbar-mobile ul {
            background: transparent !important; /* Beyaz kutuyu kaldırıyoruz */
            box-shadow: none;
            text-align: center; /* Linkleri ortalıyoruz */
            margin-top: 60px; /* Üstten boşluk */
        }

        /* Mobil menü içindeki her bir link */
        .navbar-mobile a, .navbar-mobile a:focus {
            padding: 15px 20px;
            font-size: 20px; /* Fontları büyüttük */
            font-family: 'Cormorant Garamond', serif; /* İmza fontumuzu kullanıyoruz */
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #fff !important; /* Linkler beyaz olacak */
        }

            /* Üzerine gelinen veya aktif olan link */
            .navbar-mobile a:hover, .navbar-mobile .active > a, .navbar-mobile li:hover > a {
                background-color: transparent !important;
                color: #c99d4e !important; /* Altın rengine dönecek */
            }

        /* Açık menüdeki kapatma (X) ikonu */
        .navbar-mobile .mobile-nav-toggle {
            top: 25px;
            right: 15px;
        }

    @media (max-width: 991px) {

        #header {
            height: 90px !important; /* Mobil header yüksekliği */
        }

            #header .logo {
                position: absolute;
                left: 15px; /* Sola yaslı kalsın */
                top: 50%;
                transform: translateY(-50%); /* Dikeyde tam ortalama */
                /* Masaüstü hover efektlerini mobilde devre dışı bırakıyoruz */
                pointer-events: none; /* Logoya dokunmayı engeller, hamburger menüye rahatça basılır */
            }

                /* ALTUĞ ana yazısı */
                #header .logo .animated-altug-logo {
                    font-size: 1.8rem !important; /* Mobilde daha küçük ama belirgin */
                    letter-spacing: 1px !important; /* Daha kompakt */
                    line-height: 1.1 !important; /* Satır aralığını kısalt */
                    display: flex; /* Harflerin düzgün hizalanması için */
                    color: #c99d4e; /* Rengi sabit tutalım */
                }

                /* İç Mimarlık ve Yapı Malzemeleri alt yazısı */
                #header .logo .logo-subtitle-header {
                    font-size: 0.45rem !important; /* Çok daha küçük ve zarif */
                    letter-spacing: 1.2px !important; /* Okunabilirliği koru */
                    margin-top: -40px !important; /* ALTUĞ'a daha yakın */
                    line-height: 1.2 !important; /* Satır aralığını kısalt */
                    color: #c99d4e; /* Rengi sabit tutalım */
                    text-transform: uppercase;
                    display: block !important; /* GİZLENMESİNİ KESİNLİKLE ENGELLİYORUZ */
                }

                /* Mobilde logo hover efektini devre dışı bırakıyoruz */
                #header .logo a:hover .animated-altug-logo,
                #header .logo a:hover .logo-subtitle-header {
                    letter-spacing: normal !important; /* Eski harf aralığına dönsün */
                    color: inherit !important; /* Renk değişimi olmasın */
                    text-shadow: none !important; /* Gölge olmasın */
                }

        /* ======================================================= */

        /* --- Mobil Menü İkonu (Hamburger ☰) --- */
        .mobile-nav-toggle {
            color: #c99d4e !important; /* İmza rengimiz olan altın rengi */
            font-size: 32px;
            cursor: pointer;
            display: none; /* Varsayılan olarak gizli */
            line-height: 0;
            transition: 0.5s;
            z-index: 10000; /* Her şeyin en üstünde */
        }
        /* Sadece mobil ekranlarda görünür yap */
        @media (max-width: 991px) {
            .mobile-nav-toggle {
                display: block;
                position: fixed;
                right: 15px;
                top: 24px;
            }
        }

        /* --- Açılan Mobil Menünün Ana Konteyneri --- */
        .navbar-mobile {
            position: fixed;
            overflow: hidden;
            top: 0;
            right: 0;
            left: 0;
            bottom: 0;
            /* Arka planı, sitemizin ana koyu renginin yarı şeffaf haliyle kaplıyoruz */
            background: rgba(29, 29, 29, 0.98) !important;
            transition: 0.3s;
            z-index: 9999;
        }

            /* Kapatma (X) ikonu */
            .navbar-mobile .mobile-nav-toggle {
                position: absolute;
                top: 25px;
                right: 15px;
            }

                .navbar-mobile .mobile-nav-toggle.bi-x {
                    color: #fff !important; /* Kapatma ikonu beyaz olsun */
                    font-size: 36px;
                }

            /* Menü listesinin kendisi (artık beyaz kutu değil) */
            .navbar-mobile ul {
                display: flex;
                flex-direction: column; /* Linkleri alt alta sırala */
                justify-content: center; /* Dikeyde tam ortala */
                align-items: center; /* Yatayda tam ortala */
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                padding: 10px 0;
                background: transparent !important;
                overflow-y: auto;
                transition: 0.3s;
                box-shadow: none;
            }

            /* Mobil menü içindeki her bir link */
            .navbar-mobile a, .navbar-mobile a:focus {
                padding: 15px 20px;
                font-size: 24px; /* Fontları büyüttük */
                font-family: 'Cormorant Garamond', serif; /* İmza fontumuz */
                text-transform: uppercase;
                letter-spacing: 3px; /* Harf aralığını açarak lüks bir his verdik */
                color: #fff !important; /* Linkler beyaz olacak */
                display: block;
                position: relative;
                transition: all 0.3s;
            }

                /* Üzerine gelinen linke altın rengi bir çizgi ve renk efekti */
                .navbar-mobile a:hover, .navbar-mobile .active > a, .navbar-mobile li:hover > a {
                    background-color: transparent !important;
                    color: #c99d4e !important; /* Altın rengine dönecek */
                }

                .navbar-mobile a::after {
                    content: '';
                    position: absolute;
                    width: 0;
                    height: 2px;
                    bottom: 10px;
                    left: 50%;
                    transform: translateX(-50%);
                    background-color: #c99d4e;
                    transition: width 0.4s ease;
                }

                .navbar-mobile a:hover::after, .navbar-mobile .active > a::after, .navbar-mobile li:hover > a::after {
                    width: 60%; /* Üzerine gelince çizgi belirsin */
                }

            .navbar-mobile .mobile-nav-toggle {
                top: 25px; /* Kapatma X ikonunun konumu */
            }
    }
}

/* ======================================================= */
/* == ŞEFFAF HEADER STİLLERİ (FİNAL VERSİYON)           == */
/* ======================================================= */

#header {
    height: 100px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
    /* YENİ YARI ŞEFFAF ARKA PLAN */
    /* Bu, yukarıdan aşağı doğru hafifçe kararan bir efekt verir */
    background: linear-gradient(to bottom, rgba(29, 29, 29, 0.7) 0%, rgba(29, 29, 29, 0) 100%);
}

    /* Sayfa aşağı kaydırıldığında header'ın alacağı stil */
    #header.header-scrolled {
        background: #1d1d1d; /* Koyu ana rengimiz */
        height: 80px;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    }


    /* --- Logo Stilleri --- */
    #header .logo a {
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    #header .logo .logo-main {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2.8rem;
        color: #fff; /* Başlangıçta ana logo beyaz olsun */
        text-shadow: 0 1px 3px rgba(0,0,0,0.4); /* Okunabilirlik için gölge */
        text-transform: uppercase;
        letter-spacing: 4px;
        transition: all 0.4s ease;
    }

    #header .logo .logo-subtitle-header {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.7rem;
        color: #eee; /* <<< Rengini daha belirgin hale getirdik */
        text-shadow: 0 1px 3px rgba(0,0,0,0.5);
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-top: -5px;
        transition: all 0.4s ease;
    }

    /* Sayfa kaydırıldığında logo renkleri altın rengine dönsün */
    #header.header-scrolled .logo-main,
    #header.header-scrolled .logo a:hover .logo-main {
        color: #c99d4e;
    }

    #header.header-scrolled .logo-subtitle-header {
        color: #ccc;
    }


    /* --- MENÜ LİNKLERİ --- */
    #header .navbar a,
    #header .navbar a:focus {
        color: #c99d4e !important; /* <<< LİNKLERİN RENGİNİ ALTIN YAPTIK */
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 700; /* Daha belirgin olsun */
        letter-spacing: 1.5px;
        padding: 10px 0;
        margin: 0 15px;
        transition: color 0.3s ease;
        position: relative;
    }

        #header .navbar a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: #c99d4e;
            transition: all 0.4s cubic-bezier(0.7, 0, 0.3, 1);
        }

        #header .navbar a:hover,
        #header .navbar .active > a {
            color: #fff !important; /* Üzerine gelince beyaza dönsün */
        }

            #header .navbar a:hover::after,
            #header .navbar .active > a::after {
                width: 100%;
                left: 0;
            }
/* Logo ve Menü Linklerinin genel stilleri (önceki kodlar) buraya eklenebilir */
/* ... */

/* ======================================================= */
/* == BREADCRUMBS (SAYFA BAŞLIĞI) NİHAİ STİLİ           == */
/* ======================================================= */

/* Breadcrumbs bölümünün ana konteyneri */
.breadcrumbs {
    /* Eski arka planı ve padding'i kaldırıyoruz */
    background: transparent !important;
    padding: 30px 0;
    /* Header'ın arkasında kalmaması için ana içeriğin üstüne boşluk veriyoruz */
    /* Bu değer header'ın yüksekliğine göre ayarlanmalı (100px) */
    margin-top: 100px;
    min-height: auto;
    border-bottom: 1px solid #eee; /* İçerikle arasında hafif bir ayraç */
}

    /* Ana Başlık (örn: "Projelerimiz") */
    .breadcrumbs h2 {
        font-size: 32px;
        font-weight: 700;
        font-family: 'Cormorant Garamond', serif;
        color: #1d1d1d; /* Koyu ana metin rengimiz */
    }

    /* Sayfa yolu linkleri (Anasayfa / ... ) */
    .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 15px;
    }

        .breadcrumbs ol li + li {
            padding-left: 10px;
        }

            .breadcrumbs ol li + li::before {
                display: inline-block;
                padding-right: 10px;
                color: #6c757d; /* Normal metin rengi */
                content: "/";
            }

        .breadcrumbs ol a {
            color: #888; /* Pasif link rengi */
            transition: 0.3s;
        }

            .breadcrumbs ol a:hover {
                color: #c99d4e; /* Vurgu rengimiz */
            }

/* Hareketli Arka Plan Stilleri */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1; /* İçeriğin arkasında kalması için */
    pointer-events: none;
}

/* İçeriğin (container) arka planın üstünde kalmasını sağlıyoruz */
.featured-projects .container {
    position: relative;
    z-index: 2;
}

main#main

 {
    position: relative; /* Bu, içeriğin z-index'ini aktif eder */
    z-index: 2; /* İçeriği parçacıkların önüne getirir */
}
#featured-projects.section-bg-dark {
    position: relative;
    z-index: 2;
}
    #featured-projects.section-bg-dark .container {
        position: relative;
        z-index: 2;
    }
/* ======================================================= */
/* == SLIDER VİDEO ARKA PLAN STİLİ (NİHAİ VERSİYON)     == */
/* ======================================================= */

/* Videoyu içeren ana kapsayıcı */
.video-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #1d1d1d; /* Video yüklenirken görünecek koyu arka plan */
    z-index: 1;
}

    /* Bu kod hem <iframe> hem de <video> için çalışacak */
    .video-background-container iframe,
    .video-background-container video {
        /* Videonun 16:9 oranını koruyarak alanı doldurmasını sağlar */
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100vw; /* Ekran genişliği kadar */
        height: 56.25vw; /* 16:9 oranı (100 / 16 * 9) */
        min-width: 177.77vh; /* Dikey ekranlarda oranı korumak için */
        min-height: 100vh; /* Dikey ekranlarda oranı korumak için */
        transform: translate(-50%, -50%);
        pointer-events: none; /* Üzerindeki metin kutusunun tıklanabilmesi için */
        object-fit: cover; /* <<< VİDEO İÇİN EN ÖNEMLİ KURAL BU */
    }

/* Metin kutusunun videonun/resmin önünde kalmasını sağlıyoruz */
.swiper-slide .carousel-content {
    position: relative;
    z-index: 2;
}
/* ======================================================= */
/* == KART TASARIMI (RASTGELE ŞEKİL DEĞİŞTİRME ANİMASYONU) == */
/* ======================================================= */

/* --- Kartların Genel Yapısı --- */
.portfolio-item {
    display: flex;
    margin-bottom: 30px;
}

.product-card, .project-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s ease;
}

    .product-card:hover, .project-card:hover {
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        transform: translateY(-5px);
    }

/* --- Resim Alanı ve ŞEKİL DEĞİŞTİRME --- */
.product-image-container, .project-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    /* Şekil değiştirme animasyonunu (clip-path) yumuşak hale getiriyoruz */
    transition: clip-path 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

    .product-image-container img, .project-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.product-card:hover .product-image-container img,
.project-card:hover .project-image-container img {
    transform: scale(1.05);
}

/* --- ŞEKİL CLASS'LARI --- */
/* Bu class'lar JavaScript tarafından rastgele atanacak */
.shape-circle .product-image-container, .shape-circle .project-image-container {
    clip-path: circle(50% at 50% 50%);
}

.shape-rhombus .product-image-container, .shape-rhombus .project-image-container {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.shape-hexagon .product-image-container, .shape-hexagon .project-image-container {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.shape-organic .product-image-container, .shape-organic .project-image-container {
    clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
}

/* Fare üzerine gelince orijinal kare şekline geri dön */
.product-card:hover .product-image-container,
.project-card:hover .project-image-container {
    clip-path: inset(0% 0% 0% 0%);
}

/* --- Bilgi Alanı ve Diğer Stiller (Aynı kalıyor) --- */
.product-card-info, .project-card-info {
    padding: 20px;
    text-align: left;
    /* ... (diğer bilgi alanı stilleri) ... */
}
/* ... (diğer başlık, kategori ve hover ikon stilleri) ... */

/* ======================================================= */
/* == MOBİL HEADER LOGO TAŞMA SORUNU İÇİN NİHAİ ÇÖZÜM   == */
/* ======================================================= */

/* Sadece mobil ekranlar için (991px ve altı) */
@media (max-width: 991px) {

    /* Mobil header'ın yüksekliğini ve konumlandırmasını garantiliyoruz */
    #header {
        height: 80px !important;
    }

        #header .logo {
            position: absolute !important;
            left: 15px !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
            /* Hamburger menüye yer bırakmak için logonun maksimum genişliğini sınırlıyoruz */
            max-width: calc(100% - 70px);
        }

            /* "ALTUĞ" yazısını mobilde küçültüyoruz */
            #header .logo .logo-main {
                font-size: 2rem !important; /* Daha kompakt bir boyut */
                letter-spacing: 1.5px !important; /* Harf aralığını daraltıyoruz */
                line-height: 1 !important; /* Satır yüksekliğini azaltıyoruz */
            }

            /* "İÇ MİMARLIK..." yazısını mobilde küçültüp taşmasını engelliyoruz */
            #header .logo .logo-subtitle-header {
                font-size: 0.5rem !important;
                letter-spacing: 1.2px !important;
                margin-top: 2px !important;
                /* TAŞMAYI ENGELLEYEN SİHİRLİ KODLAR */
                white-space: nowrap; /* Yazının alt satıra kaymasını KESİNLİKLE engelle */
                overflow: hidden; /* Eğer yine de sığmazsa, taşan kısmı GİZLE */
                text-overflow: ellipsis; /* Sığmayan kısmın sonuna "..." koy */
                display: block !important;
            }

            /* Mobilde hover efektlerini devre dışı bırakıyoruz */
            #header .logo a:hover .logo-main,
            #header .logo a:hover .logo-subtitle-header {
                letter-spacing: inherit !important; /* Orijinal mobil aralığına dönsün */
                color: inherit !important;
                text-shadow: none !important;
            }
}

/* ======================================================= */
/* == İLETİŞİM SAYFASI KUTULARI (DİKKAT ÇEKİCİ TASARIM)  == */
/* ======================================================= */

/* --- Kutuların Genel Stili --- */
.contact .info-box {
    padding: 30px;
    background: #fff;
    border-radius: 8px; /* Hafif yuvarlak köşeler */
    margin-bottom: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Hafif başlangıç gölgesi */
    transition: all 0.3s ease-in-out; /* Tüm geçişleri yumuşat */
    height: 100%; /* İçerik fark etmeksizin tüm kutuların aynı yüksekliği korumasını sağlar */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    /* --- Fare Üzerine Gelince (Hover) Efekti --- */
    .contact .info-box:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.30); /* Gölgeyi belirginleştir */
        transform: translateY(-5px); /* Hafifçe yukarı kalksın */
    }

    /* --- İkon Stili --- */
    .contact .info-box i {
        font-size: 38px;
        color: #C0A172; /* İmza altın rengimiz */
       /* border: 5px solid #F0C475;  İkon etrafına altın çerçeve */
        border-radius: 50%; /* Tam yuvarlak */
        padding: 10px;
        margin-bottom: 20px;
        line-height: 0;
        transition: all 0.3s ease-in-out;
    }

    /* İkonun hover'da değişimi */
    .contact .info-box:hover i {
        background: #C0A172; /* Arka planı altın rengi yap */
        color: #fff; /* İkon rengini beyaza çevir */
    }

    /* --- Başlık (Adresimiz, Email Adresimiz vb.) --- */
    .contact .info-box h3 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #444444;
    }

    /* --- Metin (Adres detayı, mail adresi, telefon numarası) --- */
    .contact .info-box p {
        font-size: 14px;
        color: #6c757d;
        line-height: 24px;
        margin-bottom: 0;
    }

    /* Mail ve Telefon linklerinin rengini değiştirelim */
    .contact .info-box a {
        color: #6c757d;
        transition: 0.3s;
    }

        .contact .info-box a:hover {
            color: #C0A172; /* Hover'da altın rengi olsun */
        }