/* Site.css - KAS GULET */

/* Slider styles */
.slider-container {
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-item {
    min-width: 100%;
    flex-shrink: 0;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

    .dot.active {
        background: white;
        transform: scale(1.2);
    }

    .dot:hover {
        background: rgba(255, 255, 255, 0.8);
    }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Gallery hover effects */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

    .gallery-item img {
        transition: transform 0.3s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

/* Tour card hover effects */
.tour-card {
    transition: all 0.3s ease;
}

    .tour-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

/* Mobile menu styles */
#mobileMenu {
    transition: all 0.3s ease;
}

.mobile-dropdown > div {
    transition: all 0.3s ease;
}

/* Contact form styles */
.form-control:focus {
    border-color: #06b6d4;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

/* Button hover effects */
.btn-primary {
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(6, 182, 212, 0.3);
    }

/* Footer link hover */
footer a {
    transition: color 0.3s ease;
}

/* Utility classes */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bg-overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #06b6d4;
    border-radius: 5px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #0891b2;
    }

/* Loading spinner */
.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #06b6d4;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* WhatsApp Widget Styles */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.whatsapp-main-button {
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
}

    .whatsapp-main-button:hover {
        background-color: #22c55e;
        transform: scale(1.1);
    }

    .whatsapp-main-button i {
        font-size: 30px;
    }

    .whatsapp-main-button::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #25d366;
        border-radius: 50%;
        animation: pulse 2s infinite;
        z-index: -1;
    }

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.whatsapp-chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    transform-origin: bottom right;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-header {
    background: #075e54;
    color: white;
    padding: 16px;
}

.whatsapp-avatar {
    width: 40px;
    height: 40px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .whatsapp-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .whatsapp-avatar i {
        font-size: 20px;
        color: white;
    }

.whatsapp-messages {
    padding: 20px;
    background: #e5ddd5;
    min-height: 150px;
}

.whatsapp-message {
    background: white;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    position: relative;
}

    .whatsapp-message::before {
        content: '';
        position: absolute;
        top: 0;
        left: -8px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 8px 10px 0;
        border-color: transparent white transparent transparent;
    }

.whatsapp-actions {
    padding: 16px;
    background: #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.whatsapp-action-btn {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background: white;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

    .whatsapp-action-btn:hover {
        background: #25d366;
        color: white;
        border-color: #25d366;
    }

.whatsapp-start-chat {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: #25d366;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .whatsapp-start-chat:hover {
        background: #22c55e;
    }

.whatsapp-phone {
    padding: 12px;
    background: #f9f9f9;
    text-align: center;
    font-size: 14px;
    color: #666;
    border-top: 1px solid #eee;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .slider-dots {
        bottom: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-main-button {
        width: 50px;
        height: 50px;
    }

        .whatsapp-main-button i {
            font-size: 25px;
        }

    .whatsapp-chat-box {
        width: calc(100vw - 40px);
        max-width: 350px;
    }
}
