/* ===================================
   RESPONSIVE STYLES
   =================================== */

/* Tablet - 768px and below */
@media (max-width: 768px) {
    /* Typography */
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .hero-subtitle,
    .section-desc {
        font-size: 16px;
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-cta {
        width: 100%;
        margin-top: 20px;
    }
    
    .nav-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Hero Section */
    .hero {
        min-height: 80vh;
        padding: 100px 0 50px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* About Section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .booking-info {
        position: static;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Zodiac */
    .zodiac-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .zodiac-card {
        padding: 20px 15px;
    }
    
    .zodiac-icon {
        font-size: 36px;
    }
    
    /* Booking */
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials */
    .testimonial-card {
        min-width: 100%;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* CTA */
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Floating Buttons */
    .whatsapp-float {
        right: 30px;
        bottom: 90px;
    }
    
    /* Sections */
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    /* Typography */
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-subtitle,
    .section-desc {
        font-size: 14px;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    /* Navigation */
    .logo {
        font-size: 20px;
    }
    
    .logo i {
        font-size: 24px;
    }
    
    .nav-wrapper {
        padding: 15px 0;
    }
    
    .nav-menu {
        width: 100%;
        right: -100%;
    }
    
    /* Hero */
    .hero-content {
        padding: 0 10px;
    }
    
    /* Service Cards */
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .service-price {
        font-size: 24px;
    }
    
    /* Zodiac */
    .zodiac-grid {
        grid-template-columns: 1fr;
    }
    
    .horoscope-filter {
        flex-direction: column;
        gap: 10px;
    }
    
    .filter-btn {
        width: 100%;
    }
    
    /* Stats */
    .stat-item {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-item h3 {
        font-size: 28px;
    }
    
    /* Feature Cards */
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .slider-controls {
        margin-top: 30px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    /* FAQ */
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 14px;
    }
    
    /* CTA */
    .cta-content h2 {
        font-size: 26px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-logo {
        font-size: 20px;
    }
    
    .footer-section h3 {
        font-size: 18px;
    }
    
    /* Floating Buttons */
    .scroll-to-top,
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 20px;
    }
    
    .scroll-to-top {
        right: 20px;
    }
    
    .whatsapp-float {
        right: 20px;
        bottom: 75px;
    }
    
    /* Sections */
    section {
        padding: 50px 0;
    }
}

/* Large Desktop - 1400px and above */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 72px;
    }
    
    .section-title {
        font-size: 54px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-buttons,
    .scroll-to-top,
    .whatsapp-float,
    .slider-controls,
    .booking-form,
    .cta-buttons {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    section {
        page-break-inside: avoid;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .stars,
    .stars2,
    .stars3 {
        animation: none;
    }
}

/* Dark Mode Support (if system prefers dark) */
@media (prefers-color-scheme: dark) {
    /* Already dark by default */
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --border-color: #ffffff;
    }
    
    .btn-outline,
    .service-card,
    .zodiac-card,
    .feature-card,
    .testimonial-card,
    .faq-item {
        border-width: 2px;
    }
}
