/* Ana Stil Dosyası */

:root {
    --primary: #ff6b00;
    --primary-dark: #e65a00;
    --primary-light: #ff8c33;
    --primary-lighter: #ffe0cc;
    --secondary: #343a40;
    --secondary-light: #4f5a63;
    --light-orange: rgba(255, 107, 0, 0.08);
    --light-orange-hover: rgba(255, 107, 0, 0.12);
    --light-gray: #f8f9fa;
    --dark-gray: #495057;
    --white: #ffffff;
    --black: #212529;
    --border-color: #dee2e6;
    --shadow-sm: 0 .125rem .25rem rgba(0,0,0,.05);
    --shadow: 0 .25rem .5rem rgba(0,0,0,.08);
    --shadow-lg: 0 .5rem 1rem rgba(0,0,0,.1);
    --border-radius: 6px;
    --border-radius-lg: 8px;
    --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    --transition-base: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-dark));
    --gradient-light: linear-gradient(135deg, #fff, var(--light-orange));
    --gradient-gray: linear-gradient(135deg, var(--light-gray), #e9ecef);
    
    /* Font ağırlıkları için yeni değişkenler */
    --font-thin: 300;
    --font-regular: 400; 
    --font-medium: 500;
    --font-semibold: 500; /* Daha ince görünüm için 600 yerine 500 kullanılıyor */
    --font-bold: 600; /* Daha ince görünüm için 700 yerine 600 kullanılıyor */
    
    /* Sidebar */
    --sidebar-width: 280px;
    --sidebar-z-index: 1050;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: #f8f9fa;
    overflow-x: hidden;
    font-size: 14px;
    font-weight: var(--font-regular);
    letter-spacing: 0.2px;
}

/* Sidebar açıkken body durumu */
body.sidebar-open {
    overflow: hidden;
}

/* Koyu arka plana sahip öğelerin metin rengi beyaz olacak */
.bg-dark {
    color: var(--white) !important;
}

.bg-dark * {
    color: var(--white) !important;
}

/* Map Animation */
.map-animation-container {
    position: relative;
    width: 100%;
    height: 380px;
    background-color: #f4f7fa;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border: 1px solid #e5e8ed;
    margin-top: 10px;
}

/* Harita Animasyonu Mobil Stiller */
@media (max-width: 767.98px) {
    .map-animation-container {
        height: 280px;
        margin-bottom: 20px;
    }
    
    .center-pin i {
        font-size: 32px;
    }
    
    .circle-pin i {
        font-size: 20px;
    }
    
    .map-circle {
        width: 180px;
        height: 180px;
    }
    
    .circle-pins-container {
        width: 180px;
        height: 180px;
    }
    
    .map-controls {
        right: 10px;
        bottom: 10px;
    }
    
    .map-scale {
        left: 10px;
        bottom: 10px;
    }
}

@media (max-width: 575.98px) {
    .map-animation-container {
        height: 220px;
    }
    
    .map-circle {
        width: 150px;
        height: 150px;
    }
    
    .circle-pins-container {
        width: 150px;
        height: 150px;
    }
    
    .center-pin i {
        font-size: 28px;
    }
    
    .circle-pin i {
        font-size: 18px;
    }
}

.map-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/maps.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.95;
    animation: mapPan 30s infinite alternate ease-in-out;
}

.map-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(200, 222, 255, 0.4) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(200, 222, 255, 0.4) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
}

.map-island1 {
    position: absolute;
    top: 30%;
    left: 40%;
    width: 180px;
    height: 120px;
    background-color: #99ccff;
    border: 1px solid #66b3ff;
    border-radius: 50%;
    transform: rotate(25deg);
    z-index: 1;
}

.map-island2 {
    position: absolute;
    top: 55%;
    left: 25%;
    width: 120px;
    height: 80px;
    background-color: #99ccff;
    border: 1px solid #66b3ff;
    border-radius: 40%;
    transform: rotate(-15deg);
    z-index: 1;
}

.map-island3 {
    position: absolute;
    top: 40%;
    left: 65%;
    width: 100px;
    height: 60px;
    background-color: #99ccff;
    border: 1px solid #66b3ff;
    border-radius: 35%;
    transform: rotate(10deg);
    z-index: 1;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 20%, rgba(255,255,255,0) 80%, rgba(255,255,255,0.4) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Harita Çemberi */
.map-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 220px;
    border: 2px dashed rgba(255, 107, 0, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    animation: rotateCircle 60s linear infinite;
}

@keyframes rotateCircle {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Merkez Pin Stili */
.center-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    z-index: 10;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transform-origin: bottom center;
}

.center-pin:before {
    content: "";
    display: block;
    position: absolute;
    width: 16px;
    height: 6px;
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scale(1);
    opacity: 0.7;
    filter: blur(2px);
}

.center-pin i {
    color: #4285F4;
    font-size: 38px;
    position: absolute;
    top: 0;
    left: 15px;
    transform: translate(-50%, -100%);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.center-pin:hover i {
    transform: translate(-50%, -100%) scale(1.3);
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.2));
}

.center-pin-pulse {
    position: absolute;
    top: 0;
    left: 15px;
    width: 28px;
    height: 28px;
    background-color: rgba(66, 133, 244, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: centerPulse 2.5s infinite;
}

@keyframes centerPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    70% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(3.5);
        opacity: 0;
    }
}

/* Çember Pinleri Konteyner */
.circle-pins-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 220px;
    transform: translate(-50%, -50%);
    z-index: 5;
}

/* Çember Pin Stilleri */
.circle-pin {
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 10;
    opacity: 0;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transform-origin: bottom center;
}

.circle-pin:before {
    content: "";
    display: block;
    position: absolute;
    width: 12px;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    opacity: 0.7;
    animation: shadowGrow 0.3s forwards;
    animation-delay: inherit;
    filter: blur(2px);
}

.circle-pin i {
    color: var(--primary);
    font-size: 24px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -100%);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.circle-pin:hover i {
    color: var(--primary-dark);
    transform: translate(-50%, -100%) scale(1.3);
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.2));
}

/* Çember pinlerin konumları */
.circle-pin.pin-1 {
    top: 0%;
    left: 50%;
    animation: dropPin 0.8s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, bounce 4s 0.8s infinite;
}

.circle-pin.pin-2 {
    top: 14.6%;
    left: 85.4%;
    animation: dropPin 0.8s 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, bounce 4s 1s infinite;
}

.circle-pin.pin-3 {
    top: 50%;
    left: 100%;
    animation: dropPin 0.8s 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, bounce 4s 1.2s infinite;
}

.circle-pin.pin-4 {
    top: 85.4%;
    left: 85.4%;
    animation: dropPin 0.8s 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, bounce 4s 1.4s infinite;
}

.circle-pin.pin-5 {
    top: 100%;
    left: 50%;
    animation: dropPin 0.8s 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, bounce 4s 1.6s infinite;
}

.circle-pin.pin-6 {
    top: 85.4%;
    left: 14.6%;
    animation: dropPin 0.8s 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, bounce 4s 1.8s infinite;
}

.circle-pin.pin-7 {
    top: 50%;
    left: 0%;
    animation: dropPin 0.8s 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, bounce 4s 2s infinite;
}

.circle-pin.pin-8 {
    top: 14.6%;
    left: 14.6%;
    animation: dropPin 0.8s 1.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, bounce 4s 2.2s infinite;
}

/* Merkez pin bilgi kutusu */
.center-pin-info {
    position: absolute;
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    width: 140px;
    font-size: 12px;
    z-index: 20;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0,0,0,0.05);
    animation: fadeInInfo 0.5s 2s forwards;
}

@keyframes fadeInInfo {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.center-pin:hover ~ .center-pin-info {
    opacity: 1;
}

.center-pin-info:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid white;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.1));
}

/* Pin Info Popup */
.pin-info {
    position: absolute;
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    width: 140px;
    font-size: 12px;
    z-index: 20;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.pin-info-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.pin-info-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 4px;
}

