/* DEĞİŞKENLER VE GENEL STİLLER */
:root {
    --brand-color: #292929;
    /* Ana marka rengi - Sarı/Altın */
    --dark-color: #292929;
    --gold: #cfb57d;
    --gold-light: #e6d4a3;

    --body-font: 'Montserrat', sans-serif;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--body-font);
    padding-top: 0;
    color: white;
    background-color: #292929;
    line-height: 1.7;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    body {
        font-size: 0.95rem;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.5px;
    color: white;
}

@media (max-width: 768px) {
    .display-5 {
        font-size: 2rem !important;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
}

.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 40px 0;
    }
}

.line {
    width: 80px;
    height: 4px;
    background-color: var(--brand-color);
    margin: 15px auto 30px;
}

.btn-brand {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    color: #1a1a1a;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(207,181,125,0.12);
    transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.btn-brand:hover,
.btn-brand:focus {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(207,181,125,0.18);
    opacity: 0.98;
    color: #101010;
}

@media (max-width: 768px) {
    .btn-brand {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

.text-brand {
    color: white !important;
}

/* Override bg-light for dark theme */
.bg-light {
    background-color: #292929 !important;
    color: white !important;
}

/* NAVBAR (Menü) */
.navbar {
    transition: all 0.4s ease;
}

.navbar-transparent {
    background-color: transparent;
    box-shadow: none;
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.98);
}

.navbar-brand img {
    transition: all 0.3s ease;
    height: 80px;
}

.navbar-scrolled .navbar-brand img {
    height: 60px;
}

@media (max-width: 768px) {
    .navbar-brand img {
        height: 50px;
    }
    
    .navbar-scrolled .navbar-brand img {
        height: 45px;
    }
    
    .nav-link {
        font-size: 0.85rem;
        margin-left: 8px;
    }
}

.nav-link {
    font-weight: 600;
    text-transform: uppercase;
    color: white !important;
    margin-left: 15px;
    position: relative;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.navbar-scrolled .nav-link {
    color: white !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--brand-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
}

/* Mobile Menu Toggler */
.navbar-toggler {
    border: none;
    color: white;
}

.navbar-scrolled .navbar-toggler {
    color: var(--dark-color);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* SLIDER (SWIPER) */
.hero-swiper {
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.c-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
    color: white;
}

.carousel-caption h1 {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.carousel-caption p {
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Swiper Navigation Customization */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--brand-color);
    transform: scale(1.1);
}

/* Custom Navigation Buttons for Projects */
.project-swiper .swiper-button-next,
.project-swiper .swiper-button-prev {
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #292929;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.project-swiper .swiper-button-next:after,
.project-swiper .swiper-button-prev:after {
    font-size: 20px;
}

.project-swiper .swiper-button-next:hover,
.project-swiper .swiper-button-prev:hover {
    background-color: #FFD54F;
    color: #292929;
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    /* Kutucuk şekli */
    transition: all 0.3s ease;
    margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
    background: #FFD54F;
    /* Altın sarısı aktif renk */
    width: 30px;
    border-radius: 2px;
}

/* Enhanced Hero Slider Styles */
.hero-swiper {
    width: 100%;
    height: 92vh;
    min-height: 480px;
    position: relative;
}

.hero-swiper .swiper-slide::after {
    /* subtle dark overlay for better text contrast */
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
    pointer-events: none;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    color: white;
    width: 100%;
    max-width: 1100px;
    padding: 0 20px;
}

.carousel-caption .caption-inner {
    text-align: left;
    max-width: 780px;
    margin-left: 6%;
    position: relative;
    z-index: 3;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.swiper-slide-active .carousel-caption .caption-inner {
    opacity: 1;
    transform: translateY(0);
}

.carousel-caption h1,
.carousel-caption .flag-title {
    font-size: 2.6rem;
    line-height: 1.05;
    font-weight: 800;
    text-shadow: 0 8px 30px rgba(0,0,0,0.6);
}

.carousel-caption p,
.carousel-caption .flag-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.95);
}

.carousel-caption .btn-brand {
    padding: 12px 30px;
    border-radius: 40px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
    margin-top: 18px;
}

.carousel-caption .btn-brand .cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(0,0,0,0.12);
    transition: transform 0.28s ease, background 0.28s ease;
}

.carousel-caption .btn-brand:hover .cta-icon {
    transform: translateX(6px) rotate(8deg);
    background: rgba(255,255,255,0.12);
}

/* subtle bounce for CTA on load */
@keyframes cta-bounce {
    0% { transform: translateY(6px); opacity: 0; }
    60% { transform: translateY(-3px); opacity: 1; }
    100% { transform: translateY(0); opacity: 1; }
}

.carousel-caption .caption-inner .btn-brand {
    animation: cta-bounce 700ms ease 600ms both;
}

/* Make sure flag-badge sits above overlay */
.flag-badge,
.carousel-caption .flag-inner {
    z-index: 5;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-swiper { height: 70vh; min-height: 420px; }
    .carousel-caption .caption-inner { margin-left: 4%; }
    .carousel-caption h1, .carousel-caption .flag-title { font-size: 2.1rem; }
}

@media (max-width: 576px) {
    .hero-swiper { height: 60vh; min-height: 320px; }
    .carousel-caption { padding: 0 12px; }
    .carousel-caption .caption-inner { margin-left: 0; max-width: 100%; text-align: center; }
    .carousel-caption h1, .carousel-caption .flag-title { font-size: 1.5rem; }
    .carousel-caption p, .carousel-caption .flag-text { font-size: 0.95rem; }
    .carousel-caption .btn-brand { width: 100%; }
}

/* Additional small-screen improvements for slider */
@media (max-width: 768px) {
    /* make nav arrows optimized for mobile */
    .swiper-button-next,
    .swiper-button-prev {
        width: 44px;
        height: 44px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.6);
        border-radius: 50%;
        color: #cfb57d;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        z-index: 15;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .swiper-button-prev {
        left: 8px;
    }

    .swiper-button-next {
        right: 8px;
    }

    .swiper-button-next::after, 
    .swiper-button-prev::after {
        font-size: 16px;
    }

    .swiper-button-next:active,
    .swiper-button-prev:active {
        background: rgba(0, 0, 0, 0.8);
        transform: translateY(-50%) scale(0.95);
    }

    .swiper-pagination {
        bottom: 12px !important;
    }

    .carousel-caption .caption-inner {
        padding: 8px 10px;
    }

    /* Flag badge responsive adjustments for mobile */
    .flag-badge {
        width: 85% !important;
        right: auto !important;
        left: 50% !important;
        transform: translateX(-50%) translateY(-50%) !important;
        top: 50% !important;
        max-width: 280px !important;
        padding: 0 !important;
    }

    .flag-inner {
        padding: 12px 12px 15px 12px !important;
    }

    .flag-title {
        font-size: 0.95rem !important;
        margin-bottom: 8px !important;
    }

    .flag-text {
        font-size: 0.75rem !important;
        display: block !important;
    }
}

/* Reduce image GPU cost: prefer transform/opacity only */
.c-img {
    will-change: transform;
}

/* Improve contrast for captions on mid devices */
@media (min-width: 577px) and (max-width: 992px) {
    .carousel-caption .caption-inner { max-width: 680px; }
    .carousel-caption h1, .carousel-caption .flag-title { font-size: 2.0rem; }
}

/* KURUMSAL BÖLÜMÜ */
.kurumsal-item {
    background: white;
    color: #292929;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.kurumsal-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-color);
}

.icon-box {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--brand-color), #FFD54F);
    color: white;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 25px;
    transition: all 0.5s ease;
    animation: morph 5s ease-in-out infinite;
}

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.kurumsal-item:hover .icon-box {
    transform: rotate(10deg) scale(1.1);
}

/* HAKKIMIZDA BÖLÜMÜ */
.about-img-container {
    position: relative;
    padding: 20px;
}

.about-img {
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.about-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -20px;
    left: -20px;
    border: 2px solid var(--brand-color);
    border-radius: 30px;
    z-index: 1;
    opacity: 0.3;
}

.list-check li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.list-check i {
    font-size: 1.4rem;
    margin-right: 15px;
    background: rgba(255, 193, 7, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* PROJELERİMİZ BÖLÜMÜ */
.proje-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border-radius: 15px;
}

.proje-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.proje-card .card-img-top {
    transition: transform 0.5s ease;
}

.proje-card:hover .card-img-top {
    transform: scale(1.05);
}

.proje-card .card-body {
    padding: 1.5rem;
}

/* İLETİŞİM BÖLÜMÜ */
.icon-box-contact {
    width: 60px;
    height: 60px;
    background-color: var(--brand-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
}

.contact-item {
    color: #292929;
}

@media (max-width: 768px) {
    .contact-item {
        margin-bottom: 20px;
    }
}

/* =======================
   PREMIUM FOOTER TASARIMI
======================= */

.footer-section {
    background: #111;
    color: #fff;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 20px 0;
    }
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #cfb57d;
    position: relative;
}

@media (max-width: 768px) {
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
}

.footer-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #cfb57d;
    margin-top: 8px;
    border-radius: 5px;
}

.footer-text {
    font-size: 0.95rem;
    color: #bbbbbb;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .footer-text {
        font-size: 0.85rem;
    }
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #cfb57d;
    padding-left: 6px;
}

