/**
 * VEYSU - Ana Stil Dosyası
 * Birebir kopya tasarım
 */

/* ========================================
   TEMEL AYARLAR
   ======================================== */
:root {
    --gold: #FFD96D;
    --gold-light: #FFE39A;
    --gold-dark: #E6C35A;
    --dark: #1A1A1A;
    --dark-light: #2D2D2D;
    --white: #FFFFFF;
    --gray: #F5F5F5;
    --text-gray: #666666;
    --text-dark: #333333;
    --footer-bg: #111111;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   HEADER
   ======================================== */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 8px 0;
}

.navbar {
    padding: 0;
}

.navbar-brand {
    padding: 0;
}

.logo-img {
    height: 55px;
    width: auto;
}

.navbar-collapse {
    justify-content: center;
}

.navbar-nav {
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.nav-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark) !important;
    padding: 10px 16px !important;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

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

/* ========================================
   HERO BÖLÜMÜ
   ======================================== */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-subtitle {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 400;
}

/* ========================================
   SAYFA İÇERİĞİ
   ======================================== */
.page-section {
    padding: 70px 0;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.page-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.content-text {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-dark);
}

.content-text p {
    margin-bottom: 20px;
}

/* ========================================
   ANASAYFA ÖZEL
   ======================================== */

/* Slider */
.home-hero-slider {
    position: relative;
    height: 800px;
    max-height: 800px;
    overflow: hidden;
    background: var(--dark);
}

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

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    text-align: left;
}

.slider-title {
    color: var(--white);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slider-subtitle {
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0;
}

.home-hero-slider .carousel-indicators {
    bottom: 30px;
    z-index: 3;
}

.home-hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    border: none;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.home-hero-slider .carousel-indicators button.active {
    background-color: var(--gold);
    width: 35px;
    border-radius: 6px;
}

.home-hero-slider .carousel-control-prev,
.home-hero-slider .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    backdrop-filter: blur(4px);
    z-index: 3;
}

.home-hero-slider .carousel-control-prev:hover,
.home-hero-slider .carousel-control-next:hover {
    background: rgba(200, 164, 92, 0.25);
}

/* Hakkımızda + Sektörler */
.home-about-sectors {
    padding: 80px 0;
    background: var(--white);
}

.home-about-box {
    background: var(--gray);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-about-box h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: left;
}

.home-about-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: justify;
}

.home-about-text p {
    margin-bottom: 12px;
}

.home-about-text p:last-child {
    margin-bottom: 0;
}

/* Anasayfa Sektör Kartları */
.home-sector-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    min-height: 320px;
}

.home-sector-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.home-sector-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.home-sector-card:hover img {
    transform: scale(1.08);
}

.home-sector-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: var(--white);
    z-index: 2;
}

.home-sector-overlay h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-sector-overlay h3::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 8px solid var(--gold);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.sector-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 320px;
    display: block;
}

.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

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

.sector-card:hover img {
    transform: scale(1.08);
}

.sector-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: var(--white);
}

.sector-overlay h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sector-overlay h3::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 8px solid var(--gold);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* Lojistik Bölümü */
.logistics-home {
    padding: 0;
    background: var(--white);
}

.logistics-split-row {
    border-radius: 0;
    overflow: hidden;
}

.logistics-image-wrap {
    position: relative;
    height: 100%;
    min-height: 520px;
    overflow: hidden;
}

.logistics-image-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logistics-image-caption {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 2;
    color: var(--white);
}

.logistics-caption-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    opacity: 0.9;
}

.logistics-image-caption h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.logistics-content {
    background: var(--gold);
    color: var(--dark);
    padding: 60px 45px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logistics-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark);
}

.logistics-text {
    font-size: 15px;
    line-height: 1.9;
    color: var(--dark);
}

.logistics-text p {
    margin-bottom: 15px;
}

.logistics-text p:last-child {
    margin-bottom: 0;
}

.logistics-content .btn-dark {
    background: var(--dark);
    color: var(--white);
    border: none;
    padding: 12px 35px;
    border-radius: 8px;
    font-weight: 600;
    align-self: flex-start;
    transition: all 0.3s;
}

.logistics-content .btn-dark:hover {
    background: var(--white);
    color: var(--dark);
}