.pin-info-text {
    color: var(--dark-gray);
    margin-bottom: 0;
    line-height: 1.4;
}

.pin-info:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid white;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.1));
}

/* Search & UI Elements */
.search-result {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    height: 42px;
    width: 75%;
    background-color: white;
    border-radius: 24px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    overflow: hidden;
    animation: fadeIn 0.6s 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    border: 1px solid #e9ecef;
    z-index: 15;
}

.search-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.search-bar {
    flex: 1;
    height: 10px;
    background: linear-gradient(90deg, var(--primary-lighter) 30%, #f0f0f0 30%);
    margin-right: 15px;
    border-radius: 5px;
    animation: searchProgress 2.5s 2s ease-in-out forwards;
    background-size: 300% 100%;
    background-position: 100% 0;
}

@keyframes searchProgress {
    0% {
        background-position: 100% 0;
    }
    30% {
        background-position: 70% 0;
    }
    60% {
        background-position: 30% 0;
    }
    80% {
        background-position: 10% 0;
    }
    100% {
        background-position: 0 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Map UI Controls */
.map-controls {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: fadeInRight 0.7s 1.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.map-control-button {
    width: 36px;
    height: 36px;
    background-color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    color: var(--dark-gray);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.map-control-button:hover {
    color: var(--primary);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
}

.zoom-divider {
    width: 20px;
    height: 1px;
    background-color: #e9ecef;
    margin: 0 auto;
}

/* Map Scale */
.map-scale {
    position: absolute;
    left: 15px;
    bottom: 15px;
    height: 4px;
    width: 80px;
    background-color: var(--primary);
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 10px;
    color: var(--dark-gray);
    opacity: 0;
    animation: fadeInUp 0.7s 2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    border-radius: 2px;
}

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

.map-scale:before,
.map-scale:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 8px;
    background-color: var(--primary);
    bottom: 0;
}

.map-scale:before {
    left: 0;
}

.map-scale:after {
    right: 0;
}

.map-scale-text {
    position: absolute;
    top: -16px;
    right: 0;
    font-weight: 600;
    color: var(--dark-gray);
    background-color: rgba(255,255,255,0.8);
    padding: 2px 5px;
    border-radius: 3px;
}

/* Map Route Visualization */
.map-route {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.route-line {
    position: absolute;
    height: 3px;
    background-color: rgba(255, 107, 0, 0.6);
    border-radius: 3px;
    transform-origin: 0 50%;
    opacity: 0;
    animation: drawRoute 1.2s ease forwards;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    background: linear-gradient(90deg, rgba(255, 107, 0, 0.8), rgba(255, 107, 0, 0.4));
}

.route-line:after {
    content: "";
    position: absolute;
    top: -2px;
    right: -2px;
    width: 7px;
    height: 7px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.route-line-1 {
    top: 30%;
    left: 22%;
    width: 120px;
    transform: rotate(45deg);
    animation-delay: 2.2s;
}

.route-line-2 {
    top: 50%;
    left: 40%;
    width: 100px;
    transform: rotate(-30deg);
    animation-delay: 2.4s;
}

.route-line-3 {
    top: 65%;
    left: 50%;
    width: 70px;
    transform: rotate(20deg);
    animation-delay: 2.6s;
}

@keyframes drawRoute {
    0% {
        opacity: 0;
        transform-origin: 0 50%;
        transform: scaleX(0) rotate(var(--rotate, 45deg));
    }
    100% {
        opacity: 1;
        transform-origin: 0 50%;
        transform: scaleX(1) rotate(var(--rotate, 45deg));
    }
}

/* Genel Başlık Stilleri - Tüm Sitede Tutarlı Tasarım */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-medium);
    letter-spacing: 0.3px;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.4;
}

h1 {
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 0.75rem;
    font-weight: var(--font-medium);
}

h1:not(.display-4):not([class*="section"]):after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

h2 {
    font-size: 1.5rem;
    font-weight: var(--font-medium);
}

h3 {
    font-size: 1.3rem;
    font-weight: var(--font-medium);
}

h4 {
    font-size: 1.1rem;
    font-weight: var(--font-medium);
}

h5 {
    font-size: 0.95rem;
    font-weight: var(--font-medium);
}

h6 {
    font-size: 0.85rem;
    font-weight: var(--font-medium);
}

.display-4 {
    font-size: 1.8rem;
    font-weight: var(--font-medium);
    letter-spacing: -0.2px;
    text-align: center;
}

.display-4:after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: var(--primary);
    margin: 0.7rem auto 1.5rem;
    border-radius: 2px;
}

.section-title {
    position: relative;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: var(--font-medium);
    letter-spacing: 0.2px;
}

.section-title:after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: var(--primary);
    margin: 0.7rem auto 0;
    border-radius: 2px;
}

/* Kart Başlıkları */
.card-title, .card-header .title {
    font-size: 1.1rem;
    font-weight: var(--font-medium);
    margin-bottom: 1rem;
    letter-spacing: 0.2px;
}

.card-title.h5 {
    font-size: 1rem;
    font-weight: var(--font-medium);
}

/* Özellik Kartlarındaki Başlıklar */
.feature-card h3 {
    font-size: 1rem;
    font-weight: var(--font-medium);
    letter-spacing: 0.2px;
    margin-bottom: 0.8rem;
    text-transform: none;
}

/* Jumbotron Başlıkları */
.jumbotron h1 {
    font-weight: var(--font-medium);
    font-size: 2rem;
    letter-spacing: -0.2px;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--black);
    padding-bottom: 0;
}

.jumbotron h1:after {
    display: none;
}

.jumbotron h1 span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

/* Diğer Özel Başlıklar */
.testimonial-card .customer-name,
.package-card .card-header h3 {
    font-size: 1rem;
    font-weight: var(--font-medium);
    letter-spacing: 0.2px;
    margin-bottom: 0;
}

/* Butonlar */
.btn {
    border-radius: 4px;
    padding: 8px 16px;
    font-weight: var(--font-medium);
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.btn:before {
    display: none;
}

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

.btn-primary:hover, .btn-primary:focus {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline-primary {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-lg {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn .icon-right {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn:hover .icon-right {
    transform: translateX(3px);
}

.btn-cta {
    position: relative;
    background: var(--primary);
    color: white;
    border: none;
}

/* Card Headers */
.card-header h1, 
.card-header h2, 
.card-header h3, 
.card-header h4, 
.card-header h5, 
.card-header h6 {
    font-weight: var(--font-medium);
    margin-bottom: 0;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

/* List Item Titles */
.list-group-item {
    font-weight: var(--font-regular);
}

.list-group-item strong,
.list-group-item b {
    font-weight: var(--font-medium);
}

/* Table Headers */
th {
    font-weight: var(--font-medium);
}

/* Strong ve Bold elementler */
strong, 
b {
    font-weight: var(--font-medium);
}

/* Form Labels */
label {
    font-weight: var(--font-regular);
}

/* Font ağırlıklarına ilişkin yardımcı sınıflar */
.font-weight-bold {
    font-weight: var(--font-medium) !important;
}

.font-weight-bolder {
    font-weight: var(--font-semibold) !important;
}

.font-weight-normal {
    font-weight: var(--font-regular) !important;
}

.font-weight-light {
    font-weight: var(--font-thin) !important;
}

/* Sipariş Detay Sayfası Özel Stilleri */
.order-detail-label {
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin-bottom: 8px;
    font-weight: var(--font-regular);
}

.order-detail-value {
    font-size: 1rem;
    font-weight: var(--font-medium);
    color: var(--black);
}

/* Ödeme Sayfası Metinleri */
.payment-method-label {
    font-weight: var(--font-regular);
}

/* Sepet ve Siparişlerdeki Fiyat/Tutar Gösterimi */
.price, 
.total-price,
.total-amount {
    font-weight: var(--font-medium);
}

/* Navigasyon Menüsü */
.nav-link.active {
    font-weight: var(--font-medium);
}

/* Dropdown Menüsü */
.dropdown-item {
    font-weight: var(--font-regular);
}

/* Badge ve Etiketler */
.badge {
    font-weight: var(--font-regular);
}

/* Alert Başlıkları */
.alert-heading {
    font-weight: var(--font-medium);
}

/* Footer Başlıkları */
footer h5 {
    font-weight: var(--font-medium);
}

/* Modal Başlık ve İçerikleri */
.modal-title {
    font-weight: var(--font-medium);
}

.modal-body h6 {
    font-weight: var(--font-medium);
}

/* Accordion Başlıkları */
.accordion .btn-link {
    font-weight: var(--font-regular);
}

/* Kart başlıkları */
.card-header {
    font-weight: var(--font-medium);
}

.card-header h5 {
    font-weight: var(--font-medium);
}

/* Fatura Bilgileri özelinde */
.card-header .mb-0 {
    font-weight: var(--font-medium);
    letter-spacing: 0.2px;
}

/* Premium Navbar Tasarımı */
.navbar {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-bottom: 1px solid rgba(230, 230, 230, 0.3);
}

.navbar:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255, 107, 0, 0) 0%, 
        rgba(255, 107, 0, 0.2) 50%, 
        rgba(255, 107, 0, 0) 100%);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.98);
}

.navbar-brand {
    font-weight: 500;
    font-size: 1.4rem;
    color: var(--black);
    padding: 0;
    transition: all 0.3s ease;
    letter-spacing: -0.2px;
}

.navbar-brand:hover {
    transform: translateY(-1px);
    color: var(--primary);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.nav-item {
    margin: 0 2px;
    position: relative;
}

.nav-link {
    font-weight: 400;
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem !important;
    color: var(--secondary);
    letter-spacing: 0.2px;
    position: relative;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.nav-link:before {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 8px;
    width: calc(100% - 16px);
    height: 5px;
    background: var(--primary-lighter);
    opacity: 0;
    border-radius: 4px;
    transform: scaleX(0.5);
    transform-origin: center;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    z-index: -1;
}

.nav-link:hover, 
.nav-link.active {
    color: var(--black) !important;
    transform: translateY(-1px);
}

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

.nav-link.active {
    font-weight: 500;
}

.nav-link.active:before {
    background: var(--primary-lighter);
    height: 6px;
}

.navbar-toggler {
    border: none;
    padding: 0;
    width: 38px;
    height: 38px;
    position: relative;
    background: transparent;
    transition: all 0.3s ease;
}

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

.navbar-toggler span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary);
    position: absolute;
    left: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.navbar-toggler span:nth-child(1) {
    top: 13px;
}

.navbar-toggler span:nth-child(2) {
    top: 19px;
    width: 18px;
}

.navbar-toggler span:nth-child(3) {
    top: 25px;
}

.navbar-toggler:hover span {
    background: var(--primary);
}

.navbar-toggler:hover span:nth-child(2) {
    width: 24px;
}

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

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

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

.navbar .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    margin-left: 8px;
    border-radius: 6px;
    transition: all 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.15);
}

.navbar .btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    transition: all 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.navbar .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 107, 0, 0.2);
}