@media (max-width: 768px) {
    .footer-links li {
        margin-bottom: 8px;
    }
}

.footer-contact li {
    margin-bottom: 12px;
    color: #cccccc;
    display: flex;
    gap: 10px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .footer-contact li {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
}

.footer-contact i {
    color: #cfb57d;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #cfb57d;
    color: #292929;
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin-top: 30px;
}


.project-swiper .swiper-button-next:after,
.project-swiper .swiper-button-prev:after {
    font-size: 20px;
}

.project-swiper .swiper-button-next:hover,
.project-swiper .swiper-button-prev:hover {
    background-color: #FFD54F;
    color: #292929;
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    /* Kutucuk şekli */
    transition: all 0.3s ease;
    margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
    background: #FFD54F;
    /* Altın sarısı aktif renk */
    width: 30px;
    border-radius: 2px;
}

/* KURUMSAL BÖLÜMÜ */
.kurumsal-item {
    background: white;
    color: #292929;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.kurumsal-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-color);
}

.icon-box {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--brand-color), #FFD54F);
    color: white;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 25px;
    transition: all 0.5s ease;
    animation: morph 5s ease-in-out infinite;
}

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.kurumsal-item:hover .icon-box {
    transform: rotate(10deg) scale(1.1);
}

/* HAKKIMIZDA BÖLÜMÜ */
.about-img-container {
    position: relative;
    padding: 20px;
}

