/* =====================================================
   CELESTE ROYAL - RESPONSIVE CSS
   ===================================================== */

/* ===== TABLET (768px - 1024px) ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .booking-form-container {
        padding: 30px;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== MOBILE (max-width: 768px) ===== */
@media (max-width: 768px) {
    /* Top Bar */
    .top-bar {
        display: none; /* Mobilde top bar'ı gizle */
    }
    
    /* Header */
    .main-header {
        padding: 15px 0;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    .logo h1 {
        font-size: 22px;
    }
    
    .logo img {
        max-height: 40px;
    }
    
    .main-nav {
        display: none; /* Desktop menüyü gizle */
    }
    
    .call-now-btn {
        display: none; /* Mobilde gizle */
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hero Section */
    .hero-section {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .booking-form-container {
        padding: 25px 20px;
    }
    
    .trip-type-selector {
        flex-direction: column;
        gap: 10px;
    }
    
    .trip-type-option {
        max-width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .quick-buttons {
        grid-template-columns: 1fr;
    }
    
    /* Features */
    .features-section {
        padding: 50px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    /* About Section */
    .about-section {
        padding: 50px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-text h2 {
        font-size: 28px;
    }
    
    /* Vehicles */
    .vehicles-section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .vehicles-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-top {
        padding: 40px 0 20px;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    /* Sticky Buttons */
    .sticky-whatsapp,
    .sticky-booking {
        width: 50px;
        height: 50px;
        bottom: 20px;
        font-size: 22px;
    }
    
    .sticky-whatsapp {
        left: 20px;
    }
    
    .sticky-booking {
        right: 20px;
    }
}

/* ===== SMALL MOBILE (max-width: 480px) ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .booking-form-container {
        padding: 20px 15px;
    }
    
    .form-group input,
    .form-group select {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .btn-search {
        padding: 12px;
        font-size: 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
    
    .about-text h2,
    .section-header h2 {
        font-size: 24px;
    }
    
    .vehicle-info h3 {
        font-size: 20px;
    }
    
    .footer-widget h3 {
        font-size: 18px;
    }
}

/* ===== LANDSCAPE MODE ===== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .booking-form-container {
        max-width: 100%;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .top-bar,
    .main-header,
    .sticky-buttons,
    .footer-top,
    .footer-bottom {
        display: none;
    }
    
    .main-content {
        margin: 0;
        padding: 0;
    }
    
    * {
        background: white !important;
        color: black !important;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0000FF;
        --text-dark: #000000;
        --text-light: #333333;
        --bg-white: #FFFFFF;
        --border-color: #000000;
    }
}