/* Custom Styles for Transfer MVP */

/* Base Styles */
* {
    font-family: 'Figtree', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #000;
    zoom: 0.8;
    -moz-transform: scale(0.8);
    -moz-transform-origin: 0 0;
}

/* Firefox için alternatif */
@-moz-document url-prefix() {
    body {
        zoom: 1;
        transform: scale(0.8);
        transform-origin: top left;
        width: 125%;
    }
}

/* Scrollbar Hide Utility */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Custom Gradient */
.custom-gradient {
    background-image: linear-gradient(270deg, #fff 5%, rgba(255, 255, 255, 0.58) 58%, transparent);
}

/* Trip Type Buttons */
.trip-type-btn {
    transition: all 0.3s ease;
}

.trip-type-btn.active {
    background-color: #f9b442;
    color: #000;
}

.trip-type-btn:not(.active) {
    background-color: #e5e7eb;
    color: #374151;
}

.trip-type-btn:not(.active):hover {
    background-color: #d1d5db;
}

/* Mobile Menu Animation */
#mobile-menu-panel {
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
}

#mobile-menu-panel.open {
    transform: translateX(0);
}

/* Dropdown Menu Animation */
#business-dropdown-menu,
#language-menu {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

#business-dropdown-menu.show,
#language-menu.show {
    opacity: 1;
    transform: scale(1);
}

/* Focus Visible Styles */
*:focus-visible {
    outline: 2px solid #f9b442;
    outline-offset: 2px;
}

/* Input Focus Styles */
input:focus,
select:focus,
textarea:focus {
    border-color: #f9b442;
    ring-color: #f9b442;
}

