:root {
    --baymak-blue: #0055a5;
    --baymak-dark-blue: #003d7a;
    --baymak-light-blue: #e6f0fa;
    --baymak-orange: #ff6b00;
    --baymak-gray: #f8f9fa;
}

/* Navbar Stilleri */
.navbar {
    background: linear-gradient(135deg, var(--baymak-blue) 0%, var(--baymak-dark-blue) 100%) !important;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    width: 100%;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.navbar-brand {
    font-weight: 700;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    height: 45px;
    width: auto;
    margin-right: 12px;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: #e6f0fa;
    font-weight: 400;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff !important;
}

/* Buton Stilleri */
.btn-baymak {
    background-color: var(--baymak-orange);
    border-color: var(--baymak-orange);
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-baymak:hover {
    background-color: #e55a00;
    border-color: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
    color: white;
}

.btn-outline-baymak {
    border-color: var(--baymak-blue);
    color: var(--baymak-blue);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-baymak:hover {
    background-color: var(--baymak-blue);
    color: white;
    transform: translateY(-2px);
}

/* Genel Stiller */
.section-title {
    color: var(--baymak-blue);
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--baymak-orange);
}

.bg-baymak-light {
    background-color: var(--baymak-light-blue) !important;
}

.text-baymak {
    color: var(--baymak-blue) !important;
}

.text-baymak-orange {
    color: var(--baymak-orange) !important;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--baymak-dark-blue) 0%, #00264d 100%);
    color: white;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
}

/* WhatsApp Butonu */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366 0%, #128C7E 100%);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
}