:root {
    /* Ana Renk Paleti */
    --primary-color: #AB886D;
    /* Ana kahverengi */
    --secondary-color: #D6C0B3;
    /* Açık kahverengi */
    --accent-color: #8B6B4F;
    /* Koyu kahverengi - vurgu */
    --light-color: #F5F0ED;
    /* Çok açık bej - arka plan */
    --dark-color: #4A3C31;
    /* Koyu kahverengi - metin */

    /* Nötr Renkler */
    --white: #FFFFFF;
    --gray-100: #F8F5F3;
    --gray-200: #EBE5E1;
    --gray-300: #D6C0B3;
    --gray-400: #C1A99A;
    --gray-500: #AB886D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}

body {
    background-color: var(--light-color);
    color: var(--dark-color);
}

/* Header Stilleri */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.0);
    z-index: 1000;
    transition: all 0.3s ease, transform 0.4s ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    max-width: 95% !important;
}

.navbar {
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.header.scrolled .navbar {
    padding: 1rem 0;
}

.logo {
    height: 80px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-white {
    opacity: 1;
}

.logo-dark {
    position: absolute;
    left: 0;
    opacity: 0;
}

.header.scrolled .logo-white {
    opacity: 0;
}

.header.scrolled .logo-dark {
    opacity: 1;
}

.header.scrolled .navbar-brand {
    height: auto;
}

.navbar-brand {
    position: relative;
    display: flex;
    align-items: center;
    height: 80px;
}

.navbar-nav {
    margin-left: 1rem;
    display: flex;
    align-items: center;
    height: 80px;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem !important;
    height: 100%;
    display: flex;
    align-items: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.phone-social-wrapper {
    display: flex;
    flex-direction: row
}

@media (max-width: 1350px) {
    .phone-social-wrapper {
        display: flex;
        flex-direction: column-reverse;
        gap: .5rem;
        align-items: center;
    }
}

.nav-link:hover {
    color: var(--gray-100) !important;
    text-decoration: none;
}

.header.scrolled .nav-link {
    color: var(--dark-color) !important;
}

.header.scrolled .nav-link:hover {
    color: var(--accent-color) !important;
}

.header.scrolled .search-btn,
.header.scrolled .phone-number {
    color: var(--dark-color);
}

.header.scrolled .language-selector {
    border-color: var(--dark-color);
    color: var(--dark-color);
}

.header-right {
    display: flex;
    align-items: center;
}

.search-btn {
    color: var(--white);
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.search-btn:hover {
    color: var(--gray-300);
}



.phone-number {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.phone-number:hover {
    color: var(--gray-300);
    text-decoration: none;
}

.language-selector {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 1200px) and (min-width: 991.98px) {
    .language-selector {
        display: none;
    }

    .nav-link {
        font-size: 16px !important;
        padding: 0.5rem 0.75rem !important;
    }

    .callback-btn {
        margin: 0 !important;
    }

    @media (max-width: 1010px) {
        .phone-number>i {
            display: none;
        }
    }
}

.language-selector a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.language-selector a.active {
    color: var(--white);
}

.language-selector a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.header.scrolled .language-selector a.active {
    color: var(--dark-color);
}

.header.scrolled .language-selector a.active::after {
    background-color: var(--dark-color);
}

.language-selector a:hover {
    color: var(--gray-300);
}

.language-selector span {
    color: var(--white);
    opacity: 0.5;
}

.header.scrolled .language-selector {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 0, 0, 0.1);
}

.header.scrolled .language-selector a {
    color: var(--dark-color);
}

.header.scrolled .language-selector span {
    color: var(--dark-color);
}

.header.scrolled .language-selector a:hover {
    color: var(--accent-color);
}

.flag-icon {
    width: 20px;
    height: 15px;
    display: inline-block;
    background-size: cover;
    background-position: center;
    margin-right: 5px;
    vertical-align: middle;
}

.flag-icon-tr {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMjAwIDgwMCI+PHBhdGggZmlsbD0iI2UzMGExZSIgZD0iTTAgMGgxMjAwdjgwMEgweiIvPjxjaXJjbGUgY3g9IjQyNSIgY3k9IjQwMCIgcj0iMjAwIiBmaWxsPSIjZmZmIi8+PGNpcmNsZSBjeD0iNDc1IiBjeT0iNDAwIiByPSIxNjAiIGZpbGw9IiNlMzBhMWUiLz48cGF0aCBmaWxsPSIjZmZmIiBkPSJNNTgzLjMzNCAzMTkuNDc0bDg3LjA4NiAyNi44MDctNTMuODY2IDc0LjA5NiA4Ny4wODYtMjYuODA3LTUzLjg2NiA3NC4wOTYgODcuMDg2LTI2LjgwNy01My44NjYgNzQuMDk2IDg3LjA4Ni0yNi44MDctNTMuODY2IDc0LjA5NiA4Ny4wODYtMjYuODA3LTUzLjg2NiA3NC4wOTYiLz48L3N2Zz4=');
}

.flag-icon-gb {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMjAwIDYwMCI+PHBhdGggZmlsbD0iIzAxMjE2OSIgZD0iTTAgMGgxMjAwdjYwMEgweiIvPjxwYXRoIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIxMjAiIGQ9Ik0wIDBoMTIwMHY2MDBIMHoiLz48cGF0aCBzdHJva2U9IiNjZjE0MmIiIHN0cm9rZS13aWR0aD0iODAiIGQ9Ik0wIDBoMTIwMHY2MDBIMHoiLz48cGF0aCBmaWxsPSIjZmZmIiBkPSJNNjAwIDBoMTIwdjYwMEg2MDB6TTAgMjQwaDEyMDB2MTIwSDB6Ii8+PHBhdGggZmlsbD0iI2NmMTQyYiIgZD0iTTYwMCA2MGg2MHY0ODBINjAwek02MCAyNDBoMTA4MHY2MEg2MHoiLz48cGF0aCBmaWxsPSIjZmZmIiBkPSJNNjAwIDBoMTIwdjYwMEg2MDB6Ii8+PHBhdGggZmlsbD0iI2NmMTQyYiIgZD0iTTYwMCA2MGg2MHY0ODBINjAwek02MCAyNDBoMTA4MHY2MEg2MHoiLz48L3N2Zz4=');
}

.header.scrolled .language-selector option {
    background-color: var(--white);
    color: var(--dark-color);
}

/* Hero Slider Stilleri */
.hero-slider {
    height: 100vh;
    margin-top: 0;
    position: relative;
}

.carousel,
.carousel-inner,
.carousel-item {
    height: 100%;
}

.slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}


.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0) 30%);
}