.navbar .btn:hover:before {
    opacity: 0.8;
}

.navbar .dropdown-menu {
    margin-top: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 6px;
    padding: 6px;
    min-width: 13rem;
    animation: dropdownFadeIn 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-origin: top center;
    overflow: hidden;
}

.navbar .dropdown-menu:before {
    content: '';
    position: absolute;
    top: -6px;
    right: 25px;
    width: 10px;
    height: 10px;
    background: white;
    border-top: 1px solid rgba(230, 230, 230, 0.3);
    border-left: 1px solid rgba(230, 230, 230, 0.3);
    transform: rotate(45deg);
}

.navbar .dropdown-item {
    padding: 7px 12px;
    font-size: 0.83rem;
    font-weight: 400;
    color: var(--secondary);
    letter-spacing: 0.1px;
    border-radius: 4px;
    transition: all 0.2s ease;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
}

.navbar .dropdown-item:last-child {
    margin-bottom: 0;
}

.navbar .dropdown-item i {
    font-size: 0.9rem;
    margin-right: 8px;
    color: var(--primary);
    opacity: 0.85;
    transition: all 0.2s ease;
    width: 20px;
    text-align: center;
}

.navbar .dropdown-item:hover i {
    opacity: 1;
    transform: translateX(1px);
}

.navbar .dropdown-item:hover, 
.navbar .dropdown-item:focus {
    background-color: rgba(255, 107, 0, 0.04);
    color: var(--primary);
    transform: translateX(2px);
}

.navbar .dropdown-item.active {
    background-color: var(--primary);
    color: white;
}

.navbar .dropdown-item.active i {
    color: white;
    opacity: 1;
}

.navbar .dropdown-divider {
    border-color: rgba(0, 0, 0, 0.04);
    margin: 3px 6px;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Navbar */
@media (max-width: 991.98px) {
    .navbar {
        padding: 15px 0;
    }
    
    .navbar.scrolled {
        padding: 12px 0;
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        padding: 15px;
        margin-top: 15px;
        max-height: 80vh;
        overflow-y: auto;
        transform-origin: top center;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    
    .navbar-collapse.show {
        animation: collapseShowAnimation 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    
    .navbar-collapse.collapsing {
        animation: collapseHideAnimation 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    
    .nav-item {
        margin: 2px 0;
    }
    
    .nav-link {
        padding: 12px 15px !important;
        border-radius: 8px;
    }
    
    .nav-link:before {
        display: none;
    }
    
    .nav-link:hover, 
    .nav-link.active {
        background-color: rgba(255, 107, 0, 0.05);
        transform: none;
    }
    
    .navbar .btn {
        margin: 10px 5px;
        padding: 10px 15px;
        text-align: center;
        display: inline-block;
        width: calc(100% - 10px);
    }
    
    .navbar .dropdown-menu {
        box-shadow: none;
        animation: none;
        background: rgba(248, 249, 250, 0.5);
        margin-top: 5px;
        padding: 10px;
    }
    
    .navbar .dropdown-menu:before {
        display: none;
    }
    
    .navbar .dropdown-item {
        padding: 10px 15px;
    }
}

@keyframes collapseShowAnimation {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes collapseHideAnimation {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
    }
}

/* Ana Başlık Alanı */
.jumbotron {
    background: var(--light-gray);
    padding: 4rem 0;
    margin-bottom: 0;
    border-radius: 0;
    position: relative;
}

.jumbotron:before {
    display: none;
}

.jumbotron h1 {
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: -0.5px;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--black);
}

.jumbotron h1 span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.jumbotron h1 span:after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: rgba(255, 107, 0, 0.2);
    z-index: -1;
    border-radius: 2px;
}

.jumbotron .lead {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    max-width: 600px;
}

.jumbotron .btn {
    margin-top: 0.5rem;
}

/* Özellikler Kartları */
.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition-base);
    border: none;
    box-shadow: var(--card-shadow);
    height: 100%;
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.feature-card:before {
    display: none;
}

.feature-card .icon-container {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--light-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-base);
}

.feature-card:hover .icon-container {
    background: var(--primary);
}

.feature-card .icon-container i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition-base);
}

.feature-card:hover .icon-container i {
    color: white;
}

.feature-card p {
    color: var(--dark-gray);
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Paket Kartları */
.package-card {
    border: none;
    border-radius: var(--border-radius);
    overflow: visible !important;
    transition: var(--transition-base);
    background-color: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--card-shadow);
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.package-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.02);
    z-index: 2;
    box-shadow: var(--hover-shadow);
    margin-top: 10px;
    position: relative;
    overflow: visible !important;
}

.package-card.featured:hover {
    transform: translateY(-5px) scale(1.02);
}

.col-lg-4 {
    position: relative;
    overflow: visible !important;
}

