/* Custom Styles for Alanya Babacan Nakliyat */

/* Global Font Settings & Optimizations */
body {
    font-family: 'Open Sans', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

/* Base custom colors */
.bg-gray-850 {
    background-color: #1a202c;
}

/* Custom transitions and interactive states */
.hover-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Prevent horizontal scroll issues on smaller viewports */
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Custom Scrollbar for modern browsers */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

/* Accordion FAQs Panel transition helper */
.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-panel.active {
    max-height: 500px;
    transition: max-height 0.3s ease-in;
}

/* Hero Section overlays */
.hero-gradient {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95) 0%, rgba(17, 24, 39, 0.8) 50%, rgba(17, 24, 39, 0.6) 100%);
}

/* Card & Image hover effect */
.img-zoom {
    overflow: hidden;
}
.img-zoom img {
    transition: transform 0.5s ease;
}
.img-zoom:hover img {
    transform: scale(1.1);
}

/* Contact map lazy fade-in */
.map-iframe-container {
    background-color: #e2e8f0;
    position: relative;
    min-height: 350px;
}
.map-iframe-container.loaded iframe {
    opacity: 1;
}
.map-iframe-container iframe {
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