.slide-content {
    position: relative;
    padding: 2rem 0;
    color: var(--white);
    max-width: 800px;
    margin-bottom: 6rem;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.project-detail-page .slide-content {
    margin-bottom: 0rem !important;
}

.project-detail-page .slide-content .slide-title {
    margin-bottom: 0rem !important;
}

.carousel-item.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -1px !important;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
    width: 1200px;
    font-weight: 200;
}

@media (max-width: 991.98px) {
    .slide-title {
        width: 600px !important;
    }

    .project-detail-page .slide-content .slide-title {
        width: 1000px !important;
    }
}

@media (max-width: 767.98px) {
    .slide-title {
        width: 400px !important;
    }

    .project-detail-page .slide-content .slide-title {
        width: 400px !important;
    }
}

.carousel-item.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 1px !important;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

.carousel-item.active .slide-description {
    opacity: 1;
    transform: translateY(0);
}

.kesfet-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--transparent);
    color: var(--white);
    border: 1px solid var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-right: .5rem;
}

.kesfet-btn:hover {
    background-color: var(--white);
    color: var(--dark-color);
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {
    .kesfet-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

.carousel-control-prev,
.carousel-control-next {
    position: static;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    margin-left: .25rem;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--white);
    opacity: 1;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    filter: brightness(0);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 1.2rem;
    height: 1.2rem;
}

.slide-content-bottom {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 767.98px) {

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 1rem;
        height: 1rem;
    }

    .slide-content-bottom {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

.carousel-indicators {
    margin-bottom: 3rem;
    gap: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    opacity: 1;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: var(--white);
    opacity: 1;
    transform: scale(1.5);
    width: 10px;
}

@media (max-width: 767.98px) {
    .carousel-indicators {
        margin-bottom: 6rem;
        gap: 0.75rem;
    }

    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
    }

    .carousel-indicators .active {
        width: 8px;
        transform: scale(1.5);
    }

    .carousel-indicators .carousel-buttons-prev,
    .carousel-indicators .carousel-buttons-next {
        width: 40px;
        height: 40px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 1.2rem;
        height: 1.2rem;
    }
}

.carousel-indicators .carousel-buttons-prev,
.carousel-indicators .carousel-buttons-next {
    position: relative;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    margin: 0 0.75rem;
    transition: all 0.3s ease;
}

.carousel-indicators .carousel-buttons-prev:hover,
.carousel-indicators .carousel-buttons-next:hover {
    background: var(--white);
}

.carousel-indicators .carousel-buttons-prev:hover .carousel-control-prev-icon,
.carousel-indicators .carousel-buttons-next:hover .carousel-control-next-icon {
    filter: brightness(0);
}

@media (max-width: 767.98px) {
    .carousel-indicators {
        margin-bottom: 6rem;
    }

    .carousel-indicators [data-bs-target] {
        width: 8px;
    }

    .carousel-indicators .active {
        width: 8px;
    }

    .carousel-indicators .carousel-buttons-prev,
    .carousel-indicators .carousel-buttons-next {
        width: 35px;
        height: 35px;
    }
}

/* Responsive Düzenlemeler */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 6rem 2rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        overflow-y: auto;
        z-index: 999;
    }

    .navbar-collapse.show {
        visibility: visible;
        transform: translateX(0);
        right: 0;
    }

    .nav-link {
        color: var(--white) !important;
        font-size: 2rem;
        padding: 1rem 0 !important;
        text-align: left;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
        font-weight: 300;
        letter-spacing: 1px;
    }

    .navbar-collapse.show .nav-link {
        opacity: 1;
        transform: translateY(0);
    }

    .navbar-collapse.show .nav-item:nth-child(1) .nav-link {
        transition-delay: 0.1s;
    }

    .navbar-collapse.show .nav-item:nth-child(2) .nav-link {
        transition-delay: 0.2s;
    }

    .navbar-collapse.show .nav-item:nth-child(3) .nav-link {
        transition-delay: 0.3s;
    }

    .navbar-collapse.show .nav-item:nth-child(4) .nav-link {
        transition-delay: 0.4s;
    }

    .navbar-collapse.show .nav-item:nth-child(5) .nav-link {
        transition-delay: 0.5s;
    }

    .navbar-collapse.show .nav-item:nth-child(6) .nav-link {
        transition-delay: 0.6s;
    }

    .navbar-collapse.show .nav-item:nth-child(7) .nav-link {
        transition-delay: 0.7s;
    }

    .header-right {
        margin-top: auto;
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        font-size: 1.15rem !important;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
        transition-delay: 0.5s;
    }

    .navbar-collapse.show .header-right {
        opacity: 1;
        transform: translateY(0);
    }

    .search-btn,
    .phone-number {
        color: var(--white);
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .phone-number {
        font-weight: 300;
        letter-spacing: 1px;
    }

    .search-btn i,
    .phone-number i {
        font-size: 1.2rem;
    }

    .navbar-toggler {
        z-index: 1001;
        padding: 0;
    }

    .navbar-toggler-icon,
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        height: 2px;
        background-color: var(--white);
        transition: all 0.3s ease;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        transform: translateY(0) rotate(45deg);
        width: 30px;
        top: 14px;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        color: transparent !important;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        transform: translateY(0) rotate(-45deg);
        width: 30px;
        bottom: 14px;
    }
}