.about-img {
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.about-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -20px;
    left: -20px;
    border: 2px solid var(--brand-color);
    border-radius: 30px;
    z-index: 1;
    opacity: 0.3;
}

.list-check li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.list-check i {
    font-size: 1.4rem;
    margin-right: 15px;
    background: rgba(255, 193, 7, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* PROJELERİMİZ BÖLÜMÜ */
.proje-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border-radius: 15px;
}

.proje-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.proje-card .card-img-top {
    transition: transform 0.5s ease;
}

.proje-card:hover .card-img-top {
    transform: scale(1.05);
}

.proje-card .card-body {
    padding: 1.5rem;
}

/* İLETİŞİM BÖLÜMÜ */
.icon-box-contact {
    width: 60px;
    height: 60px;
    background-color: var(--brand-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
}

.contact-item {
    color: #292929;
}

/* FOOTER */
footer {
    background-color: #1a1a1a !important;
}

.footer-links li a {
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--brand-color) !important;
    padding-left: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    border-radius: 50%;
    color: #292929;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.project-swiper .swiper-button-next:after,
.project-swiper .swiper-button-prev:after {
    font-size: 20px;
}

.project-swiper .swiper-button-next:hover,
.project-swiper .swiper-button-prev:hover {
    background-color: #FFD54F;
    color: #292929;
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    /* Kutucuk şekli */
    transition: all 0.3s ease;
    margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
    background: #FFD54F;
    /* Altın sarısı aktif renk */
    width: 30px;
    border-radius: 2px;
}

/* KURUMSAL BÖLÜMÜ */
.kurumsal-item {
    background: white;
    color: #292929;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.kurumsal-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-color);
}

.icon-box {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--brand-color), #FFD54F);
    color: white;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 25px;
    transition: all 0.5s ease;
    animation: morph 5s ease-in-out infinite;
}

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.kurumsal-item:hover .icon-box {
    transform: rotate(10deg) scale(1.1);
}

/* HAKKIMIZDA BÖLÜMÜ */
.about-img-container {
    position: relative;
    padding: 20px;
}

.about-img {
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.about-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -20px;
    left: -20px;
    border: 2px solid var(--brand-color);
    border-radius: 30px;
    z-index: 1;
    opacity: 0.3;
}

.list-check li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.list-check i {
    font-size: 1.4rem;
    margin-right: 15px;
    background: rgba(255, 193, 7, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* PROJELERİMİZ BÖLÜMÜ */
.proje-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border-radius: 15px;
}

.proje-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.proje-card .card-img-top {
    transition: transform 0.5s ease;
}

.proje-card:hover .card-img-top {
    transform: scale(1.05);
}

.proje-card .card-body {
    padding: 1.5rem;
}

/* İLETİŞİM BÖLÜMÜ */
.icon-box-contact {
    width: 60px;
    height: 60px;
    background-color: var(--brand-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
}

.contact-item {
    color: #292929;
}

/* FOOTER */
footer {
    background-color: #1a1a1a !important;
}

.footer-links li a {
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--brand-color) !important;
    padding-left: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* MAP CONTAINER */
.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .map-container {
        min-height: 250px;
        border-radius: 12px;
    }
}

/* YENİ PROJE KARTLARI (LİSTE - ÇAPRAZ) */
.project-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 20px 0;
}

.project-item {
    width: 70%;
    position: relative;
    transition: all 0.5s ease;
}

/* Tek numaralı (1, 3, 5...) projeler sola yaslı */
.project-item:nth-child(odd) {
    align-self: flex-start;
    margin-left: 5%;
}

/* Çift numaralı (2, 4, 6...) projeler sağa yaslı */
.project-item:nth-child(even) {
    align-self: flex-end;
    margin-right: 5%;
}

/* Çift numaralı projelerde info box sağda olsun */
.project-item:nth-child(even) .project-info-box {
    left: auto;
    right: 0;
    border-left: none;
    border-right: 5px solid #cfb57d;
    text-align: right;
}

.project-card-overlay {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.project-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.project-card-overlay:hover .project-bg-img {
    transform: scale(1.1);
}

.project-info-box {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(5px);
    padding: 30px 40px;
    max-width: 60%;
    z-index: 2;
    border-left: 5px solid #cfb57d;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.project-item:hover .project-info-box {
    background: rgba(22, 37, 71, 0.95);
    /* Brand color dark version */
    padding-left: 50px;
}

.project-item:nth-child(even):hover .project-info-box {
    padding-left: 40px;
    padding-right: 50px;
}

.project-subtitle {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #cfb57d;
    margin-bottom: 10px;
    font-weight: 600;
}

.project-title-large {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    text-transform: capitalize;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .project-list {
        gap: 30px;
    }

    .project-item {
        width: 100%;
        margin: 0 !important;
    }

    .project-card-overlay {
        height: 300px;
    }
    
    .project-card-overlay:active .project-info-box {
        transform: translateX(-50px);
    }

    .project-info-box {
        max-width: 85%;
        padding: 20px;
        bottom: 0;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-left: none;
        border-bottom: 4px solid #cfb57d;
    }

    .project-item:nth-child(even) .project-info-box {
        border-right: none;
        border-bottom: 4px solid #cfb57d;
        text-align: left;
    }
    
    .project-title-large {
        font-size: 1.4rem;
    }
}


/* FLOATING SIDEBAR */
.floating-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    width: 50px;
    transition: transform 0.3s ease;
}

.floating-sidebar.closed {
    transform: translateY(-50%) translateX(100%);
}

.sidebar-toggle {
    background-color: #000;
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    position: absolute;
    top: -50px;
    right: 0;
}

.sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    width: 50px;
    transition: all 0.3s ease;
}

