/* Enhancements CSS - Additional styles */
/* This file is for minor enhancements and overrides */

/* WhatsApp Floating Button - Sadece Mobilde */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: none; /* Masaüstünde gizli */
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Mobilde göster */
@media (max-width: 768px) {
    .whatsapp-button {
        display: flex;
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
        font-size: 26px;
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.32);
    }
}

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

.whatsapp-button i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .hero {
        padding-bottom: 140px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.6rem);
        line-height: 1.08;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 32rem;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .floating-pilot {
        width: 96px;
        left: 8px;
        bottom: 0;
    }

    .pilot-help-button {
        left: 78px;
        top: 4px;
        padding: 7px 10px;
        font-size: 0.7rem;
        max-width: 140px;
        white-space: normal;
        line-height: 1.25;
    }

    .floating-pilot.scrolled .pilot-help-button {
        left: 58px;
    }

    .back-to-top {
        right: 16px;
        bottom: 78px;
    }
}

@media (max-width: 560px) {
    .pilot-help-button {
        display: none;
    }

    .page-header {
        padding-top: 120px;
    }

    .reservation-section,
    .contact-section {
        padding-bottom: 96px;
    }
}