/* ========================================
   HAKKIMIZDA SAYFASI
   ======================================== */
.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.partner-logos img {
    max-height: 60px;
    width: auto;
}

/* ========================================
   İÇECEK SAYFASI
   ======================================== */
.product-showcase {
    text-align: center;
    padding: 40px 0;
}

.product-showcase img {
    max-height: 350px;
    margin: 0 15px;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--white);
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(200, 164, 92, 0.3);
}

/* ========================================
   İLETİŞİM SAYFASI
   ======================================== */
.contact-info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.contact-info-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.contact-info-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.contact-item-inline {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-item-inline i {
    color: var(--gold);
    font-size: 18px;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.contact-item-inline .label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.contact-item-inline a,
.contact-item-inline span {
    font-size: 14px;
    color: var(--text-dark);
}

.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.contact-form-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form-card h4 i {
    color: var(--gold);
}

.form-control {
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 164, 92, 0.1);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--white);
    border: none;
    padding: 12px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 164, 92, 0.35);
    color: var(--white);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-top: 30px;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* ========================================
   FOOTER
   ======================================== */
.main-footer {
    background: var(--footer-bg);
    color: var(--white);
    padding: 70px 0 0;
}

.footer-content {
    padding-bottom: 50px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

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

.footer-about-text {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact .row {
    --bs-gutter-x: 15px;
}

.footer-contact .contact-item {
    margin-bottom: 15px;
}

.footer-contact .contact-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.footer-contact a,
.footer-contact span {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    display: block;
}

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

.footer-map {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.footer-map iframe {
    width: 100%;
    height: 150px;
    border: none;
    filter: grayscale(0.3);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.map-link:hover {
    color: var(--gold);
}

.copyright-bar {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}

.copyright-text {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.webpiri-link {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
}

.webpiri-link:hover {
    color: var(--gold);
}

/* ========================================
   KAYAN İLETİŞİM DRAWER
   ======================================== */
.contact-drawer {
    position: fixed;
    bottom: 0;
    right: 25px;
    width: 380px;
    max-width: calc(100% - 50px);
    background: var(--white);
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
    z-index: 1001;
    transform: translateY(110%);
    transition: transform 0.35s ease;
}

.contact-drawer.open {
    transform: translateY(0);
}

.contact-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--white);
    border-radius: 16px 16px 0 0;
}

.contact-drawer-header h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.contact-drawer-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.contact-drawer-close:hover {
    background: rgba(255,255,255,0.2);
}

.contact-drawer-body {
    padding: 22px;
}

.contact-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.contact-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   HIZLI ERİŞİM BUTONU
   ======================================== */
.quick-access-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(200, 164, 92, 0.4);
    z-index: 999;
    transition: all 0.3s;
}

.quick-access-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 164, 92, 0.5);
    color: var(--white);
}