.sidebar-item:hover {
    color: white;
    width: 60px;
    /* Hover effect to expand slightly */
}

.form-item {
    background-color: #0d2e46;
    /* Dark Blue */
    padding: 20px 0;
    height: 200px;
    justify-content: space-between;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 1rem;
    letter-spacing: 1px;
    white-space: nowrap;
    margin-bottom: 10px;
}

.form-item i {
    font-size: 1.5rem;
    margin-top: 10px;
}

.whatsapp-item {
    background-color: #25d366;
    /* WhatsApp Green */
    height: 60px;
    font-size: 1.8rem;
}

.phone-item {
    background-color: #000000;
    /* Dark Red/Brown */
    height: 60px;
    font-size: 1.5rem;
}

/* Toggle button icon rotation */
.floating-sidebar.closed .sidebar-toggle i {
    transform: rotate(180deg);
}

/* Sidebar Open Button */
.sidebar-open-btn {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    background-color: #000;
    color: white;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.floating-sidebar.closed ~ .sidebar-open-btn {
    display: flex;
}

.sidebar-open-btn:hover {
    background-color: #1a1a1a;
}

/* Responsive adjustments if needed */
@media (max-width: 768px) {
    .floating-sidebar {
        display: none;
    }
    
    .sidebar-open-btn {
        display: flex !important;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        bottom: 20px;
        top: auto;
        right: 10px;
        transform: none;
        border-radius: 50%;
    }
}

/* PREMIUM AWARD BADGE – güçlendirilmiş */
.award-badge {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 10, 10, 0.75);
    border: 1px solid rgba(255, 215, 150, 0.6);
    padding: 30px 35px;
    width: 280px;
    text-align: center;
    z-index: 20;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 18px rgba(255, 215, 150, 0.25),
        0 6px 30px rgba(0, 0, 0, 0.6);
}

