:root {
    --primary-color: #134061;
    --primary-dark: #0d2b42;
    --accent-color: #c5a059; /* Gold accent */
    --text-dark: #212529;
    --text-light: #f8f9fa;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}

.letter-spacing {
    letter-spacing: 2px;
}

/* Navbar */
.navbar {
    background-color: rgba(19, 64, 97, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 0 0.5rem;
    position: relative;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}



/* Product Cards */
.product-card {
    transition: all 0.3s ease;
    overflow: hidden;
    background: #fff;
    border-radius: 15px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.card-img-wrapper {
    overflow: hidden;
    height: 300px;
}

.card-img-top {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .card-img-top {
    transform: scale(1.1);
}

/* Swiper Section */
.route-card {
    height: 400px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.route-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.route-card:hover img {
    transform: scale(1.1);
}

.route-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.swiper-slide {
    padding: 10px;
}

/* About Section */
.about-img-wrapper img {
    width: 100%;
    height: 50%!important;
}

/* Contact Section */
#contact input::placeholder, 
#contact textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#contact input:focus, 
#contact textarea:focus {
    box-shadow: none;
    border-color: var(--accent-color) !important;
}

/* Footer */
.hover-white:hover {
    color: #fff !important;
}

.social-links a {
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent-color) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-caption {
        text-align: center;
        padding-bottom: 10vh;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
#scroll-button {
    display: inline-block;
    background-color: #00106f;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 24px !important;
    right: 35px !important;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
}

    #scroll-button::after {
        content: "\F145";
        font-family: bootstrap-icons;
        font-weight: normal;
        font-style: normal;
        font-size: 2em;
        line-height: 50px;
        color: #fff;
        text-decoration: none;
    }

    #scroll-button:hover {
        cursor: pointer;
        background-color: #021fcc;
    }

    #scroll-button:active {
        background-color: #555;
    }

    #scroll-button.show {
        opacity: 1;
        visibility: visible;
    }

/*--------------------------------------------------------------
# Whatsapp Button
--------------------------------------------------------------*/
#gb-widget-6922 > * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
    box-sizing: border-box !important;
}

.kvLxar {
    display: flex;
    margin: 7px;
    position: relative;
    -webkit-box-pack: start;
    justify-content: flex-start;
}

.gfrKEe {
    order: 1;
    position: relative;
}

.cdtqGx {
    flex-shrink: 0;
    opacity: 1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: block;
    order: 1;
    padding: 5px;
    box-sizing: border-box;
    cursor: pointer;
    overflow: hidden;
    box-shadow: rgba(136, 136, 136, 0.4) 0px 1px 7px;
    transition: all 0.5s ease 0s;
    position: relative;
    z-index: 200;
    text-decoration: none !important;
    background-color: rgb(77, 194, 71) !important;
}
/*--------------------------------------------------------------
# Whatsapp Button
--------------------------------------------------------------*/
#gb-widget-6922-phone > * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
    box-sizing: border-box !important;
}

.kvLxar-phone {
    display: flex;
    margin: 7px;
    position: relative;
    -webkit-box-pack: start;
    justify-content: flex-start;
}

.gfrKEe-phone {
    order: 1;
    position: relative;
}

.cdtqGx-phone {
    flex-shrink: 0;
    opacity: 1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: block;
    order: 1;
    padding: 5px;
    box-sizing: border-box;
    cursor: pointer;
    overflow: hidden;
    box-shadow: rgba(136, 136, 136, 0.4) 0px 1px 7px;
    transition: all 0.5s ease 0s;
    position: relative;
    z-index: 200;
    text-decoration: none !important;
    background-color: #c5a059 !important;
}

/* Mobilde sabit WhatsApp ve Telefon butonlarını gizle */
@media (max-width: 998px) {
    #gb-widget-6922,
    #gb-widget-6922-phone {
        display: none !important;
    }
}