:root {
    --primary-color: #2B5EAE;
    --secondary-color: #0EAAA6;
    --warning-color: #FF6B35;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
}

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

body {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 400;
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

.logo {
	height:70px;
}

.btn {
    font-weight: 500;
    border-radius: 8px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #1a3a6e;
    border-color: #1a3a6e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(43, 94, 174, 0.3);
}

.btn-warning {
    background-color: var(--warning-color);
    border-color: var(--warning-color);
    color: #fff;
}

.btn-warning:hover {
    background-color: #cc4a1e;
    border-color: #cc4a1e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-light .navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.hero-slider {
    position: relative;
}

.carousel-item {
    min-height: 100vh;
}

.carousel-bg {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.min-vh-70 {
    min-height: 70vh;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

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

.hero-features .feature-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-features .feature-box:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-size: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.quick-info {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.quick-info-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.quick-info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.badge {
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.85rem;
}

.bg-primary-subtle {
    background-color: rgba(43, 94, 174, 0.1);
}

.card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.shadow-sm {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
}

.shadow {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
}

.shadow-lg {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
}

.rounded-4 {
    border-radius: 15px !important;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a6e 100%);
    position: relative;
    overflow: hidden;
}

.process-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-card {
    transition: all 0.4s ease;
}

.service-card:hover {
    border-color: var(--primary-color) !important;
}

.service-icon {
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card, .why-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover, .why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon, .why-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon,
.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.accordion-button {
    font-weight: 500;
    padding: 1.2rem 1.5rem;
    background-color: #fff;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(43, 94, 174, 0.05);
    border-bottom: 2px solid var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
}

footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

footer a:hover {
    color: var(--primary-color) !important;
}

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    color: #fff;
}

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

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

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

.legal-content {
    font-size: 1rem;
    line-height: 1.8;
}

.legal-content h3 {
    color: var(--primary-color);
    margin-top: 2rem;
}

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .carousel-item {
        min-height: auto;
    }
    
    .min-vh-70 {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .quick-info {
        margin-top: 0;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .btn-lg {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

/* ========================================
   MOBİL STICKY HEADER FİNAL DÜZELTMELERİ
   ======================================== */

/* Navbar sabitlendiğinde body'ye padding ekleme */
body {
    padding-top: 0 !important;
}

/* Navbar için kesin pozisyonlama */
.navbar.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    width: 100%;
}

/* Mobil cihazlarda carousel yüksekliği */
@media (max-width: 991px) {
    .hero-slider .carousel-item {
        min-height: auto !important;
        height: auto !important;
    }
    
    .hero-slider .carousel-bg {
        min-height: calc(100vh - 70px) !important;
        padding: 40px 0;
    }
    
    .hero-slider .min-vh-70 {
        min-height: auto !important;
        padding: 40px 0 !important;
    }
}

@media (max-width: 767px) {
    .navbar {
        padding: 8px 0 !important;
    }
    
    .hero-slider .carousel-bg {
        min-height: calc(100vh - 65px) !important;
        padding: 30px 0;
    }
    
    .hero-slider .min-vh-70 {
        padding: 30px 0 !important;
    }
}

/* iPhone Safari için özel düzeltme */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 991px) {
        .hero-slider .carousel-item,
        .hero-slider .carousel-bg {
            min-height: calc(100vh - 70px) !important;
            min-height: calc(var(--vh, 1vh) * 100 - 70px) !important;
        }
    }
}