/* İç parlama */
.award-badge::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(130deg, rgba(255, 220, 160, 0.4), rgba(255, 205, 120, 0.1));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* İç metin */
.badge-text {
    font-size: 0.83rem;
    line-height: 1.45;
    opacity: 0.95;
    font-weight: 500;
    color: white;
}

/* Mobil */
@media (max-width: 768px) {
    .award-badge {
        width: 220px;
        right: 20px;
        padding: 18px 20px;
    }

    .badge-text {
        font-size: 0.75rem;
    }
}

/* PREMIUM AWARD BADGE – güçlendirilmiş */
.award-badge {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 10, 10, 0.75);
    border: 1px solid rgba(255, 215, 150, 0.6);
    padding: 30px 35px;
    width: 280px;
    text-align: center;
    z-index: 20;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 18px rgba(255, 215, 150, 0.25),
        0 6px 30px rgba(0, 0, 0, 0.6);
}

/* İç parlama */
.award-badge::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(130deg, rgba(255, 220, 160, 0.4), rgba(255, 205, 120, 0.1));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* İç metin */
.badge-text {
    font-size: 0.83rem;
    line-height: 1.45;
    opacity: 0.95;
    font-weight: 500;
    color: white;
}

/* Mobil */
@media (max-width: 768px) {
    .award-badge {
        width: 220px;
        right: 20px;
        padding: 18px 20px;
    }

    .badge-text {
        font-size: 0.75rem;
    }
}