.card.h-100.package-card.featured::before, 
.package-card.featured::before {
    content: "Çok Satan";
    position: absolute;
    top: -30px !important;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    z-index: 999 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    text-align: center;
    white-space: nowrap;
}

.package-card.featured::after {
    display: none;
}

.package-card .card-header {
    background-color: var(--white);
    border-bottom: 1px solid rgba(222, 226, 230, 0.5);
    padding: 18px 15px;
    text-align: center;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.package-card .card-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: var(--font-medium);
    letter-spacing: 0.2px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.package-card .card-body {
    padding: 1.25rem;
    flex: 1;
}

.package-card .card-footer {
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    padding: 15px;
}

.price-container {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.price {
    font-size: 2rem;
    font-weight: var(--font-medium);
    color: var(--black);
    line-height: 1;
    display: inline-block;
}

.price-suffix {
    font-size: 1.2rem;
    font-weight: var(--font-medium);
    color: var(--black);
    vertical-align: top;
    margin-left: 2px;
}

.delivery-time {
    display: inline-block;
    background: var(--light-orange);
    color: var(--primary-dark);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: var(--font-regular);
    box-shadow: none;
}

.delivery-time:hover {
    background: var(--light-orange-hover);
    color: var(--primary-dark);
    transform: none;
    box-shadow: none;
}

.features {
    list-style: none;
    padding-left: 0;
    font-size: 0.9rem;
}

.features li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.05);
    position: relative;
    padding-left: 25px;
}

.features li:last-child {
    border-bottom: none;
}

.features li i {
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 0.9rem;
}

.package-horizontal {
    position: relative;
    overflow: hidden;
}

.package-horizontal .bg-light-orange {
    position: relative;
    overflow: hidden;
}

.package-horizontal .bg-light-orange:before {
    display: none;
}

.package-horizontal .bg-light-orange h3 {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

/* Karşılaştırma Tablosu */
.comparison-table {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    background-color: var(--white);
    border: none;
    font-size: 0.85rem;
}

.comparison-table th, .comparison-table td {
    padding: 12px;
    vertical-align: middle;
    text-align: center;
    border: none;
}

.comparison-table thead th {
    background-color: var(--light-gray);
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: normal;
}

.comparison-table thead th:first-child {
    background-color: white;
    border-bottom: none;
}

.comparison-table .highlight-header {
    background: var(--primary);
    color: var(--white);
    position: relative;
}

.comparison-table .highlight-header:before {
    display: none;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: rgba(0,0,0,0.02);
}

.comparison-table tbody tr:hover {
    background-color: rgba(0,0,0,0.03);
}

.comparison-table tbody tr td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--black);
}

.comparison-table .highlight-cell {
    background-color: var(--light-orange);
    font-weight: 600;
    position: relative;
}

.comparison-table .highlight-cell:before {
    display: none;
}

/* FAQ Bölümü */
.accordion .card {
    margin-bottom: 10px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.accordion .card:hover {
    box-shadow: var(--shadow);
}

.accordion .card-header {
    padding: 0;
    background-color: var(--white);
    border-bottom: none;
}

.accordion .btn-link {
    color: var(--black);
    font-weight: 600;
    text-decoration: none;
    padding: 15px;
    width: 100%;
    text-align: left;
    position: relative;
    transition: var(--transition-base);
    font-size: 0.9rem;
}

.accordion .btn-link:hover, 
.accordion .btn-link:focus {
    text-decoration: none;
    color: var(--primary);
    background-color: rgba(0,0,0,0.01);
}

.accordion .btn-link:after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.accordion .btn-link.collapsed:after {
    transform: translateY(-50%) rotate(-90deg);
}

.accordion .card-body {
    padding: 0 15px 15px;
    line-height: 1.6;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Özel bileşenler ve yardımcı sınıflar */
.shadow-hover {
    transition: var(--transition-base);
}

.shadow-hover:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-3px);
}

/* Müşteri Yorumları */
.testimonial-card {
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--card-shadow);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.testimonial-card:before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1.3rem;
    color: var(--primary-lighter);
    opacity: 0.3;
}

.testimonial-card .card-body {
    padding: 1.5rem 1.25rem 1rem;
}

.testimonial-card .star-rating {
    margin-bottom: 0.8rem;
}

.testimonial-card .star-rating i {
    color: #ffc107;
    font-size: 0.8rem;
}