@media (max-width: 767.98px) {

    .nav-link {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .slide-title {
        font-size: 3rem;
    }

    .slide-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .slide-title {
        font-size: 2.5rem;
    }

    .project-detail-page .slide-content {
        margin-bottom: unset;
    }

    .project-detail-page .slide-content .slide-title {
        margin-bottom: 2rem !important;
    }

    .slide-content {
        margin-bottom: 6rem;
        padding: 0 1rem;
    }
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    opacity: 0;
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn i {
    font-size: 32px;
}

.navbar-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* X şekli için dönüşüm */
.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Scroll durumunda renk değişimi */
.header.scrolled .navbar-toggler span {
    background-color: var(--dark-color);
}

/* Menü açıkken her zaman beyaz */
.navbar-toggler[aria-expanded="true"] span {
    background-color: var(--white) !important;
}

/* Projeler Section */
.projects-section {
    padding: 4rem 0;
    background-color: var(--light-color);
    min-height: auto;
}

.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-header p {
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-description {
    display: flex;
    justify-content: center;
    gap: 2rem !important;
    margin: 0 auto;
}

.info-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: auto;
    white-space: nowrap;
    flex: 0 1 auto;
}

@media (max-width: 991.98px) {
    .section-description {
        flex-wrap: wrap;
        gap: 1rem !important;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .section-description {
        flex-direction: column;
        align-items: center;
    }

    .section-header p {
        margin-bottom: 1.5rem;
    }
}

@media(max-width: 420px){
    .section-header p {
        font-size: 1rem !important;
    }
}

.all-projects-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.all-projects-btn:hover {
    background-color: var(--dark-color);
    color: var(--white);
    transform: translateY(-2px);
}

.all-projects-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.all-projects-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }

    .section-description {
        flex-direction: column;
        align-items: stretch;
    }

    .all-projects-btn {
        padding: 0.875rem 1.75rem;
    }
}

.project-swiper {
    height: 100vh;
}

.project-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: var(--dark-color);
}

.project-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem;
}

.project-slide-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.project-slide-logo img {
    width: auto;
    height: 30px;
}

.project-slide-logo span {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.project-slide-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding-top: 6rem;
}

.project-slide-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.project-slide-tags {
    display: flex;
    gap: 1rem;
}

.project-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: var(--white);
    font-size: 0.9rem;
}

.project-tag i {
    font-size: 0.8rem;
}