/* YENİ PREMIUM FLAG BADGE */
.flag-badge {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 340px;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 6px;
    padding: 0;
    z-index: 20;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 25px rgba(255, 215, 150, 0.28),
        0 8px 35px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 215, 170, 0.5);
}

/* ÜST KISIM – yazı bölümü */
.flag-inner {
    padding: 30px 30px 40px 30px;
    border-bottom: 1px solid rgba(255, 215, 170, 0.4);
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.85));
}

.flag-title {
    font-size: 1.4rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 18px;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

.flag-text {
    font-size: 0.95rem;
    line-height: 1.55;
    opacity: 0.95;
    color: #fff;
    text-align: center;
}

/* ALTTAKİ FLAG UCU (V ŞEKLİ) */
.flag-bottom {
    width: 100%;
    height: 38px;
    background: rgba(0, 0, 0, 0.85);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border-top: 1px solid rgba(255, 215, 170, 0.4);
}

/* Mobil görünüm */
@media (max-width: 768px) {
    .flag-badge {
        width: 85%;
        right: 7.5%;
        max-width: 300px;
    }

    .flag-title {
        font-size: 1rem;
    }

    .flag-text {
        font-size: 0.75rem;
    }
    
    .flag-inner {
        padding: 20px 20px 25px 20px;
    }
}

/* PROJECT DETAIL MODERN STYLES */

/* Hero Section */
.project-hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.project-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 60px 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.project-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.project-hero-category {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: #cfb57d;
    /* Using the gold color directly if var not working perfectly */
    color: #292929;
    padding: 5px 15px;
    border-radius: 20px;
    align-self: flex-start;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Info Bar */
.info-bar {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
    border-right: 1px solid #eee;
}

.info-item:last-child {
    border-right: none;
}

.info-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #292929;
}

/* Content Section */
.content-section h2 {
    color: #292929;
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #cfb57d;
}

.content-text {

    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Sticky Sidebar */
.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.modern-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.modern-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    color: black;
}

.feature-list li {
    margin-bottom: 15px;
    color: #555;
    display: flex;
    align-items: center;
}

.feature-list i {
    color: #cfb57d;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .project-hero {
        height: 40vh;
        min-height: 250px;
        margin-bottom: 20px;
    }
    
    .project-hero-title {
        font-size: 1.8rem;
    }
    
    .project-hero-overlay {
        padding: 40px 20px;
    }
    
    .info-bar {
        padding: 20px;
        gap: 15px;
    }

    .info-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 12px;
        margin-bottom: 12px;
    }

    .info-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .sticky-sidebar {
        position: static;
        margin-top: 30px;
    }
}

/* HİZMETLERİMİZ BÖLÜMÜ - MODERN TASARIM */
.services-section {
    background: linear-gradient(180deg, #292929 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(207, 181, 125, 0.3), transparent);
}

/* Service Badge */
.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(207, 181, 125, 0.2), rgba(207, 181, 125, 0.1));
    border: 1px solid rgba(207, 181, 125, 0.3);
    color: #cfb57d;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.service-badge:hover {
    border-color: #cfb57d;
    background: rgba(207, 181, 125, 0.1);
}

/* Service Card */
.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(207, 181, 125, 0.15);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(207, 181, 125, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.service-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-color: #cfb57d;
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(207, 181, 125, 0.2), 
                0 0 60px rgba(207, 181, 125, 0.1);
}

.service-card:hover::before {
    top: -30%;
    right: -30%;
}