.testimonial-card .card-text {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.testimonial-card .card-footer {
    background: var(--white);
    border-top: none;
    padding: 0 1.25rem 1.25rem;
}

.testimonial-card .customer-info {
    display: flex;
    align-items: center;
}

.testimonial-card .customer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
    background-color: var(--light-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

.testimonial-card .customer-details {
    flex: 1;
}

.testimonial-card .customer-name {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.testimonial-card .customer-title {
    color: var(--dark-gray);
    font-size: 0.8rem;
}

/* CTA Bölümleri */
.cta-section {
    background: var(--primary);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    display: none;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.6rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.cta-section .btn-light {
    color: var(--primary);
    font-weight: 600;
    padding: 8px 20px;
    font-size: 0.9rem;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-box {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.cta-box:before {
    display: none;
}

.cta-box h3 {
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.cta-box .btn {
    margin-top: 0.5rem;
}

/* Footer stilleri */
footer {
    background-color: var(--secondary);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0 1rem;
    position: relative;
    font-size: 0.9rem;
}

footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
}

footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

footer ul {
    list-style: none;
    padding-left: 0;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
    position: relative;
    padding-left: 12px;
    font-size: 0.9rem;
}

footer ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.5;
    transition: var(--transition-base);
}

footer ul li a:hover {
    color: white;
    text-decoration: none;
    padding-left: 15px;
}

footer ul li a:hover:before {
    opacity: 1;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: var(--transition-base);
    font-size: 0.9rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.25rem;
    margin-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-base);
    font-size: 0.85rem;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: none;
}

/* Return to top buton */
#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    width: 40px;
    height: 40px;
    display: none;
    text-decoration: none;
    border-radius: 50%;
    box-shadow: var(--shadow);
    z-index: 100;
    text-align: center;
    line-height: 40px;
    color: white;
    font-size: 1rem;
    transition: var(--transition-base);
}

#return-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Animasyonlar */
.animate-fadeInUp {
    animation: none;
}

.animate-pulse {
    animation: none;
}

/* Responsive Ayarları */
@media (max-width: 991.98px) {
    .jumbotron h1 {
        font-size: 2rem;
    }
    
    .package-card.featured {
        transform: scale(1.02);
    }
    
    .package-card.featured:hover {
        transform: translateY(-5px) scale(1.02);
    }
    
    .comparison-table {
        font-size: 0.8rem;
    }
    
    /* Eski kodu kaldırıyoruz */
    .comparison-table .highlight-header:before {
        display: none;
    }
    
    /* Yeni önerilen etiketi için mobil görünüm */
    .recommended-tag {
        top: -25px;
        padding: 4px 15px;
        font-size: 0.7rem;
    }
}

@media (max-width: 767.98px) {
    .jumbotron {
        padding: 3rem 0;
    }
    
    .jumbotron h1 {
        font-size: 1.8rem;
    }
    
    .comparison-table th, 
    .comparison-table td {
        padding: 8px;
    }
    
    .package-card .price {
        font-size: 1.8rem;
    }
    
    .package-card .price-suffix {
        font-size: 1.1rem;
    }
    
    .package-card .card-header h3 {
        font-size: 1.2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card .icon-container {
        width: 50px;
        height: 50px;
    }
    
    .feature-card .icon-container i {
        font-size: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .card-footer {
        display: flex;
        flex-direction: column;
    }
    
    .card-footer .btn:first-child {
        margin-bottom: 0.5rem;
    }
    
    .price {
        font-size: 1.8rem;
    }
    
    .jumbotron h1 {
        font-size: 1.6rem;
    }
    
    .display-4 {
        font-size: 1.6rem;
    }
    
    .display-4:after {
        width: 40px;
        height: 3px;
    }
    
    .section-title:after {
        width: 40px;
        height: 3px;
    }
}

/* Paket Detay Sayfası Stilleri */
.container h1 {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: var(--black);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.container h1:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.card-header.bg-dark {
    background-color: var(--secondary-light) !important;
    padding: 12px 16px;
    border: none;
}

.card-header.bg-dark h5 {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.card-header.bg-primary {
    background: var(--primary) !important;
    border: none;
    padding: 12px 16px;
}

.card-header.bg-primary h5 {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.package-page .price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
}

.badge-success {
    background-color: #28a745;
    font-weight: 500;
    font-size: 0.75rem;
    padding: 5px 10px !important;
}

.package-page .lead {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-gray);
}

.package-page .h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.package-page .d-flex h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.package-page .d-flex p {
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin-bottom: 0;
}

.list-group-item i {
    color: var(--primary);
    font-size: 0.85rem;
}

.list-group-item {
    padding: 10px 15px;
    font-size: 0.9rem;
}

.package-page h3 {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.package-page h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.breadcrumb {
    padding: 8px 16px;
    margin-bottom: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    font-size: 1.1rem;
    line-height: 1;
    color: var(--dark-gray);
}

.breadcrumb-item a {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: var(--dark-gray);
    font-size: 0.85rem;
}

.bg-light.p-4.rounded.mb-5 {
    background-color: #f8f9fa !important;
    border-radius: 8px !important;
    padding: 2rem !important;
    box-shadow: var(--shadow-sm);
}

.bg-light.p-4.rounded.mb-5 h4 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.bg-light.p-4.rounded.mb-5 p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin-bottom: 1.25rem;
}

.package-page .sticky-top {
    top: 100px;
}

/* Kart ve Başlık Stilleri - Tüm Sayfalar İçin */
.card-header {
    padding: 12px 16px;
    border: none;
    background-color: var(--light-gray) !important;
}

.card-header h1, .card-header h2, .card-header h3, 
.card-header h4, .card-header h5, .card-header h6 {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.card-header.bg-dark {
    background-color: var(--secondary-light) !important;
}

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

.card-header.bg-light {
    background-color: var(--light-gray) !important;
}

h1.page-title {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: var(--black);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

h1.page-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Genel Stil Ayarları */
.lead {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

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

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

.bg-light-orange {
    background-color: var(--light-orange);
    transition: var(--transition-base);
}

.bg-light-orange:hover {
    background-color: var(--light-orange-hover);
}

/* Giriş ve Kayıt Sayfası Stilleri */
.auth-form {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.auth-form:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    border-radius: 4px 0 0 4px;
}

.auth-form h2 {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--black);
    position: relative;
    padding-bottom: 0.75rem;
}

.auth-form h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.auth-form .form-group {
    margin-bottom: 1.25rem;
}

.auth-form label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.auth-form .form-control {
    height: auto;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition-base);
}

.auth-form .form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 0, 0.15);
}

.auth-form .btn-primary {
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    margin-top: 0.5rem;
    transition: var(--transition-base);
}

.auth-form .btn-block {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-form hr {
    margin: 1.5rem 0;
    border-color: rgba(0,0,0,0.08);
}

.auth-form .text-center a {
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition-base);
}

.auth-form .text-center a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.auth-form .form-check-label {
    font-size: 0.85rem;
    font-weight: 400;
}

.auth-form .alert {
    border-radius: var(--border-radius);
    font-size: 0.85rem;
}

.auth-form .alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.auth-form .alert ul {
    padding-left: 1.25rem;
    margin-bottom: 0;
}

.auth-form + .card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-top: 1.5rem;
    transition: var(--transition-base);
    background-color: var(--light-gray);
}

.auth-form + .card:hover {
    box-shadow: var(--shadow);
}

.auth-form + .card .card-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--black);
}

.auth-form + .card ul li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.auth-form + .card .card-body {
    padding: 1.5rem;
}

/* Modal Stilleri */
.modal-content {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.modal-header {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    background-color: var(--light-gray);
    padding: 1rem 1.5rem;
}

.modal-header .modal-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--black);
}

.modal-body {
    padding: 1.5rem;
}

.modal-body h6 {
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.modal-body p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.modal-footer {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 1rem 1.5rem;
}

.modal-footer .btn {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    padding: 0.5rem 1.5rem;
}

/* Sepet Sayfası Stilleri */
.cart-page h1 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.cart-page h1:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.cart-table {
    border: none;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    background: white;
    margin-bottom: 2rem;
}

.cart-table thead {
    background-color: var(--light-gray);
}

.cart-table th {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 15px;
    border: none;
    color: var(--dark-gray);
    vertical-align: middle;
}

.cart-table td {
    padding: 15px;
    vertical-align: middle;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: none;
    border-left: none;
    border-right: none;
}

.cart-table tbody tr {
    transition: var(--transition-base);
}

.cart-table tbody tr:hover {
    background-color: rgba(248, 249, 250, 0.5);
}

.cart-table tfoot {
    background-color: var(--light-gray);
    font-weight: 600;
}

.cart-table tfoot td {
    border-top: 2px solid rgba(0,0,0,0.1);
    padding: 15px;
}

.cart-table .product-info {
    display: flex;
    align-items: center;
}

.cart-table .product-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: var(--light-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: var(--transition-base);
}

.cart-table .product-icon i {
    color: var(--primary);
    font-size: 1.5rem;
}

.cart-table tr:hover .product-icon {
    background: var(--primary-lighter);
    transform: scale(1.05);
}

.cart-table .product-name {
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--black);
}

.cart-table .product-link {
    font-size: 0.8rem;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-base);
}

.cart-table .product-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.cart-table .form-control {
    height: auto;
    padding: 8px 12px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: none;
    text-align: center;
    font-weight: 500;
    width: 80px;
}

.cart-table .form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 0, 0.15);
}

.cart-table .btn-danger {
    padding: 8px 12px;
    border-radius: var(--border-radius);
    background-color: rgba(220, 53, 69, 0.1);
    border: none;
    color: #dc3545;
    transition: var(--transition-base);
}

.cart-table .btn-danger:hover {
    background-color: #dc3545;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.2);
}

.cart-table .price {
    font-weight: 600;
    font-size: 1rem;
    color: var(--black);
}

.cart-table .total-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 15px;
}

.cart-actions .btn {
    border-radius: var(--border-radius);
    padding: 10px 16px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: var(--transition-base);
}

.cart-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.cart-actions .btn i {
    margin-right: 8px;
}

.cart-actions .btn-outline-primary {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.cart-actions .btn-outline-primary:hover {
    background-color: var(--primary);
    color: white;
}

.cart-actions .btn-outline-danger {
    border: 1px solid #dc3545;
    color: #dc3545;
}

.cart-actions .btn-outline-danger:hover {
    background-color: #dc3545;
    color: white;
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.2);
}

.cart-actions .btn-secondary {
    background-color: var(--secondary-light);
    border: none;
}

.cart-actions .btn-secondary:hover {
    background-color: var(--secondary);
    box-shadow: 0 4px 8px rgba(52, 58, 64, 0.2);
}

.cart-actions .btn-primary {
    background-color: var(--primary);
    border: none;
    position: relative;
    overflow: hidden;
}

.cart-actions .btn-primary:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    transition: all 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.cart-actions .btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
}

.cart-actions .btn-primary:hover:before {
    opacity: 0.8;
}

/* Boş Sepet */
.empty-cart-alert {
    background-color: rgba(248, 249, 250, 0.7);
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.empty-cart-alert .alert-heading {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--black);
}