/* Slider Navigation */
.swiper-navigation {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.swiper-prev,
.swiper-next {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-prev:hover,
.swiper-next:hover {
    background: var(--white);
    color: var(--dark-color);
}

/* Swiper Pagination */
.project-swiper .swiper-pagination {
    bottom: 3.5rem;
    left: 3rem;
    width: auto;
}

.project-swiper .swiper-pagination-bullet {
    width: 30px;
    height: 2px;
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.project-swiper .swiper-pagination-bullet-active {
    background-color: var(--white);
    width: 50px;
}

@media (max-width: 991.98px) {
    .project-slide {
        height: 600px;
    }

    .project-slide-content {
        padding: 2rem;
    }

    .project-slide-title {
        font-size: 2rem;
    }

    .swiper-navigation {
        bottom: 2rem;
        right: 2rem;
    }

    .project-swiper .swiper-pagination {
        bottom: 2.5rem;
        left: 2rem;
    }
}

@media (max-width: 767.98px) {
    .project-slide {
        height: 500px;
    }

    .project-slide-title {
        font-size: 1.75rem;
    }

    .project-slide-logo img {
        height: 24px;
    }

    .project-slide-logo span {
        font-size: 1rem;
    }

    .swiper-prev,
    .swiper-next {
        width: 40px;
        height: 40px;
    }
}

/* Project Types Section */
.project-types-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.project-type-card {
    position: relative;
    display: block;
    text-decoration: none;
    color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-badge {
    position: absolute;
    top: 0;
    left: 6px;
    width: 180px; /* Görsele uygun genişlik */
    height: auto;
    overflow: hidden;
}

@media (max-width: 1200px){
    .project-badge {
        width: 150px !important;
    }
}

@media (max-width: 500px){
    .project-badge {
        width: 100px !important;
    }
}

.project-badge img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
}

.project-type-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    overflow: hidden;
}

.project-type-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-type-card:hover .project-type-image img {
    transform: scale(1.05);
}

.project-type-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.project-type-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0) 70%,
            rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
}

.project-type-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: auto;
    background: transparent;
    z-index: -1;
}

.project-type-slogan {
    margin-top: 1rem;
    margin-right: .75rem;
    font-size: 1.75rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-align: right;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-type-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 1rem;
}

.project-type-logo img {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991.98px) {
    .project-type-slogan {
        font-size: 1.5rem;
    }

    .project-type-logo img {
        width: 180px;
    }
}

@media (max-width: 767.98px) {
    .project-type-content {
        padding: 1rem;
    }

    .project-type-slogan {
        margin-top: .5rem;
        font-size: 1.5rem;
    }

    .project-type-logo img {
        width: 150px;
    }
}

.project-type-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    position: relative;
}

.project-type-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.project-type-link {
    display: inline-flex;
    align-items: center;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.4s ease;
    cursor: pointer;
}

.project-type-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.project-type-card:hover .project-type-link {
    opacity: 1;
}

.project-type-card:hover .project-type-link i {
    transform: translateX(5px);
}

@media (max-width: 991.98px) {
    .project-types-section {
        padding: 2.5rem 0;
    }

    .project-type-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .project-types-section {
        padding: 2rem 0;
    }

    .project-type-image {
        padding-bottom: 66.67%;
        /* 3:2 oranı */
    }
}

body {
    margin: 0;
    padding: 0;
}

#project-list,
#project-list * {
    color: #fff;
    line-height: 24px;
    font-size: 16px;
    line-height: 1.7;
}

#project-list {
    display: flex;
    margin: 2rem auto;
    padding: 0;
    overflow: hidden;
    list-style-type: none;
    height: 80vh;
    width: 85%;
    min-height: 600px;
    max-height: 800px;
    flex-direction: column;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 1280px) {
    #project-list {
        flex-direction: row;
    }
}

#project-list li {
    flex: 1;
    display: flex;
    align-items: stretch;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

#project-list li:before {
    content: "";
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.80) 0%,
            rgba(0, 0, 0, 0.6) 20%,
            rgba(0, 0, 0, 0.3) 40%,
            rgba(0, 0, 0, 0) 100%);
}

#project-list li.active {
    flex: 6;
    cursor: default;
}

#project-list li.active:before {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.75) 20%,
            rgba(0, 0, 0, 0.4) 40%,
            rgba(0, 0, 0, 0) 100%);
}

#project-list h2 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 1rem;
}

@media only screen and (min-width: 768px) {
    #project-list h2 {
        font-size: 36px;
    }
}

@media only screen and (min-width: 1280px) {
    #project-list h2 {
        font-size: 42px;
    }
}

#project-list h3 {
    font-weight: bold;
    white-space: nowrap;
    position: absolute;
    z-index: 30;
    opacity: 1;
    top: 50%;
    left: 50%;
    transition: top 0.35s, opacity 0.15s;
    transform-origin: 0 0;
    font-size: 24px;
    text-transform: uppercase;
    transform: translate(-50%, -10%) rotate(0deg);
    padding-bottom: 3em;
}

@media only screen and (min-width: 1280px) {
    #project-list h3 {
        top: 100%;
        left: 50%;
        font-size: 32px;
        transform: translate(-20px, -50%) rotate(-90deg);
    }
}

#project-list li.active h3 {
    opacity: 0;
    top: 200%;
}

#project-list .section-content {
    position: relative;
    z-index: 30;
    opacity: 0;
    align-self: flex-end;
    width: 100%;
    transition: all 0.35s 0.1s ease-out;
}

#project-list li.active .section-content {
    opacity: 1;
}

#project-list .inner {
    position: absolute;
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-column-gap: 20px;
    align-items: flex-end;
    left: 0;
    bottom: 0;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.25s ease-out;
    max-width: 800px;
}

@media only screen and (min-width: 768px) {
    #project-list .inner {
        grid-auto-flow: column;
        grid-template-columns: 1fr;
        grid-column-gap: 40px;
        padding: 40px;
    }
}

