/* Responsive Design */

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-left h1 {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop */
@media (max-width: 1024px) {
    .hero-content {
        gap: 3rem;
    }
    
    .profile-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .profile-img {
        width: 250px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    /* Header */
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav.mobile-open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav.mobile-open .nav-list {
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }
    
    .nav.mobile-open .nav-item {
        width: 100%;
    }
    
    .nav.mobile-open .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f9fafb;
        margin-top: 0.5rem;
        border-radius: 4px;
    }
    
    .nav.mobile-open .nav-dropdown-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .nav.mobile-open .nav-link {
        padding: 1rem;
        border-bottom: 1px solid #e5e7eb;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .nav.mobile-open .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Hero */
    .hero {
        padding: 2rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-left h1 {
        font-size: 2.5rem;
    }
    
    .profile-section {
        flex-direction: column;
        align-items: center;
    }
    
    .profile-img {
        width: 200px;
        height: 150px;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .hero-right::before {
        display: none;
    }
    
    /* Services */
    .services {
        padding: 3rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    /* Page Hero */
    .page-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .page-hero-image {
        height: 250px;
    }
    
    /* Certifications */
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-certifications {
        grid-column: 1 / -1;
        margin-top: 2rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    /* Typography */
    h1 {
        font-size: 1.875rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    /* Header */
    .header-content {
        padding: 0.75rem 0;
    }
    
    .logo-img {
        width: 50px;
        height: 50px;
    }

    .logo-name {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }

    .logo-tagline {
        display: none;
    }

    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    /* Hero */
    .hero {
        padding: 1.5rem 0;
    }
    
    .hero-left h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .profile-section {
        gap: 1rem;
    }
    
    .profile-img {
        width: 180px;
        height: 120px;
    }
    
    .hero-image {
        height: 200px;
    }
    
    /* Services */
    .services {
        padding: 2rem 0;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-card h2 {
        font-size: 1.5rem;
    }
    
    /* Page Hero */
    .page-hero {
        padding: 2rem 0;
    }
    
    .page-hero-image {
        height: 200px;
    }
    
    /* Coaching */
    .coaching-details {
        padding: 2rem 0;
    }
    
    .coaching-topics li {
        padding: 0.75rem 0;
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Certifications */
    .certifications {
        padding: 2rem 0;
    }
    
    .cert-logo {
        max-height: 80px;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    /* Modal adjustments */
    .modal {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem;
    }
    
    /* Form adjustments */
    .form-input,
    .form-textarea,
    .form-select {
        padding: 0.5rem 0.75rem;
    }
    
    /* Button adjustments */
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    /* Service button adjustments */
    .service-button {
        padding: 0.5rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
    .container {
        padding: 0 8px;
    }
    
    .hero-left h1 {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 1rem 0.75rem;
    }
    
    .profile-img {
        width: 150px;
        height: 100px;
    }
    
    .hero-image,
    .page-hero-image {
        height: 150px;
    }
    
    .footer-content {
        text-align: left;
    }
    
    .footer-column h4 {
        font-size: 1rem;
    }
    
    .footer-column p,
    .footer-column a {
        font-size: 0.875rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cta-button,
    .service-button,
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero,
    .services,
    .certifications,
    .coaching-details {
        padding: 1rem 0;
    }
    
    .hero-content,
    .page-hero-content {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1 {
        font-size: 18pt;
    }
    
    h2 {
        font-size: 16pt;
    }
    
    h3 {
        font-size: 14pt;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .service-card,
    .card {
        border: 2px solid #000;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: #000;
        color: #fff;
    }
    
    .cta-button,
    .btn-primary {
        border: 2px solid #000;
    }
}

/* 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;
    }
    
    .service-card:hover,
    .card:hover,
    .cta-button:hover,
    .btn:hover {
        transform: none;
    }
}