.empty-cart-alert p {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.empty-cart-alert .btn {
    padding: 10px 20px;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: var(--border-radius);
    background: var(--primary);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.empty-cart-alert .btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    transition: all 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.empty-cart-alert .btn:hover {
    transform: translateY(-2px);
    background-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
}

.empty-cart-alert .btn:hover:before {
    opacity: 0.8;
}

/* Önerilen Paketler */
.recommended-section h3,
.featured-section h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.recommended-section h3:after,
.featured-section h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 767.98px) {
    .cart-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .cart-actions .btn {
        width: 100%;
        margin: 0 !important;
    }
    
    .cart-table th:nth-child(2),
    .cart-table td:nth-child(2) {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .cart-table {
        font-size: 0.9rem;
    }
    
    .cart-table th,
    .cart-table td {
        padding: 10px;
    }
    
    .cart-table .product-name {
        font-size: 0.9rem;
    }
    
    .cart-table .form-control {
        width: 60px;
        padding: 6px 8px;
    }
}

/* Paket Yükseltme Önerisi - Geliştirilmiş Tasarım */
.upgrade-offer {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(255, 107, 0, 0.1);
    padding: 0;
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem !important;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.upgrade-offer:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.15);
    border-color: rgba(255, 107, 0, 0.2);
}

.upgrade-offer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
}

.upgrade-offer-content {
    display: flex;
    padding: 25px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.upgrade-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
    margin-right: 20px;
}

.upgrade-icon i {
    color: white;
    font-size: 1.75rem;
}

.upgrade-info {
    flex: 1;
}

.upgrade-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black);
}

.upgrade-info p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
    line-height: 1.4;
}

.upgrade-benefits {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 18px;
    gap: 10px;
}

.benefit-item {
    display: flex;
    align-items: center;
    background-color: rgba(255, 107, 0, 0.05);
    border-radius: 6px;
    padding: 6px 12px;
    transition: all 0.2s ease;
}

.benefit-item:hover {
    background-color: rgba(255, 107, 0, 0.1);
}

.benefit-item i {
    color: var(--primary);
    font-size: 0.9rem;
    margin-right: 8px;
}

.benefit-item span {
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.upgrade-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-upgrade {
    background: var(--primary);
    color: white;
    padding: 10px 18px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 3px 10px rgba(255, 107, 0, 0.15);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-upgrade:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0) 100%);
    transition: all 0.6s ease;
}

.btn-upgrade:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.25);
    color: white;
    text-decoration: none;
}

.btn-upgrade:hover:before {
    left: 100%;
}

.btn-upgrade i {
    margin-right: 8px;
    font-size: 1rem;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-outline:hover {
    background-color: rgba(255, 107, 0, 0.05);
    transform: translateY(-2px);
    color: var(--primary-dark);
    text-decoration: none;
}

@media (max-width: 767.98px) {
    .upgrade-offer-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .upgrade-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .upgrade-benefits {
        justify-content: center;
    }
    
    .upgrade-actions {
        justify-content: center;
    }
    
    .btn-upgrade, .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

/* Profil ve Sipariş Sayfası Stilleri */
.profile-page,
.orders-page {
    font-size: 0.95rem;
}

/* Profil Sidebar */
.profile-sidebar {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    position: relative;
}

.profile-userpic {
    text-align: center;
    margin-bottom: 15px;
}

.profile-img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
    margin-bottom: 10px;
}

.profile-usertitle {
    text-align: center;
    margin-bottom: 15px;
}

.profile-usertitle-name {
    font-size: 1.1rem;
    font-weight: var(--font-medium);
    margin-bottom: 5px;
    color: var(--black);
}

.profile-usertitle-email {
    font-size: 0.85rem;
    color: var(--dark-gray);
}

.profile-usermenu {
    margin-top: 20px;
}

.profile-usermenu .nav-item {
    margin-bottom: 8px;
}

.profile-usermenu .nav-link {
    color: var(--secondary);
    border-radius: var(--border-radius);
    padding: 12px 15px;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.profile-usermenu .nav-link i {
    margin-right: 10px;
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
}

.profile-usermenu .nav-link:hover {
    background-color: rgba(255, 107, 0, 0.05);
    color: var(--primary);
    transform: translateX(3px);
}

.profile-usermenu .nav-item.active .nav-link {
    background-color: var(--primary);
    color: white !important;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.15);
}

/* Profil Sayfası */
.profile-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.profile-card .card-header {
    background-color: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 15px 20px;
}

.profile-card .card-header h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: var(--font-medium);
    color: var(--black);
    display: flex;
    align-items: center;
}

.profile-card .card-header h5 i {
    color: var(--primary);
    margin-right: 10px;
}

.profile-card .card-body {
    padding: 25px;
}

.profile-card label {
    font-weight: var(--font-regular);
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.profile-card .form-control {
    padding: 0.6rem 1rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.profile-card .form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 0, 0.1);
}

.profile-card .btn {
    padding: 10px 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.profile-card .btn i {
    margin-right: 8px;
}

/* Sipariş Sayfası */
.orders-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.orders-card .card-header {
    background-color: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 15px 20px;
}

.orders-card .card-header h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: var(--font-medium);
    color: var(--black);
    display: flex;
    align-items: center;
}

.orders-card .card-header h5 i {
    color: var(--primary);
    margin-right: 10px;
}

.orders-table {
    margin-bottom: 0;
}

.orders-table th {
    background-color: var(--light-gray);
    border: none;
    padding: 12px 15px;
    font-size: 0.85rem;
    font-weight: var(--font-medium);
    text-transform: uppercase;
    color: var(--dark-gray);
    letter-spacing: 0.5px;
}

.orders-table td {
    padding: 15px;
    vertical-align: middle;
    border: none;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.orders-table tr:hover {
    background-color: rgba(0,0,0,0.01);
}

.order-number-link {
    font-weight: var(--font-medium);
    color: var(--primary);
    text-decoration: none;
}

.order-number-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.order-status {
    display: inline-block;
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: var(--font-regular);
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-warning {
    background-color: #fff3cd;
    color: #856404;
}

.badge-info {
    background-color: #d1ecf1;
    color: #0c5460;
}

.badge-success {
    background-color: #d4edda;
    color: #155724;
}

.badge-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.no-orders {
    text-align: center;
    padding: 50px 20px;
}

.no-orders-icon {
    font-size: 3.5rem;
    color: #d1d9e6;
    margin-bottom: 20px;
}

.no-orders h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black);
}

.no-orders p {
    color: var(--dark-gray);
    margin-bottom: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.no-orders .btn {
    padding: 10px 20px;
    font-weight: 500;
}

/* Sipariş Detayı Sayfası */
.order-detail-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.order-number {
    color: var(--primary);
    margin-left: 10px;
    font-weight: 700;
}

.order-detail-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.order-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.order-detail-label {
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.order-detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
}

.total-amount {
    color: var(--primary);
    font-size: 1.15rem;
}

.order-items-table {
    margin-bottom: 0;
}

.order-items-table th {
    background-color: var(--light-gray);
    border: none;
    padding: 12px 15px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.order-items-table td {
    padding: 15px;
    vertical-align: middle;
    border: none;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.order-item-info {
    display: flex;
    align-items: center;
}

.order-item-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 8px;
    background-color: var(--light-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.order-item-icon i {
    color: var(--primary);
    font-size: 1.1rem;
}

.order-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--black);
    margin-bottom: 4px;
}

.order-item-link {
    font-size: 0.8rem;
    color: var(--primary);
    text-decoration: none;
}

.order-item-link:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

/* Responsive */
@media (max-width: 991.98px) {
    .profile-sidebar {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .order-detail-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .orders-table th:nth-child(3),
    .orders-table td:nth-child(3) {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .orders-table th:nth-child(4),
    .orders-table td:nth-child(4) {
        display: none;
    }
    
    .order-items-table th:nth-child(2),
    .order-items-table td:nth-child(2) {
        display: none;
    }
}

/* Önerilen Etiket - Tablo Dışında */
.recommended-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-dark);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.recommended-tag-arrow {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--primary-dark);
}

.comparison-table {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    background-color: var(--white);
    border: none;
    font-size: 0.85rem;
}

.comparison-table th, .comparison-table td {
    padding: 12px;
    vertical-align: middle;
    text-align: center;
    border: none;
}

.comparison-table thead th {
    background-color: var(--light-gray);
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: normal;
}

.comparison-table thead th:first-child {
    background-color: white;
    border-bottom: none;
}

.comparison-table .highlight-header {
    background: var(--primary);
    color: var(--white);
    position: relative;
}

/* Önerilen etiketi artık HTML'de olduğu için bu pseudoelement'i kaldırıyoruz */
.comparison-table .highlight-header:before {
    display: none;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: rgba(0,0,0,0.02);
}

.comparison-table tbody tr:hover {
    background-color: rgba(0,0,0,0.03);
}

.comparison-table tbody tr td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--black);
}

