/* Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .about-content,
    .store-content {
        gap: 40px;
    }
    
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 80px 20px 20px;
    }
    
    .nav-list li {
        margin: 0 0 20px 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin: 10px 0 0 0;
        border-radius: 10px;
    }
    
    .nav-cta {
        flex-direction: column;
        margin: 20px 0 0 0;
    }
    
    .nav-cta .btn {
        margin: 0 0 10px 0;
    }
    
    .nav-toggle {
        display: flex;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1000;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Trust Badges */
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .badge-item {
        padding: 20px;
    }
    
    /* Services Overview */
    .services-overview {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* About Clinic */
    .about-clinic {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Before After */
    .before-after {
        padding: 60px 0;
    }
    
    .before-after-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Store Preview */
    .store-preview {
        padding: 60px 0;
    }
    
    .store-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .store-text h2 {
        font-size: 2rem;
    }
    
    /* FAQ */
    .faq {
        padding: 60px 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Appointment */
    .appointment {
        padding: 60px 0;
    }
    
    .appointment-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .appointment-text h2 {
        font-size: 2rem;
    }
    
    .appointment-form {
        padding: 30px 20px;
    }
    
    /* Map */
    .map-section {
        padding: 60px 0;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-section:nth-child(3),
    .footer-section:nth-child(4) {
        grid-column: span 1;
    }
    
    /* Sticky CTA */
    .sticky-cta {
        display: block;
        bottom: 100px;
        left: 20px;
    }
    
    .sticky-cta .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* WhatsApp Button */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.3rem; }
    
    /* Hero */
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta .btn {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Trust Badges */
    .trust-badges {
        padding: 30px 0;
    }
    
    .badges-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .badge-item {
        padding: 15px;
    }
    
    .badge-item i {
        font-size: 1.5rem;
    }
    
    /* Sections */
    .services-overview,
    .about-clinic,
    .testimonials,
    .before-after,
    .store-preview,
    .faq,
    .appointment,
    .map-section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Service Cards */
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    /* About */
    .about-text h2,
    .store-text h2,
    .appointment-text h2 {
        font-size: 1.8rem;
    }
    
    .about-text p,
    .store-text p,
    .appointment-text p {
        font-size: 1rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-card::before {
        font-size: 3rem;
    }
    
    /* Before After */
    .comparison img {
        height: 200px;
    }
    
    /* FAQ */
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 15px;
    }
    
    /* Appointment Form */
    .appointment-form {
        padding: 20px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-logo p {
        font-size: 0.9rem;
    }
    
    .footer-section ul a {
        font-size: 0.9rem;
    }
    
    .footer-section .contact-item {
        font-size: 0.9rem;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    /* Sticky CTA */
    .sticky-cta {
        bottom: 80px;
        left: 15px;
    }
    
    .sticky-cta .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    /* WhatsApp Button */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float a {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .testimonial-card {
        padding: 25px 15px;
    }
    
    .appointment-form {
        padding: 15px 10px;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 20px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .services-overview,
    .about-clinic,
    .testimonials,
    .before-after,
    .store-preview,
    .faq,
    .appointment,
    .map-section {
        padding: 40px 0;
    }
    
    .comparison img {
        height: 180px;
    }
}

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

/* Print Styles */
@media print {
    .header,
    .nav-toggle,
    .whatsapp-float,
    .sticky-cta,
    .appointment-form,
    .map-section {
        display: none !important;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .services-overview,
    .about-clinic,
    .testimonials,
    .before-after,
    .store-preview,
    .faq {
        padding: 30px 0;
    }
    
    .footer {
        background: white;
        color: #333;
        padding: 20px 0;
    }
    
    .footer a {
        color: #0A75BC;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1 { font-size: 24pt; }
    h2 { font-size: 20pt; }
    h3 { font-size: 16pt; }
}