@media only screen and (min-width: 1280px) {
    #project-list {
        flex-direction: row;
    }

    #project-list .inner {
        grid-auto-flow: column;
        grid-template-columns: 1fr;
        grid-column-gap: 40px;
        padding: 40px;
    }
}

#project-list li.active .inner {
    opacity: 1;
}

#project-list .detail-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

#project-list .detail-button i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

#project-list .detail-button:hover {
    background-color: var(--white);
    color: var(--dark-color);
    border-color: var(--white);
    transform: translateY(-2px);
}

#project-list .detail-button:hover i {
    transform: translateX(5px);
}

@media only screen and (max-width: 768px) {
    #project-list .detail-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Container Genişliği */
@media (min-width: 1400px) {
    .container {
        max-width: 85% !important;
        padding: 0 2rem;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 85% !important;
        padding: 0 1.5rem;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 85% !important;
        padding: 0 1rem;
    }
}

@media (max-width: 1200px){
    .project-types-section .container{
        max-width: 95% !important;
        padding: 0 1rem;
    }
}



/* Footer Styles */
.footer {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 6rem 0 3rem;
}

.footer-logo {
    height: 100px;
    width: auto;
}

.footer-brand p {
    color: var(--gray-200);
    font-size: 1rem;
    line-height: 1.7;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--gray-200);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--gray-100);
}

.footer-contact li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.3rem;
    color: var(--gray-100);
}

.footer-contact a {
    color: var(--gray-100);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-400);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-legal a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--white);
}

@media (max-width: 991.98px) {
    .footer {
        padding: 4rem 0 2rem;
    }
}

@media (max-width: 767.98px) {
    .footer-legal {
        justify-content: flex-start;
        margin-top: 1rem;
    }

    .copyright {
        text-align: left;
    }
}

/* Video Section */
.video-section {
    position: relative;
    height: 70vh;
    min-height: 400px;
    overflow: hidden;
    background-color: var(--dark-color);
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.6) 30%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.6) 70%,
            rgba(0, 0, 0, 0.85) 100%);
}

.video-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 70vh;
}

.video-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.video-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.video-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.video-btn:hover {
    background-color: var(--white);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.video-btn i {
    transition: transform 0.3s ease;
}

.video-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 991.98px) {
    .video-title {
        font-size: 3rem;
    }
}

@media (max-width: 767.98px) {
    .video-section {
        min-height: 400px;
    }

    .video-title {
        font-size: 2.5rem;
    }

    .video-description {
        font-size: 1.1rem;
    }

    .video-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

.youtube-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Video üzerindeki tıklamaları devre dışı bırak */
}

.youtube-video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    /* Video üzerindeki tıklamaları devre dışı bırak */
}

@media (min-aspect-ratio: 16/9) {
    .youtube-video-container iframe {
        /* En-boy oranı 16:9'dan büyükse yüksekliği ayarla */
        height: 56.25vw;
    }
}

@media (max-aspect-ratio: 16/9) {
    .youtube-video-container iframe {
        /* En-boy oranı 16:9'dan küçükse genişliği ayarla */
        width: 177.78vh;
    }
}

.play-button-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.play-button {
    position: relative;
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.play-button i {
    color: var(--dark-color);
    font-size: 24px;
    margin-left: 5px;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button .ripple {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 2px solid var(--white);
    border-radius: 50%;
    animation: ripple 1.5s linear infinite;
    opacity: 0;
}

.play-button::before,
.play-button::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 2px solid var(--white);
    border-radius: 50%;
    animation: ripple 2s linear infinite;
    opacity: 0;
}

.play-button::after {
    animation-delay: 0.5s;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 767.98px) {
    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button i {
        font-size: 20px;
    }
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background-color: transparent;
}

.video-modal-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
}

.video-modal-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: -40px;
    right: -40px;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.close-modal:hover {
    transform: rotate(90deg);
    color: var(--primary-color);
}

@media (max-width: 767.98px) {
    .video-modal-content {
        width: 95%;
    }

    .close-modal {
        top: -50px;
        right: 0;
    }
}

#project-list .info-wrapper {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

#project-list .area-info {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    transition: none;
}

#project-list .area-info .material-symbols-outlined {
    font-size: 1.2rem;
    color: var(--white);
}

@media only screen and (max-width: 768px) {
    #project-list .info-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    #project-list .area-info {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
        flex: 1 1 calc(33.333% - 0.5rem);
    }

    #project-list .info-wrapper:has(.area-info:nth-child(-n+3):last-child) {
        flex-wrap: nowrap;
    }

    #project-list .info-wrapper:has(.area-info:nth-child(-n+3):last-child) .area-info {
        flex: 1;
    }

    #project-list .area-info .material-symbols-outlined {
        font-size: 1rem;
    }
}

/* Scroll Bar Styles */
::-webkit-scrollbar {
    width: 10px;
    background-color: var(--light-color);
}

::-webkit-scrollbar-track {
    background-color: var(--light-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
    border-radius: 10px;
    border: 2px solid var(--light-color);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-color);
}