.comparison-table .highlight-cell {
    background-color: var(--light-orange);
    font-weight: 600;
    position: relative;
}

.comparison-table .highlight-cell:before {
    display: none;
}

/* Mobil Optimizasyon Genel İyileştirmeleri */
@media (max-width: 767.98px) {
    /* Genel mobil içerik ayarlamaları */
    body {
        font-size: 14px;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Mobil navigasyon geliştirmeleri */
    .navbar {
        padding: 10px 15px;
    }
    
    .navbar-brand {
        font-size: 18px;
    }
    
    /* Form elemanları ve butonlar için mobil iyileştirmeler */
    input, select, textarea {
        font-size: 16px !important; /* iOS'ta otomatik yakınlaştırmayı önlemek için */
    }
    
    .form-control {
        height: 44px;
    }
    
    textarea.form-control {
        height: auto;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    /* Mobil tablo geliştirmeleri */
    .table {
        font-size: 13px;
    }
    
    .table td, .table th {
        padding: 8px;
    }
    
    /* Kart ve konteynırlar için mobil iyileştirmeler */
    .card {
        margin-bottom: 15px;
    }
    
    .card-body {
        padding: 15px;
    }
    
    .card-header {
        padding: 12px 15px;
    }
    
    /* Sepet sayfası */
    .cart-page .card-body {
        padding: 10px;
    }
    
    /* Ödeme sayfası */
    .iframe-container {
        -webkit-overflow-scrolling: touch; /* iOS için daha iyi kaydırma */
    }
}

/* Küçük mobil cihazlar için ek düzenlemeler */
@media (max-width: 575.98px) {
    /* Başlık boyutlarını düşür */
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    h3 {
        font-size: 18px;
    }
    
    .display-4 {
        font-size: 1.8rem;
    }
    
    /* Ödeme formları için daha küçük ayarlamalar */
    .payment-method-card {
        height: 50px;
        padding: 5px;
    }
    
    .payment-method-card .payment-icon {
        font-size: 14px;
        margin-right: 5px;
    }
    
    /* iPhone X ve üstü için güvenli alan desteği */
    @supports (padding: max(0px)) {
        .fixed-bottom,
        .mobile-sticky-footer,
        body {
            padding-bottom: max(10px, env(safe-area-inset-bottom));
        }
        
        .fixed-top,
        .sticky-top,
        .navbar {
            padding-top: max(10px, env(safe-area-inset-top));
        }
    }
    
    /* Dokunmatik hedef alanlarını artır */
    .nav-link, 
    .btn,
    .form-control,
    input[type="radio"] + label,
    input[type="checkbox"] + label {
        min-height: 44px; /* Apple'ın önerdiği minimum dokunmatik hedef boyutu */
    }
    
    /* Mobil ekranlarda iyileştirilmiş kontrast */
    .text-muted {
        color: #636c72 !important; /* Daha koyu gri, daha iyi kontrast */
    }
}

/* Mobil yönlendirme değişiklikleri için iyileştirmeler */
@media (max-width: 767.98px) and (orientation: landscape) {
    /* Yatay modda yükseklik sınırlı olduğundan düzenlemeler */
    .jumbotron {
        padding: 1rem 0;
    }
    
    .modal-dialog {
        margin: 10px auto;
    }
    
    .modal-body {
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
}

/* Destek Sistemi Tasarımı - Daha Profesyonel ve Sade Versiyon */
.support-system {
    margin-bottom: 2rem;
}

/* Ticket Kartı - Daha Sade ve Modern */
.ticket-card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 1px 15px rgba(0,0,0,0.04), 0 1px 6px rgba(0,0,0,0.04);
    transition: all 0.25s ease;
    margin-bottom: 24px;
    background-color: #ffffff;
}

.ticket-card:hover {
    box-shadow: 0 3px 20px rgba(0,0,0,0.08), 0 1px 8px rgba(0,0,0,0.06);
}

.ticket-card .card-header {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px 8px 0 0;
}

.ticket-card .card-header h5 {
    font-weight: 600;
    color: #333;
    margin: 0;
    font-size: 16px;
}

.ticket-card .card-body {
    padding: 24px;
}

/* Ticket Listesi - Minimal ve Temiz */
.ticket-list {
    margin-top: 20px;
}

.ticket-list th {
    font-weight: 600;
    color: #555;
    border-top: none;
    padding: 15px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: #f8f9fa;
}

.ticket-list td {
    padding: 16px 15px;
    vertical-align: middle;
    border-top: 1px solid #f1f1f1;
    color: #444;
}

.ticket-list tr:hover {
    background-color: #f9fafc;
}

.ticket-list .table {
    margin-bottom: 0;
    border-spacing: 0;
    border-collapse: separate;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.ticket-list .ticket-subject {
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.ticket-list .ticket-subject:hover {
    color: #007bff;
    text-decoration: none;
}

.ticket-list .time-info {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.ticket-list .btn-group .btn {
    border-radius: 4px;
    margin: 0 2px;
    box-shadow: none;
}

/* Badge Stilleri - Basit ve Minimal */
.status-badge {
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: inline-block;
}

.status-badge-open {
    background-color: rgba(52, 152, 219, 0.15);
    color: #3498db;
}

.status-badge-pending {
    background-color: rgba(243, 156, 18, 0.15);
    color: #f39c12;
}

.status-badge-answered {
    background-color: rgba(39, 174, 96, 0.15);
    color: #27ae60;
}

.status-badge-closed {
    background-color: rgba(127, 140, 141, 0.15);
    color: #7f8c8d;
}

.priority-badge {
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 500;
}

.priority-badge-low {
    background-color: rgba(39, 174, 96, 0.15);
    color: #27ae60;
}

.priority-badge-medium {
    background-color: rgba(52, 152, 219, 0.15);
    color: #3498db;
}

.priority-badge-high {
    background-color: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

/* Filtreler - Minimal Tasarım */
.ticket-filters {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
}

.ticket-filters .btn {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    margin-right: 6px;
    margin-bottom: 6px;
    border-radius: 6px;
    color: #777;
    background-color: #f8f9fa;
    box-shadow: none;
}

.ticket-filters .btn:hover {
    background-color: #f1f1f1;
}

.ticket-filters .btn.active {
    font-weight: 500;
    box-shadow: none;
}

.ticket-filters .btn-dark.active {
    background-color: #404040;
}

/* Mesaj Listesi - Modern ve Sade */
.ticket-messages {
    margin: 25px 0;
    position: relative;
}

.message-bubble {
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    position: relative;
    box-shadow: 0 1px 8px rgba(0,0,0,0.03);
    max-width: 80%;
    clear: both;
}

.message-bubble.user-message {
    background-color: #f8f9fa;
    float: left;
    border-bottom-left-radius: 0;
}

.message-bubble.admin-message {
    background-color: #f1f8ff;
    float: right;
    border-bottom-right-radius: 0;
}

.message-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 13px;
}

.message-header .sender {
    font-weight: 600;
    color: #333;
}

.message-header .time {
    color: #888;
    font-size: 12px;
}

.message-content {
    line-height: 1.5;
    color: #444;
    word-break: break-word;
    font-size: 14px;
}

.message-content p:last-child {
    margin-bottom: 0;
}

/* Ekler (Attachments) - Daha Zarif */
.attachments {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px dashed rgba(0,0,0,0.08);
}

.attachments h6 {
    color: #555;
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 600;
}

.attachment-item {
    background-color: #fff;
    border-radius: 6px;
    padding: 8px;
    margin-bottom: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.2s;
}

.attachment-item:hover {
    transform: translateY(-2px);
}

.attachment-item img {
    max-width: 100%;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.05);
}

.attachment-item .badge {
    margin-left: 5px;
    font-weight: normal;
    font-size: 10px;
    background-color: #f5f5f5;
    color: #777;
}

.attachment-item a.btn {
    white-space: normal;
    text-align: left;
    word-break: break-all;
    font-size: 12px;
    font-weight: 500;
    color: #555;
    padding: 8px 12px;
}

/* Ticket Detay - Daha Temiz */
.ticket-details {
    background-color: #f9fafc;
    padding: 18px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #3498db;
    font-size: 14px;
}

.ticket-details p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.ticket-details strong {
    color: #555;
    font-weight: 600;
    min-width: 120px;
    display: inline-block;
}

/* Cevap Formu - Sade ve Modern */
.reply-form {
    background-color: #f9fafc;
    padding: 22px;
    border-radius: 8px;
    margin-top: 25px;
    border: 1px solid rgba(0,0,0,0.05);
    clear: both;
}

.reply-form h5 {
    margin-bottom: 16px;
    color: #333;
    font-weight: 600;
    font-size: 15px;
}

.reply-form textarea {
    border-radius: 6px;
    padding: 14px;
    font-size: 14px;
    resize: vertical;
    min-height: 120px;
    border: 1px solid #e1e1e1;
    box-shadow: none;
    transition: all 0.2s;
}

.reply-form textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.15);
}

.reply-form .custom-file-label {
    padding: 8px 110px 8px 12px;
    height: auto;
    line-height: 1.5;
    border-radius: 6px;
    color: #777;
}

.reply-form .custom-file-input:focus ~ .custom-file-label {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.15);
}

/* Butonlar - Flat Modern Tasarım */
.ticket-btn {
    border-radius: 6px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.25s ease;
    box-shadow: none;
    border: none;
    text-transform: none;
    letter-spacing: 0.3px;
}

.ticket-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.06);
}