/* Button Hover Effects */
button:hover {
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

button:active {
    transform: translateY(0);
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Loading Spinner */
.spinner {
    border: 3px solid rgba(249, 180, 66, 0.3);
    border-top-color: #f9b442;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Slide In Animation */
@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.slide-in {
    animation: slideIn 0.4s ease-out;
}

/* Custom Scrollbar for Desktop */
@media (min-width: 1024px) {
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    ::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 5px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
}

/* Print Styles */
@media print {
    header,
    footer,
    .no-print {
        display: none !important;
    }
}

/* Accessibility - High Contrast Mode */
@media (prefers-contrast: high) {
    * {
        border-color: currentColor !important;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    /* Add dark mode styles if needed */
}

/* Utility Classes */
.text-balance {
    text-wrap: balance;
}

.text-pretty {
    text-wrap: pretty;
}

/* Custom Shadow */
.shadow-trf {
    box-shadow: 0 10px 15px -3px rgba(249, 180, 66, 0.1), 0 4px 6px -2px rgba(249, 180, 66, 0.05);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #f9b442 0%, #fec76f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Image Lazy Loading Placeholder */
img[loading="lazy"] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Form Validation Styles */
input:invalid:not(:placeholder-shown),
select:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
}

input:valid:not(:placeholder-shown),
select:valid:not(:placeholder-shown),
textarea:valid:not(:placeholder-shown) {
    border-color: #10b981;
}

/* Toast Notification Styles */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    background: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast.success {
    border-left: 4px solid #10b981;
}

.toast.error {
    border-left: 4px solid #ef4444;
}

.toast.warning {
    border-left: 4px solid #f59e0b;
}

.toast.info {
    border-left: 4px solid #3b82f6;
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 0.25rem;
}

/* Badge Styles */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-primary {
    background-color: #f9b442;
    color: #000;
}

.badge-success {
    background-color: #10b981;
    color: white;
}

.badge-danger {
    background-color: #ef4444;
    color: white;
}

.badge-warning {
    background-color: #f59e0b;
    color: white;
}

.badge-info {
    background-color: #3b82f6;
    color: white;
}

/* Responsive Typography */
@media (max-width: 640px) {
    h1 {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    
    h2 {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    
    h3 {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
}

/* Safe Area Insets for Mobile */
@supports (padding: max(0px)) {
    body {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
}

/* ============================================
   HEADER / NAVBAR STYLES
   ============================================ */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

header nav {
    backdrop-filter: blur(10px);
}

/* Logo Hover Effect */
header a[title] img {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

header a[title]:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Desktop Menu Links */
header ul li a {
    position: relative;
    padding-bottom: 2px;
}

header ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #f9b442;
    transition: width 0.3s ease;
}

header ul li a:hover::after {
    width: 100%;
}

/* Mobile Menu Button Animation */
#mobile-menu-button {
    transition: transform 0.2s ease;
}

#mobile-menu-button:active {
    transform: scale(0.95);
}

/* Mobile Menu Panel Smooth Transition */
#mobile-menu-panel {
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

#mobile-menu-panel.translate-x-0 {
    transform: translateX(0);
}

/* Dropdown Menu Improvements */
#business-dropdown-menu,
#language-menu {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

#business-dropdown-menu a,
#language-menu a {
    transition: all 0.2s ease;
}

/* Account Button Hover */
header a[href*="/account"] {
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header a[href*="/account"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    color: #e5e7eb;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid #333;
}

.footer .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 4rem;
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #f9b442;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-links li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #f9b442;
}

.footer-links li a:hover {
    color: #f9b442;
    padding-left: 20px;
}

.footer-links li a:hover::before {
    opacity: 1;
    left: 0;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(249, 180, 66, 0.1);
    color: #f9b442;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-links a:hover {
    background: #f9b442;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(249, 180, 66, 0.3);
    border-color: #f9b442;
}

.social-links a svg {
    width: 20px;
    height: 20px;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    margin: 0;
    color: #6b7280;
    font-size: 0.875rem;
}

.footer-links-inline {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-links-inline a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.footer-links-inline a:hover {
    color: #f9b442;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .footer {
        padding: 3rem 0 1.5rem;
        margin-top: 2rem;
    }
    
    .footer-grid {
        gap: 2rem;
    }
    
    .footer-title {
        font-size: 1.5rem;
    }
    
    .footer-heading {
        font-size: 1rem;
    }
}

/* ============================================
   YANDEX MAPS AUTOCOMPLETE STYLES
   ============================================ */

/* Input field focus state for autocomplete */
#from:focus,
#to:focus {
    position: relative;
    z-index: 100;
}

/* Autocomplete container positioning */
.ymaps-2-1-79-suggest {
    z-index: 1000 !important;
    font-family: 'Figtree', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif !important;
}

/* Suggestion list styling */
.ymaps-2-1-79-suggest__list {
    background: white !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden !important;
    margin-top: 4px !important;
    max-height: 300px !important;
    overflow-y: auto !important;
}

/* Individual suggestion item */
.ymaps-2-1-79-suggest__item {
    padding: 12px 16px !important;
    font-size: 14px !important;
    color: #374151 !important;
    border-bottom: 1px solid #f3f4f6 !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
}

.ymaps-2-1-79-suggest__item:last-child {
    border-bottom: none !important;
}

/* Hover and selected states */
.ymaps-2-1-79-suggest__item:hover,
.ymaps-2-1-79-suggest__item_selected {
    background-color: #fef3e2 !important;
    color: #000 !important;
}

/* Icon styling */
.ymaps-2-1-79-suggest__item-icon {
    color: #f9b442 !important;
    margin-right: 8px !important;
}

/* Loading state */
.ymaps-2-1-79-suggest__loader {
    padding: 12px 16px !important;
    text-align: center !important;
    color: #9ca3af !important;
}

/* No results message */
.ymaps-2-1-79-suggest__item_empty {
    padding: 12px 16px !important;
    color: #9ca3af !important;
    font-style: italic !important;
}

/* Scrollbar for suggestion list */
.ymaps-2-1-79-suggest__list::-webkit-scrollbar {
    width: 6px;
}

.ymaps-2-1-79-suggest__list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0 12px 12px 0;
}

.ymaps-2-1-79-suggest__list::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.ymaps-2-1-79-suggest__list::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Mobile responsive adjustments */
@media (max-width: 640px) {
    .ymaps-2-1-79-suggest__list {
        max-height: 200px !important;
    }
    
    .ymaps-2-1-79-suggest__item {
        padding: 10px 14px !important;
        font-size: 13px !important;
    }
}
/* Blog Post Styles */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aspect-video {
    aspect-ratio: 16 / 9;
}

/* Blog Card Hover Effects */
article:hover {
    transform: translateY(-4px);
    transition: transform 0.3s ease;
}

/* Blog Read More Link */
article a:hover i {
    transform: translateX(4px);
    transition: transform 0.3s ease;
}

/* Blog Post Content Styles */
.blog-content {
    line-height: 1.8;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #111827;
}

.blog-content h2 {
    font-size: 2rem;
    border-bottom: 2px solid #f9b442;
    padding-bottom: 0.5rem;
}

.blog-content h3 {
    font-size: 1.5rem;
}

.blog-content p {
    margin-bottom: 1.5rem;
    color: #374151;
}

.blog-content a {
    color: #f9b442;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-content a:hover {
    color: #f39c12;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
    color: #374151;
}

.blog-content blockquote {
    border-left: 4px solid #f9b442;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #6b7280;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.blog-content code {
    background: #f3f4f6;
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    color: #ef4444;
}

.blog-content pre {
    background: #1f2937;
    color: #f3f4f6;
    padding: 1.5rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 2rem 0;
}

.blog-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.blog-content table th,
.blog-content table td {
    border: 1px solid #e5e7eb;
    padding: 0.75rem;
    text-align: left;
}

.blog-content table th {
    background: #f9fafb;
    font-weight: 600;
}

/* Prose Styles */
.prose {
    color: #374151;
    max-width: 65ch;
}

.prose-lg {
    font-size: 1.125rem;
}

.max-w-none {
    max-width: none;
}
 
 