/* Service Card Top */
.service-card-top {
    position: relative;
    padding: 40px 30px 30px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid rgba(207, 181, 125, 0.1);
}

/* Service Icon */
.service-icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.8;
    transition: transform 0.5s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotateZ(-5deg);
}

.service-icon i {
    position: relative;
    z-index: 2;
}

/* Icon Varyasyonları */
.service-icon.buildings {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.service-icon.buildings::before {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.service-icon.contract {
    background: linear-gradient(135deg, #4ecdc4, #44a8b8);
}

.service-icon.contract::before {
    background: linear-gradient(135deg, #4ecdc4, #44a8b8);
}

.service-icon.design {
    background: linear-gradient(135deg, #f7b731, #f09e2c);
}

.service-icon.design::before {
    background: linear-gradient(135deg, #f7b731, #f09e2c);
}

/* Service Number */
.service-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(207, 181, 125, 0.15);
    line-height: 1;
    transition: all 0.4s ease;
}

.service-card:hover .service-number {
    color: rgba(207, 181, 125, 0.3);
    transform: translateY(-5px);
}

/* Service Content */
.service-card-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: 0.5px;
}

.service-description {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Service Features */
.service-features {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-features i {
    color: #cfb57d;
    font-size: 1rem;
}

.service-card:hover .service-features li {
    color: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

/* Service Footer */
.service-card-footer {
    padding: 0 30px 30px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #cfb57d, #e6d4a3);
    color: #1a1a1a;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e6d4a3, #cfb57d);
    transition: left 0.3s ease;
    z-index: -1;
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(207, 181, 125, 0.3);
    color: #1a1a1a;
}

.service-btn:hover::before {
    left: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .service-card-top {
        padding: 30px 20px 20px;
    }

    .service-card-content {
        padding: 20px;
        gap: 12px;
    }

    .service-card-footer {
        padding: 0 20px 20px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
    }

    .service-number {
        font-size: 2.5rem;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-description {
        font-size: 0.85rem;
    }

    .service-features {
        gap: 6px;
    }

    .service-features li {
        font-size: 0.8rem;
    }

    .service-btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* İLETİŞİM BÖLÜMÜ - MODERN TASARIM */
.contact-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(207, 181, 125, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 46, 70, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Contact Card */
.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(207, 181, 125, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    height: 100%;
    backdrop-filter: blur(10px);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #cfb57d, transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border-color: #cfb57d;
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(207, 181, 125, 0.15), 0 0 40px rgba(207, 181, 125, 0.1);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

/* Contact Card Icon */
.contact-card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.contact-card-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: inherit;
    animation: pulse 2s ease-in-out infinite;
}

.contact-card-icon i {
    position: relative;
    z-index: 1;
    color: white;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotateZ(10deg);
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0;
        transform: scale(1.3);
    }
}

/* Icon Varyasyonları */
.contact-card-icon.location {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.contact-card-icon.phone {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.contact-card-icon.email {
    background: linear-gradient(135deg, #27ae60, #229954);
}

/* Contact Card Title */
.contact-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* Contact Card Text */
.contact-card-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Contact Card Link */
.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cfb57d;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.contact-card-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #cfb57d;
    transition: width 0.3s ease;
}

.contact-card-link:hover {
    color: #e6d4a3;
    transform: translateX(5px);
}

.contact-card-link:hover::after {
    width: 100%;
}

.contact-card-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.contact-card-link:hover i {
    transform: translate(3px, -3px);
}

/* Map Container */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(207, 181, 125, 0.2);
    transition: all 0.4s ease;
}

.map-container:hover {
    box-shadow: 0 30px 80px rgba(207, 181, 125, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-card {
        padding: 30px 20px;
    }

    .contact-card-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .contact-card-title {
        font-size: 1.2rem;
    }

    .contact-card-text {
        font-size: 0.9rem;
    }

    .map-container {
        height: 250px;
        margin-top: 20px;
    }

    .contact-section::before,
    .contact-section::after {
        display: none;
    }
}
.service-img-container {
    width: 100%;
    height: 200px;
    /* Fixed height for consistency */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.kurumsal-item:hover .service-img-container img {
    transform: scale(1.1);
}

/* MOBILE RESPONSIVE FIXES */

/* 1. Navbar Toggler Icon White */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

/* 2. Navbar Mobile Background */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #292929;
        /* Dark background for mobile menu */
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .nav-link {
        color: white !important;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    /* Adjust Hero Text on Mobile */
    .carousel-caption h1 {
        font-size: 2rem;
        /* Smaller font on mobile */
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    /* Flag Badge Mobile Overrides */
    .flag-badge {
        width: 90% !important;
        /* Full width minus padding */
        right: 5% !important;
        left: 5% !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    .flag-title {
        font-size: 1.2rem;
    }

    .flag-text {
        font-size: 0.9rem;
        display: none;
        /* Hide long text on very small screens if needed, or keep it */
    }

    /* Project Detail Mobile */
    .project-hero {
        height: 40vh;
        min-height: 300px;
    }

    .project-hero-title {
        font-size: 2rem;
    }

    .info-bar {
        flex-direction: column;
        gap: 0;
    }

    .info-item {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 15px 0;
    }

    .info-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .flag-text {
        display: none;
        /* Hide text on phone portrait to save space */
    }

    .flag-title {
        margin-bottom: 0;
    }

    .flag-inner {
        padding: 20px;
    }
}

/* TALEP FORMU MODAL STYLES */
.modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-header {
    background: linear-gradient(135deg, #0d2e46, #162547);
    color: white;
    border-bottom: 2px solid rgba(207, 181, 125, 0.3);
    padding: 30px;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-title::before {
    content: "✉️";
    font-size: 1.5rem;
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.btn-close-white:hover {
    opacity: 1;
}

.modal-body {
    padding: 30px;
    background: linear-gradient(135deg, #1a1a1a, #252525);
}

.form-label {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    font-weight: 700;
    color: #cfb57d;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(207, 181, 125, 0.2);
    padding: 14px 16px;
    border-radius: 12px;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: #cfb57d;
    box-shadow: 0 0 0 4px rgba(207, 181, 125, 0.15);
    color: white;
}

.form-control:focus::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.modal-footer {
    background: linear-gradient(135deg, #1a1a1a, #252525);
    border-top: 1px solid rgba(207, 181, 125, 0.2);
    padding: 25px 30px;
    gap: 10px;
}

.modal-footer .btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.modal-footer .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.modal-footer .btn-brand {
    background: linear-gradient(135deg, #cfb57d, #e6d4a3);
    border: none;
    color: #1a1a1a;
    font-weight: 700;
    padding: 12px 40px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.modal-footer .btn-brand:hover {
    background: linear-gradient(135deg, #e6d4a3, #cfb57d);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(207, 181, 125, 0.3);
    color: #1a1a1a;
}

/* Modal Responsive */
@media (max-width: 576px) {
    .modal-dialog {
        margin: 10px;
    }
    
    .modal-content {
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-title {
        font-size: 1.4rem;
    }
    
    .modal-title::before {
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .form-label {
        font-size: 0.8rem;
    }
    
    .form-control {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    .modal-footer {
        padding: 15px 20px;
        flex-direction: column-reverse;
    }
    
    .modal-footer .btn {
        width: 100%;
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .modal-footer .btn-secondary {
        margin-bottom: 10px;
    }
    
    .row .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .modal-lg {
        max-width: 95vw;
    }
}

/* MOBIL OPTİMİZASYON EKLEMELER */
@media (max-width: 768px) {
    /* Kurumsal Items */
    .kurumsal-item:nth-of-type(1) {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    /* About Section */
    .about-img-container {
        padding: 10px;
    }
    
    /* List Styling */
    .list-check li {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
}