/* Large Desktop - Keep 5 columns */
@media (min-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Desktop - 5 columns but smaller */
@media (max-width: 1199px) and (min-width: 993px) {
    .team-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
    
    .member-info {
        padding: 20px 15px;
        min-height: 180px;
    }
    
    .member-info h3 {
        font-size: 20px;
    }
    
    .member-info p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .member-role {
        font-size: 12px;
    }
}

/* Tablet Styles */
@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }

    .section {
        padding: 60px 0;
    }

    /* Header */
    .nav-list {
        gap: 20px;
    }

    /* Hero */
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image,
    .about-video {
        order: -1;
    }

    /* Team */
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .member-info {
        padding: 25px 20px;
        min-height: 160px;
    }
    
    .member-info h3 {
        font-size: 22px;
    }
    
    .member-info p {
        font-size: 14px;
    }

    /* Concept */
    .concept-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Training */
    .training-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Prices */
    .price-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .price-card.featured {
        transform: scale(1);
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* FAQ Section */
    .faq-container {
        padding: 0 10px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Prices - single column on mobile */
    .price-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    /* Hero Dots */
    .hero-dots {
        bottom: 100px;
        gap: 8px;
    }
    
    .hero-dot {
        width: 10px;
        height: 10px;
    }
    
    .hero-dot.active {
        width: 25px;
    }
    
    /* Disable Ken Burns on mobile for performance */
    .hero-slide {
        animation: none;
        background-attachment: scroll;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* About Video */
    .about-video {
        height: 350px;
        max-height: 350px;
    }
    
    .about-video-player {
        max-height: 350px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    /* Header */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 30px;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Hero */
    .hero {
        min-height: 80vh;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    /* Team */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .member-info {
        padding: 20px;
        min-height: auto;
    }
    
    .member-info h3 {
        font-size: 20px;
    }
    
    .member-info p {
        font-size: 14px;
    }
    
    .member-role {
        font-size: 13px;
    }

    /* Training */
    .training-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        max-width: 300px;
        margin: 20px auto 0;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 14px;
    }

    /* Hero */
    .hero {
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 32px;
        letter-spacing: -1px;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 6px 15px;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .hero-dots {
        bottom: 60px;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 13px;
        letter-spacing: 0.5px;
    }
    
    .hero-buttons {
        gap: 10px;
    }

    /* About */
    .about-text h3 {
        font-size: 22px;
    }
    
    .about-text p {
        font-size: 14px;
    }
    
    .feature-item {
        font-size: 14px;
    }
    
    .about-video {
        height: 280px;
        max-height: 280px;
    }
    
    .about-video-player {
        max-height: 280px;
    }

    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .member-info {
        padding: 25px 20px;
        min-height: auto;
    }
    
    .member-info h3 {
        font-size: 22px;
    }
    
    .member-info p:last-child {
        font-size: 14px;
    }
    
    .member-role {
        font-size: 13px;
    }

    /* Concept */
    .concept-item {
        padding: 20px;
    }
    
    .concept-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .concept-item h3 {
        font-size: 20px;
    }

    /* Training */
    .training-card {
        padding: 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .training-card h3 {
        font-size: 18px;
    }

    /* Price Cards */
    .price .amount {
        font-size: 36px;
    }
    
    .price .currency {
        font-size: 18px;
    }
    
    .card-header h3 {
        font-size: 20px;
    }
    
    .card-body {
        padding: 20px;
    }
    
    .price-features {
        font-size: 14px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }

    /* Celebrity Cards */
    .celebrity-card {
        padding: 15px;
    }
    
    .celebrity-card h4 {
        font-size: 16px;
    }
    
    .celebrity-card p {
        font-size: 12px;
    }

    /* Gallery */
    .gallery-item {
        height: 200px;
    }

    /* Contact */
    .info-item {
        margin-bottom: 20px;
    }
    
    .info-item h4 {
        font-size: 16px;
    }
    
    .info-item p {
        font-size: 14px;
    }

    /* Form */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
    }

    /* Footer */
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
    
    .footer-column h3 {
        font-size: 20px;
    }
    
    .footer-column h4 {
        font-size: 16px;
    }
    
    .footer-column p,
    .footer-column li {
        font-size: 14px;
    }
    
    .newsletter-form input {
        font-size: 14px;
    }
    
    .newsletter-form button {
        font-size: 12px;
        padding: 12px 20px;
    }

    /* FAQ Section */
    .faq-question {
        padding: 15px 20px;
        font-size: 15px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
    
    .faq-icon {
        font-size: 1em;
    }
    
    /* Map */
    #map {
        height: 350px !important;
    }
    
    .map-info-card {
        padding: 25px;
    }
    
    .map-info-card h3 {
        font-size: 22px;
    }
    
    .map-info-card p {
        font-size: 14px;
    }

    /* PDF Thumbnails */
    .pdf-thumbnail {
        width: 80px;
        height: 107px;
    }
    
    .pdf-thumbnail svg {
        transform: scale(0.8);
    }
    
    .press-pdf-item h4 {
        font-size: 14px;
    }
    
    .press-pdf-item p {
        font-size: 11px;
    }
}

/* Print Styles */
@media print {
    .header,
    .hero-buttons,
    .contact-form,
    .newsletter-form,
    .social-links,
    #map {
        display: none;
    }

    body {
        font-size: 12pt;
    }

    .section {
        page-break-inside: avoid;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }

    .hero-title {
        font-size: 32px;
    }
}

/* High Resolution Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .about-image img,
    .member-image img {
        image-rendering: crisp-edges;
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Map Section Responsive */
@media (max-width: 992px) {
    .map-overlay-info {
        left: 30px;
    }
    
    .map-info-card {
        padding: 30px;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    #map {
        height: 400px !important;
    }
    
    .map-overlay-info {
        position: static;
        transform: none;
        padding: 30px 20px;
        background: white;
    }
    
    .map-info-card {
        max-width: 100%;
        box-shadow: none;
        border-radius: 0;
        background: white;
    }
    
    .celebrity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .celebrity-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .press-logos {
        flex-direction: column;
        align-items: center;
    }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}