.quick-access-btn i {
    font-size: 16px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991px) {
    .logo-img {
        height: 45px;
    }
    
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        margin-top: 15px;
        justify-content: center;
    }
    
    .navbar-collapse.show .navbar-nav {
        align-items: center;
        width: 100%;
    }
    
    .nav-link {
        padding: 12px 0 !important;
        border-bottom: 1px solid #eee;
        text-align: center;
        width: 100%;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .home-hero-slider {
        height: 500px;
    }
    
    .slider-title {
        font-size: 2rem;
    }
    
    .slider-subtitle {
        font-size: 1rem;
    }
    
    .home-hero-slider .carousel-control-prev,
    .home-hero-slider .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .page-section {
        padding: 50px 0;
    }
    
    .sector-card {
        height: 250px;
        margin-bottom: 20px;
    }
    
    .home-sector-card {
        min-height: 260px;
        margin-bottom: 20px;
    }
    
    .home-about-box {
        margin-bottom: 20px;
    }
    
    .logistics-image-wrap {
        min-height: 360px;
    }
    
    .logistics-image-caption {
        bottom: 25px;
        left: 25px;
        right: 25px;
    }
    
    .logistics-image-caption h3 {
        font-size: 1.5rem;
    }
    
    .logistics-content {
        padding: 40px 30px;
    }
    
    .logistics-content h2 {
        font-size: 1.7rem;
    }
    
    .footer-about-text {
        max-width: 100%;
    }
    
    .contact-drawer {
        right: 15px;
        width: calc(100% - 30px);
        max-width: none;
    }
    
    .quick-access-btn .quick-label {
        display: none;
    }
    
    .quick-access-btn {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .home-hero-slider {
        height: 420px;
    }
    
    .slider-title {
        font-size: 1.6rem;
    }
    
    .page-title {
        font-size: 1.6rem;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 25px;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-title {
        margin-top: 30px;
    }
    
    .copyright-bar .text-md-end {
        text-align: center !important;
        margin-top: 10px;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ========================================
   KENAR YUMUŞATMA KALDIRMA
   ======================================== */
* {
    border-radius: 0 !important;
}

/* ========================================
   SLIDER OKLARINI KALDIR
   ======================================== */
.home-hero-slider .carousel-control-prev,
.home-hero-slider .carousel-control-next {
    display: none !important;
}

/* ========================================
   HAKKIMIZDA ALANI DÜZENLEMELERİ
   ======================================== */
.home-about-box {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    align-items: flex-start !important;
}

.home-about-box .btn-gold {
    background: transparent !important;
    color: var(--text-dark) !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-weight: 600;
    text-align: left;
    display: inline-block;
}

.home-about-box .btn-gold:hover {
    background: transparent !important;
    color: var(--gold-dark) !important;
    transform: none !important;
    box-shadow: none !important;
}

/* ========================================
   GOLD RENK İYİLEŞTİRMELERİ (#FFD96D)
   ======================================== */
.btn-gold {
    background: var(--gold) !important;
    color: var(--dark) !important;
}

.btn-gold:hover {
    background: var(--gold-dark) !important;
    color: var(--dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 195, 90, 0.4);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-dark) !important;
}

.hero-subtitle,
.slider-subtitle {
    color: var(--gold) !important;
}

.sector-overlay h3::before,
.home-sector-overlay h3::before {
    border-left-color: var(--gold) !important;
}

.social-links a:hover,
.footer-links a:hover,
.footer-contact a:hover,
.map-link:hover,
.webpiri-link:hover,
.contact-item-inline i {
    color: var(--gold) !important;
}

.quick-access-btn {
    background: var(--gold) !important;
    color: var(--dark) !important;
}

.quick-access-btn:hover {
    background: var(--gold-dark) !important;
    color: var(--dark) !important;
}

.contact-drawer-header {
    background: var(--gold) !important;
    color: var(--dark) !important;
}

.contact-drawer-close {
    color: var(--dark) !important;
}

.contact-drawer-close:hover {
    background: rgba(0,0,0,0.1) !important;
}

.logistics-content {
    background: var(--gold) !important;
    color: var(--dark) !important;
    padding: 80px 60px !important;
}

.logistics-image-wrap {
    min-height: 600px !important;
}

.logistics-image-caption {
    bottom: 60px !important;
    left: 60px !important;
    right: 60px !important;
}

.logistics-image-caption h3 {
    font-size: 2.5rem !important;
}

@media (max-width: 991px) {
    .logistics-content {
        padding: 50px 30px !important;
    }
    
    .logistics-image-wrap {
        min-height: 400px !important;
    }
    
    .logistics-image-caption {
        bottom: 30px !important;
        left: 30px !important;
        right: 30px !important;
    }
    
    .logistics-image-caption h3 {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 767px) {
    .logistics-content {
        padding: 40px 20px !important;
    }
    
    .logistics-image-wrap {
        min-height: 300px !important;
    }
    
    .logistics-image-caption {
        bottom: 20px !important;
        left: 20px !important;
        right: 20px !important;
    }
    
    .logistics-image-caption h3 {
        font-size: 1.4rem !important;
    }
}

.logistics-content .btn-dark {
    background: var(--dark) !important;
    color: var(--white) !important;
}

.logistics-content .btn-dark:hover {
    background: var(--white) !important;
    color: var(--dark) !important;
}

.home-hero-slider .carousel-indicators button.active {
    background-color: var(--gold) !important;
}

.home-hero-slider .carousel-control-prev:hover,
.home-hero-slider .carousel-control-next:hover {
    background: rgba(255, 217, 109, 0.3) !important;
}