/* Firefox için scroll bar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) var(--light-color);
}

@media (max-width: 767.98px) {
    ::-webkit-scrollbar {
        width: 6px;
    }
}

.header.scrolled .nav-link,
.header.scrolled .search-btn,
.header.scrolled .phone-number,
.header.scrolled .language-selector {
    text-shadow: none;
}

@media (max-width: 991.98px) {

    /* Hamburger ikonunun scroll durumunda siyah kalması */
    .header.scrolled .navbar-toggler-icon,
    .header.scrolled .navbar-toggler-icon::before,
    .header.scrolled .navbar-toggler-icon::after {
        background-color: var(--dark-color);
    }

    /* Diğer menü öğelerinin beyaz kalması */
    .header.scrolled .nav-link,
    .header.scrolled .search-btn,
    .header.scrolled .phone-number,
    .header.scrolled .language-selector {
        color: var(--white) !important;
    }

    /* Menü açıkken hamburger ikonunun beyaz olması */
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon,
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        background-color: var(--white) !important;
    }
}

.project-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.project-details-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.project-details-btn:hover {
    background-color: var(--white);
    color: var(--dark-color);
    border-color: var(--white);
    transform: translateY(-2px);
}

.project-details-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 767.98px) {
    .project-details-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* Callback Button */
.callback-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1.5rem;
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.callback-btn::before,
.callback-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    animation: rippleOut 2s ease-out infinite;
}

.callback-btn::after {
    animation-delay: 0.6s;
}

@keyframes rippleOut {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.callback-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.callback-btn:hover {
    background-color: var(--white);
    color: var(--dark-color);
    border-color: var(--white);
    transform: translateY(-2px);
    text-shadow: none;
}

.callback-btn:hover i {
    transform: rotate(15deg);
}

.header.scrolled .callback-btn {
    color: var(--dark-color);
    border-color: rgba(0, 0, 0, 0.3);
    text-shadow: none;
}

@media (max-width: 991.98px) {
    .header.scrolled .callback-btn {
        color: var(--white) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
        text-shadow: none !important;
    }

    .header.scrolled .callback-btn:hover {
        background-color: var(--white) !important;
        color: var(--dark-color) !important;
        border-color: var(--white) !important;
    }
}

.header.scrolled .callback-btn::before,
.header.scrolled .callback-btn::after {
    border-color: rgba(0, 0, 0, 0.1);
}

.header.scrolled .callback-btn:hover {
    background-color: var(--dark-color);
    color: var(--white);
    border-color: var(--dark-color);
}

/* Mobile Callback Button */
.callback-btn-mobile {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.callback-btn-mobile::before,
.callback-btn-mobile::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    animation: rippleOut 2s ease-out infinite;
}

.callback-btn-mobile::after {
    animation-delay: 0.6s;
}

.callback-btn-mobile:hover {
    background-color: var(--white);
    color: var(--dark-color);
    border-color: var(--white);
    transform: translateY(-2px);
    text-shadow: none;
}

.callback-btn-mobile i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.callback-btn-mobile:hover i {
    transform: rotate(15deg);
}

@media (max-width: 991.98px) {
    .callback-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Medya'da Biz Section */
.media-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.media-item {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--dark-color);
    display: block;
}

.media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.media-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 66.67%;
    overflow: hidden;
}

.media-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.media-item:hover .media-image img {
    transform: scale(1.05);
}

.media-source {
    padding: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
    flex-wrap: nowrap;
}

.media-source img {
    height: 40px;
    width: auto;
}

.media-content {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.media-date {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.media-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.media-item:hover .media-title {
    color: var(--accent-color);
}

.media-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.media-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.media-item:hover .media-link {
    color: var(--primary-color);
}

.media-item:hover .media-link i {
    transform: translateX(5px);
}

.all-media-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.all-media-btn:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
}

.all-media-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.all-media-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 991.98px) {
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .media-section {
        padding: 4rem 0;
    }

    .media-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .media-title {
        font-size: 1.1rem;
    }

    .all-media-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
    }
}

/* Sayaç Animasyonu Stilleri */
.counter-number {
    display: inline-block;
    transition: all 15000ms ease !important;
}

