/* Responsive Design */

/* Tablets */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.8em;
    }

    .hero-content p {
        font-size: 1.1em;
    }

    .hero-placeholder {
        width: 250px;
        height: 250px;
    }

    .seo-section {
        padding: 30px;
        margin-bottom: 40px;
    }

    .seo-section h2 {
        font-size: 2em;
    }

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

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

    .header-container {
        padding: 10px 15px;
    }

    .logo h1 {
        font-size: 1.8em;
    }

    .logo .subtitle {
        font-size: 1em;
    }

    .floating-emojis {
        display: none;
    }

    .hero {
        padding: 60px 0 40px;
    }

    .hero-content h1 {
        font-size: 2.2em;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .hero-placeholder {
        width: 200px;
        height: 200px;
    }

    .hero-icon {
        font-size: 4em;
    }

    .therapy-session {
        gap: 10px;
    }

    .patient-after {
        font-size: 2em;
    }

    .therapy-elements {
        display: none; /* Hide therapy elements on tablets */
    }

    .floating-elements .flower {
        font-size: 1.2em;
    }

    .seo-content {
        padding: 60px 0;
    }

    .seo-section {
        padding: 25px;
        margin-bottom: 30px;
        border-radius: 15px;
    }

    .seo-section h2 {
        font-size: 1.8em;
        margin-bottom: 15px;
    }

    .seo-section p {
        font-size: 1em;
        line-height: 1.6;
    }

    .cta-section {
        padding: 25px;
        margin-bottom: 40px;
    }

    .map-section {
        padding: 60px 0;
    }

    .map-section h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .map-container iframe {
        height: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3 {
        font-size: 1.3em;
    }

    .schedule li {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float a {
        padding: 12px 18px;
        font-size: 0.9em;
    }

    .whatsapp-text {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5em;
    }

    .hero-content h1 {
        font-size: 1.8em;
    }

    .hero-content p {
        font-size: 0.95em;
    }

    .hero-placeholder {
        width: 150px;
        height: 150px;
    }

    .hero-icon {
        font-size: 3em;
    }

    .seo-section {
        padding: 20px;
    }

    .seo-section h2 {
        font-size: 1.5em;
    }

    .seo-section p {
        font-size: 0.95em;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .map-container iframe {
        height: 250px;
    }

    .footer-section h3 {
        font-size: 1.2em;
    }

    footer {
        padding: 40px 0 20px;
    }
}

/* Very Small Screens */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.6em;
    }

    .hero-content p {
        font-size: 0.9em;
    }

    .seo-section h2 {
        font-size: 1.4em;
    }

    .map-section h2 {
        font-size: 1.8em;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 40px 0 20px;
    }

    .hero-content h1 {
        font-size: 1.8em;
    }

    .hero-container {
        gap: 20px;
    }

    .seo-content {
        padding: 40px 0;
    }
}

/* Touch Devices */
@media (hover: none) and (pointer: coarse) {
    .cta-button:hover,
    .whatsapp-float a:hover {
        transform: none;
    }

    .link-item:hover {
        transform: none;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero::before {
        background-size: 50px 50px;
    }
}

/* Print Styles */
@media print {
    .whatsapp-float,
    .cta-button,
    .floating-emojis {
        display: none !important;
    }

    body {
        background: white !important;
    }

    .seo-section,
    .hero,
    footer {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
}