.ticket-btn-primary {
    background-color: #3498db;
    color: white;
}

.ticket-btn-primary:hover, .ticket-btn-primary:focus {
    background-color: #2980b9;
    color: white;
}

.ticket-btn-secondary {
    background-color: #f1f2f3;
    color: #555;
}

.ticket-btn-secondary:hover, .ticket-btn-secondary:focus {
    background-color: #e5e6e7;
    color: #333;
}

/* Form Elemanları - Minimalist */
.create-ticket-form .form-group label {
    font-weight: 500;
    color: #444;
    font-size: 14px;
    margin-bottom: 8px;
}

.create-ticket-form .form-control {
    border-radius: 6px;
    padding: 10px 14px;
    height: auto;
    color: #444;
    border: 1px solid #e1e1e1;
    box-shadow: none;
    transition: all 0.2s;
}

.create-ticket-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.15);
}

.create-ticket-form .custom-select {
    height: auto;
    padding: 10px 14px;
    padding-right: 30px;
    border-radius: 6px;
}

.create-ticket-form .form-text {
    font-size: 12px;
    color: #888;
}

/* Temizlik için */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* Alarmlar - Daha Sade */
.alert {
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    border: none;
}

.alert-info {
    background-color: rgba(52, 152, 219, 0.1);
    color: #2980b9;
}

.alert-warning {
    background-color: rgba(243, 156, 18, 0.1);
    color: #e67e22;
}

.alert-danger {
    background-color: rgba(231, 76, 60, 0.1);
    color: #c0392b;
}

.alert-success {
    background-color: rgba(39, 174, 96, 0.1);
    color: #27ae60;
}

/* Yeni Mesaj Göstergesi */
.new-message-indicator {
    animation: pulse 2s infinite;
    padding: 3px 6px;
    background-color: #e74c3c;
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(231, 76, 60, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

/* Mobil Responsive Ayarlar */
@media (max-width: 767.98px) {
    .message-bubble {
        max-width: 90%;
    }
    
    .ticket-card .card-body {
        padding: 15px;
    }
    
    .ticket-filters .btn {
        padding: 6px 12px;
        margin-bottom: 5px;
        font-size: 12px;
    }
    
    .reply-form, .ticket-details {
        padding: 15px;
    }
    
    .ticket-list td, 
    .ticket-list th {
        padding: 12px 10px;
    }
    
    .ticket-btn {
        padding: 8px 14px;
    }
}

/* Silinmiş Mesaj İndikasyonu */
.clearfix {
    clear: both;
    width: 100%;
    display: block;
    margin: 10px 0;
}

@keyframes shadowGrow {
    0% {
        transform: translateX(-50%) scale(0);
        opacity: 0;
    }
    60% {
        transform: translateX(-50%) scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.7;
    }
}

@keyframes dropPin {
    0% {
        opacity: 0;
        transform: translateY(-100px) scale(0.6);
    }
    50% {
        transform: translateY(15px) scale(1.2);
    }
    70% {
        transform: translateY(-8px) scale(1.05);
    }
    85% {
        transform: translateY(4px) scale(1.025);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.pin-info-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 4px;
}

@keyframes mapPan {
    0% {
        transform: scale(1) translateX(0) translateY(0);
    }
    50% {
        transform: scale(1.05) translateX(-10px) translateY(5px);
    }
    100% {
        transform: scale(1.02) translateX(5px) translateY(-8px);
    }
}

/* Sidebar Stilleri */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: calc(var(--sidebar-z-index) - 1);
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.show {
    display: block;
    opacity: 1;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: var(--sidebar-width);
    height: 100%;
    background-color: var(--white);
    z-index: var(--sidebar-z-index);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.sidebar.show {
    right: 0;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-header .navbar-brand {
    margin: 0;
}

.sidebar-close {
    font-size: 1.3rem;
    color: var(--secondary);
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    line-height: 1;
}

.sidebar-close:hover {
    color: var(--primary);
    text-decoration: none;
}

.sidebar-body {
    padding: 15px 0;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-item {
    position: relative;
}

.sidebar-item.active:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--primary);
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--dark-gray);
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: var(--font-regular);
}

.sidebar-item.active .sidebar-link {
    color: var(--primary);
    background-color: var(--light-orange);
    font-weight: var(--font-medium);
}

.sidebar-link:hover {
    background-color: var(--light-orange-hover);
    color: var(--primary);
    text-decoration: none;
}

.sidebar-link i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.sidebar-link.btn-primary {
    margin: 10px 20px;
    padding: 10px 15px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--border-radius);
    text-align: center;
    justify-content: center;
}

.sidebar-link.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.sidebar-link.btn-primary i {
    margin-right: 8px;
}

.sidebar-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 10px 0;
}

.sidebar-toggle {
    border: none;
    background: transparent;
    color: var(--secondary);
    padding: 4px 8px;
    font-size: 1rem;
    transition: color 0.3s ease;
    box-shadow: none;
}

.sidebar-toggle:hover {
    color: var(--primary);
    background-color: transparent;
    transform: none;
}

.sidebar-toggle:focus {
    box-shadow: none;
    outline: none;
}

/* Mobil Menü İçin Ek Stiller */
@media (max-width: 991.98px) {
    .navbar {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .sidebar {
        width: 85%;
        max-width: var(--sidebar-width);
    }
    
    .sidebar-item {
        font-size: 16px;
    }
    
    .sidebar-link {
        padding: 15px 20px;
    }
    
    .navbar .navbar-brand {
        margin-right: auto;
    }
}

/* iPhone X ve üstü için alt çentik (notch) uyumluluğu */
@supports (padding: max(0px)) {
    .sidebar {
        padding-bottom: env(safe-area-inset-bottom);
    }
}