.info-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: auto;
    white-space: nowrap;
    flex: 0 1 auto;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.info-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item strong {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .section-description {
        flex-wrap: wrap;
        gap: 1rem !important;
    }

    .info-item {
        padding: 0.75rem 1.5rem;
        flex: 0 1 auto;
    }

    .info-item strong {
        font-size: 1rem;
    }

    .info-item i {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .section-description {
        flex-direction: column;
        align-items: center;
    }

    .section-header p {
        margin-bottom: 1.5rem;
    }
}

/* Fixed Buttons */
.fixed-buttons {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.fixed-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background-color: var(--white);
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

.fixed-btn i {
    font-size: 1.1rem;
    color: var(--accent-color);
}

.fixed-btn:hover {
    transform: translateX(-5px);
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.fixed-btn:hover i {
    color: var(--white);
}

@media (max-width: 991.98px) {
    .fixed-buttons {
        right: 20px;
    }

    .fixed-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.85rem;
    }

    .fixed-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .fixed-buttons {
        right: 0;
        left: 0;
        top: auto;
        bottom: 0;
        transform: none;
        flex-direction: row;
        gap: 0;
        width: 100%;
        justify-content: stretch;
        padding: 0;
        background-color: var(--white);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 0;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    }

    .fixed-btn {
        padding: 1rem;
        font-size: 0.85rem;
        flex: 1;
        justify-content: center;
        background-color: var(--white);
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    .fixed-btn:first-child {
        border-right: 1px solid rgba(0, 0, 0, 0.05);
    }

    .fixed-btn span {
        display: inline-block;
        font-size: 0.8rem;
    }

    .fixed-btn i {
        font-size: 1rem;
        margin-right: 0.5rem;
    }

    .fixed-btn:hover {
        transform: none;
        background-color: var(--accent-color);
        color: var(--white);
    }

    .fixed-btn:hover i {
        color: var(--white);
    }

    .in-project-detail-page {
        bottom: 30px !important;
    }

    /* WhatsApp butonunun konumunu ayarla */
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 90px;
        right: 20px;
    }

    .whatsapp-btn i {
        font-size: 28px;
    }


}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Section Padding for Scroll Offset */
.project-types-section,
.projects-section {
    scroll-margin-top: 100px;
}

@media (max-width: 1200px) {

    .nav-link {
        font-size: 1rem;
    }
}

@media (max-width: 991.98px) {

    .project-types-section,
    .projects-section {
        scroll-margin-top: 80px;
    }
}

/* Carousel Buttons */
.carousel-buttons {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 1rem;
    padding: 1rem;
}

.carousel-buttons button {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-buttons button.active {
    color: var(--white);
    position: relative;
}

.carousel-buttons button.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--white);
}

.carousel-buttons button:hover {
    color: var(--white);
}

@media (max-width: 767.98px) {
    .carousel-buttons {
        bottom: 20px;
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .carousel-buttons button {
        font-size: 1rem;
        padding: 0.25rem;
    }

    .carousel-buttons button.active::after {
        width: 15px;
    }
}

.carousel-buttons-prev,
.carousel-buttons-next {
    position: static;
    width: 50px;
    height: 50px;
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    margin-left: .25rem;
    transition: all 0.3s ease;
}

.carousel-buttons-prev:hover,
.carousel-buttons-next:hover {
    background: var(--white);
    opacity: 1;
}

.carousel-buttons-prev:hover .carousel-control-prev-icon,
.carousel-buttons-next:hover .carousel-control-next-icon {
    filter: brightness(0);
}

@media (max-width: 767.98px) {

    .carousel-buttons-prev,
    .carousel-buttons-next {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 767.98px) {
    .hero-slider {
        height: 100vh;
    }

    .carousel,
    .carousel-inner,
    .carousel-item {
        height: 100%;
    }

    .carousel-indicators {
        margin-bottom: 2rem;
        gap: 0.75rem;
    }

    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
    }

    .carousel-indicators .active {
        width: 8px;
        transform: scale(1.5);
    }

    .carousel-indicators .carousel-buttons-prev,
    .carousel-indicators .carousel-buttons-next {
        width: 35px;
        height: 35px;
    }
}

.carousel-control-buttons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.carousel-buttons-prev,
.carousel-buttons-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.carousel-buttons-prev {
    left: 30px;
}

.carousel-buttons-next {
    right: 30px;
}

.carousel-buttons-prev:hover,
.carousel-buttons-next:hover {
    background: var(--white);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-buttons-prev:hover .carousel-control-prev-icon,
.carousel-buttons-next:hover .carousel-control-next-icon {
    filter: brightness(0);
}

@media (max-width: 767.98px) {

    .carousel-buttons-prev,
    .carousel-buttons-next {
        width: 40px;
        height: 40px;
    }

    .carousel-buttons-prev {
        left: 15px;
    }

    .carousel-buttons-next {
        right: 15px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 1.2rem;
        height: 1.2rem;
    }
}

/* Slider Bottom Buttons */
.slider-bottom-buttons {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    z-index: 10;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.bottom-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background-color: var(--white);
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

.bottom-btn i {
    font-size: 1.1rem;
    color: var(--accent-color);
}

.bottom-btn:hover {
    transform: translateY(-5px);
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.bottom-btn:hover i {
    color: var(--white);
}

@media (max-width: 991.98px) {
    .bottom-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.85rem;
    }

    .bottom-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .slider-bottom-buttons {
        padding: 1rem;
        gap: 0.5rem;
    }

    .bottom-btn {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
        flex: 1;
        justify-content: center;
    }

    .bottom-btn i {
        font-size: 0.9rem;
    }
}

/* Header Social Icons */
.social-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icon {
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    color: var(--gray-300);
    transform: translateY(-2px);
}

.header.scrolled .social-icon {
    color: var(--dark-color);
    text-shadow: none;
}

.header.scrolled .social-icon:hover {
    color: var(--accent-color);
}

@media (max-width: 991.98px) {
    .social-icons {
        margin-top: 1rem;
        gap: 2rem;
    }

    .social-icon {
        font-size: 1.2rem;
        color: var(--white) !important;
    }
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.feature-card {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background-color: var(--primary-color);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.feature-description {
    color: var(--dark-color);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991.98px) {
    .features-section {
        padding: 4rem 0;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .feature-icon i {
        font-size: 1.75rem;
    }

    .feature-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .features-section {
        padding: 3rem 0;
    }

    .feature-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
}

/* Certificates Section */
.certificates-section {
    padding: 4rem 0;
    background-color: var(--light-color);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.certificates-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.certificate-item {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.certificate-item:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.certificate-logo {
    height: 60px;
    width: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.certificate-item:hover .certificate-logo {
    filter: grayscale(0%);
}

@media (max-width: 991.98px) {
    .certificates-section {
        padding: 3rem 0;
    }

    .certificates-wrapper {
        gap: 2rem;
    }

    .certificate-logo {
        height: 50px;
    }
}

@media (max-width: 767.98px) {
    .certificates-section {
        padding: 2rem 0;
    }

    .certificates-wrapper {
        gap: 1.5rem;
    }

    .certificate-logo {
        height: 40px;
    }
}

/* Loading Spinner */
#loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.spinner-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 3px solid var(--gray-200);
    border-top: 3px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Loading Screen */
#loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.logo-wrapper {
    position: relative;
    width: 200px;
    height: auto;
}

.loading-logo {
    width: 100%;
    height: auto;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0.3;
        transform: scale(0.95);
    }
}

@media (max-width: 767.98px) {
    .logo-wrapper {
        width: 150px;
    }
}

/* Top Bar */
.top-bar {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header.scrolled .top-bar {
    background-color: var(--light-color);
}

.top-bar .phone-number,
.top-bar .social-icon,
.top-bar .language-selector,
.top-bar .language-selector a,
.top-bar .language-selector span {
    color: var(--white);
    font-size: 0.9rem;
}

.top-bar .callback-btn {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
}

@media (max-width: 991.98px) {
    .top-bar {
        display: none;
    }
}

/* IntlTelInput Styles */
.iti {
    width: 100%;
}

.iti__flag {
    background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.19/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .iti__flag {
        background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.19/img/flags@2x.png");
    }
}

.iti__selected-flag {
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 8px 0 0 8px;
}

.iti__country-list {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Form Select Styles */
.form-select {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--dark-color);
    background-color: var(--white);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234A3C31' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-select:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(171, 136, 109, 0.25);
}

.form-select:hover {
    border-color: var(--accent-color);
}

.form-select option {
    padding: 0.5rem;
    font-size: 1rem;
    color: var(--dark-color);
}

/* Pagination Styles */
.pagination-wrapper {
    margin-top: 3rem;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.page-item {
    list-style: none;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--dark-color);
    border: 1px solid var(--gray-200);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.page-item.active .page-link {
    background-color: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.page-link:hover {
    background-color: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.page-item.disabled .page-link {
    background-color: var(--gray-100);
    color: var(--gray-400);
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-info {
    text-align: center;
    margin-top: 1rem;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.pagination-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-prev,
.pagination-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--dark-color);
    border: 1px solid var(--gray-200);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-prev i,
.pagination-next i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.pagination-prev:hover,
.pagination-next:hover {
    background-color: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.pagination-prev:hover i {
    transform: translateX(-3px);
}

.pagination-next:hover i {
    transform: translateX(3px);
}

@media (max-width: 991.98px) {
    .pagination-wrapper {
        margin-top: 2.5rem;
    }
}

@media (max-width: 767.98px) {

    .page-link,
    .pagination-prev,
    .pagination-next {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .pagination {
        gap: 0.25rem;
    }

    .pagination-info {
        font-size: 0.85rem;
    }
}

.btn-outline-secondary {

    padding: 0.75rem 1.5rem !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
}

/* Dropdown Styles */
.dropdown-menu {
    background-color: var(--white);
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    margin-top: 1rem;
    min-width: 220px;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    color: var(--dark-color);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--light-color);
    color: var(--accent-color);
    padding-left: 2rem;
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-color: var(--gray-200);
}


.dropdown-toggle::after {
    margin-left: 0.5rem;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

@media (min-width: 992.98px) {
    .nav-item.dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

@media (max-width: 991.98px) {
    .dropdown-menu {
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 0;
        padding: 0.5rem 0;
        display: none;
    }

    .nav-item.dropdown>.dropdown-toggle[aria-expanded="true"]+.dropdown-menu {
        display: block;
    }

    .nav-item.dropdown>.dropdown-toggle[aria-expanded="true"]+.dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .dropdown-item {
        color: var(--white);
        padding: 0.25rem 1rem;
        font-size: 1rem;
        font-weight: 300;
    }

    .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--white);
    }

    .dropdown-divider {
        border-color: rgba(255, 255, 255, 0.1);
    }

    .nav-link.dropdown-toggle {
        justify-content: center;
        height: unset !important;
    }
}
